/* ============================================================
   SPARKING JOY — Editorial Atelier System
   A botanical-installation studio site, designed in the spirit
   of an editorial luxury house. Cream + ink + a single confident
   accent. Type-led. Composition-led. Quiet, then loud.
   ============================================================ */

/* ----------  TOKENS  ---------- */
:root {
  /* palette — warm, controlled, editorial */
  --ink:        #14110F;        /* off-black, warm */
  --ink-2:      #2A2521;
  --muted:      #6B6058;
  --line:       #E5DED4;        /* hairline on cream */
  --line-2:     #D8CFC2;
  --cream:      #F6F1EA;        /* page */
  --cream-2:    #EFE7DA;        /* card */
  --bone:       #FBF8F2;        /* lighter surface */
  --blush:      #E8C8C5;        /* dusty blush */
  --blush-soft: #F4E2DF;
  --accent:     #A52145;        /* deep magenta (claret) */
  --accent-2:   #7E1635;        /* deeper claret */
  --accent-ink: #401021;
  --olive:      #5A604A;        /* tertiary, sage-olive */

  /* legacy aliases — keep older pages working */
  --pink:       var(--accent);
  --pink-dark:  var(--accent-2);
  --pink-soft:  var(--blush-soft);
  --bg:         var(--cream);

  /* type */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono:  "ui-monospace", "SF Mono", "Menlo", monospace;

  /* spacing & shape */
  --maxw: 1360px;
  --gutter: clamp(18px, 4vw, 56px);
  --header-h: 76px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.16,.84,.3,1);
  --d-1: .25s;
  --d-2: .5s;
  --d-3: .9s;

  /* shadow — used very sparingly */
  --shadow-sm: 0 4px 16px rgba(20, 14, 10, 0.06);
  --shadow-md: 0 18px 48px rgba(20, 14, 10, 0.10);
  --shadow-lg: 0 36px 90px rgba(20, 14, 10, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--cream); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--cream); }

/* paper grain — subtle, brand-defining (kept very faint, behind content) */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(20,14,10,0.045) 1px, transparent 1px),
    radial-gradient(rgba(20,14,10,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
/* Make sure regular flow content sits above the grain */
.site-header, main, .site-footer { position: relative; z-index: 2; }

/* ----------  TYPE  ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(3rem, 8.4vw, 8rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 400;
}
h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.028em;
  font-weight: 400;
}
h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 500;
}
em, .it { font-style: italic; }
.serif { font-family: var(--serif); }
.display-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}

p { margin: 0 0 1em; color: var(--muted); }
.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  color: var(--ink-2);
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 38ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  margin: 0 0 1.25rem;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--ink);
}

.index-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ----------  LAYOUT  ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section { padding: clamp(64px, 10vw, 160px) 0; position: relative; }
section + section { padding-top: clamp(0px, 1vw, 16px); }
@media (max-width: 600px) {
  section { padding: 48px 0; }
  section + section { padding-top: 0; }
}
@media (max-width: 600px) {
  hr.rule { margin: 32px 0; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: 12px 18px; z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* hairline divider — recurring motif */
.rule {
  height: 1px; background: var(--line); border: 0; margin: 0;
}

/* ----------  HEADER  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 241, 234, 0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease);
}
.site-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.32em;
  color: var(--muted); text-transform: uppercase;
  display: block; margin-top: 5px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .brand-mark { width: 36px; height: 36px; font-size: 0.92rem; }
  .brand-text { font-size: 1.05rem; }
  .brand-tag { font-size: 0.56rem; letter-spacing: 0.24em; }
}
@media (max-width: 380px) {
  .site-header .brand-tag { display: none; }
}

.nav { display: flex; align-items: center; gap: 36px; }
.nav a:not(.btn) {
  font-family: var(--sans);
  font-size: 0.86rem; font-weight: 500;
  color: var(--ink);
  position: relative; padding: 6px 0;
  letter-spacing: 0.02em;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right .35s var(--ease);
}
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]:not(.btn)::after { right: 0; }
/* Slightly smaller header button so it sits cleanly in the bar */
.nav .btn { padding: 12px 22px; font-size: 0.72rem; letter-spacing: 0.2em; }

.nav-toggle {
  display: none; background: none; border: 0; padding: 8px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: 0.22s var(--ease);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .nav a:not(.btn):last-of-type { border-bottom: 0; }
  .nav .btn { margin-top: 14px; padding: 14px 22px; text-align: center; justify-content: center; }
}

/* ----------  BUTTONS  ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500; font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 26px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  cursor: pointer;
  align-self: start;       /* prevent stretching in flex/grid columns */
  width: max-content;      /* size to content, not container */
  max-width: 100%;
  text-align: center;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
  text-decoration: none;
}
.btn svg { display: inline-block; flex-shrink: 0; }
.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--cream); --btn-bd: var(--ink); }
.btn--primary:hover { --btn-bg: var(--accent); --btn-bd: var(--accent); }
.btn--secondary { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--secondary:hover { --btn-bg: var(--ink); --btn-fg: var(--cream); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--whatsapp { --btn-bg: #25D366; --btn-fg: #fff; --btn-bd: #25D366; }
.btn--whatsapp:hover { --btn-bg: #1EBE5D; --btn-bd: #1EBE5D; }

/* link with animated underline */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
  position: relative; padding-bottom: 6px;
  align-self: start;
  width: max-content;
  line-height: 1;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform-origin: left; transition: transform .4s var(--ease);
}
.link-arrow:hover::after { transform: scaleX(1.06); }
.link-arrow .arrow { transition: transform .35s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }

/* ----------  HERO  ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 980px);
  display: flex; align-items: stretch;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(0,0,0,0.5);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: url("../images/scene-wonderland-forest.jpg");
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: hero-pan 26s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.02);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,14,10,0.55) 0%, rgba(20,14,10,0.10) 28%, rgba(20,14,10,0.10) 55%, rgba(20,14,10,0.85) 100%),
    linear-gradient(90deg, rgba(20,14,10,0.55) 0%, rgba(20,14,10,0.0) 55%);
}
@keyframes hero-pan {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.14) translate3d(-2.5%, -1.5%, 0); }
}

.hero .container {
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(96px, 12vh, 140px);
  padding-top: clamp(120px, 16vh, 180px);
  width: 100%;
}
.hero__content { max-width: 880px; }

.hero__topline {
  position: absolute; top: clamp(14px, 3vh, 32px); left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  z-index: 3;
}
@media (max-width: 600px) {
  .hero__topline { font-size: 0.6rem; letter-spacing: 0.18em; gap: 12px; }
  .hero__topline > span { white-space: nowrap; }
  .hero__topline > span:last-child { display: none; }
}
.hero__topline span { display: inline-flex; align-items: center; gap: 10px; }
.hero__topline .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blush); box-shadow: 0 0 0 6px rgba(232,200,197,0.16);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(232,200,197,0.18); }
  50%     { box-shadow: 0 0 0 12px rgba(232,200,197,0); }
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--blush);
}
.hero__eyebrow-text { display: inline; }
.hero__eyebrow-line { display: inline; }
.hero__eyebrow-sep { display: inline; }
@media (max-width: 520px) {
  .hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    gap: 10px;
    align-items: flex-start;
  }
  .hero__eyebrow::before { margin-top: 0.6em; flex-shrink: 0; }
  .hero__eyebrow-text { display: flex; flex-direction: column; gap: 6px; }
  .hero__eyebrow-line { display: block; }
  .hero__eyebrow-sep { display: none; }
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 8.4vw, 8.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin: 0;
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; line-height: 1; letter-spacing: -0.03em; }
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease-soft) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--blush);
  font-family: var(--serif);
  font-weight: 400;
  display: block;
}
@keyframes rise { to { transform: translateY(0); } }

.hero__sub {
  color: rgba(251, 248, 242, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 48ch;
  margin: 28px 0 36px;
  line-height: 1.6;
  font-family: var(--sans);
  font-weight: 400;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
.hero__ctas .btn--primary { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.hero__ctas .btn--primary:hover { --btn-bg: var(--accent); --btn-fg: var(--cream); --btn-bd: var(--accent); }

.hero__meta {
  position: absolute; right: var(--gutter); bottom: clamp(28px, 6vh, 48px);
  font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; gap: 22px;
}
.hero__meta::before { content: ""; width: 1px; height: 60px; background: rgba(255,255,255,0.4); }
@media (max-width: 720px) { .hero__meta { display: none; } }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: clamp(24px, 4vh, 36px);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  pointer-events: none;
  z-index: 3;
}
.hero__scroll .line {
  width: 48px; height: 1px; background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; left: -40%; top: 0; width: 40%; height: 1px;
  background: var(--blush);
  animation: scroll-line 2.8s var(--ease) infinite;
}
@keyframes scroll-line {
  0%   { left: -40%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}
/* Hide on shorter viewports / mobile to avoid colliding with content */
@media (max-width: 1024px), (max-height: 760px) { .hero__scroll { display: none; } }

/* ----------  MARQUEE  ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 22s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--cream);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track span::after {
  content: "✱"; color: var(--blush); font-style: normal; font-size: 0.7em;
  transform: translateY(-2px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------  STATEMENT (manifesto strip)  ---------- */
/* ----------  INSTAGRAM POST MOCKUP  ---------- */
.ig-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.ig-section__intro h2 { margin: 0 0 18px; }
.ig-section__intro .eyebrow { margin-bottom: 18px; display: inline-block; }
.ig-section__intro .lead { max-width: 38ch; }
.ig-post {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px -38px rgba(20, 17, 15, 0.28);
  font-family: var(--sans);
  color: var(--ink);
}
.ig-post__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.ig-post__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  position: relative;
}
.ig-post__avatar::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
  z-index: -1;
}
.ig-post__avatar { isolation: isolate; }
.ig-post__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.ig-post__profile:hover .ig-post__handle { color: var(--accent); }
.ig-post__who { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.ig-post__handle { font-weight: 600; font-size: 0.88rem; color: var(--ink); transition: color .2s ease; }
.ig-post__loc { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.ig-post__more { background: none; border: 0; padding: 4px; color: var(--ink); cursor: pointer; }
.ig-post__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}
.ig-post__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.85);
  transform-origin: center;
}
.ig-post__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 4px;
  color: var(--ink);
}
.ig-post__icons { display: inline-flex; align-items: center; gap: 14px; }
.ig-post__likes {
  padding: 4px 14px 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.ig-post__caption {
  padding: 6px 14px 4px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
}
.ig-post__caption strong { font-weight: 600; margin-right: 4px; }
.ig-post__tag {
  font-style: normal;
  color: #00376b;
}
.ig-post__time {
  display: block;
  padding: 6px 14px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 860px) {
  .ig-section__container { grid-template-columns: 1fr; }
  .ig-section__intro { text-align: left; }
}

/* ----------  JOURNEY  ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
}
.journey-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.journey-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 28px 60px -34px rgba(20, 17, 15, 0.22);
}
.journey-card__media {
  display: none;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.journey-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0) 60%, rgba(20,17,15,0.18) 100%);
  pointer-events: none;
}
.journey-card__media img,
.journey-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s var(--ease-soft);
}
.journey-card:hover .journey-card__media img,
.journey-card:hover .journey-card__media video { transform: scale(1.04); }
.journey-card__media--top img {
  object-position: center;
  transform: scale(1.5) translateY(12%);
  transform-origin: center;
}
.journey-card:hover .journey-card__media--top img {
  transform: scale(1.56) translateY(12%);
}
.journey-card__media--video video {
  object-position: center;
  transform: scale(1.85);
  transform-origin: center;
}
.journey-card:hover .journey-card__media--video video { transform: scale(1.92); }
.journey-card__body {
  padding: 32px 32px 36px;
}
.journey-card__stage {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.journey-card__verb {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 16px;
}
.journey-card__desc {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 980px) {
  .journey-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .journey-card__body { padding: 24px 22px 28px; }
}
.journey-cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 80px);
}
.journey-cta__lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 38ch;
  margin: 0 auto 24px;
}
.journey-cta__lead em {
  font-style: italic;
  color: var(--accent);
}

/* ----------  SECTION HEAD  ---------- */
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 80px);
}
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; align-items: start; gap: 18px; } }
@media (max-width: 600px) { .section-head { margin-bottom: 32px; } }
.section-head__left { display: flex; flex-direction: column; gap: 12px; }
.section-head__right { max-width: 56ch; }
.section-head h2 { margin-bottom: 0; }
.section-head .lead { margin-top: 4px; }

/* ----------  PILLARS / DISCIPLINES  ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 32px 0 32px 0; }
  .pillar:last-child { border-bottom: 0; }
}
.pillar {
  padding: 48px 36px 56px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  display: grid; grid-template-rows: auto auto 1fr auto;
  gap: 16px;
}
.pillar + .pillar { border-left: 1px solid var(--line); padding-left: 36px; }
@media (max-width: 860px) {
  .pillar + .pillar { border-left: 0; padding-left: 0; padding-top: 36px; }
}
.pillar__num {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.24em;
  color: var(--muted); text-transform: uppercase;
}
.pillar h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 1.95rem); margin: 0; letter-spacing: -0.018em; font-weight: 500; }
.pillar p { color: var(--muted); font-size: 0.98rem; max-width: 36ch; margin: 0; }
/* ----------  SHOWCASE (editorial split)  ---------- */
.showcase {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.showcase--reverse { grid-template-columns: 1fr 1.05fr; }
.showcase--reverse .showcase__media { order: 2; }
@media (max-width: 980px) {
  .showcase, .showcase--reverse { grid-template-columns: 1fr; gap: 32px; }
  .showcase--reverse .showcase__media { order: 0; }
}
.showcase__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.showcase__media img,
.showcase__media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
  display: block;
}
.showcase__media:hover img { transform: scale(1.05); }
.showcase__media .tag {
  position: absolute; left: 18px; top: 18px;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,0.5);
  padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.showcase__body { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 52ch; }
.showcase__body p { font-size: 1rem; color: var(--muted); margin: 0; }
.showcase__body .lead { margin-bottom: 4px; }
.showcase__body h2 { margin-bottom: 4px; }
.showcase__cta { margin-top: 18px; }

/* ----------  COLLECTIONS GRID  ---------- */
.collections-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 980px) { .collections-grid { grid-template-columns: 1fr; } }

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
  background: var(--ink);
  display: block;
}
.collection-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease), opacity .6s var(--ease);
  opacity: 0.92;
}
.collection-card:hover img { transform: scale(1.08); opacity: 1; }
.collection-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.collection-card__index {
  position: absolute; left: 18px; top: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cream);
  padding: 8px 12px;
  background: rgba(20, 14, 10, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.collection-card__index strong { color: var(--blush); font-weight: 500; }
.collection-card__index span { opacity: 0.78; }
.collection-card__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px; color: var(--cream); z-index: 2;
}
.collection-card__tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 14px;
}
.collection-card h3 {
  color: var(--cream);
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.018em;
}
.collection-card p {
  color: rgba(251, 248, 242, 0.82);
  font-size: 0.95rem; margin: 0 0 18px;
  font-family: var(--serif); font-style: italic; line-height: 1.45;
}
.collection-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: gap .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.collection-card:hover .collection-card__cta {
  gap: 16px; color: var(--blush); border-color: var(--blush);
}

/* ----------  GALLERY / USECASES  ---------- */
.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1vw, 16px); }
@media (max-width: 860px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usecases { grid-template-columns: 1fr; } }
.usecase {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; isolation: isolate;
}
.usecase img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.usecase:hover img { transform: scale(1.06); }
.usecase::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
}
.usecase__label {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  color: var(--cream);
  display: flex; align-items: baseline; gap: 12px;
}
.usecase__label .num {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; opacity: 0.8;
}
.usecase__label .name {
  font-family: var(--serif); font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  letter-spacing: -0.012em;
  font-style: italic; font-weight: 400;
}

.gallery { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .gallery, .gallery--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery, .gallery--3 { grid-template-columns: 1fr; } }
.gallery img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery img:hover { transform: scale(1.03); }

.gallery--mosaic {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.gallery--mosaic img { aspect-ratio: auto; height: 100%; }
.gallery--mosaic .span-2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 720px) {
  .gallery--mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery--mosaic .span-2 { grid-column: span 2; grid-row: span 1; }
}

/* ----------  STATS  ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat:first-child { padding-left: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  color: var(--ink);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.stat__num em { color: var(--accent); font-style: italic; }
.stat__label {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: 0 18px; }
  .stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 24px; }
  .stat__num { font-size: clamp(2.4rem, 12vw, 3.6rem); }
}

/* ----------  PULL QUOTE  ---------- */
.pullquote {
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.pullquote em { color: var(--accent); font-style: italic; }
.pullquote__attrib {
  display: block;
  margin-top: 32px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----------  CTA BANNER  ---------- */
.cta-banner {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 80px);
  color: var(--cream);
  text-align: left;
  background: var(--ink);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: end;
}
@media (max-width: 860px) { .cta-banner { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 480px) {
  .cta-banner__ctas .btn { width: 100%; justify-content: center; }
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(165, 33, 69, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(232, 200, 197, 0.18) 0%, transparent 55%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  margin: 14px 0 18px;
  letter-spacing: -0.028em;
  font-weight: 400;
  line-height: 1.05;
  max-width: 18ch;
}
.cta-banner h2 em { color: var(--blush); font-style: italic; display: inline; }
.cta-banner .eyebrow { color: var(--blush); }
.cta-banner .eyebrow::before { background: var(--blush); }
.cta-banner p { color: rgba(251, 248, 242, 0.82); font-size: 1rem; max-width: 48ch; margin: 0; }
.cta-banner__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: flex-start; }
@media (min-width: 861px) { .cta-banner__ctas { justify-content: flex-end; } }
.cta-banner .btn--primary { --btn-bg: var(--cream); --btn-fg: var(--ink); --btn-bd: var(--cream); }
.cta-banner .btn--primary:hover { --btn-bg: var(--accent); --btn-fg: var(--cream); --btn-bd: var(--accent); }

/* ----------  FOOTER  ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 242, 0.78);
  padding: clamp(72px, 10vw, 120px) 0 32px;
}
.site-footer h4 {
  color: var(--cream); font-family: var(--sans); font-weight: 500;
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: rgba(251,248,242,0.7); font-size: 0.95rem; max-width: 38ch; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-mark { background: var(--cream); color: var(--ink); }
.footer-brand .brand-text { color: var(--cream); }
.footer-brand .brand-tag { color: rgba(251,248,242,0.55); }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-list a {
  color: rgba(251,248,242,0.78); font-size: 0.95rem;
  font-family: var(--serif); font-style: italic;
  transition: color .25s var(--ease);
}
.footer-list a:hover { color: var(--blush); }
.contact-line { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-line svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 4px; color: var(--blush); }
.contact-line a, .contact-line span { color: rgba(251,248,242,0.85); font-family: var(--sans); font-size: 0.94rem; line-height: 1.5; }
.contact-line a:hover { color: var(--cream); }
.footer-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--sans);
}
.footer-contact__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.footer-contact__role {
  margin: 2px 0 8px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
}
.footer-contact a {
  display: block;
  color: rgba(251,248,242,0.85);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--cream); }
.info-card__contacts {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}
.info-card__person {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.info-card__person:first-child {
  padding-top: 0;
  border-top: 0;
}
.info-card__person-name {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.info-card__person-role {
  margin: 2px 0 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-card__person a {
  display: block;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}
.info-card__person a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding-top: 28px;
  font-size: 0.78rem; flex-wrap: wrap;
  font-family: var(--mono); letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,248,242,0.55);
}
.footer-bottom .brand-tag { color: var(--blush); }

/* footer-mark — giant brand wordmark */
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: rgba(251, 248, 242, 0.06);
  text-align: center;
  margin: 48px 0 8px;
  font-weight: 400;
  user-select: none;
  white-space: nowrap;
}
.footer-mark em { font-style: italic; color: rgba(232, 200, 197, 0.16); }
@media (max-width: 600px) {
  .footer-mark { margin: 32px 0 0; font-size: 11vw; }
}

/* ----------  PAGE HEROES (subpages)  ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(96px, 16vh, 180px) 0 clamp(64px, 10vh, 120px);
  color: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.5);
}
.page-hero h1 { font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: 1; }
@media (max-width: 600px) {
  .page-hero h1 { font-size: 2.4rem; line-height: 1.05; }
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: hero-pan 28s ease-in-out infinite alternate;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,14,10,0.50), rgba(20,14,10,0.75)),
    linear-gradient(90deg, rgba(20,14,10,0.55) 0%, rgba(20,14,10,0.0) 60%);
}
.page-hero h1 { color: var(--cream); }
.page-hero h1 em { color: var(--blush); font-style: italic; }
.page-hero p { color: rgba(251,248,242,0.92); max-width: 56ch; font-size: 1.05rem; }
.breadcrumbs {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,248,242,0.78); margin-bottom: 22px;
}
.breadcrumbs a:hover { color: var(--blush); }
.breadcrumbs span { margin: 0 10px; opacity: 0.55; }

/* ----------  COLLECTION DETAIL  ---------- */
.collection-detail { display: grid; gap: clamp(64px, 10vw, 120px); }
.collection-detail__row { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 980px) { .collection-detail__row { grid-template-columns: 1fr; gap: 32px; } }
.collection-detail__row.reverse { grid-template-columns: 1.4fr 1fr; }
.collection-detail__row.reverse .collection-detail__copy { order: 2; }
@media (max-width: 980px) {
  .collection-detail__row.reverse { grid-template-columns: 1fr; }
  .collection-detail__row.reverse .collection-detail__copy { order: 0; }
}
.spec-list {
  list-style: none; padding: 0; margin: 18px 0 24px;
  display: grid; gap: 12px;
}
.spec-list li {
  display: flex; gap: 14px; align-items: center;
  font-size: 0.95rem; color: var(--ink);
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.spec-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list svg { color: var(--accent); flex-shrink: 0; }
.price-from {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 22px;
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--ink);
}
.price-from strong { color: var(--accent); font-size: 1.4rem; font-weight: 500; }

/* ----------  FORMS  ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
}
.field label .req { color: var(--accent); margin-left: 4px; }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 1rem;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field select { padding: 14px 0; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 0 var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field__hint { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; color: var(--muted); }
.field--check { flex-direction: row; align-items: flex-start; gap: 12px; }
.field--check label {
  text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: 0.92rem; color: var(--muted); line-height: 1.55;
  font-family: var(--sans);
}
.field--check input { width: 18px; height: 18px; margin-top: 3px; }
.form__success {
  background: var(--blush-soft); color: var(--accent-ink);
  padding: 16px 20px;
  border: 1px solid var(--blush);
  display: none;
  font-family: var(--serif); font-style: italic;
}
.form__success.show { display: block; }
.form-meta {
  font-family: var(--mono);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 22px; flex-wrap: wrap; margin-top: 8px;
}
.form-meta strong { color: var(--accent); }
.form__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

/* ----------  INFO CARD (contact)  ---------- */
.info-card {
  background: var(--bone);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  position: sticky; top: calc(var(--header-h) + 24px);
}
.info-card h3 { font-size: 1.4rem; }
.info-card .quick-actions { display: grid; gap: 10px; margin-top: 22px; }

.map-embed {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----------  ABOUT / VALUES / PROCESS  ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 36px 28px 36px 0;
  border-bottom: 1px solid var(--line);
}
.value + .value { border-left: 1px solid var(--line); padding-left: 28px; }
@media (max-width: 860px) {
  .value { padding: 28px 0; }
  .value + .value { border-left: 0; padding-left: 0; }
  .value:last-child { border-bottom: 0; }
}
.value h3 { font-size: 1.4rem; }
.value__num {
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  padding: 36px 24px 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.step + .step { border-left: 1px solid var(--line); padding-left: 24px; }
@media (max-width: 860px) {
  .step { padding: 28px 0; }
  .step + .step { border-left: 0; padding-left: 0; }
  .step:last-child { border-bottom: 0; }
}
.step__num {
  font-family: var(--serif);
  font-size: 2.4rem; color: var(--accent);
  display: block; line-height: 1; margin-bottom: 16px;
  font-style: italic; font-weight: 400;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; }

/* ----------  FLOATING WHATSAPP  ---------- */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.36);
  transition: transform .25s var(--ease);
}
.float-wa:hover { transform: scale(1.06); }
.float-wa svg { width: 24px; height: 24px; }
@media (max-width: 600px) {
  .float-wa { width: 48px; height: 48px; right: 14px; bottom: 14px; }
  .float-wa svg { width: 22px; height: 22px; }
}

/* ----------  REVEAL  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .hero h1 .word > span { transform: none; }
  .hero__video { display: none; }
}

/* ----------  HERO BACKGROUND VIDEO  ---------- */
.hero__video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.hero:has(.hero__video)::before { display: none; }

/* ----------  MOTION CLIP (used in pillars / inline)  ---------- */
.motion-clip {
  display: block; width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bone);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.motion-clip video, .motion-clip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.pillar .motion-clip { aspect-ratio: 4 / 5; margin-top: 8px; }

/* ----------  STOP · STARE · SHARE BAND  ---------- */
.moment-band {
  position: relative;
  isolation: isolate;
  padding: 0;
  color: var(--ink);
  background: var(--blush-soft);
  overflow: hidden;
  min-height: clamp(380px, 56vh, 560px);
  display: flex; align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Subtle decorative hairline accent on the right */
.moment-band::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.4;
  pointer-events: none;
}
.moment-band__inner {
  padding: clamp(64px, 10vh, 120px) var(--gutter);
  max-width: var(--maxw);
  width: 100%;
}
.moment-band__eyebrow {
  color: var(--ink-2);
  margin-bottom: 1.75rem;
}
.moment-band__eyebrow::before { background: var(--ink); }
.moment-band__words {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: clamp(8px, 1.4vw, 24px);
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 1.5rem;
  max-width: 22ch;
  color: var(--ink);
}
.moment-band__words .moment-word { display: inline-block; }
.moment-band__words .display-italic {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.moment-band__sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0;
  line-height: 1.55;
}

/* ----------  PROCESS STAGES (caption strip)  ---------- */
.process-stages {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0;
  margin: -4px 0 28px;
  padding: 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
.process-stages span { white-space: nowrap; }
.process-stages span + span::before {
  content: "·";
  display: inline-block;
  margin: 0 7px;
  color: var(--line-2);
}
@media (max-width: 520px) {
  .process-stages { font-size: 0.56rem; letter-spacing: 0.12em; }
  .process-stages span + span::before { margin: 0 5px; }
}

/* ----------  COLLECTION HEADLINE VIDEO  ---------- */
.collection-hero-video {
  display: block; width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden; position: relative;
  background: var(--bone);
}
.collection-hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
