/* ==========================================================================
   NABS Beauty — site styles (shared by every page)
   Reference: 1440px desktop · 900px tablet breakpoint · 390px mobile reference · 560px mobile breakpoint
   Palette and typefaces follow the NABS brand guidelines.
   Home rhythm: dark hero slider → smoke → white → smoke → white → dark → white → nude → dark → darkest footer
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-brown: #2B2422;   /* Deep Warm Brown */
  --c-ivory: #F5EFEA;   /* Warm Ivory */
  --c-nude:  #D8C2B5;   /* Nude Beige */
  --c-rose:  #A27061;   /* Dusty Rose */
  --c-warm:  #FFFAF7;   /* Warm White */
  --c-white: #FFFFFF;   /* Pure White */
  --c-dark:  #1D1918;   /* Dark Brown */

  --text: var(--c-brown);
  --text-soft: rgba(43, 36, 34, 0.72);
  --line: rgba(43, 36, 34, 0.14);
  --line-strong: rgba(43, 36, 34, 0.32);
  --accent: var(--c-rose);
  --surface: var(--c-ivory);

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Type scale — 1.25 modular scale from a 17px body at the 1440px reference
     17 · 21 · 26 · 33 · 42 · 52 · 66 · 84, fluid down to the 390px reference */
  --fs-hero:      clamp(2.75rem, 1.3rem + 4.4vw, 5.25rem);      /* 44 → 84 */
  --fs-h2:        clamp(2rem, 1.15rem + 2.15vw, 3.25rem);        /* 32 → 52 */
  --fs-h3:        clamp(1.375rem, 1.15rem + 0.55vw, 1.625rem);   /* 22 → 26 */
  --fs-h4:        clamp(1.2rem, 1.05rem + 0.35vw, 1.3125rem);    /* 19 → 21 */
  --fs-statement: clamp(1.6rem, 1rem + 1.7vw, 2.625rem);         /* 26 → 42 */
  --fs-body:      clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);  /* 15 → 17 */
  --fs-small:     0.875rem;                                       /* 14 */
  --fs-label:     0.8125rem;                                      /* 13 */

  --container: 1380px;
  --gutter: clamp(20px, 4.2vw, 60px);
  --section-y: clamp(72px, 7.5vw, 112px);
  --header-h: 88px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-ink: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dd { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
[id] { scroll-margin-top: 80px; } /* shrunken header (72px) + breathing room */

/* Lenis smooth scrolling (recommended base rules) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis:not(.lenis-autoToggle).lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent], .lenis [data-lenis-prevent-wheel], .lenis [data-lenis-prevent-touch] { overscroll-behavior: contain; }
.lenis.lenis-smooth iframe { pointer-events: none; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  padding: 0.75rem 1rem; background: var(--c-brown); color: var(--c-ivory); border-radius: var(--radius);
  font-size: var(--fs-small);
}
.skip-link:focus { top: 1rem; }

/* Phosphor icons inherit size/colour from context */
[class^="ph-"], [class*=" ph-"] { line-height: 1; vertical-align: middle; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.bg-ivory { background: var(--c-ivory); }
.bg-warm  { background: var(--c-warm); }
.bg-nude  { background: var(--c-nude); }
.bg-brown { background: var(--c-brown); }
.bg-dark  { background: var(--c-dark); }
.on-dark {
  --text: var(--c-ivory);
  --text-soft: rgba(245, 239, 234, 0.74);
  --line: rgba(245, 239, 234, 0.16);
  --line-strong: rgba(245, 239, 234, 0.4);
  --accent: var(--c-nude);
  color: var(--text);
}

/* ---------- Typography ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.005em;
  max-width: 20ch;
  text-wrap: balance;
}
.section-text { color: var(--text-soft); max-width: 58ch; margin-top: 1.25rem; }
.section-text + .section-text { margin-top: 0.9rem; }
.section-intro { color: var(--text-soft); max-width: 46ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.04em; color: var(--text);
  margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }
.list-title {
  font-family: var(--font-body); font-weight: 500; font-size: var(--fs-label); letter-spacing: 0.04em;
  color: var(--text); margin-top: 2rem; margin-bottom: 0.4rem;
}
.list-lines li { padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: var(--fs-small); line-height: 1.5; }
.list-lines--2col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 2rem; }

/* ---------- Buttons — ink-drop fill + flipping label ---------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--text); --btn-border: var(--line-strong);
  --btn-fill: var(--c-brown); --btn-fill-fg: var(--c-ivory);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.6rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em; line-height: 1;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-border); white-space: nowrap;
  transition: color 0.45s var(--ease-ink), border-color 0.45s var(--ease-ink), transform 0.4s var(--ease);
}
.btn::before {
  content: ""; position: absolute; left: 50%; bottom: -10%; z-index: -1;
  width: 160%; aspect-ratio: 1; border-radius: 50%;
  background: var(--btn-fill);
  transform: translate(-50%, 100%) scale(0.2);
  transition: transform 0.65s var(--ease-ink);
}
.btn:hover, .btn:focus-visible { color: var(--btn-fill-fg); border-color: var(--btn-hover-border, var(--btn-fill)); transform: translateY(-1px); }
.btn:hover::before, .btn:focus-visible::before { transform: translate(-50%, 18%) scale(1); }
.btn i { position: relative; z-index: 1; font-size: 1.2em; transition: transform 0.45s var(--ease-ink); }
.btn:hover i { transform: translateX(3px); }
/* The real text stays in the DOM (screen readers, no-CSS) but is drawn transparent; two absolutely
   positioned copies of it flip upward on hover. */
.btn__label { position: relative; z-index: 1; display: inline-block; overflow: hidden; line-height: 1.1; color: transparent; }
.btn__label::before, .btn__label::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; color: var(--btn-fg);
  transition: transform 0.55s var(--ease-ink), color 0.45s var(--ease-ink);
}
.btn__label::after { top: 100%; }
.btn:hover .btn__label::before, .btn:focus-visible .btn__label::before { transform: translateY(-125%); color: var(--btn-fill-fg); }
.btn:hover .btn__label::after, .btn:focus-visible .btn__label::after { transform: translateY(-100%); color: var(--btn-fill-fg); }
.btn--small { padding: 0.8rem 1.2rem; }
.btn--block { width: 100%; }
.btn--primary { --btn-bg: var(--c-brown); --btn-fg: var(--c-ivory); --btn-border: var(--c-brown); --btn-fill: var(--c-ivory); --btn-fill-fg: var(--c-brown); }
.btn--light   { --btn-bg: var(--c-ivory); --btn-fg: var(--c-brown); --btn-border: var(--c-ivory); --btn-fill: var(--c-brown); --btn-fill-fg: var(--c-ivory); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--text); --btn-border: var(--line-strong); --btn-fill: var(--c-brown); --btn-fill-fg: var(--c-ivory); }
.on-dark .btn--outline { --btn-fill: var(--c-ivory); --btn-fill-fg: var(--c-brown); }
.on-dark .btn--light, .tile .btn--light { --btn-fill: var(--c-dark); --btn-fill-fg: var(--c-ivory); --btn-hover-border: var(--c-ivory); }

.link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em;
  padding-bottom: 0.3rem; border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link:hover { color: var(--accent); border-color: currentColor; }
.link i { font-size: 1.15em; }

.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line-strong); color: var(--text);
  font-size: 1.35rem; transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.icon-btn:hover { background: var(--c-brown); color: var(--c-ivory); border-color: var(--c-brown); }
.on-dark .icon-btn:hover { background: var(--c-ivory); color: var(--c-brown); border-color: var(--c-ivory); }

/* ---------- Header (brand primary #A27061 bar over the hero, solid ivory bar once scrolled) ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  --text: var(--c-ivory);
  --line-strong: rgba(245, 239, 234, 0.42);
  color: var(--text); background: var(--c-rose);
  transition: height 0.4s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.header::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: rgba(43, 36, 34, 0.14);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.header.is-scrolled {
  --text: var(--c-brown);
  --line-strong: rgba(43, 36, 34, 0.32);
  height: 72px; background: rgba(245, 239, 234, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.header.is-scrolled::after { opacity: 1; }
.header .icon-btn:hover { background: var(--text); color: var(--c-brown); border-color: var(--text); }
.header.is-scrolled .icon-btn:hover { color: var(--c-ivory); }
.header .btn--outline { --btn-fill: var(--text); --btn-fill-fg: var(--c-brown); }
.header.is-scrolled .btn--outline { --btn-fill-fg: var(--c-ivory); }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; color: var(--text); transition: color 0.4s var(--ease); }
.brand__mark { width: 118px; height: auto; aspect-ratio: 3104 / 976; display: block; fill: currentColor; }
.nav__list { display: flex; gap: clamp(1.4rem, 2.2vw, 2.4rem); }
.nav__link {
  position: relative; display: inline-block; padding: 0.4rem 0;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em; color: var(--text);
  transition: color 0.4s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--c-rose); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
.header__wa, .menu-btn { display: none; }

/* ---------- Drawer (mobile menu, slides in from the left) ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(29, 25, 24, 0.55); opacity: 0; transition: opacity 0.4s var(--ease); }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(86vw, 400px);
  background: var(--c-ivory); color: var(--c-brown);
  --text: var(--c-brown); --line-strong: rgba(43, 36, 34, 0.32);
  display: flex; flex-direction: column; gap: 2rem;
  padding: 0 clamp(24px, 6vw, 36px) clamp(24px, 5vw, 36px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: translateX(-100%); transition: transform 0.55s var(--ease);
  box-shadow: 24px 0 60px rgba(29, 25, 24, 0.18);
}
.drawer.is-open .drawer__panel { transform: none; }
html.js.has-gsap .drawer__panel { transition: none; transform: none; }
html.js.has-gsap .drawer__backdrop { transition: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; height: 72px; flex: none; }
.drawer__head .brand { color: var(--c-brown); }
.drawer__head .brand__mark { width: 100px; }
.drawer__links li + li { border-top: 1px solid var(--line); }
.drawer__links a {
  display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.75rem, 7vw, 2.25rem); line-height: 1.15;
}
.drawer__links a:hover, .drawer__links a[aria-current="page"] { color: var(--c-rose); }
.drawer__links a[aria-current="page"]::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-rose); }
.drawer__foot { margin-top: auto; display: grid; gap: 1.5rem; }
.drawer__contact { display: grid; gap: 0.6rem; font-size: var(--fs-small); }
.drawer__contact a { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-soft); }
.drawer__contact i { font-size: 1.2rem; color: var(--c-rose); }
.drawer__tagline { width: 180px; height: auto; aspect-ratio: 2260 / 200; color: var(--c-rose); fill: currentColor; }

/* ---------- Imagery ---------- */
.bleed__media img, .slide__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
html.js.has-gsap .bleed__media img, html.js.has-gsap .slide__media img { inset: -6% 0; height: 112%; }

/* ---------- Hero slider — dark, full-bleed ---------- */
.hero { position: relative; overflow: hidden; }
.slider { position: relative; }
.slider__track { display: grid; }
.slide {
  grid-area: 1 / 1;
  display: grid; grid-template-columns: 46% 54%;
  min-height: clamp(620px, 100svh, 960px);
  visibility: hidden; opacity: 0;
  transition: opacity 2.2s var(--ease), visibility 2.2s;
}
.slide.is-active { visibility: visible; opacity: 1; position: relative; z-index: 1; }
html.js.has-gsap .slide { transition: none; }
.slide--reverse { grid-template-columns: 54% 46%; }
.slide--reverse .slide__media { order: -1; }
.slide__copy {
  display: flex; align-items: center;
  padding: calc(var(--header-h) + clamp(40px, 6vw, 88px)) clamp(32px, 5vw, 80px) clamp(56px, 7vw, 96px) max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.slide--reverse .slide__copy {
  padding-left: clamp(32px, 5vw, 80px);
  padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.slide__inner { position: relative; max-width: 560px; }
.slide--reverse .slide__inner { margin-left: auto; }
.slide__media { position: relative; overflow: hidden; background: var(--c-dark); }
.slide__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(43, 36, 34, 0.42), rgba(43, 36, 34, 0) 26%), linear-gradient(90deg, rgba(43, 36, 34, 0.32), rgba(43, 36, 34, 0) 26%);
}
.slide--reverse .slide__media::after {
  background: linear-gradient(180deg, rgba(43, 36, 34, 0.42), rgba(43, 36, 34, 0) 26%), linear-gradient(270deg, rgba(43, 36, 34, 0.32), rgba(43, 36, 34, 0) 26%);
}
.hero__intro { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.04em; color: var(--c-nude); margin-bottom: clamp(20px, 2.4vw, 32px); }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-hero); line-height: 1.02; letter-spacing: -0.01em;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__line > span { display: inline-block; }
.hero__lead { color: var(--text-soft); max-width: 46ch; margin-top: clamp(20px, 2.4vw, 32px); }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: clamp(28px, 3vw, 40px); }
.hero__tagline { display: block; width: 170px; height: auto; aspect-ratio: 2260 / 200; color: var(--c-nude); fill: currentColor; margin-top: clamp(32px, 3.5vw, 48px); }

/* Shared arrow buttons (hero slider + services carousel): visible on hover / focus */
.slider__arrow {
  position: absolute; top: 50%; z-index: 5; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.35rem;
  color: var(--c-ivory); background: rgba(43, 36, 34, 0.38); border: 1px solid rgba(245, 239, 234, 0.45);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.slider__arrow--prev { left: clamp(16px, 2vw, 32px); }
.slider__arrow--next { right: clamp(16px, 2vw, 32px); }
.slider:hover .slider__arrow, .slider:focus-within .slider__arrow,
.carousel:hover .slider__arrow, .carousel:focus-within .slider__arrow { opacity: 1; }
.slider__arrow:hover { background: var(--c-ivory); color: var(--c-brown); }
@media (hover: none) { .slider__arrow { opacity: 0.85; width: 44px; height: 44px; } }

/* ---------- Inner pages: solid header, simple breadcrumb strip, then the page hero ---------- */
body:not([data-page="home"]) .header { --text: var(--c-brown); --line-strong: rgba(43, 36, 34, 0.32); background: var(--c-ivory); }
body:not([data-page="home"]) .header .btn--outline { --btn-fill-fg: var(--c-ivory); }
body:not([data-page="home"]) .header .icon-btn:hover { color: var(--c-ivory); }
body:not([data-page="home"]) .header::after { opacity: 1; }
/* Page banner — background image, title, subtitle and breadcrumb trail */
.page-banner {
  position: relative; overflow: hidden; margin-top: var(--header-h);
  min-height: clamp(300px, 34vw, 440px); display: grid; align-items: center;
  background: var(--c-brown); text-align: center;
}
.page-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43, 36, 34, 0.62), rgba(43, 36, 34, 0.8)); }
.page-banner__inner { position: relative; z-index: 1; display: grid; justify-items: center; padding-block: clamp(56px, 6vw, 88px); }
.page-banner__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 1.4rem + 3.4vw, 4.25rem); line-height: 1.05; letter-spacing: -0.005em; }
.page-banner__subtitle { color: var(--c-nude); max-width: 56ch; margin-top: 1rem; font-size: var(--fs-body); line-height: 1.65; }
.crumbs { margin-top: clamp(20px, 2.4vw, 32px); font-size: var(--fs-label); letter-spacing: 0.03em; }
.crumbs__list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6rem; }
.crumbs__item { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 500; }
.crumbs__item + .crumbs__item::before { content: "/"; color: var(--c-rose); font-weight: 400; }
.crumbs__link { color: var(--text-soft); font-weight: 400; transition: color 0.3s var(--ease); }
.crumbs__link:hover { color: var(--text); }
.intro__roles { margin-top: clamp(24px, 2.6vw, 36px); font-size: var(--fs-label); letter-spacing: 0.06em; color: var(--c-rose); }
.placeholder { text-align: center; display: grid; justify-items: center; }
.placeholder .philosophy__mark { margin: 0 auto clamp(20px, 2.4vw, 32px); }
.placeholder .philosophy__statement { margin-inline: auto; }
.placeholder .section-text { margin-inline: auto; }
.placeholder .actions { justify-content: center; }

/* ---------- Signature approach band (smoke) ---------- */
.values-band { padding-block: clamp(28px, 3.2vw, 44px); border-bottom: 1px solid var(--line); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); }
.values__item { padding: 0.25rem clamp(16px, 2.5vw, 40px) 0.25rem 0; }
.values__item + .values__item { border-left: 1px solid var(--line); padding-left: clamp(16px, 2.5vw, 40px); }
.values__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.1; margin-bottom: 0.3rem; }
.values__item dd { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.55; }

/* ---------- Full-bleed split sections (image flush top-to-bottom) ---------- */
.bleed { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: min(100svh, 880px); overflow: hidden; }
.bleed__media { position: relative; overflow: hidden; background: var(--c-nude); }
.on-dark .bleed__media { background: var(--c-dark); }
.bleed__copy {
  position: relative; display: flex; align-items: center; overflow: hidden;
  padding: clamp(64px, 7vw, 104px) clamp(28px, 6vw, 104px);
}
.bleed:not(.bleed--reverse) .bleed__copy { padding-right: max(var(--gutter), calc(100% - var(--container) / 2)); }
.bleed--reverse .bleed__media { order: 2; }
.bleed--reverse .bleed__copy { order: 1; padding-left: max(var(--gutter), calc(100% - var(--container) / 2)); }
.bleed__inner { position: relative; width: 100%; max-width: 600px; }
.bleed--reverse .bleed__inner { margin-left: auto; }
.bleed .section-title { max-width: 18ch; }

/* ---------- Contained tall split — image touches the section's top and bottom, inset from the sides ---------- */
.split-tall__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 6vw, 96px); align-items: stretch; min-height: min(100svh, 820px); }
.split-tall__media { position: relative; overflow: hidden; background: var(--c-nude); }
.on-dark .split-tall__media { background: var(--c-dark); }
.split-tall__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
html.js.has-gsap .split-tall__media img { inset: -6% 0; height: 112%; }
.split-tall__copy { display: flex; align-items: center; padding-block: clamp(64px, 7vw, 104px); }
.split-tall__inner { width: 100%; max-width: 560px; }
.split-tall--reverse .split-tall__media { order: 2; }
.split-tall .section-title { max-width: 18ch; }

/* Philosophy — the copy spans the image's full height: label at the top, statement in the middle, flow strip at the bottom */
.philosophy .split-tall__copy { padding-block: clamp(48px, 5.5vw, 80px); align-items: stretch; }
.philosophy__inner { position: relative; isolation: isolate; max-width: 620px; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(32px, 4vw, 56px); }
.philosophy__watermark {
  position: absolute; right: -10%; top: -2%; z-index: -1; width: 56%; height: auto; aspect-ratio: 2040 / 1825;
  color: var(--c-nude); fill: currentColor; opacity: 0.42; pointer-events: none;
}
.philosophy__top { display: flex; align-items: center; gap: 1.1rem; }
.philosophy__mark { width: 40px; height: auto; aspect-ratio: 2040 / 1825; color: var(--c-rose); fill: currentColor; display: block; flex: none; }
.philosophy__by { display: inline-flex; align-items: center; gap: 0.75rem; font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.04em; }
.philosophy__by::before { content: ""; width: 28px; height: 1px; background: var(--c-rose); }
.philosophy__statement {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 1.15rem + 2.4vw, 3.375rem); line-height: 1.16; letter-spacing: -0.005em;
  max-width: 19ch; text-wrap: balance;
}
.philosophy .section-text { max-width: 50ch; margin-top: clamp(20px, 2.4vw, 32px); }
.flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow__step { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.15rem 0.75rem 1.15rem 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 0.9rem + 0.35vw, 1.15rem); line-height: 1.1; white-space: nowrap; }
.flow__step + .flow__step { border-left: 1px solid var(--line); padding-left: 0.85rem; }
.flow__step i { font-size: 1.5rem; color: var(--c-rose); flex: none; }
.philosophy__tagline { display: block; width: 190px; height: auto; aspect-ratio: 2260 / 200; color: var(--c-rose); fill: currentColor; margin-top: clamp(20px, 2.4vw, 32px); }

/* About signature */
.signature { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: center; }
.signature__mark { width: 60px; height: auto; aspect-ratio: 2040 / 1825; color: var(--c-rose); fill: currentColor; }
.signature__name { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.75rem; line-height: 1.1; }
.signature__role { color: var(--text-soft); font-size: var(--fs-small); margin-top: 0.2rem; }
.signature__links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; margin-top: 0.9rem; }

/* Why NABS — the NABS promise */
.why { --line: rgba(43, 36, 34, 0.18); --line-strong: rgba(43, 36, 34, 0.4); --text-soft: rgba(43, 36, 34, 0.76); }
.promise { position: relative; overflow: hidden; margin-top: clamp(28px, 3vw, 40px); padding: clamp(24px, 2.6vw, 36px); background: var(--c-warm); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(43, 36, 34, 0.12); }
.promise__mark { position: absolute; right: -8%; top: -10%; width: 40%; height: auto; aspect-ratio: 2040 / 1825; color: var(--c-nude); fill: currentColor; opacity: 0.45; pointer-events: none; }
.promise__title { position: relative; font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 0.75rem; }
.promise__list { position: relative; }
.promise__list li { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; padding: 0.75rem 0; border-top: 1px solid var(--line); font-size: var(--fs-small); line-height: 1.55; }
.promise__list i { font-size: 1.15rem; color: var(--c-rose); margin-top: 0.15rem; }
.promise .btn { margin-top: 1.5rem; }

/* Contact */
.contact .bleed__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43, 36, 34, 0) 60%, rgba(43, 36, 34, 0.55) 100%); pointer-events: none; z-index: 1; }
.contact__stroke { position: absolute; right: -4%; top: 22px; width: 52%; height: 120px; color: var(--c-rose); opacity: 0.6; pointer-events: none; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact__details { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); font-size: var(--fs-small); }
.contact__details li { display: flex; align-items: center; gap: 0.7rem; }
.contact__details i { font-size: 1.25rem; color: var(--accent); flex: none; }
.contact__details a:hover { color: var(--accent); }

/* ---------- About page ---------- */
.brand-story__head { text-align: center; display: grid; justify-items: center; }
.brand-story__head .philosophy__mark { margin: 0 auto clamp(20px, 2.4vw, 32px); }
.brand-story__head .section-title { max-width: 20ch; }
.brand-story__text { max-width: 62ch; text-align: center; }
.brand-story__positioning { margin-top: clamp(20px, 2.4vw, 32px); font-family: var(--font-display); font-style: italic; font-size: var(--fs-h3); color: var(--c-rose); }
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(48px, 5vw, 72px); border-top: 1px solid var(--line); }
.pillar { padding: clamp(24px, 2.6vw, 36px) clamp(16px, 2vw, 32px) 0; }
.pillar:first-child { padding-left: 0; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar__icon { font-size: 1.6rem; color: var(--c-rose); display: block; margin-bottom: 1rem; }
.pillar__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 0.4rem; }
.pillar p { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.6; max-width: 30ch; }

.mission__block { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding-top: clamp(20px, 2.2vw, 28px); margin-top: clamp(20px, 2.2vw, 28px); border-top: 1px solid var(--line); }
.mission__icon { font-size: 1.6rem; color: var(--accent); margin-top: 0.2rem; }
.mission__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 0.5rem; }
.mission__block p { color: var(--text-soft); font-size: var(--fs-small); line-height: 1.65; }
.mission__block p + p { margin-top: 0.6rem; }

.audience__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(20px, 2.5vw, 36px); margin-top: clamp(24px, 2.6vw, 36px); border-top: 1px solid var(--line); }
.audience__item { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.audience__item i { font-size: 1.35rem; color: var(--c-rose); margin-top: 0.15rem; }
.audience__item h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.2; margin-bottom: 0.2rem; }
.audience__item p { font-size: var(--fs-label); color: var(--text-soft); line-height: 1.55; }


/* ---------- Contact page ---------- */
.contact-page__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-page__aside .section-title { max-width: 16ch; }
.channels { margin-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line); }
.channel { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.channel > i { font-size: 1.5rem; color: var(--c-rose); margin-top: 0.1rem; }
.channel h3 { font-family: var(--font-body); font-weight: 500; font-size: var(--fs-label); letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 0.2rem; }
.channel a, .channel span { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.2; color: var(--text); }
.channel a { border-bottom: 1px solid transparent; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.channel a:hover { color: var(--c-rose); border-color: currentColor; }
.channel p { font-size: var(--fs-small); color: var(--text-soft); margin-top: 0.2rem; }

.enquiry { position: relative; overflow: hidden; padding: clamp(28px, 3.2vw, 48px); background: var(--c-ivory); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(43, 36, 34, 0.08); }
.enquiry__mark { position: absolute; right: -7%; top: -9%; width: 34%; height: auto; aspect-ratio: 2040 / 1825; color: var(--c-nude); fill: currentColor; opacity: 0.35; pointer-events: none; }
.enquiry__title { position: relative; font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h2); line-height: 1.08; }
.enquiry__intro { position: relative; color: var(--text-soft); font-size: var(--fs-small); margin-top: 0.75rem; max-width: 52ch; }
.form { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px) clamp(20px, 2.4vw, 36px); margin-top: clamp(24px, 2.6vw, 36px); }
.field { display: grid; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  padding: 0.7rem 0; font: inherit; font-size: var(--fs-small); color: var(--text); transition: border-color 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(43, 36, 34, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--c-rose); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.field textarea { resize: vertical; min-height: 6.5rem; line-height: 1.6; }
.field input[type="date"] { color-scheme: light; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 1.75rem; cursor: pointer; }
.select select:invalid { color: rgba(43, 36, 34, 0.55); }
.select i { position: absolute; right: 0; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--c-rose); font-size: 1.1rem; }
.field.is-invalid input, .field.is-invalid select { border-bottom-color: #9A4A3C; }
.form__error { grid-column: 1 / -1; font-size: var(--fs-small); color: #9A4A3C; }
.form__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.form__note { font-size: var(--fs-label); color: var(--text-soft); }

.facts__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(28px, 3vw, 48px); }
.fact { padding: clamp(24px, 2.4vw, 32px) 0; border-top: 1px solid var(--line); }
.fact i { font-size: 1.6rem; color: var(--accent); display: block; margin-bottom: 1rem; }
.fact h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 0.4rem; }
.fact p { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.6; max-width: 36ch; }

.faq__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__head .section-title { max-width: 14ch; }
.faq__list { border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.15rem 0; font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.2;
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; flex: none; width: 28px; height: 28px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; font-family: var(--font-body); font-size: 1rem; color: var(--c-rose); transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease); }
.faq__item[open] summary::after { content: "–"; background: var(--c-rose); color: var(--c-ivory); border-color: var(--c-rose); }
.faq__item summary:hover { color: var(--c-rose); }
.faq__answer { padding: 0 3rem 1.25rem 0; }
.faq__answer p { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.7; max-width: 60ch; }

/* ---------- Gallery page ---------- */
.gallery__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; margin-bottom: clamp(28px, 3vw, 40px); }
.gallery__head .section-title { max-width: 16ch; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; padding-bottom: clamp(20px, 2.4vw, 32px); margin-bottom: clamp(24px, 2.6vw, 36px); border-bottom: 1px solid var(--line); }
.filter {
  padding: 0.7rem 1.1rem; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em; color: var(--text-soft);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--c-rose); }
.filter.is-active { background: var(--c-brown); border-color: var(--c-brown); color: var(--c-ivory); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(220px, 24vw, 340px); grid-auto-flow: dense; gap: clamp(12px, 1.4vw, 20px); }
.shot { position: relative; }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot.is-hidden { display: none; }
.shot__btn { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; border-radius: var(--radius); background: var(--c-nude); color: var(--c-ivory); text-align: left; cursor: zoom-in; }
.shot__btn img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; transition: transform 1.1s var(--ease); }
.shot__btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43, 36, 34, 0) 55%, rgba(43, 36, 34, 0.72) 100%); opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none; }
.shot__meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: grid; gap: 0.2rem; padding: clamp(16px, 1.6vw, 24px); transform: translateY(12px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s var(--ease); }
.shot__tag { font-size: var(--fs-label); letter-spacing: 0.04em; color: var(--c-nude); }
.shot__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); line-height: 1.2; }
.shot__btn:hover img, .shot__btn:focus-visible img { transform: scale(1.05); }
.shot__btn:hover::after, .shot__btn:focus-visible::after, .shot__btn:hover .shot__meta, .shot__btn:focus-visible .shot__meta { opacity: 1; }
.shot__btn:hover .shot__meta, .shot__btn:focus-visible .shot__meta { transform: none; }
.shot__btn:focus-visible { outline-offset: -4px; }
@media (hover: none) { .shot__btn::after, .shot__meta { opacity: 1; transform: none; } }
.gallery__empty { margin-top: 2rem; color: var(--text-soft); font-size: var(--fs-small); }

.social__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.social__grid .section-title { max-width: 16ch; }
.social__mark { width: min(100%, 320px); height: auto; aspect-ratio: 2040 / 1825; color: var(--c-nude); fill: currentColor; opacity: 0.5; justify-self: end; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(29, 25, 24, 0.94); }
.lightbox__dialog { position: relative; width: min(100% - 2 * var(--gutter), 1180px); height: min(100svh - 2 * clamp(56px, 8vh, 96px), 900px); display: flex; flex-direction: column; align-items: center; justify-content: center; outline: none; }
.lightbox__figure { position: relative; margin: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; min-height: 0; }
.lightbox__img { display: block; flex: 0 1 auto; min-height: 0; max-width: 100%; max-height: calc(100% - 3.5rem); width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4); }
.lightbox__caption { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 0.5rem 1.25rem; color: var(--c-ivory); text-align: center; }
.lightbox__tag { font-size: var(--fs-label); letter-spacing: 0.04em; color: var(--c-nude); }
.lightbox__text { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); }
.lightbox__count { font-size: var(--fs-label); color: rgba(245, 239, 234, 0.6); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.35rem; color: var(--c-ivory);
  background: rgba(43, 36, 34, 0.55); border: 1px solid rgba(245, 239, 234, 0.35);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lightbox__btn:hover { background: var(--c-ivory); color: var(--c-brown); }
.lightbox__btn--prev { left: -8px; }
.lightbox__btn--next { right: -8px; }
.lightbox__btn--close { top: -8px; right: -8px; transform: none; }

/* ---------- Services page ---------- */
.subnav { position: sticky; top: 72px; z-index: 40; background: rgba(245, 239, 234, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav__list { display: flex; gap: clamp(1.1rem, 2.4vw, 2.5rem); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.subnav__list::-webkit-scrollbar { display: none; }
.subnav__link { display: inline-block; padding: 1rem 0; font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.03em; color: var(--text-soft); border-bottom: 1px solid transparent; white-space: nowrap; transition: color 0.3s var(--ease), border-color 0.3s var(--ease); }
.subnav__link:hover { color: var(--text); }
.subnav__link.is-active { color: var(--text); border-color: var(--c-rose); }
body[data-page="services"] [id] { scroll-margin-top: calc(72px + 52px + 8px); }
.services-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 96px); align-items: start; }
.services-intro__grid .section-title { max-width: 22ch; }
.service-block .split-tall__inner { max-width: 600px; }
.service-block__line { margin-top: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: var(--fs-h4); color: var(--c-rose); }
.on-dark .service-block__line { color: var(--c-nude); }
.service-block .actions { margin-top: 1.75rem; }
.professional__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; margin-bottom: clamp(40px, 4.5vw, 64px); }
.professional__head .section-intro { max-width: 52ch; }
.professional__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); align-items: start; }
.professional__media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 4; background: var(--c-dark); }
.professional__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
html.js.has-gsap .professional__media img { inset: -6% 0; height: 112%; }
.professional__col { padding-top: 0.5rem; }
.professional__icon { font-size: 1.6rem; color: var(--accent); display: block; margin-bottom: 1rem; }
.professional__col h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h3); line-height: 1.15; margin-bottom: 0.4rem; }
.professional__col > p { font-size: var(--fs-small); color: var(--text-soft); margin-bottom: 1rem; }
.professional__actions { margin-top: clamp(40px, 4.5vw, 64px); }
.services-close__inner { text-align: center; display: grid; justify-items: center; }
.services-close__inner .philosophy__mark { margin: 0 auto clamp(20px, 2.4vw, 32px); }
.services-close__inner .section-title { max-width: 18ch; }
.services-close__inner .section-text { max-width: 58ch; }
.services-close__inner .actions { justify-content: center; }

/* ---------- Services (smoke · auto-sliding tile carousel) ---------- */
.services { padding-bottom: 0; }
.services__head { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(32px, 5vw, 96px); align-items: end; margin-bottom: clamp(40px, 4.5vw, 64px); }
.services__head .section-title { max-width: 18ch; }
.services__head-aside { padding-bottom: 0.4rem; }
.services__head-aside .section-intro { max-width: 46ch; }
.services__head-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 1.6rem; }
.carousel { position: relative; overflow: hidden; --tile-w: 25%; }
.carousel__track { display: flex; will-change: transform; }
.tile {
  position: relative; display: block; overflow: hidden; flex: 0 0 var(--tile-w);
  height: clamp(480px, 50vw, 720px); background: var(--c-dark); color: var(--c-ivory);
}
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(43, 36, 34, 0) 42%, rgba(43, 36, 34, 0.78) 100%);
  transition: background 0.6s var(--ease);
}
.tile__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(18px, 1.8vw, 28px);
  transition: transform 0.55s var(--ease);
}
.tile__icon { font-size: 1.6rem; color: var(--c-nude); display: block; margin-bottom: 0.8rem; }
.tile__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 1.15rem + 0.6vw, 1.75rem); line-height: 1.15; text-wrap: balance; }
.tile__cta {
  position: absolute; left: clamp(18px, 1.8vw, 28px); right: clamp(18px, 1.8vw, 28px); bottom: clamp(18px, 1.8vw, 28px); z-index: 3;
  transform: translateY(calc(100% + 32px)); opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease);
}
.tile:hover .tile__img, .tile:focus-visible .tile__img { transform: scale(1.06); }
.tile:hover::after, .tile:focus-visible::after { background: linear-gradient(180deg, rgba(43, 36, 34, 0.05) 20%, rgba(43, 36, 34, 0.86) 100%); }
.tile:hover .tile__body, .tile:focus-visible .tile__body { transform: translateY(calc(-1 * (clamp(18px, 1.8vw, 28px) + 52px))); }
.tile:hover .tile__cta, .tile:focus-visible .tile__cta { transform: none; opacity: 1; }
.tile:focus-visible { outline-offset: -4px; }
@media (hover: none) {
  .tile__body { transform: translateY(calc(-1 * (clamp(18px, 1.8vw, 28px) + 52px))); }
  .tile__cta { transform: none; opacity: 1; }
}

/* ---------- Footer (darkest) ---------- */
.footer { padding-top: clamp(56px, 6vw, 88px); padding-bottom: 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 64px); }
.brand--footer { color: var(--c-ivory); }
.brand--footer .brand__mark { width: 150px; }
.footer__tagline { width: 190px; height: auto; aspect-ratio: 2260 / 200; color: var(--c-nude); fill: currentColor; margin-top: 1rem; display: block; }
.footer__blurb { color: var(--text-soft); font-size: var(--fs-small); max-width: 34ch; margin-top: 1.6rem; }
.footer__heading { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-h4); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: 0.55rem; font-size: var(--fs-small); color: var(--text-soft); }
.footer__col a { transition: color 0.3s var(--ease); }
.footer__col a:hover, .footer__col a[aria-current="page"] { color: var(--c-ivory); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem 2rem;
  margin-top: clamp(40px, 4.5vw, 64px); padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: var(--fs-label); color: var(--text-soft);
}
.footer__roles { color: var(--c-nude); letter-spacing: 0.04em; }
.footer__top { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--c-ivory); }
.footer__top i { font-size: 1.1em; }

/* ---------- Floating back-to-top (appears after a little scrolling) ---------- */
.to-top {
  position: fixed; right: clamp(16px, 2vw, 28px); bottom: clamp(16px, 2vw, 28px); z-index: 45;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.25rem;
  color: var(--c-brown); background: rgba(245, 239, 234, 0.92); border: 1px solid rgba(43, 36, 34, 0.14);
  box-shadow: 0 10px 30px rgba(29, 25, 24, 0.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--c-brown); color: var(--c-ivory); }
.to-top i { position: relative; z-index: 1; transition: transform 0.35s var(--ease); }
.to-top:hover i { transform: translateY(-2px); }
.to-top__ring { position: absolute; inset: -1px; width: calc(100% + 2px); height: calc(100% + 2px); transform: rotate(-90deg); fill: none; }
.to-top__track { stroke: transparent; stroke-width: 1.5; }
.to-top__progress { stroke: var(--c-rose); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }

/* ---------- Motion staging (only while JS + GSAP are present; JS removes .js if GSAP fails) ---------- */
html.js [data-intro], html.js [data-reveal] { opacity: 0; }
html.js [data-reveal-group] > * { opacity: 0; }
html.js [data-intro-frame] { clip-path: inset(0 0 0 100%); }
html.js [data-reveal-media="left"] { clip-path: inset(0 100% 0 0); }
html.js [data-reveal-media="right"] { clip-path: inset(0 0 0 100%); }
html.js .contact__stroke-path { stroke-dasharray: 1; stroke-dashoffset: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .slide, .slide--reverse { grid-template-columns: 50% 50%; }
  .tile { height: clamp(440px, 52vw, 640px); }
}

/* Tablet */
@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .nav, .header__cta { display: none; }
  .header__wa, .menu-btn { display: inline-grid; }
  .header__inner { grid-template-columns: 1fr auto; }
  .brand__mark { width: 104px; }

  .slide, .slide--reverse { grid-template-columns: 1fr; min-height: 0; }
  .slide--reverse .slide__media { order: 2; }
  .slide__copy, .slide--reverse .slide__copy { padding: calc(var(--header-h) + clamp(40px, 8vw, 64px)) var(--gutter) clamp(48px, 8vw, 64px); }
  .slide__inner, .slide--reverse .slide__inner { max-width: 620px; margin-left: 0; }
  .slide__media { height: clamp(420px, 78vw, 640px); }
  .slide__media::after, .slide--reverse .slide__media::after { background: linear-gradient(180deg, rgba(43, 36, 34, 0.3), rgba(43, 36, 34, 0) 30%); }
  .slider .slider__arrow { top: auto; bottom: clamp(20px, 4vw, 32px); transform: none; }

  .values { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
  .values__item:nth-child(odd) { border-left: 0; padding-left: 0; }

  .bleed, .bleed--reverse { grid-template-columns: 1fr; min-height: 0; }
  .bleed__media { height: clamp(360px, 70vw, 560px); order: 0 !important; }
  .bleed__copy, .bleed--reverse .bleed__copy, .bleed:not(.bleed--reverse) .bleed__copy { order: 1 !important; padding: clamp(56px, 9vw, 80px) var(--gutter); }
  .bleed__inner, .bleed--reverse .bleed__inner { max-width: 640px; margin-left: 0; }
  .page-banner { min-height: 0; }
  .contact-page__grid, .faq__grid { grid-template-columns: 1fr; }
  .services-intro__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .professional__head { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .professional__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .professional__media { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .subnav { top: 72px; }
  .gallery__head { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(200px, 30vw, 300px); }
  .social__grid { grid-template-columns: 1fr; }
  .social__mark { display: none; }
  .lightbox__btn--prev { left: 0; } .lightbox__btn--next { right: 0; } .lightbox__btn--close { right: 0; top: 0; }
  .facts__grid { grid-template-columns: 1fr; gap: 0; }
  .fact { padding: 1.4rem 0; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar:nth-child(odd) { border-left: 0; padding-left: 0; }
  .pillar:nth-child(n + 3) { border-top: 1px solid var(--line); }

  .contact__stroke { display: none; }

  .split-tall__grid { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .split-tall__media, .split-tall--reverse .split-tall__media { order: 0; height: clamp(360px, 70vw, 560px); }
  .split-tall__copy { order: 1; padding-block: clamp(48px, 8vw, 72px); }
  .philosophy__inner { gap: clamp(28px, 5vw, 40px); }
  .philosophy__watermark { width: 42%; right: -4%; }
  .split-tall__inner { max-width: 640px; }


  .carousel { --tile-w: 50%; }
  .tile { height: clamp(420px, 70vw, 600px); }
  .services__head { grid-template-columns: 1fr; gap: 1.25rem; align-items: start; }
  .services__head-aside { padding-bottom: 0; }


  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 560px) {
  :root { --section-y: clamp(56px, 14vw, 80px); }

  .brand__mark { width: 96px; }
  .header__actions { gap: 0.5rem; }
  .icon-btn { width: 42px; height: 42px; }

  .slide__copy, .slide--reverse .slide__copy { padding-top: calc(var(--header-h) + 28px); padding-bottom: 40px; }
  .hero__actions { gap: 1rem 1.5rem; }
  .slide__media { height: clamp(360px, 110vw, 520px); }
  .slider__arrow { width: 42px; height: 42px; font-size: 1.15rem; }

  .values { grid-template-columns: 1fr 1fr; gap: 1.25rem 1rem; }
  .values__item { padding-right: 0; }
  .values__item + .values__item { padding-left: 1rem; }
  .values__item:nth-child(odd) { padding-left: 0; }

  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow__step:nth-child(odd) { border-left: 0; padding-left: 0; }
  .flow__step:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .carousel { --tile-w: 100%; }
  .tile { height: clamp(440px, 120vw, 580px); }

  .list-lines--2col { grid-template-columns: 1fr; }
  .bleed__inner .btn:not(.tile__cta .btn), .actions .btn { width: 100%; }
  .actions { gap: 1rem; }

  .promise { padding: 1.3rem; }
  .promise .btn { width: 100%; }

  .contact__actions .btn { flex: 1 1 100%; }
  .contact__details { grid-template-columns: 1fr; }

  .to-top { width: 46px; height: 46px; font-size: 1.1rem; }
  .form { grid-template-columns: 1fr; }
  .professional__grid { grid-template-columns: 1fr; }
  .professional__media { aspect-ratio: 4 / 3; }
  .subnav__list { gap: 1.25rem; padding-inline: 0; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(150px, 44vw, 220px); gap: 8px; }
  .shot--wide { grid-column: span 2; }
  .filters { gap: 0.4rem; }
  .filter { padding: 0.55rem 0.85rem; }
  .lightbox__dialog { width: 100%; height: 100svh; }
  .lightbox__figure { gap: 0.75rem; padding: 3.5rem 0.75rem 1rem; }
  .lightbox__btn { width: 44px; height: 44px; font-size: 1.15rem; }
  .lightbox__btn--prev { left: 6px; } .lightbox__btn--next { right: 6px; } .lightbox__btn--close { right: 8px; top: 8px; }
  .form__actions .btn { width: 100%; }
  .enquiry { padding: 1.4rem; }
  .faq__answer { padding-right: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding-left: 0 !important; border-left: 0 !important; }
  .pillar:nth-child(n + 2) { border-top: 1px solid var(--line); }
  .audience__list { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
