:root {
  --ink: #1f1613;
  --ink-2: #362823;
  --muted: #8f7d74;
  --paper: #fff8f2;
  --line: rgba(40, 26, 21, 0.16);
  --gold: #d7a04f;
  --gold-2: #f1d3a0;
  --rose: #c27b73;
  --shadow: 0 22px 56px rgba(30, 20, 16, 0.18);
  --content-max: 1240px;
  --section-x: clamp(16px, 5vw, 72px);
  --section-y: clamp(56px, 8.5vw, 104px);
  --header-offset: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.5;
}

main {
  overflow-x: hidden;
}

section,
[id] {
  scroll-margin-top: var(--header-offset);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  --header-pad: clamp(12px, 1.8vw, 14px);
  --header-x: clamp(16px, 4vw, 52px);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--header-pad) var(--header-x);
  color: #fff;
  background: rgba(24, 16, 13, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: transparent;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 10px 18px rgba(20, 15, 13, 0.28));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.14;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.77rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 26px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 8, 7, 0.3);
  color: #fff;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 8, 7, 0.55);
}

.mobile-nav-inner {
  position: absolute;
  right: 10px;
  top: 10px;
  width: min(420px, calc(100vw - 20px));
  max-height: calc(100vh - 20px);
  overflow: auto;
  padding: 16px;
  border-radius: 16px;
  background: rgba(24, 16, 13, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(10, 8, 7, 0.55);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-title {
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-nav-links {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-nav-cta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.mobile-nav-cta .button {
  width: 100%;
}

.nav-open {
  overflow: hidden;
}

.nav-open body {
  overflow: hidden;
}

.nav-open .mobile-nav {
  display: block;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.header-cta,
.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #ffe9cd, var(--gold));
  box-shadow: 0 12px 28px rgba(201, 140, 65, 0.32);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.portfolio-section .button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(40, 26, 21, 0.2);
}

.portfolio-section .load-more {
  margin: 22px auto 0;
  display: inline-flex;
  justify-content: center;
  min-width: min(260px, 100%);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

:focus-visible {
  outline: 3px solid rgba(241, 211, 160, 0.9);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-offset) + 44px) var(--section-x) 56px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 22%, rgba(214, 125, 115, 0.3), transparent 26%),
    radial-gradient(circle at 15% 80%, rgba(215, 160, 79, 0.24), transparent 24%),
    linear-gradient(135deg, #140f0d 0%, #241814 42%, #3f2a22 100%);
}

.hero-inner {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: end;
}

.hero-aside {
  display: grid;
  justify-content: end;
}

.hero-orbit {
  position: relative;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  filter: drop-shadow(0 34px 70px rgba(10, 8, 7, 0.55));
}

.hero-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(108px, 14vw, 164px);
  height: clamp(108px, 14vw, 164px);
  border-radius: 28px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(241, 211, 160, 0.28), rgba(194, 123, 115, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 10px rgba(215, 160, 79, 0.1),
    0 26px 62px rgba(10, 8, 7, 0.4);
}

.hero-center-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 18px 28px rgba(10, 8, 7, 0.55));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(20, 15, 13, 0.64), rgba(20, 15, 13, 0.2) 56%, transparent),
    linear-gradient(90deg, rgba(20, 15, 13, 0.72), rgba(20, 15, 13, 0.28), rgba(20, 15, 13, 0.08));
}

#salon-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 5;
  perspective: 900px;
}

.stage-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 229, 191, 0.27);
  border-radius: 50%;
}

.ring-one {
  animation: spinRing 20s linear infinite;
}

.ring-two {
  inset: 24%;
  border-color: rgba(215, 160, 79, 0.36);
  transform: rotateX(62deg);
  animation: spinRingReverse 14s linear infinite;
}

.stage-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #fff9f3, #e8d6c8);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(255, 228, 194, 0.11),
    0 24px 70px rgba(20, 14, 12, 0.36);
  transform-style: preserve-3d;
}

.stage-icon svg {
  width: 88px;
  height: 88px;
}

.stage-icon {
  display: grid;
  place-items: center;
}

.stage-icon img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 228, 194, 0.22);
  background: rgba(10, 8, 7, 0.6);
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(10, 8, 7, 0.5);
}

.stage-icon figcaption {
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 242, 0.9);
  background: rgba(10, 8, 7, 0.55);
  border: 1px solid rgba(255, 228, 194, 0.2);
}

.icon-ring,
.icon-stroke {
  fill: none;
  stroke: #0f0c0a;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-ring {
  stroke-width: 5.5;
}

.icon-stroke {
  stroke-width: 4;
}

.icon-fill {
  fill: #0f0c0a;
}

.icon-cutout,
.fill-bg {
  fill: none;
  stroke: #fff9f3;
  stroke-width: 3;
}

.stage-card-one {
  top: 2%;
  right: 24%;
  animation: orbitCardOne 6.2s ease-in-out infinite;
}

.stage-card-two {
  left: 0;
  top: 42%;
  animation: orbitCardTwo 6.8s ease-in-out infinite;
}

.stage-card-three {
  right: 4%;
  bottom: 26%;
  animation: orbitCardThree 5.9s ease-in-out infinite;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 6;
}

.proof-strip {
  padding: 22px var(--section-x) 8px;
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 22px 20px;
  border-radius: 14px;
  border: 1px solid rgba(40, 26, 21, 0.14);
  background: rgba(255, 250, 246, 0.9);
  box-shadow: 0 16px 46px rgba(30, 20, 16, 0.08);
}

.proof-inner h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.proof-inner p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-tagline {
  margin: 0 0 12px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.45;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #fff8f0;
  font-size: clamp(2.8rem, 6.8vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-content > p:last-of-type {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.67;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .button {
  min-height: 46px;
}

.hero-trust {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-trust span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 8, 7, 0.18);
  backdrop-filter: blur(10px);
}

.hero-card {
  align-self: end;
  padding: 26px;
  color: #fff;
  background: rgba(255, 251, 245, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  font-size: 1.44rem;
  line-height: 1.13;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.intent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px var(--section-x);
  background: #1a120f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.intent-strip a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

section {
  padding: var(--section-y) var(--section-x);
}

.section-intro {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-overview {
  max-width: var(--content-max);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.portfolio-overview-head h2 {
  max-width: 18ch;
}

.portfolio-overview-meta {
  display: grid;
  gap: 14px;
}

.portfolio-overview .meta-item {
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(40, 26, 21, 0.14);
  background: rgba(255, 250, 246, 0.88);
  box-shadow: 0 14px 38px rgba(30, 20, 16, 0.06);
}

.portfolio-overview .meta-item h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.portfolio-overview .meta-item p {
  color: var(--muted);
  line-height: 1.65;
}

.section-intro p:last-child,
.section-heading p {
  color: var(--muted);
  line-height: 1.68;
  max-width: 820px;
}

.portfolio-section {
  background: #fffaf6;
}

.portfolio-section.alt {
  background: #f7ece3;
}

.section-heading {
  margin-bottom: 28px;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  align-items: start;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

.project-card {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(30, 20, 16, 0.08);
}

.project-card:focus-within {
  box-shadow: 0 18px 46px rgba(30, 20, 16, 0.14);
}

.project-card img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 0;
  height: 210px;
  object-fit: cover;
  pointer-events: none;
}

#logo .project-card img {
  height: clamp(220px, 18vw, 300px);
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  background: #fffaf6;
  will-change: transform;
  pointer-events: none;
}

#website .project-card img {
  height: clamp(200px, 18vw, 280px);
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  background: #f3ebe4;
}

#tshirt .project-card img {
  height: clamp(240px, 22vw, 340px);
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  background: #fffaf6;
}

#businesscard .project-card img {
  height: clamp(230px, 20vw, 320px);
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  background: #fffaf6;
}

.project-head {
  position: relative;
  z-index: 1;
  padding: 16px 16px 8px;
}

.project-head h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.project-head p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.95rem;
}

.case-toggle {
  margin: 0 16px 14px;
  width: calc(100% - 32px);
  position: relative;
  z-index: 5;
  pointer-events: auto;
  min-height: 46px;
  border: 1px solid rgba(40, 26, 21, 0.18);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}

.case-panel {
  display: grid;
  gap: 10px;
  padding: 14px 16px 18px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(40, 26, 21, 0.12);
  background: #fffaf3;
}

.case-panel[hidden] {
  display: none !important;
}

.case-row h4 {
  margin: 0 0 4px;
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-row p {
  color: #66564e;
  font-size: 0.92rem;
  line-height: 1.55;
}

.load-more {
  margin-top: 18px;
}

.contact-block {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(20, 15, 13, 0.88), rgba(20, 15, 13, 0.68)),
    radial-gradient(circle at 80% 20%, rgba(215, 160, 79, 0.22), transparent 36%),
    #1a120f;
}

.contact-inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-inner h2 {
  color: #fff7ed;
}

.contact-inner p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.67;
}

.contact-meta {
  margin-top: 18px;
}

.contact-meta strong {
  color: #fff;
}

.contact-meta a {
  color: var(--gold-2);
}

footer {
  padding: 28px var(--section-x);
  background: #150f0d;
  text-align: center;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.87rem;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}

footer p + p {
  margin-top: 8px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  filter: blur(7px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.js [data-animate="slide-left"] {
  transform: translateX(-58px) scale(0.97);
}

.js [data-animate="slide-right"] {
  transform: translateX(58px) scale(0.97);
}

.js [data-animate="slide-left"].is-visible,
.js [data-animate="slide-right"].is-visible {
  transform: translateX(0) scale(1);
}

.split-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-title .word span {
  display: inline-block;
  transform: translateY(108%) rotate(4deg);
  animation: titleWord 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes titleWord {
  to {
    transform: translateY(0) rotate(0);
  }
}

@keyframes spinRing {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes spinRingReverse {
  to {
    transform: rotateX(62deg) rotateZ(-360deg);
  }
}

@keyframes orbitCardOne {
  0%,
  100% {
    transform: translate3d(0, 0, 72px) rotateY(-14deg);
  }

  50% {
    transform: translate3d(-20px, 22px, 110px) rotateY(12deg);
  }
}

@keyframes orbitCardTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 88px) rotateY(18deg);
  }

  50% {
    transform: translate3d(28px, -18px, 122px) rotateY(-12deg);
  }
}

@keyframes orbitCardThree {
  0%,
  100% {
    transform: translate3d(0, 0, 82px) rotateX(8deg);
  }

  50% {
    transform: translate3d(-22px, -14px, 118px) rotateX(-6deg);
  }
}

@keyframes mobileHeroOrbit {
  0% {
    transform: translate(-50%, -50%) rotateX(66deg) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateX(66deg) rotateZ(360deg);
  }
}

@keyframes mobileBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-8deg);
  }

  50% {
    transform: translate3d(0, -11px, 38px) rotateY(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    justify-content: center;
    margin-top: 16px;
  }

  .hero-orbit {
    width: min(86vw, 520px);
    opacity: 0.92;
  }

  .hero-stage {
    position: absolute;
    inset: 0;
    transform: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .proof-inner {
    padding: 18px 18px 16px;
  }
}

@media (max-width: 680px) {
  .brand small,
  .header-cta {
    display: none;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  :root {
    --header-offset: 74px;
  }

  .hero {
    min-height: 100vh;
    padding: 92px 16px 40px;
    align-content: end;
  }

  #salon-hero-canvas {
    opacity: 0.9;
    transform: scale(1.07);
  }

  .hero-aside {
    justify-content: start;
    margin-top: 18px;
  }

  .hero-orbit {
    width: 100%;
    max-width: calc(100vw - 32px);
    height: 92px;
    aspect-ratio: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    filter: none;
  }

  .hero-center-mark {
    display: none;
  }

  .hero-stage {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: 92px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    opacity: 1;
  }

  .hero-stage::before,
  .hero-stage::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 52%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotateX(66deg);
  }

  .hero-stage::before {
    width: min(84vw, 300px);
    height: 74px;
    border: 1px solid rgba(255, 218, 170, 0.3);
    animation: mobileHeroOrbit 11s linear infinite;
  }

  .hero-stage::after {
    width: min(66vw, 230px);
    height: 46px;
    border: 1px solid rgba(215, 160, 79, 0.38);
    animation: mobileHeroOrbit 8s linear infinite reverse;
  }

  .stage-ring {
    display: none;
  }

  .stage-icon {
    position: relative;
    inset: auto;
    width: 70px;
    flex: 0 0 70px;
    animation: mobileBadgeFloat 3.8s ease-in-out infinite;
  }

  .stage-card-one,
  .stage-card-two,
  .stage-card-three {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .stage-card-two {
    animation-delay: 0.25s;
  }

  .stage-card-three {
    animation-delay: 0.45s;
  }

  .stage-icon svg {
    width: 56px;
    height: 56px;
  }

  .portfolio-overview {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
    line-height: 1;
  }

  .hero-tagline,
  .hero-content > p:last-of-type,
  .hero-card p {
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    text-align: center;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-card strong {
    font-size: 1.24rem;
  }

  section {
    padding: 56px 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 200px;
  }

  #logo .project-card img {
    height: 240px;
    padding: 10px;
  }

  #website .project-card img {
    height: 220px;
  }

  #tshirt .project-card img {
    height: 260px;
  }

  #businesscard .project-card img {
    height: 250px;
  }

  .intent-strip {
    padding: 12px 16px;
  }
}
