/* ====================================================
   Auræ Website — UI kit styles
   ==================================================== */

:root {
  --wm: 1100px;
}

/* ---------- Layout container ---------- */
.aurae-container {
  width: min(var(--wm), 100% - 64px);
  margin-inline: auto;
}

/* Section label / eyebrow */
.aurae-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--palm-leaf);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.aurae-eyebrow-rule {
  display: inline-block; width: 32px; height: 1px; background: var(--palm-leaf);
}

.aurae-section-label {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--palm-leaf);
}
.aurae-section-num { color: var(--coffee-bean); }

.aurae-hair { height: 1px; background: var(--palm-leaf); width: 100%; }
.aurae-hair-v { width: 1px; height: 24px; }

/* Wordmark */
.aurae-wordmark {
  font-family: var(--font-wordmark);
  letter-spacing: 0;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.aurae-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  text-decoration: none;
  border-bottom: 0;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), padding 200ms var(--ease-out);
  cursor: pointer;
}
.aurae-btn-arrow { font-family: var(--font-display); font-size: 16px; transition: transform 200ms var(--ease-out); }
.aurae-btn:hover .aurae-btn-arrow { transform: translateX(4px); }

.aurae-btn-outline-light { border: 1px solid var(--coffee-bean); color: var(--coffee-bean); }
.aurae-btn-outline-light:hover { background: var(--coffee-bean); color: var(--parchment); opacity: 1; }

.aurae-btn-outline-dark  { border: 1px solid var(--parchment); color: var(--parchment); }
.aurae-btn-outline-dark:hover  { background: var(--parchment); color: var(--coffee-bean); opacity: 1; }

.aurae-btn-accent { border: 1px solid var(--deep-cerulean); color: var(--deep-cerulean); }
.aurae-btn-accent:hover { background: var(--deep-cerulean); color: var(--parchment); opacity: 1; }

.aurae-btn-text {
  padding: 4px 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: var(--coffee-bean);
  border-bottom: 1px solid var(--coffee-bean);
}
.aurae-btn-text:hover { opacity: 0.6; }

/* ---------- Image slot (placeholder) ---------- */
.aurae-img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aurae-img-mark {
  width: 38%;
  max-width: 220px;
  opacity: 0.45;
  mix-blend-mode: multiply;
  filter: sepia(0.2) hue-rotate(-12deg);
}
.aurae-img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aurae-img-fill--warm-matte {
  filter: saturate(0.82) contrast(0.96) sepia(0.10) hue-rotate(-4deg) brightness(1.02);
}
.aurae-img-fill--cool-matte {
  filter: saturate(0.78) contrast(0.98) hue-rotate(4deg) brightness(1.01);
}
.aurae-img-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(38,21,11,.08) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: var(--grain-opacity);
  pointer-events: none;
}
.aurae-img-ellipse {
  border-radius: 50% / 38%;
}
.aurae-img figcaption {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coffee-bean);
  padding: 6px 10px;
  background: rgba(250,243,239,0.85);
  border-radius: 2px;
}

/* ---------- Nav — original bar at rest, capsule after the hero ----------
   At the top of the page it's the classic full-width bar: wordmark left,
   links centred, outline button right, fully transparent.
   Once you scroll past the hero it contracts into a floating, translucent
   parchment capsule that lifts off the page. */
.aurae-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 18px 24px;
  pointer-events: none;            /* gutters stay click-through; capsule re-enables */
  transition: padding 360ms var(--ease-out);
}
.aurae-nav-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 24px;
  border: var(--hairline) solid transparent;
  border-radius: 0;
  background: transparent;
  animation: aurae-nav-in 760ms var(--ease-out) both;
  transition:
    max-width 460ms var(--ease-out),
    background 320ms var(--ease-out),
    border-color 320ms var(--ease-out),
    box-shadow 460ms var(--ease-out),
    border-radius 460ms var(--ease-out),
    padding 360ms var(--ease-out);
}
@keyframes aurae-nav-in {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

/* --- Scrolled: the floating capsule --- */
.aurae-nav-scrolled { padding-top: 14px; }
.aurae-nav-scrolled .aurae-nav-inner {
  max-width: 720px;
  background: rgba(237, 235, 224, 0.74);
  border-color: var(--palm-leaf-30);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-2);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  backdrop-filter: blur(16px) saturate(1.06);
  padding: 8px 12px 8px 26px;
  gap: 20px;
}

/* Wordmark — left anchored in both states */
.aurae-nav-mark {
  color: var(--coffee-bean);
  text-decoration: none; border: 0;
  display: inline-flex; line-height: 1; flex: none;
}
.aurae-nav-mark .aurae-wordmark {
  transition: font-size 360ms var(--ease-out);
}
/* Mobile: wordmark starts larger at the top of the page, eases down to its
   regular size once the nav contracts into the scrolled capsule */
@media (max-width: 700px) {
  .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-mark .aurae-wordmark {
    font-size: 38px !important;
  }
  /* Over the homepage photo hero, nav ink goes palm leaf — soft, warm,
     tonal with the sand — until the capsule takes over */
  body:has(.aurae-hero--video) .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-mark { color: var(--palm-leaf); }
  body:has(.aurae-hero--video) .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-burger span { background: var(--palm-leaf); }
}

/* Mobile: the solid bar always uses coffee bean — override the palm-leaf
   home-page rule so the ink matches the underline on every page */
@media (max-width: 920px) {
  body:has(.aurae-hero--video) .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-mark { color: var(--coffee-bean); }
  body:has(.aurae-hero--video) .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-burger span { background: var(--coffee-bean); }
}

/* Links — centred row */
.aurae-nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 34px; justify-self: center;
  transition: gap 360ms var(--ease-out);
}
.aurae-nav-scrolled .aurae-nav-links { gap: 26px; }

.aurae-nav-link {
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--coffee-bean);
  text-decoration: none; border: 0;
  position: relative; padding: 6px 1px; white-space: nowrap;
}
.aurae-nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--coffee-bean);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.aurae-nav-link:hover::after,
.aurae-nav-link.is-active::after { transform: scaleX(1); }

/* CTA — original outline button at rest; filled olive pill with a
   light-blue accent line once the nav floats. */
.aurae-nav-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coffee-bean); text-decoration: none;
  background: transparent;
  border: 1px solid var(--coffee-bean);
  border-radius: 2px;
  padding: 14px 22px; white-space: nowrap;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out),
              border-color 220ms var(--ease-out), border-radius 460ms var(--ease-out),
              padding 360ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.aurae-nav-cta:hover {
  background: var(--coffee-bean); color: var(--parchment); border-color: var(--coffee-bean);
}

/* Scrolled: filled olive pill, light-blue accent line around the outside */
.aurae-nav-scrolled .aurae-nav-cta {
  background: var(--palm-leaf);
  color: var(--parchment);
  border-color: var(--light-blue);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  box-shadow: 0 1px 0 rgba(38,21,11,0.05);
}
.aurae-nav-scrolled .aurae-nav-cta:hover {
  background: var(--dark-khaki); color: var(--parchment); border-color: var(--light-blue);
  box-shadow: 0 6px 16px -8px rgba(61,59,22,0.55);
}

.aurae-nav-cta .aurae-nav-cta-spark {
  font-family: var(--font-display);
  font-size: 16px; line-height: 0; transform: translateX(0);
  color: currentColor;
  margin-right: -4px;   /* compensate the glyph's right side-bearing */
  transition: transform 220ms var(--ease-out);
}
.aurae-nav-cta:hover .aurae-nav-cta-spark { transform: translateX(4px); }

/* ---- Mobile hamburger + popout sheet ---- */
.aurae-nav-burger {
  display: none;
  justify-self: end;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.aurae-nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--coffee-bean);
  transition: transform 320ms var(--ease-out), opacity 200ms var(--ease-out);
}
.aurae-nav-burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.aurae-nav-burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
/* Pull the icon toward the right edge — the 44px hit area has ~10px of
   built-in visual padding, so offset it without shrinking the tap target */
.aurae-nav-burger { margin-right: -9px; }

.aurae-nav-sheet {
  position: fixed; inset: 0;
  z-index: 49;
  background: rgba(237, 235, 224, 0.97);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  backdrop-filter: blur(20px) saturate(1.05);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  gap: 8px;
  padding: clamp(80px, 18vh, 160px) 32px 48px;
  box-sizing: border-box;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 380ms var(--ease-out), transform 460ms var(--ease-out), visibility 0s linear 420ms;
  pointer-events: none;
}
.aurae-nav-sheet.is-open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity 380ms var(--ease-out), transform 460ms var(--ease-out), visibility 0s;
  pointer-events: auto;
}
.aurae-nav-sheet-links {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  width: 100%;
}
.aurae-nav-sheet-links li {
  opacity: 0; transform: translateY(12px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  transition-delay: calc(var(--i) * 60ms + 80ms);
}
.aurae-nav-sheet.is-open .aurae-nav-sheet-links li { opacity: 1; transform: none; }
.aurae-nav-sheet-link {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 13vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--coffee-bean);
  text-decoration: none;
  padding: 6px 0;
}
.aurae-nav-sheet-link.is-active { color: var(--palm-leaf); }
.aurae-nav-sheet-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--parchment); background: var(--palm-leaf);
  border-radius: var(--radius-pill);
  padding: 16px 30px; text-decoration: none;
  opacity: 0; transform: translateY(12px);
  transition: opacity 420ms var(--ease-out) 340ms, transform 420ms var(--ease-out) 340ms, background 220ms var(--ease-out);
}
.aurae-nav-sheet.is-open .aurae-nav-sheet-cta { opacity: 1; transform: none; }
.aurae-nav-sheet-cta:hover { background: var(--dark-khaki); }
body.aurae-menu-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .aurae-nav-sheet, .aurae-nav-sheet-links li, .aurae-nav-sheet-cta, .aurae-nav-burger span { transition: opacity 200ms linear; transform: none !important; }
}

@media (max-width: 920px) {
  .aurae-nav { padding: 14px 10px; }
  /* Two columns on mobile — links/cta are hidden, so a third column just
     strands the burger 16px+gap short of the right edge */
  .aurae-nav-inner { grid-template-columns: auto 1fr; gap: 16px; padding: 10px 18px; }
  .aurae-nav-scrolled { padding-top: 12px; }
  .aurae-nav-scrolled .aurae-nav-inner { padding: 8px 18px; }
  .aurae-nav-links { display: none; }
  .aurae-nav-cta { display: none; }
  .aurae-nav-burger { display: flex; }

  /* Mobile top bar: flush solid block with coffee bean underline */
  .aurae-nav:not(.aurae-nav-scrolled) { padding: 0; }
  .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-inner {
    background: var(--parchment);
    border: none;
    border-bottom: 1px solid var(--coffee-bean);
    border-radius: 0;
    max-width: none;
    box-shadow: none;
    padding: 12px 20px;
  }
  /* Always coffee bean ink on the mobile top bar */
  .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-mark { color: var(--coffee-bean); }
  .aurae-nav:not(.aurae-nav-scrolled) .aurae-nav-burger span { background: var(--coffee-bean); }
}
@media (prefers-reduced-motion: reduce) {
  .aurae-nav-inner { animation: none; }
}

/* ---------- Hero ---------- */
.aurae-hero {
  padding: 140px 48px 64px;
  position: relative;
  background: var(--parchment);
}
.aurae-hero-grid {
  width: min(var(--wm), 100% - 0px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
}
.aurae-hero-copy { padding-bottom: 32px; }

/* ---- Hero load-in: staggered fade-up on page arrival ---- */
@media (prefers-reduced-motion: no-preference) {
  .aurae-hero-copy .aurae-eyebrow,
  .aurae-hero-h1,
  .aurae-hero-sub,
  .aurae-hero-copy .aurae-btn,
  .aurae-hero-copy .aurae-btn-text {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .aurae-hero-copy .aurae-eyebrow { animation-delay: 0.15s; }
  .aurae-hero-h1                  { animation-delay: 0.35s; }
  .aurae-hero-sub                 { animation-delay: 0.6s;  }
  .aurae-hero-copy .aurae-btn     { animation-delay: 0.8s;  }
  .aurae-hero-copy .aurae-btn-text{ animation-delay: 0.9s;  }
}
@keyframes hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
.aurae-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--coffee-bean);
  margin: 24px 0 28px;
  max-width: 12ch;
  text-wrap: balance;
}
.aurae-hero-h1 em { font-style: italic; }
.aurae-hero-h1-sub { font-size: 0.78em; letter-spacing: -0.005em; color: var(--deep-cerulean); }
.aurae-hero-sub {
  font-family: var(--font-body); font-size: 17px; line-height: 1.55;
  color: var(--dark-khaki); max-width: 46ch; margin: 0 0 36px;
}
.aurae-hero-cta { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.aurae-hero-image .aurae-img { aspect-ratio: 4 / 5.2; }
.aurae-hero-image .aurae-img-ellipse {
  box-shadow: 0 0 0 1.5px #B8D4E3;
}
.aurae-hero-foot {
  width: min(var(--wm), 100% - 0px);
  margin: 80px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--palm-leaf);
  padding-top: 16px;
}
@media (max-width: 600px) {
  .aurae-hero-foot {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .aurae-hero-foot .aurae-section-label { justify-self: start !important; }
}

/* ---- Scroll cue ---- */
.aurae-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 4;
}
.aurae-scroll-cue__label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  animation: scroll-cue-label 4s ease-in-out infinite;
}
@keyframes scroll-cue-label {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.85; }
}
.aurae-scroll-cue__line {
  display: block;
  width: 1px;
  height: 52px;
  position: relative;
  overflow: hidden;
  /* faint persistent track */
  background: rgba(245,238,224,0.12);
}
.aurae-scroll-cue__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(245,238,224,0.55) 35%,
    rgba(255,252,245,1)   50%,
    rgba(245,238,224,0.55) 65%,
    transparent 100%
  );
  filter: blur(0.6px);
  animation: scroll-cue-aura 4s ease-in-out infinite;
}
@keyframes scroll-cue-aura {
  0%   { top: -100%; }
  100% { top: 200%;  }
}
@media (prefers-reduced-motion: reduce) {
  .aurae-scroll-cue__label { animation: none; opacity: 0.6; }
  .aurae-scroll-cue__line::after { animation: none; top: 25%; opacity: 0.5; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Base: fade up with a silky ease-out */
  .will-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .will-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Cards: fade up + subtle scale so they "pop" into place */
  .aurae-services-card.will-reveal,
  .aurae-priceband-card.will-reveal,
  .aurae-pf-home-card.will-reveal,
  .aurae-svc-card.will-reveal,
  .aurae-stack-row.will-reveal,
  .aurae-pf-featured-card.will-reveal,
  .aurae-pf-row.will-reveal,
  .aurae-bts-item.will-reveal,
  .aurae-cred-item.will-reveal {
    transform: translateY(24px) scale(0.97);
  }

  /* Images: gentle zoom-out as they land */
  .aurae-statement-visual.will-reveal,
  .aurae-about-image.will-reveal,
  .aurae-pf-row-image.will-reveal,
  .aurae-about-hero-img.will-reveal,
  .aurae-svc-hero__bg.will-reveal,
  .aurae-contact-hero-grid > div:last-child.will-reveal {
    transform: scale(1.04);
    transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* Hero title lines: cascade in from left */
  .aurae-svc-hero__line.will-reveal {
    transform: translateX(-20px) translateY(0);
  }

  /* Stagger — homepage */
  .aurae-services-card:nth-child(2).will-reveal  { transition-delay: 80ms;  }
  .aurae-services-card:nth-child(3).will-reveal  { transition-delay: 160ms; }
  .aurae-services-card:nth-child(4).will-reveal  { transition-delay: 240ms; }
  .aurae-process-step:nth-child(2).will-reveal   { transition-delay: 80ms;  }
  .aurae-process-step:nth-child(3).will-reveal   { transition-delay: 160ms; }
  .aurae-cred-item:nth-child(2).will-reveal      { transition-delay: 60ms;  }
  .aurae-cred-item:nth-child(3).will-reveal      { transition-delay: 120ms; }
  .aurae-cred-item:nth-child(4).will-reveal      { transition-delay: 180ms; }
  .aurae-priceband-card:nth-child(2).will-reveal { transition-delay: 90ms;  }
  .aurae-priceband-card:nth-child(3).will-reveal { transition-delay: 180ms; }
  .aurae-pf-home-card:nth-child(2).will-reveal   { transition-delay: 80ms;  }
  .aurae-pf-home-card:nth-child(3).will-reveal   { transition-delay: 160ms; }
  .aurae-bts-item:nth-child(2).will-reveal       { transition-delay: 70ms;  }
  .aurae-bts-item:nth-child(3).will-reveal       { transition-delay: 140ms; }
  .aurae-faq-item:nth-child(2).will-reveal       { transition-delay: 40ms;  }
  .aurae-faq-item:nth-child(3).will-reveal       { transition-delay: 80ms;  }
  .aurae-faq-item:nth-child(4).will-reveal       { transition-delay: 120ms; }
  .aurae-faq-item:nth-child(5).will-reveal       { transition-delay: 160ms; }
  .aurae-faq-item:nth-child(6).will-reveal       { transition-delay: 200ms; }
  .aurae-principles-item:nth-child(2).will-reveal { transition-delay: 80ms; }
  .aurae-principles-item:nth-child(3).will-reveal { transition-delay: 160ms;}
  .aurae-form-step:nth-child(2).will-reveal      { transition-delay: 80ms;  }
  .aurae-form-step:nth-child(3).will-reveal      { transition-delay: 160ms; }
  .aurae-form-step:nth-child(4).will-reveal      { transition-delay: 240ms; }

  /* Stagger — services page */
  .aurae-svc-hero__line:nth-child(2).will-reveal { transition-delay: 80ms;  }
  .aurae-svc-hero__line:nth-child(3).will-reveal { transition-delay: 160ms; }
  .aurae-svc-card:nth-child(2).will-reveal       { transition-delay: 80ms;  }
  .aurae-svc-card:nth-child(3).will-reveal       { transition-delay: 160ms; }
  .aurae-svc-card:nth-child(4).will-reveal       { transition-delay: 240ms; }
  .aurae-stack-row:nth-child(2).will-reveal      { transition-delay: 100ms; }
  .aurae-stack-row:nth-child(3).will-reveal      { transition-delay: 200ms; }

  /* Stagger — work page */
  .aurae-pf-row:nth-child(2).will-reveal         { transition-delay: 80ms;  }
  .aurae-pf-row:nth-child(3).will-reveal         { transition-delay: 160ms; }
}

/* ---------- Manifesto (dark) ---------- */
.aurae-section-dark { background: var(--coffee-bean); color: var(--parchment); }
.aurae-section-dark .aurae-eyebrow { color: var(--light-blue); }
.aurae-section-dark .aurae-eyebrow-rule { background: var(--light-blue); }

.aurae-manifesto { padding: 120px 48px; }
.aurae-manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin: 28px 0 24px;
  max-width: 22ch;
  border: 0;
  padding: 0;
  text-wrap: balance;
}
.aurae-manifesto-quote em { font-style: italic; }
.aurae-manifesto-attr {
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light-blue);
  margin: 0;
}

/* ---------- Services ---------- */
.aurae-services { padding: 120px 48px; }
.aurae-services-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: end;
  margin-bottom: 64px;
}
.aurae-services-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px);
  line-height: 1.06; letter-spacing: -0.015em;
  margin: 0; color: var(--coffee-bean);
  text-wrap: balance;
}
.aurae-services-title em { font-style: italic; }
.aurae-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--palm-leaf-30);
  border-top: 0.5px solid var(--palm-leaf);
  border-bottom: 0.5px solid var(--palm-leaf);
}
.aurae-service-card {
  background: var(--parchment);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 380px;
  transition: background 220ms var(--ease-out);
}
.aurae-service-card:hover { background: var(--light-blue); }
.aurae-service-num {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; color: var(--palm-leaf);
}
.aurae-service-title {
  font-family: var(--font-display); font-size: 32px; line-height: 1.1;
  margin: 0; color: var(--coffee-bean); letter-spacing: -0.01em;
}
.aurae-service-title em { font-style: italic; }
.aurae-service-body {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--dark-khaki); margin: 0;
}
.aurae-service-flow {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--palm-leaf);
  margin-top: auto; padding-top: 20px;
  border-top: 0.5px solid var(--palm-leaf-30);
}
.aurae-service-link {
  font-family: var(--font-body); font-size: 13px; color: var(--coffee-bean);
  text-decoration: none; border-bottom: 1px solid var(--coffee-bean);
  align-self: flex-start; padding-bottom: 2px;
}
.aurae-service-link:hover { opacity: 0.7; }

/* ---------- Process (dark) ---------- */
.aurae-process { padding: 120px 48px; }
.aurae-process-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: end;
  margin-bottom: 56px;
}
.aurae-process-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06; letter-spacing: -0.015em; margin: 0; color: var(--parchment);
  text-wrap: balance;
}
.aurae-process-title em { font-style: italic; }
.aurae-process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(var(--process-cols, 3), 1fr);
  border-top: 0.5px solid var(--palm-leaf);
}
.aurae-process-list:has(.aurae-process-step:nth-child(4)) { --process-cols: 4; }
.aurae-process-step {
  padding: 40px 32px 48px 0;
  border-right: 0.5px solid rgba(141,133,90,0.4);
  display: flex; flex-direction: column; gap: 16px;
}
.aurae-process-step:not(:first-child) { padding-left: 32px; }
.aurae-process-step:last-child { border-right: 0; padding-right: 0; }
.aurae-process-num {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; color: var(--light-blue);
  margin-bottom: 8px;
}
.aurae-process-step-title {
  font-family: var(--font-display); font-size: 30px; line-height: 1.1;
  margin: 0 0 4px; color: var(--parchment); font-weight: 400;
  letter-spacing: -0.015em;
}
.aurae-process-step-body {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.6;
  color: var(--light-blue); margin: 0;
  max-width: 32ch;
}

/* Light variant of the process grid */
.aurae-process-list--light { border-top-color: var(--palm-leaf); }
.aurae-process-list--light .aurae-process-step {
  border-right-color: var(--palm-leaf-30);
}
.aurae-process-list--light .aurae-process-num { color: var(--palm-leaf); }
.aurae-process-list--light .aurae-process-step-title { color: var(--coffee-bean); }
.aurae-process-list--light .aurae-process-step-body { color: var(--dark-khaki); }

/* ---------- Featured-offer lists (signature offer dark band) ---------- */
.aurae-feat-accordion {
  margin-top: 32px;
  border-top: 0.5px solid rgba(175, 205, 208, 0.3);
}
.aurae-feat-item {
  border-bottom: 0.5px solid rgba(175, 205, 208, 0.22);
}
.aurae-feat-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 2px;
  user-select: none;
}
.aurae-feat-item > summary::-webkit-details-marker { display: none; }
.aurae-feat-item-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  color: var(--parchment);
  transition: color 200ms var(--ease-out);
}
.aurae-feat-item:hover > summary .aurae-feat-item-label,
.aurae-feat-item[open] > summary .aurae-feat-item-label {
  color: var(--light-blue);
}
.aurae-feat-item-icon {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
}
.aurae-feat-item-icon::before,
.aurae-feat-item-icon::after {
  content: "";
  position: absolute;
  background: var(--light-blue);
  transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out);
}
/* horizontal bar */
.aurae-feat-item-icon::before {
  top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%);
}
/* vertical bar — collapses to a minus when open */
.aurae-feat-item-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%) scaleY(1);
}
.aurae-feat-item[open] > summary .aurae-feat-item-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.aurae-feat-item-icon-spacer { display: none; }
.aurae-feat-list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.aurae-feat-list li {
  font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--light-blue);
  padding-left: 18px; position: relative;
}
.aurae-feat-list li::before {
  content: "—"; position: absolute; left: 0; top: 0;
  color: var(--light-blue); font-size: 13px;
}
@media (max-width: 720px) {
  .aurae-feat-list { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- About ---------- */
.aurae-about { padding: 120px 48px; }
.aurae-about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center;
}
.aurae-about-image .aurae-img { aspect-ratio: 4 / 5; }
.aurae-polaroid {
  position: relative;
  width: 100%;
  aspect-ratio: 441 / 539;
  filter: drop-shadow(0 24px 44px rgba(38, 21, 11, 0.18));
  transform: rotate(-1.6deg);
}
.aurae-polaroid-window {
  position: absolute;
  left: 6.5%;
  top: 6.12%;
  width: 88%;
  height: 72.73%;
  overflow: hidden;
  background: #ECE9E2;
}
.aurae-polaroid-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  animation: aurae-polaroid-fade 12s infinite;
}
@keyframes aurae-polaroid-fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  33%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .aurae-polaroid-photo { animation: none; }
  .aurae-polaroid-photo:first-child { opacity: 1; }
}
.aurae-polaroid-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.aurae-about-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06; letter-spacing: -0.015em; margin: 24px 0 28px;
  color: var(--coffee-bean); text-wrap: balance;
}
.aurae-about-title em { font-style: italic; }
.aurae-about-copy p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--dark-khaki); margin: 0 0 16px; max-width: 52ch;
}
.aurae-about-meta {
  display: grid; grid-template-columns: repeat(3, max-content);
  gap: 48px; margin-top: 36px;
  border-top: 0.5px solid var(--palm-leaf); padding-top: 24px;
}
.aurae-meta-num {
  display: block;
  font-family: var(--font-display); font-size: 36px; line-height: 1;
  color: var(--coffee-bean);
}
.aurae-meta-label {
  display: block; margin-top: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--palm-leaf);
}

/* ---------- Journal ---------- */
.aurae-journal { padding: 120px 48px; background: var(--parchment-2); }
.aurae-journal-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: end;
  margin-bottom: 56px;
}
.aurae-journal-title {
  font-family: var(--font-display); font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06; margin: 0; color: var(--coffee-bean);
  letter-spacing: -0.01em; text-wrap: balance;
}
.aurae-journal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.aurae-post .aurae-img { aspect-ratio: 4 / 3; margin-bottom: 18px; }
.aurae-post-cat {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--palm-leaf);
}
.aurae-post-title {
  font-family: var(--font-display); font-size: 22px; line-height: 1.18;
  margin: 8px 0 12px; color: var(--coffee-bean); font-weight: 400;
  text-wrap: balance;
}
.aurae-post-meta {
  font-family: var(--font-body); font-size: 12px; color: var(--palm-leaf);
  display: flex; gap: 8px; align-items: center;
}

/* ---------- Testimonial carousel (one at a time, auto-looping) ---------- */
.aurae-tcarousel {
  margin-top: 8px;
  border-top: 0.5px solid var(--palm-leaf-30);
  padding-top: 48px;
}
.aurae-tcarousel-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  min-height: 280px;
  transition: opacity 420ms var(--ease-out, ease-out), transform 420ms var(--ease-out, ease-out);
}
.aurae-tcarousel-slide.is-in { opacity: 1; transform: translateY(0); }
.aurae-tcarousel-slide.is-out { opacity: 0; transform: translateY(10px); }
.aurae-tcarousel-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 88px;
  line-height: 0.6;
  color: var(--light-blue);
  margin-bottom: 12px;
  user-select: none;
}
.aurae-tcarousel-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  color: var(--coffee-bean);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.aurae-tcarousel-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.aurae-tcarousel-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--coffee-bean);
  margin: 4px 0 0;
}
.aurae-tcarousel-attr .aurae-post-meta { justify-content: center; }
.aurae-tcarousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.aurae-tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--palm-leaf-30);
  cursor: pointer;
  transition: background 240ms var(--ease-out, ease-out), transform 240ms var(--ease-out, ease-out);
}
.aurae-tcarousel-dot:hover { background: var(--palm-leaf); }
.aurae-tcarousel-dot.is-active {
  background: var(--deep-cerulean);
  transform: scale(1.3);
}
@media (max-width: 760px) {
  .aurae-tcarousel-slide { min-height: 320px; }
  /* Keep the heading visually tied to the testimonial on mobile —
     drop the divider rule and tighten the gap */
  .aurae-journal-head { margin-bottom: 28px; }
  .aurae-tcarousel {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  .aurae-tcarousel-mark { margin-bottom: 4px; font-size: 64px; }
}

/* ---------- Contact (dark) ---------- */
.aurae-contact { padding: 120px 48px; }
.aurae-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.aurae-contact-title {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06; letter-spacing: -0.015em; margin: 24px 0 24px;
  color: var(--parchment); text-wrap: balance;
}
.aurae-contact-title em { font-style: italic; }
.aurae-contact-sub {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--light-blue); margin: 0 0 32px; max-width: 38ch;
}
.aurae-contact-direct {
  display: flex; flex-direction: column; gap: 6px;
  border-top: 0.5px solid var(--palm-leaf); padding-top: 20px; max-width: 36ch;
}
.aurae-contact-direct a {
  font-family: var(--font-display); font-style: italic; font-size: 22px;
  color: var(--parchment); border-bottom: 0; text-decoration: none;
}
.aurae-contact-direct a:hover { color: var(--light-blue); }

.aurae-contact-form {
  display: flex; flex-direction: column; gap: 24px;
}
.aurae-field { display: flex; flex-direction: column; gap: 8px; }
.aurae-field span {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--light-blue);
}
.aurae-field input,
.aurae-field select,
.aurae-field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--parchment);
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(175,205,208,0.5);
  padding: 8px 0; outline: none; width: 100%;
  resize: none;
}
.aurae-field select { appearance: none; padding-right: 24px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--light-blue) 50%),
                    linear-gradient(135deg, var(--light-blue) 50%, transparent 50%);
  background-position: calc(100% - 12px) 14px, calc(100% - 6px) 14px;
  background-size: 6px 6px; background-repeat: no-repeat;
}
.aurae-field select option { color: var(--coffee-bean); background: var(--parchment); }
.aurae-field input::placeholder,
.aurae-field textarea::placeholder {
  color: var(--light-blue); opacity: 0.6;
  font-family: var(--font-display); font-style: italic;
}
.aurae-field input:focus,
.aurae-field textarea:focus,
.aurae-field select:focus { border-bottom-color: var(--light-blue); }

.aurae-contact-thanks h3 {
  font-family: var(--font-display); font-size: 38px; line-height: 1.1;
  color: var(--parchment); margin: 16px 0;
}
.aurae-contact-thanks h3 em { font-style: italic; }
.aurae-contact-thanks p { color: var(--light-blue); max-width: 36ch; }

/* ---------- Footer (Napoli-style editorial) ---------- */
.aurae-footer {
  background: var(--light-blue);
  color: var(--coffee-bean);
  padding: 0;
}
.aurae-footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.1fr) minmax(280px, 1fr);
  align-items: start;
  gap: 48px;
  padding: 84px 64px 72px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Left — two-column nav */
.aurae-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 64px;
  justify-content: start;
}
.aurae-footer-col { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; align-content: start; }
.aurae-footer-col a {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee-bean);
  text-decoration: none;
  border-bottom: 0;
  transition: opacity var(--dur-1) var(--ease-out);
}
.aurae-footer-col a:hover { opacity: 0.45; }

/* Center — wordmark block */
.aurae-footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 0;
}
.aurae-footer-center .aurae-wordmark { display: block; }
.aurae-footer-social {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px;
}
.aurae-footer-social a {
  display: inline-flex;
  color: var(--palm-leaf);
  text-decoration: none;
  border-bottom: 0;
  transition: opacity var(--dur-1) var(--ease-out);
}
.aurae-footer-social a:hover { opacity: 0.55; }
.aurae-footer-social svg { display: block; }
.aurae-footer-coords {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coffee-bean-80);
  margin: 2px 0 0;
  max-width: none;
}
.aurae-footer-coords a {
  color: inherit;
  border-bottom: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}
.aurae-footer-coords a:hover { opacity: 0.55; }
.aurae-footer-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--parchment);
  text-decoration: none;
  border-bottom: 0;
  transition: opacity var(--dur-1) var(--ease-out);
}
.aurae-footer-script:hover { opacity: 0.55; }

/* Right — invitation block */
.aurae-footer-invite {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  text-decoration: none;
  border-bottom: 0;
  color: var(--coffee-bean);
  gap: 6px;
}
.aurae-footer-invite-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--parchment);
}
.aurae-footer-invite-head {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.4vw + 1rem, 2.9rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-top: 6px;
}
.aurae-footer-invite-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--coffee-bean-80);
  margin-top: 10px;
}
.aurae-footer-invite-arrow {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  margin-top: 14px;
  display: inline-block;
  transition: transform var(--dur-2) var(--ease-out);
}
.aurae-footer-invite:hover .aurae-footer-invite-arrow { transform: translateX(10px); }

/* Full-bleed image strip — auto-scrolling marquee */
.aurae-footer-strip {
  overflow: hidden;
  width: 100%;
}
.aurae-footer-strip-track {
  display: flex;
  width: max-content;
  animation: aurae-strip-scroll 96s linear infinite;
}
.aurae-footer-strip:hover .aurae-footer-strip-track {
  animation-play-state: paused;
}
@keyframes aurae-strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .aurae-footer-strip-track { animation: none; }
}
.aurae-footer-strip-cell {
  position: relative;
  flex: 0 0 auto;
  width: clamp(190px, 15vw, 280px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.aurae-footer-strip-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: transform var(--dur-3) var(--ease-out), filter var(--dur-3) var(--ease-out);
}
.aurae-footer-strip-cell:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .aurae-hero-grid,
  .aurae-services-head,
  .aurae-process-head,
  .aurae-about-grid,
  .aurae-journal-head,
  .aurae-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .aurae-services-grid,
  .aurae-journal-grid { grid-template-columns: 1fr; }
  .aurae-process-list { grid-template-columns: repeat(2, 1fr); }
  .aurae-process-step { border-right: 0; border-bottom: 0.5px solid rgba(141,133,90,0.4); }
  .aurae-nav-links { display: none; }

  .aurae-footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 56px;
    padding: 80px 32px 72px;
  }
  .aurae-footer-nav { justify-content: center; gap: 18px 56px; }
  .aurae-footer-invite { align-items: center; text-align: center; }
}
@media (max-width: 560px) {
  .aurae-footer-strip-cell { width: clamp(150px, 42vw, 200px); }
}
