:root {
  --black: #11110f;
  --ivory: #f2eee5;
  --paper: #e5ded1;
  --bronze: #a97945;
  --earth: #756552;
  --botanical: #59624b;
  --white: #fff;
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia,
    serif;
  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  --container: min(90vw, 1440px);
  --pad: clamp(22px, 5vw, 84px);
  --section: clamp(88px, 10vw, 168px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--black);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.section {
  padding-block: var(--section);
}
.eyebrow {
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}
.eyebrow span {
  opacity: 0.55;
}
.eyebrow--light {
  color: #d7cec2;
}
.section-title {
  font-size: clamp(48px, 6vw, 88px);
  margin: 0 0 42px;
  max-width: 980px;
}
.section-title--wide {
  max-width: 1180px;
}
.section-title--light {
  color: #f4efe7;
}
.lead {
  max-width: 720px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
  color: #373632;
}
.lead--dark {
  color: #c9c2b9;
}
.signature-line {
  margin-top: 54px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 31px);
  color: var(--bronze);
  font-style: italic;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: #fff;
  padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.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;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(242, 238, 229, 0.94);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.08);
}
.brand {
  position: relative;
  width: 88px;
  height: 100%;
  display: block;
}
.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 82px;
  max-height: 42px;
  object-fit: contain;
  transition: opacity 0.25s;
}
.brand-logo--light {
  opacity: 0;
}
.site-header.on-dark:not(.scrolled) .brand-logo--dark {
  opacity: 0;
}
.site-header.on-dark:not(.scrolled) .brand-logo--light {
  opacity: 1;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}
.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  border: 1px solid rgba(17, 17, 15, 0.25);
  padding: 11px 16px;
}
.site-header.on-dark:not(.scrolled) .desktop-nav {
  color: #fff;
}
.site-header.on-dark:not(.scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.45);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
}
.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: var(--ivory);
  padding: 120px var(--pad) 40px;
}
.mobile-menu nav {
  display: grid;
  gap: 18px;
}
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.05;
}
.mobile-menu__cta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 40px;
  text-align: center;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    border 0.25s;
}
.button span,
.text-link span,
.text-link b {
  transition: transform 0.25s;
}
.button:hover span,
.text-link:hover span,
.text-link:hover b {
  transform: translateX(5px);
}
.button--dark {
  background: var(--black);
  color: #fff;
}
.button--dark:hover {
  background: #282721;
}
.button--light {
  background: var(--ivory);
  color: var(--black);
}
.button--light:hover {
  background: #fff;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}
.text-link--light {
  color: #f4efe7;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #d7cbb8;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(242, 238, 229, 0.37) 0%,
    rgba(242, 238, 229, 0.04) 46%,
    rgba(242, 238, 229, 0) 70%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}
.hero__title {
  font-size: clamp(74px, 8.5vw, 142px);
  margin: 0 0 30px;
  max-width: 770px;
}
.hero__lead {
  max-width: 520px;
  font-size: clamp(17px, 1.3vw, 21px);
  margin: 0 0 36px;
  color: #2f2d29;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 5vw;
  bottom: 28px;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.2em;
  display: flex;
  gap: 12px;
  align-items: center;
}
.scroll-cue span {
  font-size: 15px;
}
.split-intro {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 5vw;
}
.section--idea {
  background: var(--ivory);
}

/* Capabilities */
.capabilities {
  padding-top: 40px;
}
.section-heading {
  margin-bottom: 70px;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: clamp(30px, 5vw, 80px);
  row-gap: clamp(70px, 8vw, 120px);
}
.capability-card a {
  display: block;
}
.capability-card__image {
  overflow: hidden;
  background: #d7d0c5;
  margin-bottom: 26px;
}
.capability-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.capability-card a:hover .capability-card__image img {
  transform: scale(1.025);
}
.capability-card__meta {
  display: flex;
  gap: 18px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--earth);
}
.capability-card__meta span:first-child {
  color: var(--bronze);
}
.capability-card h3 {
  font-size: clamp(36px, 4.1vw, 64px);
  margin: 18px 0 18px;
}
.capability-card p {
  max-width: 560px;
  color: #5b5751;
  margin: 0 0 20px;
}
.capability-card--brand .capability-card__image {
  aspect-ratio: 1.45/1;
}
.capability-card--fashion {
  padding-top: 90px;
}
.capability-card--fashion .capability-card__image {
  aspect-ratio: 1/1.18;
}
.capability-card--events .capability-card__image {
  aspect-ratio: 1/1.1;
}
.capability-card--specialised {
  padding-top: 50px;
}
.capability-card--specialised .capability-card__image {
  aspect-ratio: 1.38/1;
}

/* Process */
.section--paper {
  background: var(--paper);
}
.process__intro {
  display: grid;
  grid-template-columns: 4fr 8fr;
  margin-bottom: 80px;
}
.process__intro .eyebrow {
  grid-column: 1;
}
.process__intro .section-title {
  grid-column: 2;
}
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(17, 17, 15, 0.24);
}
.process-steps li {
  padding: 28px 24px 10px 0;
  position: relative;
}
.process-steps li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--bronze);
  border-radius: 50%;
}
.process-num {
  font-size: 10px;
  color: var(--bronze);
  letter-spacing: 0.12em;
}
.process-steps h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 15px 0 12px;
}
.process-steps p {
  font-size: 14px;
  color: #625e57;
  max-width: 190px;
}
.process__closing {
  margin: 70px 0 0 auto;
  max-width: 680px;
  font-size: 19px;
  border-left: 1px solid var(--bronze);
  padding-left: 28px;
}

/* Fashion */
.section--dark {
  background: var(--black);
  color: #fff;
}
.fashion-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7vw;
  align-items: center;
}
.fashion-main {
  margin: 0;
}
.fashion-main img {
  width: 100%;
  aspect-ratio: 1.3/1;
  object-fit: cover;
}
.fashion-copy .section-title {
  font-size: clamp(50px, 5.7vw, 82px);
}
.fashion-proof {
  color: #ddd2c6;
  margin: 30px 0 28px;
}
.fashion-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 100px;
}
.fashion-process figure {
  margin: 0;
}
.fashion-process img {
  width: 100%;
  aspect-ratio: 0.88/1;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}
.fashion-process figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #d5ccc0;
  padding-top: 12px;
}
.fashion-process figcaption span {
  color: var(--bronze);
}
.process-note {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 11px;
  color: #807970;
}

/* Work */
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.work-card {
  margin-bottom: 70px;
}
.work-card figure {
  margin: 0 0 24px;
  overflow: hidden;
  background: #ddd;
}
.work-card figure img {
  width: 100%;
  aspect-ratio: 1.25/1;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.work-card a:hover figure img {
  transform: scale(1.02);
}
.work-card--large figure img {
  aspect-ratio: 1.45/1;
}
.work-card--wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: end;
}
.work-card--wide a {
  display: contents;
}
.work-card--wide figure {
  margin: 0;
}
.work-card__text {
  max-width: 560px;
}
.project-type {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--earth);
  margin: 0 0 12px;
}
.work-card h3 {
  font-size: clamp(34px, 3vw, 50px);
  margin: 0 0 12px;
}
.work-card__text > p:not(.project-type) {
  color: #5e5a54;
}

/* Network */
.section--network {
  background: #e9e1d5;
  padding-bottom: clamp(100px, 11vw, 180px);
}
.network-intro {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 70px;
}
.network-copy {
  font-size: 19px;
  color: #514d47;
  padding-bottom: 18px;
}
.network-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}
.network-tags span {
  border: 1px solid rgba(17, 17, 15, 0.18);
  padding: 7px 10px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.network-art {
  position: relative;
}
.network-art img {
  width: 100%;
  box-shadow: 0 18px 50px rgba(74, 59, 40, 0.15);
  transform: rotate(-0.25deg);
}

/* SMilE Summit */
.smile-photo-band {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.smile-photo-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.smile-photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 15, 0.88) 0%,
    rgba(17, 17, 15, 0.54) 45%,
    rgba(17, 17, 15, 0.15) 80%
  );
}
.smile-photo-band__copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 8vh;
}
.smile-photo-band__copy h2 {
  font-size: clamp(52px, 6vw, 92px);
  line-height: 1;
  margin: 24px 0 0;
  max-width: 1040px;
}
.smile-logo {
  width: 150px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
}
.smile-impact {
  background: #f5f1e9;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(17, 17, 15, 0.18);
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}
.stat {
  padding: 42px 24px 42px 0;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(55px, 5vw, 82px);
  font-weight: 400;
  line-height: 1;
  color: #28251f;
}
.stat span {
  display: block;
  margin-top: 12px;
  max-width: 160px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6a655e;
}
.smile-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 80px;
}
.smile-proof-grid figure {
  margin: 0;
}
.smile-proof-grid img {
  width: 100%;
  aspect-ratio: 1/1.08;
  object-fit: cover;
}
.smile-statement {
  margin: 0;
  padding: 30px;
}
.smile-statement p {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.1;
  margin: 0;
}
.smile-statement footer {
  margin-top: 28px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--earth);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 4fr 4.8fr 3.2fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.about-copy {
  padding-top: 40px;
}
.founder figure {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.founder figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder--primary figure {
  aspect-ratio: 3/4;
}
.founder--secondary {
  margin-top: 170px;
}
.founder--secondary figure {
  aspect-ratio: 3/4;
}
.founder--secondary figure img {
  object-position: center 32%;
}
.founder h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin: 18px 0 2px;
}
.founder p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--earth);
}

/* Trust */
.trust {
  padding-top: 40px;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid rgba(17, 17, 15, 0.14);
  margin-top: 60px;
}
.logo-cell {
  height: 160px;
  padding: 42px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(17, 17, 15, 0.11);
}
.logo-cell:last-child {
  border-right: 0;
}
.logo-cell img {
  max-width: 82%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition:
    filter 0.25s,
    opacity 0.25s;
}
.logo-cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.proof-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 70px;
}
.proof-notes span {
  font-size: 10px;
  color: var(--bronze);
}
.proof-notes h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 12px 0;
}
.proof-notes p {
  color: #67625b;
  font-size: 14px;
}

/* Final CTA */
.final-cta {
  background: var(--black);
  color: #fff;
}
.final-cta__grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 4vw;
}
.final-cta h2 {
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.92;
  margin: 0 0 42px;
}
.final-cta p {
  max-width: 610px;
  color: #c9c1b6;
  font-size: 20px;
  margin: 0 0 34px;
}
.final-cta .button {
  min-width: 240px;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 50px;
}
.footer-brand img {
  width: 90px;
}
.footer-brand p {
  font-family: var(--serif);
  font-size: 22px;
  color: #d8cfc2;
}
.site-footer nav {
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.footer-contact {
  font-size: 13px;
}
.footer-contact p {
  color: #8f887f;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  color: #827b72;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.mobile-sticky-cta {
  display: none;
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 12px;
  }
  .capability-grid {
    column-gap: 35px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat:nth-child(4),
  .stat:nth-child(5) {
    border-top: 1px solid rgba(17, 17, 15, 0.12);
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-copy {
    grid-column: 1/-1;
    max-width: 760px;
  }
  .founder--secondary {
    margin-top: 80px;
  }
  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .logo-cell:nth-child(3) {
    border-right: 0;
  }
  .logo-cell:nth-child(n + 4) {
    border-top: 1px solid rgba(17, 17, 15, 0.11);
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(100vw - 40px);
    --section: 84px;
  }
  body {
    font-size: 16px;
  }
  .site-header {
    height: 70px;
    padding: 0 20px;
    background: rgba(242, 238, 229, 0.86);
    backdrop-filter: blur(10px);
  }
  .site-header.scrolled {
    height: 64px;
  }
  .brand {
    width: 76px;
  }
  .brand-logo {
    max-width: 70px;
  }
  .brand-logo--light {
    display: none;
  }
  .site-header.on-dark:not(.scrolled) .brand-logo--dark {
    opacity: 1;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header.on-dark:not(.scrolled) {
    color: var(--black);
  }
  .hero {
    display: block;
    min-height: auto;
    padding-top: 96px;
    background: var(--ivory);
  }
  .hero__media {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    height: 58vh;
    min-height: 470px;
    margin: 42px auto 0;
    overflow: hidden;
  }
  .hero__media img {
    object-position: center center;
  }
  .hero__veil {
    display: none;
  }
  .hero__content {
    padding-top: 0;
  }
  .hero__title {
    font-size: clamp(58px, 17vw, 82px);
    margin-bottom: 24px;
  }
  .hero__lead {
    font-size: 17px;
    max-width: 90%;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .scroll-cue {
    display: none;
  }
  .split-intro,
  .process__intro,
  .fashion-hero,
  .network-intro,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }
  .split-intro {
    gap: 0;
  }
  .section-title {
    font-size: clamp(42px, 12vw, 58px);
    margin-bottom: 28px;
  }
  .signature-line {
    margin-top: 34px;
  }
  .capabilities {
    padding-top: 30px;
  }
  .section-heading {
    margin-bottom: 45px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .capability-card--fashion,
  .capability-card--specialised {
    padding-top: 0;
  }
  .capability-card__image,
  .capability-card--brand .capability-card__image,
  .capability-card--fashion .capability-card__image,
  .capability-card--events .capability-card__image,
  .capability-card--specialised .capability-card__image {
    aspect-ratio: 4/5;
  }
  .capability-card h3 {
    font-size: 42px;
  }
  .process__intro {
    margin-bottom: 35px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(17, 17, 15, 0.25);
    margin-left: 5px;
  }
  .process-steps li {
    padding: 0 0 40px 28px;
  }
  .process-steps li::before {
    top: 8px;
    left: -5px;
  }
  .process__closing {
    margin-top: 20px;
    font-size: 17px;
  }
  .fashion-main {
    order: -1;
    margin-bottom: 40px;
  }
  .fashion-main img {
    aspect-ratio: 4/3;
  }
  .fashion-process {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-top: 65px;
    margin-right: calc((100vw - var(--container)) / 2 * -1);
    padding-right: 20px;
    gap: 12px;
  }
  .fashion-process figure {
    min-width: 72vw;
    scroll-snap-align: start;
  }
  .fashion-process img {
    aspect-ratio: 4/5;
  }
  .process-note {
    font-size: 10px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .work-card,
  .work-card--wide {
    display: block;
    grid-column: auto;
    margin-bottom: 65px;
  }
  .work-card--wide a {
    display: block;
  }
  .work-card--wide figure {
    margin-bottom: 24px;
  }
  .work-card figure img,
  .work-card--large figure img {
    aspect-ratio: 4/3;
  }
  .network-intro {
    gap: 20px;
  }
  .network-copy {
    font-size: 17px;
  }
  .network-art {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 14px;
  }
  .network-art img {
    width: 1050px;
    max-width: none;
  }
  .smile-photo-band {
    min-height: 72vh;
  }
  .smile-photo-band__copy h2 {
    font-size: 48px;
  }
  .smile-logo {
    width: 120px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 28px 16px 28px 0;
  }
  .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(17, 17, 15, 0.12);
  }
  .stat:last-child {
    grid-column: 1/-1;
  }
  .smile-proof-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .smile-proof-grid figure:first-child {
    display: none;
  }
  .smile-statement {
    padding: 10px 0;
  }
  .smile-statement p {
    font-size: 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-copy {
    grid-column: auto;
    padding-top: 0;
  }
  .founder--secondary {
    margin-top: 20px;
  }
  .founder figure {
    aspect-ratio: 4/5;
  }
  .founder--primary figure img {
    object-position: center 25%;
  }
  .founder--secondary figure img {
    object-position: center 30%;
  }
  .logo-row {
    grid-template-columns: 1fr 1fr;
  }
  .logo-cell {
    height: 130px;
    padding: 32px 30px;
    border-bottom: 1px solid rgba(17, 17, 15, 0.1);
  }
  .logo-cell:nth-child(2n) {
    border-right: 0;
  }
  .logo-cell:nth-child(3) {
    border-right: 1px solid rgba(17, 17, 15, 0.1);
  }
  .logo-cell:last-child {
    grid-column: 1/-1;
    border-right: 0;
  }
  .proof-notes {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .proof-notes > div {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(17, 17, 15, 0.12);
  }
  .final-cta h2 {
    font-size: clamp(58px, 16vw, 78px);
    margin-top: 15px;
  }
  .final-cta p {
    font-size: 17px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .mobile-sticky-cta {
    position: fixed;
    display: flex;
    z-index: 70;
    bottom: 12px;
    left: 12px;
    right: 12px;
    min-height: 50px;
    background: var(--black);
    color: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
    transform: translateY(90px);
    transition: transform 0.3s;
  }
  .mobile-sticky-cta.is-visible {
    transform: none;
  }
  .mobile-menu:not([hidden]) {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .capability-card__image img,
  .work-card figure img,
  .button span,
  .text-link span {
    transition: none;
  }
}

/* =========================================================
   Phase 12E — Inner Page System
   ========================================================= */
.inner-page main {
  padding-top: 72px;
}
.inner-page .site-header {
  height: 72px;
  background: rgba(242, 238, 229, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 0 rgba(17, 17, 15, 0.08);
}
.inner-page .site-header .brand-logo--dark {
  opacity: 1 !important;
}
.inner-page .site-header .brand-logo--light {
  opacity: 0 !important;
}
.inner-page .site-header .desktop-nav {
  color: var(--black) !important;
}
.inner-page .site-header .nav-cta {
  border-color: rgba(17, 17, 15, 0.25) !important;
}
.desktop-nav a.is-active::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin: 0 0 24px;
}
.inner-hero {
  padding: clamp(70px, 8vw, 130px) 0;
  background: var(--ivory);
}
.inner-hero__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
}
.inner-hero__copy {
  max-width: 680px;
}
.inner-hero__title {
  font-size: clamp(68px, 7.5vw, 118px);
  margin: 0 0 34px;
}
.inner-hero__lead {
  font-size: clamp(19px, 1.5vw, 24px);
  color: #4e4a44;
  max-width: 640px;
  margin: 0 0 34px;
}
.inner-hero__media {
  margin: 0;
  overflow: hidden;
  background: #ddd;
}
.inner-hero__media img {
  width: 100%;
  aspect-ratio: 1.25/1;
  object-fit: cover;
}
.inner-photo-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #111;
}
.inner-photo-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-photo-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 15, 0.88) 0%,
    rgba(17, 17, 15, 0.54) 46%,
    rgba(17, 17, 15, 0.16) 80%
  );
}
.inner-photo-hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 9vh;
  color: #fff;
}
.inner-photo-hero__copy h1 {
  font-size: clamp(66px, 7vw, 112px);
  line-height: 0.94;
  margin: 0 0 26px;
  max-width: 980px;
}
.inner-photo-hero__copy > p:last-child {
  max-width: 680px;
  font-size: 21px;
  color: #ddd4c9;
}
.two-col-intro {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: end;
}
.chapter-list {
  display: grid;
  gap: clamp(90px, 11vw, 170px);
}
.chapter {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}
.chapter--reverse {
  grid-template-columns: 5fr 7fr;
}
.chapter--reverse figure {
  order: 2;
}
.chapter figure {
  margin: 0;
  overflow: hidden;
}
.chapter figure img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
}
.chapter__copy {
  max-width: 610px;
}
.chapter__num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.chapter h2 {
  font-size: clamp(48px, 5vw, 76px);
  margin: 0 0 24px;
}
.chapter p {
  font-size: 18px;
  color: #5b5751;
  margin: 0 0 24px;
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 15, 0.2);
}
.stage {
  padding: 35px 30px 20px 0;
}
.stage span,
.principle-grid span,
.special-grid span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bronze);
}
.stage h2 {
  font-size: clamp(38px, 4vw, 56px);
  margin: 15px 0 18px;
}
.stage p {
  color: #5e5952;
  font-size: 15px;
}
.case-preview {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}
.case-preview--reverse {
  grid-template-columns: 7fr 5fr;
}
.case-preview--reverse .case-preview__copy {
  order: 2;
}
.case-preview figure {
  margin: 0;
  overflow: hidden;
}
.case-preview figure img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
}
.case-preview__copy {
  max-width: 650px;
}
.inline-smile-logo {
  width: 150px;
  max-height: 80px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 36px;
}
.mini-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.mini-stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--earth);
}
.mini-stats b {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  display: block;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
}
.media-strip {
  display: grid;
  gap: 14px;
  margin-top: 70px;
}
.media-strip--3 {
  grid-template-columns: repeat(3, 1fr);
}
.media-strip figure {
  margin: 0;
}
.media-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.media-strip figcaption,
.case-process-grid figcaption,
.farm-gallery figcaption {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9c1b6;
  margin-top: 12px;
}
.representation-note {
  font-size: 12px;
  max-width: 860px;
  color: #7c756c;
  margin: -15px 0 50px;
  border-left: 1px solid var(--bronze);
  padding-left: 18px;
}
.representation-note--dark {
  color: #b9b0a6;
}
.process-story {
  display: grid;
  gap: clamp(70px, 9vw, 130px);
  margin-top: 80px;
}
.process-story__item {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}
.process-story__item--reverse {
  grid-template-columns: 5fr 7fr;
}
.process-story__item--reverse figure {
  order: 2;
}
.process-story__item figure {
  margin: 0;
}
.process-story__item img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
}
.process-story__item span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--bronze);
}
.process-story__item h3 {
  font-size: clamp(42px, 4.3vw, 68px);
  margin: 12px 0 20px;
}
.process-story__item p {
  font-size: 18px;
  color: #5e5952;
}
.logo-row--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
.word-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 15, 0.18);
  border-left: 1px solid rgba(17, 17, 15, 0.18);
}
.word-grid span {
  padding: 34px 25px;
  min-height: 120px;
  display: flex;
  align-items: end;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  border-right: 1px solid rgba(17, 17, 15, 0.18);
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}
.word-grid--large span {
  min-height: 150px;
  font-size: clamp(28px, 3vw, 44px);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 70px);
}
.principle-grid h3 {
  font-size: clamp(34px, 3vw, 46px);
  margin: 14px 0;
}
.principle-grid p {
  color: #5f5b55;
}
.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17, 17, 15, 0.18);
  border-left: 1px solid rgba(17, 17, 15, 0.18);
}
.special-grid article {
  padding: 45px;
  min-height: 280px;
  border-right: 1px solid rgba(17, 17, 15, 0.18);
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
}
.special-grid h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin: 14px 0 20px;
}
.special-grid p {
  color: #5d5952;
  max-width: 560px;
}
.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 60px 0 30px;
}
.gallery-3 figure {
  margin: 0;
}
.gallery-3 img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.filter-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 55px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.16);
  padding-bottom: 18px;
}
.filter-bar button {
  border: 0;
  background: transparent;
  padding: 0 0 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #766f66;
}
.filter-bar button.is-active {
  color: var(--black);
  border-bottom: 1px solid var(--bronze);
}
.work-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 6vw, 90px);
}
.work-index-card {
  transition: opacity 0.25s;
}
.work-index-card[hidden] {
  display: none;
}
.work-index-card figure {
  margin: 0 0 22px;
  overflow: hidden;
}
.work-index-card img {
  width: 100%;
  aspect-ratio: 1.3/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-index-card a:hover img {
  transform: scale(1.02);
}
.work-index-card p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--earth);
  margin: 0 0 10px;
}
.work-index-card h2 {
  font-size: clamp(40px, 4vw, 64px);
  margin: 0 0 12px;
}
.work-index-card span {
  color: #5e5952;
}
.vertical-process {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid rgba(17, 17, 15, 0.17);
}
.vertical-process li {
  display: grid;
  grid-template-columns: 1fr 4fr 5fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.17);
  align-items: center;
}
.vertical-process li > span {
  font-size: 10px;
  color: var(--bronze);
}
.vertical-process h3 {
  font-size: clamp(34px, 3.5vw, 54px);
  margin: 0;
}
.vertical-process p {
  margin: 0;
  color: #615c55;
}
.reassurance {
  max-width: 1100px;
}
.partner-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}
.partner-categories span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 12px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e2d8cb;
}
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17, 17, 15, 0.18);
  border-left: 1px solid rgba(17, 17, 15, 0.18);
}
.dual-cta a {
  padding: 50px;
  min-height: 300px;
  border-right: 1px solid rgba(17, 17, 15, 0.18);
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
  position: relative;
}
.dual-cta span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--earth);
}
.dual-cta h2 {
  font-size: clamp(40px, 4vw, 62px);
  margin: 55px 0 0;
}
.dual-cta b {
  position: absolute;
  right: 40px;
  bottom: 40px;
  font-size: 28px;
  color: var(--bronze);
}
.smile-about-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 7vw;
  align-items: center;
}
.smile-page-logo {
  max-width: 320px;
}
.event-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 12px;
}
.event-gallery figure {
  margin: 0;
}
.event-gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote-grid blockquote {
  margin: 0;
  padding: 45px;
  background: #e8e0d5;
}
.quote-grid p {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.16;
  margin: 0;
}
.quote-grid footer {
  margin-top: 28px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--earth);
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}
.leadership-grid article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
}
.leadership-grid article:nth-child(2) {
  margin-top: 130px;
  grid-template-columns: 1fr;
}
.leadership-grid figure {
  margin: 0;
}
.leadership-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.leadership-grid h2 {
  font-size: clamp(38px, 3.5vw, 56px);
  margin: 0 0 8px;
}
.leadership-grid .role {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bronze);
  font-size: 10px;
}
.leadership-grid article > div > p:last-child {
  color: #5e5952;
}
.conversation-hero {
  padding: clamp(95px, 10vw, 150px) 0 clamp(65px, 7vw, 110px);
  background: var(--paper);
}
.conversation-hero h1 {
  font-size: clamp(72px, 8vw, 126px);
  margin: 0 0 32px;
}
.conversation-section {
  padding-top: 80px;
}
.form-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}
.conversation-aside {
  position: sticky;
  top: 120px;
}
.conversation-aside h2 {
  font-size: clamp(42px, 4vw, 62px);
  margin: 0 0 30px;
}
.conversation-aside p {
  color: #5d5952;
}
.nwn-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.nwn-form fieldset {
  grid-column: 1/-1;
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}
.nwn-form legend {
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 24px;
}
.field {
  display: grid;
  gap: 8px;
}
.field--full {
  grid-column: 1/-1;
}
.field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--earth);
}
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.3);
  background: transparent;
  padding: 13px 0;
  font: inherit;
  color: var(--black);
  border-radius: 0;
}
.field textarea {
  border: 1px solid rgba(17, 17, 15, 0.2);
  padding: 16px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(169, 121, 69, 0.35);
  outline-offset: 3px;
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice-grid label {
  position: relative;
}
.choice-grid input {
  position: absolute;
  opacity: 0;
}
.choice-grid span {
  display: block;
  border: 1px solid rgba(17, 17, 15, 0.2);
  padding: 18px;
  min-height: 64px;
  cursor: pointer;
}
.choice-grid input:checked + span {
  border-color: var(--bronze);
  background: #e7ded1;
}
.choice-grid input:focus-visible + span {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.nwn-form .button {
  justify-self: start;
  margin-top: 12px;
}
.form-success {
  grid-column: 1/-1;
  border-left: 2px solid var(--botanical);
  padding: 14px 18px;
  background: #e5e6dc;
  color: #353b31;
}
.form-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.case-hero {
  padding: clamp(70px, 8vw, 130px) 0;
  background: var(--ivory);
}
.case-hero__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(55px, 7vw, 110px);
  align-items: end;
}
.case-hero h1 {
  font-size: clamp(70px, 8vw, 126px);
  line-height: 0.92;
  margin: 0 0 30px;
}
.case-hero__statement {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 37px);
  color: #5e574f;
  max-width: 560px;
}
.case-hero figure {
  margin: 0;
}
.case-hero figure img {
  width: 100%;
  aspect-ratio: 1.3/1;
  object-fit: cover;
}
.case-section {
  padding-block: clamp(85px, 8vw, 135px);
}
.case-section__grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 30px;
}
.case-number {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--bronze);
  margin-top: 10px;
}
.case-copy {
  max-width: 800px;
  font-size: 20px;
  color: #56524c;
}
.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.expertise-list span {
  padding: 10px 13px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.case-gallery {
  display: grid;
  gap: 14px;
}
.case-gallery--brand {
  grid-template-columns: 1fr 1fr;
}
.case-gallery--brand figure {
  margin: 0;
}
.case-gallery--brand figure:first-child {
  grid-column: 1/-1;
}
.case-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.case-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.case-process-grid figure {
  margin: 0;
}
.case-process-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.case-stats {
  margin-top: 70px;
}
.farm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.farm-gallery figure {
  margin: 0;
}
.farm-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.farm-gallery figcaption {
  color: var(--earth);
}

@media (max-width: 1100px) {
  .stage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .word-grid {
    grid-template-columns: 1fr 1fr;
  }
  .event-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .event-gallery img {
    height: 360px;
  }
  .case-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .leadership-grid article {
    grid-template-columns: 1fr;
  }
  .leadership-grid article:nth-child(2) {
    margin-top: 80px;
  }
  .special-grid article {
    padding: 34px;
  }
}
@media (max-width: 767px) {
  .inner-page main {
    padding-top: 64px;
  }
  .inner-page .site-header {
    height: 64px;
  }
  .inner-hero {
    padding: 55px 0 80px;
  }
  .inner-hero__grid,
  .chapter,
  .chapter--reverse,
  .case-preview,
  .case-preview--reverse,
  .process-story__item,
  .process-story__item--reverse,
  .two-col-intro,
  .smile-about-grid,
  .form-layout,
  .case-hero__grid,
  .case-section__grid {
    grid-template-columns: 1fr;
  }
  .inner-hero__title {
    font-size: clamp(54px, 15vw, 76px);
  }
  .inner-hero__media {
    order: -1;
    margin-bottom: 30px;
  }
  .inner-hero__media img {
    aspect-ratio: 4/3;
  }
  .inner-photo-hero {
    min-height: 74vh;
  }
  .inner-photo-hero__copy h1 {
    font-size: clamp(52px, 14vw, 74px);
  }
  .inner-photo-hero__copy > p:last-child {
    font-size: 17px;
  }
  .chapter--reverse figure,
  .process-story__item--reverse figure {
    order: 0;
  }
  .chapter-list {
    gap: 80px;
  }
  .chapter figure img,
  .process-story__item img,
  .case-preview figure img {
    aspect-ratio: 4/3;
  }
  .chapter h2 {
    font-size: 45px;
  }
  .stage-grid,
  .special-grid,
  .principle-grid,
  .work-index-grid,
  .dual-cta,
  .quote-grid,
  .leadership-grid,
  .case-gallery--brand,
  .farm-gallery {
    grid-template-columns: 1fr;
  }
  .media-strip--3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-right: -20px;
  }
  .media-strip--3 figure {
    min-width: 78vw;
    scroll-snap-align: start;
  }
  .logo-row--three {
    grid-template-columns: 1fr 1fr;
  }
  .word-grid {
    grid-template-columns: 1fr 1fr;
  }
  .word-grid span {
    min-height: 100px;
    padding: 25px 18px;
  }
  .word-grid--large span {
    min-height: 120px;
  }
  .principle-grid {
    gap: 40px;
  }
  .special-grid article {
    min-height: auto;
  }
  .gallery-3 {
    display: flex;
    overflow-x: auto;
    margin-right: -20px;
  }
  .gallery-3 figure {
    min-width: 78vw;
  }
  .filter-bar {
    gap: 16px;
  }
  .vertical-process li {
    grid-template-columns: 44px 1fr;
    gap: 10px 20px;
  }
  .vertical-process p {
    grid-column: 2;
  }
  .dual-cta a {
    min-height: 220px;
    padding: 32px;
  }
  .smile-about-grid {
    gap: 40px;
  }
  .event-gallery {
    grid-template-columns: 1fr;
  }
  .event-gallery img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .quote-grid blockquote {
    padding: 30px;
  }
  .leadership-grid article,
  .leadership-grid article:nth-child(2) {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .conversation-aside {
    position: static;
    margin-bottom: 30px;
  }
  .nwn-form,
  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .case-hero {
    padding: 60px 0 85px;
  }
  .case-hero h1 {
    font-size: clamp(56px, 15vw, 78px);
  }
  .case-hero figure {
    order: -1;
  }
  .case-hero figure img {
    aspect-ratio: 4/3;
  }
  .case-section__grid {
    gap: 6px;
  }
  .case-process-grid {
    display: flex;
    overflow-x: auto;
    margin-right: -20px;
  }
  .case-process-grid figure {
    min-width: 76vw;
  }
  .case-gallery--brand figure:first-child {
    grid-column: auto;
  }
  .case-gallery img {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .farm-gallery {
    display: flex;
    overflow-x: auto;
    margin-right: -20px;
  }
  .farm-gallery figure {
    min-width: 78vw;
  }
  .form-layout .section-title {
    font-size: 46px;
  }
}

/* =========================================================
   Phase 12F — Mobile & Responsive Refinement
   Desktop design above 1023px remains unchanged.
   ========================================================= */

/* Shared touch / responsive safeguards */
button,
a,
input,
textarea {
  touch-action: manipulation;
}
.button {
  max-width: 100%;
  text-align: center;
}
.footer-contact a {
  overflow-wrap: anywhere;
}
.word-grid span,
.special-grid article,
.principle-grid > *,
.stage-grid > *,
.smile-about-grid > *,
.case-section__grid > * {
  min-width: 0;
}
.word-grid span {
  overflow-wrap: anywhere;
}

/* Tablet: preserve the editorial layout, but remove compressed desktop navigation
   and allow dense two-column modules to breathe in portrait orientation. */
@media (max-width: 1023px) and (min-width: 768px) {
  :root {
    --container: min(92vw, 900px);
    --section: clamp(92px, 10vw, 128px);
  }
  .site-header {
    padding-inline: 4vw;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .brand {
    width: 82px;
  }
  .brand-logo {
    max-width: 78px;
    max-height: 40px;
  }
  .mobile-menu {
    padding: 112px 6vw 38px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu:not([hidden]) {
    display: flex;
  }
  .mobile-menu nav {
    gap: 15px;
  }
  .mobile-menu nav a {
    font-size: clamp(42px, 6.4vw, 60px);
  }
  .mobile-menu__cta {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: auto;
    width: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }
  .process-steps li:nth-child(n + 4) {
    border-top: 1px solid rgba(17, 17, 15, 0.15);
    padding-top: 28px;
  }
  .fashion-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fashion-main {
    order: -1;
  }
  .fashion-main img {
    aspect-ratio: 16/9;
  }
  .fashion-process {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
  }
  .fashion-process figure {
    min-width: 31vw;
    scroll-snap-align: start;
  }
  .work-card--wide {
    display: block;
  }
  .work-card--wide a {
    display: block;
  }
  .work-card--wide figure {
    margin-bottom: 24px;
  }
  .network-intro,
  .final-cta__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .smile-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inner-hero__grid,
  .chapter,
  .chapter--reverse,
  .case-preview,
  .case-preview--reverse,
  .process-story__item,
  .process-story__item--reverse,
  .two-col-intro,
  .smile-about-grid,
  .form-layout,
  .case-hero__grid,
  .case-section__grid {
    grid-template-columns: 1fr;
  }
  .inner-hero__media,
  .case-hero figure {
    order: -1;
  }
  .inner-hero__media img,
  .case-hero figure img {
    aspect-ratio: 16/9;
  }
  .chapter--reverse figure,
  .process-story__item--reverse figure {
    order: 0;
  }
  .chapter figure img,
  .process-story__item img,
  .case-preview figure img {
    aspect-ratio: 16/9;
  }
  .conversation-aside {
    position: static;
    margin-bottom: 30px;
  }
  .leadership-grid article:nth-child(2) {
    margin-top: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 76px;
  }
  body {
    overflow-x: hidden;
  }
  :root {
    --container: calc(100vw - 40px);
    --section: 84px;
  }

  /* Header & menu */
  .site-header {
    height: calc(70px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 20px 0;
  }
  .site-header.scrolled {
    height: calc(64px + env(safe-area-inset-top));
  }
  .brand {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .brand-logo {
    top: 50%;
    max-width: 70px;
    max-height: 36px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    transition: color 0.2s ease;
  }
  .menu-toggle span:not(.sr-only) {
    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.25px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.25px) rotate(-45deg);
  }
  .mobile-menu {
    padding: calc(96px + env(safe-area-inset-top)) 20px
      max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu:not([hidden]) {
    display: flex;
  }
  .mobile-menu nav {
    gap: 14px;
  }
  .mobile-menu nav a {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.03;
  }
  .mobile-menu__cta {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: auto;
    width: 100%;
    min-height: 56px;
  }
  body.menu-open .mobile-sticky-cta {
    transform: translateY(100px) !important;
  }

  /* Homepage hero: copy first, artwork second — the intended mobile composition. */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: calc(104px + env(safe-area-inset-top));
    background: var(--ivory);
  }
  .hero__content {
    order: 1;
    padding-top: 0;
  }
  .hero__media {
    order: 2;
    position: relative;
    width: calc(100% - 40px);
    height: clamp(420px, 118vw, 560px);
    min-height: 0;
    margin: 46px auto 0;
    overflow: hidden;
  }
  .hero__media img {
    object-position: center center;
  }
  .hero__title {
    font-size: clamp(56px, 16.5vw, 78px);
    line-height: 0.96;
  }
  .hero__lead {
    max-width: 100%;
    font-size: 17px;
  }
  .hero__actions {
    width: 100%;
    gap: 17px;
  }

  /* Typography & reading comfort */
  .section-title {
    font-size: clamp(40px, 11.6vw, 56px);
    line-height: 1;
  }
  .lead {
    font-size: 18px;
  }
  .capability-card h3 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 1.02;
  }
  .chapter h2 {
    font-size: clamp(38px, 11vw, 45px);
    line-height: 1.02;
  }
  .conversation-hero h1,
  .case-hero h1,
  .inner-hero__title {
    overflow-wrap: break-word;
  }
  .conversation-hero h1 {
    font-size: clamp(54px, 15vw, 74px);
    line-height: 0.95;
  }

  /* Horizontal editorial galleries */
  .fashion-process,
  .media-strip--3,
  .gallery-3,
  .case-process-grid,
  .farm-gallery,
  .network-art {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .fashion-process::-webkit-scrollbar,
  .media-strip--3::-webkit-scrollbar,
  .gallery-3::-webkit-scrollbar,
  .case-process-grid::-webkit-scrollbar,
  .farm-gallery::-webkit-scrollbar,
  .network-art::-webkit-scrollbar {
    display: none;
  }
  .fashion-process figure,
  .media-strip--3 figure,
  .gallery-3 figure,
  .case-process-grid figure,
  .farm-gallery figure {
    scroll-snap-stop: always;
  }
  .fashion-process {
    padding-bottom: 8px;
  }
  .media-strip--3,
  .gallery-3,
  .case-process-grid,
  .farm-gallery {
    padding-bottom: 10px;
  }
  .network-art {
    padding-bottom: 16px;
  }
  .network-art img {
    width: max(900px, 235vw);
  }

  /* Designed boards should remain legible instead of being aggressively cropped. */
  .inner-hero__media img[src*="network-13b"],
  .chapter img[src*="karinchathan-brand"],
  .case-preview img[src*="karinchathan-brand"],
  .case-gallery img[src*="karinchathan-brand"] {
    object-fit: contain;
    background: #e8dfd2;
  }

  /* SMilE Summit */
  .smile-photo-band {
    min-height: 68vh;
  }
  .smile-photo-band__copy {
    padding-bottom: 7vh;
  }
  .smile-photo-band__copy h2 {
    font-size: clamp(38px, 11.8vw, 48px);
    line-height: 1.02;
  }
  .smile-logo {
    width: min(120px, 42vw);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding-right: 12px;
  }
  .stat strong {
    font-size: clamp(50px, 16vw, 68px);
  }
  .smile-page-logo {
    width: min(280px, 100%);
    max-width: 100%;
  }

  /* Logos retain generous white space at all phone widths. */
  .logo-cell {
    height: 138px;
    padding: 38px 34px;
  }
  .logo-cell img {
    max-width: 72%;
    max-height: 54px;
  }

  /* Long category / expertise labels */
  .word-grid span {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.04;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .word-grid--large span {
    font-size: clamp(24px, 7.6vw, 32px);
  }
  .partner-categories span,
  .network-tags span {
    overflow-wrap: anywhere;
  }

  /* Forms: touch-friendly, no iOS zoom, CTA never cramped. */
  .field input,
  .field textarea {
    font-size: 16px;
    min-height: 48px;
  }
  .field textarea {
    min-height: 150px;
  }
  .choice-grid span {
    min-height: 58px;
    padding: 16px;
    display: flex;
    align-items: center;
  }
  .nwn-form .button {
    width: 100%;
    justify-self: stretch;
    min-height: 56px;
  }
  .form-success {
    font-size: 15px;
  }

  /* Final CTA / footer */
  .final-cta .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }
  .footer-contact a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    gap: 20px;
    align-items: flex-start;
  }
  .mobile-sticky-cta {
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 52px;
    padding-inline: 18px;
  }
}

@media (max-width: 359px) {
  :root {
    --container: calc(100vw - 32px);
  }
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero__media {
    width: calc(100% - 32px);
  }
  .hero__title {
    font-size: clamp(52px, 16vw, 62px);
  }
  .word-grid {
    grid-template-columns: 1fr;
  }
  .word-grid span,
  .word-grid--large span {
    min-height: 88px;
    font-size: 27px;
  }
  .logo-row {
    grid-template-columns: 1fr;
  }
  .logo-cell,
  .logo-cell:last-child {
    grid-column: auto;
    border-right: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat,
  .stat:last-child {
    grid-column: auto;
    border-top: 1px solid rgba(17, 17, 15, 0.12);
  }
  .stat:first-child {
    border-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Phase 12F narrow-screen edge alignment for horizontal galleries */
@media (max-width: 767px) {
  .media-strip--3,
  .gallery-3,
  .case-process-grid,
  .farm-gallery {
    margin-right: calc((100vw - var(--container)) / 2 * -1);
  }
}
.mobile-menu[hidden] {
  display: none !important;
}

/* Phase 12F mobile expertise/category grids — prioritise readable words over density. */
@media (max-width: 430px) {
  .word-grid {
    grid-template-columns: 1fr;
  }
  .word-grid span,
  .word-grid--large span {
    min-height: 92px;
    font-size: clamp(27px, 8vw, 32px);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

/* Phase 12G — live form states and bot-trap; preserves the approved form design. */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-error {
  grid-column: 1/-1;
  border-left: 2px solid #8f3d36;
  padding: 14px 18px;
  background: #eee0dc;
  color: #5c2925;
}
.nwn-form .button:disabled {
  opacity: 0.62;
  cursor: wait;
}
.thank-you-page,
body:has([data-thank-title]) {
  background: var(--ivory);
}
.thank-you-page main,
body:has([data-thank-title]) main {
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
}
.thank-you-page .conversation-hero,
body:has([data-thank-title]) .conversation-hero,
.thank-you {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(110px, 12vw, 170px) var(--pad) clamp(80px, 9vw, 130px);
  background: var(--ivory);
}
.thank-you-page .conversation-hero .container,
body:has([data-thank-title]) .conversation-hero .container,
.thank-you .container {
  width: min(90vw, 920px);
  max-width: 920px;
  margin: 0;
}
.thank-you-page .conversation-hero .eyebrow,
body:has([data-thank-title]) .conversation-hero .eyebrow,
.thank-you .eyebrow {
  color: var(--earth);
}
.thank-you-page .conversation-hero h1,
body:has([data-thank-title]) .conversation-hero h1,
.thank-you h1 {
  max-width: 10ch;
  margin: 0 0 28px;
  font-size: clamp(64px, 8vw, 118px);
}
.thank-you-page .conversation-hero .lead,
body:has([data-thank-title]) .conversation-hero .lead,
.thank-you .lead {
  max-width: 34em;
  margin: 0;
  color: #4e4a44;
}
.thank-you-page .hero__actions,
body:has([data-thank-title]) .hero__actions,
.thank-you .hero__actions,
.conversation-hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.thank-you-page .thank-next,
body:has([data-thank-title]) .thank-next {
  padding: clamp(72px, 8vw, 120px) var(--pad);
  background: var(--paper);
  border-top: 1px solid rgba(17, 17, 15, 0.08);
}
.thank-you-page .thank-next .container,
body:has([data-thank-title]) .thank-next .container {
  width: min(90vw, 1440px);
  margin-inline: auto;
}
.thank-you-page .thank-next .principle-grid,
body:has([data-thank-title]) .thank-next .principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: 28px;
}
.thank-you-page .thank-next h3,
body:has([data-thank-title]) .thank-next h3 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 12px 0 14px;
}
.thank-you-page .thank-next p,
body:has([data-thank-title]) .thank-next p {
  color: #5f5b55;
  max-width: 36em;
}
.thank-you-page .mobile-sticky-cta,
body:has([data-thank-title]) .mobile-sticky-cta {
  display: none !important;
}
@media (max-width: 767px) {
  .thank-you-page main,
  body:has([data-thank-title]) main {
    min-height: calc(100svh - 64px);
  }
  .thank-you-page .conversation-hero,
  body:has([data-thank-title]) .conversation-hero,
  .thank-you {
    padding: 90px 20px 70px;
  }
  .thank-you-page .conversation-hero h1,
  body:has([data-thank-title]) .conversation-hero h1,
  .thank-you h1 {
    font-size: clamp(52px, 14vw, 72px);
  }
  .thank-you-page .hero__actions,
  body:has([data-thank-title]) .hero__actions,
  .thank-you .hero__actions,
  .conversation-hero .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .thank-you-page .hero__actions .button,
  body:has([data-thank-title]) .hero__actions .button,
  .thank-you .hero__actions .button,
  .conversation-hero .hero__actions .button {
    width: 100%;
    min-height: 56px;
  }
  .thank-you-page .thank-next,
  body:has([data-thank-title]) .thank-next {
    padding: 64px 20px 80px;
  }
  .thank-you-page .thank-next .principle-grid,
  body:has([data-thank-title]) .thank-next .principle-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
