@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --ink: #111417;
  --ink-soft: #1c2227;
  --paper: #f4f1ea;
  --paper-dim: #d8d5ce;
  --muted: #a9b1b7;
  --teal: #12b8a6;
  --teal-dark: #0b887e;
  --gold: #d6a85f;
  --line: rgba(244, 241, 234, 0.13);
  --font-heading: 'Sora', 'Arial', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--teal);
}

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--teal);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 20, 23, 0.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--teal);
  border-radius: 10px 2px 10px 2px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  transform: rotate(-2deg);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.brand-name strong { color: var(--teal); font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: var(--paper-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.main-nav > a:hover,
.main-nav > a:focus-visible { color: var(--paper); }

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--ink) !important;
  background: var(--teal);
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 142px 0 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  opacity: 0.42;
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 520px;
  height: 520px;
  top: 8%;
  right: 3%;
  background: radial-gradient(circle, rgba(18, 184, 166, 0.17), transparent 66%);
}

.hero-orb-two {
  width: 380px;
  height: 380px;
  bottom: -20%;
  left: 12%;
  background: radial-gradient(circle, rgba(214, 168, 95, 0.08), transparent 67%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.78fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2,
.coming-soon h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 { font-size: clamp(54px, 6.4vw, 96px); }

.hero h1 em,
.section h2 em {
  color: var(--teal);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-3px); }

.button-primary { color: var(--ink); background: var(--teal); }
.button-primary:hover { background: #22cbb8; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-dim);
  font-size: 13px;
  text-underline-offset: 5px;
}

.text-link span { color: var(--gold); font-size: 17px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 54px;
}

.note-line { width: 46px; height: 1px; background: var(--gold); }

.hero-note p {
  margin: 0;
  color: #747d84;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-art { position: relative; padding: 28px 40px 0 0; }

.art-frame {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 160px 8px 8px 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), transparent 38%),
    var(--ink-soft);
  box-shadow: 0 50px 100px rgba(0,0,0,0.28);
  overflow: hidden;
}

.art-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 241, 234, 0.07);
  border-radius: 148px 4px 4px 4px;
}

.art-number {
  position: absolute;
  top: 47px;
  right: 34px;
  color: rgba(244, 241, 234, 0.23);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.mirror {
  position: absolute;
  top: 72px;
  left: 62px;
  width: 57%;
  height: 68%;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 50% 50% 8px 8px;
  background:
    linear-gradient(128deg, transparent 18%, rgba(244,241,234,0.08) 19%, transparent 20% 49%, rgba(244,241,234,0.05) 50%, transparent 51%),
    linear-gradient(160deg, #242c32, #13171a 72%);
  box-shadow: inset 0 0 0 8px #171c20, 0 22px 55px rgba(0,0,0,0.35);
  overflow: hidden;
}

.mirror::after {
  content: '';
  position: absolute;
  width: 160%;
  height: 36px;
  top: 46%;
  left: -30%;
  background: rgba(18, 184, 166, 0.1);
  transform: rotate(-34deg);
  filter: blur(6px);
}

.mirror-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(244, 241, 234, 0.08);
  font-family: var(--font-heading);
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.12em;
}

.mirror-line { position: absolute; z-index: 2; background: var(--teal); }
.mirror-line-one { width: 1px; height: 54px; bottom: 0; left: 28%; }
.mirror-line-two { width: 54px; height: 1px; bottom: 27px; left: 18%; }

.barber-pole {
  position: absolute;
  top: 110px;
  right: 56px;
  width: 25px;
  height: 198px;
  border: 1px solid rgba(244,241,234,0.16);
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(4deg);
}

.barber-pole::before {
  content: '';
  position: absolute;
  inset: -80px -30px;
  background: repeating-linear-gradient(135deg, var(--teal) 0 14px, var(--paper) 14px 28px, var(--gold) 28px 42px, var(--ink-soft) 42px 56px);
  opacity: 0.75;
  animation: pole 8s linear infinite;
}

.barber-pole span:first-child,
.barber-pole span:last-child {
  position: absolute;
  z-index: 2;
  left: -4px;
  width: 31px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.barber-pole span:first-child { top: -3px; }
.barber-pole span:last-child { bottom: -3px; }

.scissors {
  position: absolute;
  right: 24px;
  bottom: 52px;
  width: 142px;
  color: var(--gold);
  opacity: 0.78;
  transform: rotate(-7deg);
}

.art-caption {
  position: absolute;
  bottom: 40px;
  left: 42px;
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.art-stamp {
  position: absolute;
  right: -4px;
  bottom: -15px;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--teal);
  border: 8px solid var(--ink);
  border-radius: 50%;
}

.art-stamp svg { position: absolute; inset: 7px; width: calc(100% - 14px); animation: spin 18s linear infinite; }
.art-stamp text { fill: currentColor; font-family: var(--font-body); font-size: 9px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.art-stamp > span { font-size: 23px; }

.hero-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 48px;
  color: #606970;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer-line { flex: 1; height: 1px; background: var(--line); }

.section { padding: clamp(92px, 11vw, 156px) 0; }

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 60px;
  margin-bottom: 68px;
}

.section-heading h2,
.manifesto h2,
.ritual h2 { font-size: clamp(45px, 5.4vw, 76px); }

.section-heading > div > p {
  max-width: 570px;
  margin: 28px 0 0;
  color: #69737a;
  font-size: 17px;
}

.experience { color: var(--ink); background: var(--paper); }
.experience .section-index { color: var(--teal-dark); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17,20,23,0.15);
  border-bottom: 1px solid rgba(17,20,23,0.15);
}

.experience-card {
  min-height: 330px;
  padding: 35px 32px;
  border-right: 1px solid rgba(17,20,23,0.15);
  transition: background 350ms var(--ease), color 350ms var(--ease), transform 350ms var(--ease);
}

.experience-card:last-child { border-right: 0; }
.experience-card:hover { background: #ebe7dd; transform: translateY(-7px); }
.experience-card.featured { background: var(--ink); color: var(--paper); }
.experience-card.featured:hover { background: var(--ink-soft); }

.card-number { display: block; color: #777c7f; font-size: 10px; letter-spacing: 0.18em; }
.card-icon { width: 48px; margin: 54px 0 30px; color: var(--teal-dark); }
.featured .card-icon { color: var(--teal); }
.card-icon svg { display: block; width: 100%; }
.experience-card h3 { margin: 0 0 12px; font-family: var(--font-heading); font-size: 21px; }
.experience-card p { max-width: 33ch; margin: 0; color: #676d70; font-size: 14px; }
.experience-card.featured p { color: var(--muted); }

.manifesto { position: relative; background: #151a1e; overflow: hidden; }
.manifesto::after {
  content: 'MOLD';
  position: absolute;
  right: -40px;
  bottom: -118px;
  color: rgba(244,241,234,0.025);
  font-family: var(--font-heading);
  font-size: 290px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(64px, 9vw, 130px);
  align-items: center;
}

.manifesto-visual { position: relative; min-height: 600px; }

.portrait-shape {
  position: absolute;
  inset: 0 46px 0 38px;
  border-radius: 170px 170px 18px 18px;
  background:
    radial-gradient(circle at 52% 30%, rgba(214,168,95,0.25), transparent 5%),
    radial-gradient(circle at 48% 31%, #22292e 0 20%, transparent 21%),
    linear-gradient(145deg, rgba(18,184,166,0.2), transparent 35%),
    linear-gradient(160deg, #293137 0 38%, #101417 39% 67%, #232a2f 68%);
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(0,0,0,0.3);
}

.portrait-shape::before {
  content: '';
  position: absolute;
  width: 72%;
  height: 58%;
  left: 14%;
  bottom: -13%;
  border-radius: 50% 50% 0 0;
  background: #090c0e;
  box-shadow: 0 0 0 1px rgba(244,241,234,0.08);
}

.portrait-photo {
  background: #f64d9c;
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
}

.portrait-photo::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  left: 0;
  bottom: 0;
  border-radius: 0;
  background: linear-gradient(to top, rgba(17, 20, 23, 0.48), transparent 34%);
  box-shadow: none;
  pointer-events: none;
}

.shape-cut {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 17%;
  left: 30%;
  border-radius: 50% 46% 38% 42%;
  background: #101417;
  box-shadow: inset -22px -10px 36px rgba(18,184,166,0.13);
}

.shape-detail {
  position: absolute;
  z-index: 2;
  width: 34%;
  height: 1px;
  top: 37%;
  left: 34%;
  background: var(--gold);
  box-shadow: 0 8px 0 rgba(214,168,95,0.32), 0 16px 0 rgba(214,168,95,0.15);
  transform: rotate(-8deg);
}

.vertical-word {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -10px;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.36em;
  transform: translateY(-50%) rotate(-90deg);
}

.manifesto-year {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.manifesto-copy { position: relative; z-index: 2; }
.manifesto-copy > p:not(.section-index) { max-width: 560px; margin: 27px 0 0; color: var(--muted); font-size: 16px; }

.signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.signature > span {
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
}

.signature p { margin: 0 !important; color: var(--paper) !important; font-family: var(--font-heading); font-size: 13px !important; line-height: 1.35; }
.signature small { color: #707980; font-family: var(--font-body); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }

.ritual { color: var(--ink); background: #e7e2d8; }

.ritual-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(17,20,23,0.18);
}

.ritual .section-index { color: var(--teal-dark); }

.ritual-list { margin: 0; padding: 0; list-style: none; }
.ritual-list li {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 135px;
  border-bottom: 1px solid rgba(17,20,23,0.14);
  transition: padding 300ms var(--ease), background 300ms ease;
}

.ritual-list li:hover { padding-inline: 18px; background: rgba(255,255,255,0.18); }
.ritual-list span { color: var(--teal-dark); font-size: 11px; letter-spacing: 0.15em; }
.ritual-list h3 { margin: 0; font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px); font-weight: 500; }
.ritual-list p { max-width: 390px; margin: 0; color: #686a68; font-size: 14px; }

.coming-soon {
  position: relative;
  padding: clamp(110px, 14vw, 190px) 0 0;
  color: var(--ink);
  background: var(--teal);
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  top: -230px;
  right: -170px;
  border: 1px solid rgba(17,20,23,0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(17,20,23,0.035), 0 0 0 160px rgba(17,20,23,0.025);
}

.coming-soon-inner { position: relative; z-index: 2; padding-bottom: 120px; text-align: center; }
.coming-soon .section-index { justify-content: center; color: rgba(17,20,23,0.65); }
.coming-soon h2 { font-size: clamp(48px, 7vw, 94px); }
.coming-soon-inner > p:not(.section-index) { margin: 27px auto 35px; color: rgba(17,20,23,0.68); font-size: 16px; }
.button-light { color: var(--paper); background: var(--ink); }
.button-light:hover { background: #222a2f; }

.ticker {
  width: 100%;
  padding: 20px 0;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: ticker 24s linear infinite;
}

.ticker span { font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.ticker i { color: var(--gold); font-style: normal; }

.site-footer { padding: 35px 0; background: var(--ink); border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-inner p { margin: 0; color: #6f787f; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.preview-label { justify-self: end; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.experience-card:nth-child(2) { transition-delay: 90ms; }
.experience-card:nth-child(3) { transition-delay: 180ms; }
.ritual-list li:nth-child(2) { transition-delay: 80ms; }
.ritual-list li:nth-child(3) { transition-delay: 160ms; }

@keyframes pole { to { transform: translateY(56px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr 0.8fr; gap: 48px; }
  .art-frame { min-height: 475px; }
  .mirror { left: 42px; }
  .barber-pole { right: 37px; }
  .section-heading { grid-template-columns: 0.42fr 1.58fr; }
  .manifesto-inner { gap: 65px; }
  .manifesto-visual { min-height: 520px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 34px, var(--container)); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 24px 17px 30px;
    display: grid;
    gap: 4px;
    background: rgba(17,20,23,0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: all 240ms var(--ease);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 8px; font-size: 14px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: auto; padding: 118px 0 38px; }
  .hero-inner { grid-template-columns: 1fr; gap: 62px; }
  .hero h1 { font-size: clamp(44px, 11.5vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { margin-top: 38px; }
  .hero-art { padding: 0 23px 0 0; }
  .art-frame { min-height: 510px; border-radius: 130px 8px 8px 8px; }
  .mirror { top: 66px; left: 48px; height: 66%; }
  .barber-pole { right: 44px; }
  .art-stamp { right: -3px; }
  .hero-footer { display: none; }
  .section { padding: 88px 0; }
  .section-heading { display: block; margin-bottom: 48px; }
  .section-heading > div > p { margin-top: 22px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 270px; border-right: 0; border-bottom: 1px solid rgba(17,20,23,0.15); }
  .experience-card:last-child { border-bottom: 0; }
  .card-icon { margin: 36px 0 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 68px; }
  .manifesto-visual { min-height: 540px; }
  .portrait-shape { right: 35px; }
  .manifesto::after { font-size: 180px; bottom: -65px; }
  .ritual-heading { display: block; padding-bottom: 46px; }
  .ritual-list li { grid-template-columns: 45px 1fr; gap: 10px 14px; padding: 26px 0; }
  .ritual-list p { grid-column: 2; }
  .coming-soon-inner { padding-bottom: 90px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner > p:first-of-type { display: none; }
}

@media (max-width: 430px) {
  .brand-name { font-size: 15px; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 54px); }
  .button { width: 100%; }
  .art-frame { min-height: 430px; }
  .mirror { top: 58px; left: 35px; width: 59%; }
  .barber-pole { top: 95px; right: 31px; height: 166px; }
  .scissors { right: 9px; bottom: 45px; width: 118px; }
  .art-caption { bottom: 34px; left: 28px; }
  .art-stamp { width: 96px; }
  .section-heading h2,
  .manifesto h2,
  .ritual h2 { font-size: 43px; }
  .manifesto-visual { min-height: 445px; }
  .portrait-shape { inset: 0 25px 0 28px; border-radius: 130px 130px 14px 14px; }
  .coming-soon h2 { font-size: 46px; }
  .footer-brand .brand-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
