/* =============================================
   THE UNPOSED EDIT — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Questrial&family=Bodoni+Moda:opsz,wght@6..96,400;6..96,600;6..96,700&family=Sacramento&family=Short+Stack&display=swap');

/* --- Brand fonts ---
   Perandory and Gistesy are the real files. Providence Sans isn't here yet, so
   it still resolves to its stand-in (see fonts/LEEME.md).
   Perandory ships Regular / Semi-Condensed / Condensed: the design uses
   **Regular** — matched by measuring its title (429px wide at 27px cap height,
   which only Regular produces at a plausible cap-height ratio). */
@font-face {
  font-family: 'Perandory';
  src: local('Perandory'),
       url('fonts/Perandory-Regular.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Gistesy';
  src: local('Gistesy'),
       url('fonts/Gistesy.ttf') format('truetype');
  font-display: swap;
}

/* FF Providence Sans isn't licensed/downloaded yet, so this stays off — an
   @font-face pointing at missing files just 404s on every page load. When the
   file exists, drop it in /fonts and uncomment this block.
@font-face {
  font-family: 'Providence Sans';
  src: local('FF Providence Sans'), local('Providence Sans'),
       url('fonts/providence-sans.woff2') format('woff2'),
       url('fonts/providence-sans.ttf') format('truetype');
  font-display: swap;
}
*/

/* --- Variables --- */
:root {
  /* Palette lifted straight from the original design export */
  --wine:   #9d3656;  /* nav + footer bar */
  --cream:  #e9e6da;  /* page background */
  --coral:  #d25d65;  /* headings, outline buttons */
  --gold:   #a79e5a;  /* script accents, gold buttons */
  --blue:   #a1cbcc;
  --orange: #f9a34c;
  --brown:  #a05b33;
  --ink:    #080808;  /* body copy */
  --ink-soft: #404040;
  --white:  #FFFFFF;

  --pink:   var(--coral);

  /* Sampled from the four stage boxes in bodas.svg */
  --box-behind:    #dc9695;
  --box-civil:     #f2bf87;
  --box-religiosa: #c2bc8f;
  --box-recepcion: #bc7f8d;

  /* Real font first, Google Fonts stand-in second */
  --font-display: 'Perandory', 'Bodoni Moda', serif;
  --font-body:    'Questrial', sans-serif;
  --font-script:  'Gistesy', 'Sacramento', cursive;
  --font-hand:    'Providence Sans', 'Short Stack', cursive;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =============================================
   NAVIGATION
   ============================================= */
/* Design keeps the logo and "Guatemala" tucked left (x 45 and 169 on a 1024.5
   canvas) and spreads the links across the right ~60% (x 339..956). A
   space-between on three blocks would strand "Guatemala" mid-bar instead. */
nav {
  background-color: var(--wine);
  padding: 0.75rem 4.25rem 0.75rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 0;
}

.nav-logo { flex: none; }

/* Design nav is 114 units tall on a 1024.5-unit canvas, with the logo art
   filling ~88 of it — the bar is deliberately tall. It shrinks on scroll. */
.nav-logo img {
  height: 88px;
  width: auto;
}

.nav-location {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  flex: none;
  margin-left: 3.5rem;
}

/* flex:1 + space-between is what spreads the links evenly across the
   remaining width instead of bunching them at the right edge */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: 4.5rem;
}

/* Every nav item is underlined in the design — including ¡Cotiza Hoy! */
.nav-links li a {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  transition: color 0.25s, text-decoration-color 0.25s;
}

.nav-links li a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

/* The separators are the design's own hand-drawn sparkles, extracted from the
   export. Masking (rather than <img>) is what lets each one carry its colour. */
.nav-links .nav-star {
  width: 20px;
  height: 24px;
  flex: none;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.nav-star.s-a { -webkit-mask-image: url('images/star-a.svg'); mask-image: url('images/star-a.svg'); background-color: var(--cream); }
.nav-star.s-b { -webkit-mask-image: url('images/star-b.svg'); mask-image: url('images/star-b.svg'); background-color: var(--blue); width: 26px; }
.nav-star.s-c { -webkit-mask-image: url('images/star-c.svg'); mask-image: url('images/star-c.svg'); background-color: var(--blue); width: 18px; }
.nav-star.s-d { -webkit-mask-image: url('images/star-d.svg'); mask-image: url('images/star-d.svg'); background-color: var(--cream); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   BUTTONS
   ============================================= */
/* Every button in the design is a solid accent block with cream, underlined
   text — the colour is the only thing that changes between them. */
.btn {
  display: inline-block;
  padding: 0.7rem 1.7rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  cursor: pointer;
  border: none;
  transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-coral  { background-color: var(--coral); }
.btn-orange { background-color: var(--orange); }
.btn-gold   { background-color: var(--gold); }
.btn-blue   { background-color: var(--blue); }
.btn-wine   { background-color: var(--wine); }

/* =============================================
   HERO — Homepage
   ============================================= */
/* Design hero is 407px tall on a 1024px canvas — ~40% of viewport width.
   Tracking vw keeps that proportion as the window grows, with a floor so it
   doesn't collapse on phones. */
.hero {
  position: relative;
  min-height: clamp(400px, 40vw, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hero-logo {
  height: 88px;
  width: auto;
  margin: 0 auto 1.4rem;
}

/* 41.4px at a 1024 viewport in the design => 4.05vw */
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.05vw, 3.5rem);
  color: var(--cream);
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 900px;
}

/* =============================================
   SERVICES CARDS (Homepage)
   ============================================= */
/* Design: two 310px columns, 122px apart, centred on a 1024px canvas */
.services {
  padding: 3.5rem 2rem;
  max-width: 806px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 122px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* 310x338 in the design — very slightly portrait, not landscape */
.service-card img {
  width: 100%;
  max-width: 310px;
  aspect-ratio: 310 / 338;
  object-fit: cover;
  border-radius: 14px;
}

.service-card h2 {
  font-family: var(--font-script);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--ink);
  max-width: 340px;
  line-height: 1.7;
}

/* =============================================
   ABOUT (Homepage)
   ============================================= */
/* Andrea's cutout stands on the footer in the design, so the column is
   bottom-aligned and the section carries no bottom padding. */
.about {
  position: relative;
  padding: 4rem 2rem 0;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

/* Pink logo watermark, top-left of the section */
.about::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 62px;
  height: 82px;
  background: url('images/logo-pink.png') center/contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

.about-image-wrapper {
  position: relative;
  align-self: end;
}

/* Sparkles scattered around her, as in the design */
.about-image-wrapper::before,
.about-image-wrapper::after {
  content: '';
  position: absolute;
  background-color: var(--coral);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  animation: star-twinkle 4s ease-in-out infinite;
}

.about-image-wrapper::before {
  top: 8%;
  right: -6%;
  width: 26px;
  height: 32px;
  -webkit-mask-image: url('images/star-a.svg');
  mask-image: url('images/star-a.svg');
}

.about-image-wrapper::after {
  top: 26%;
  left: -4%;
  width: 18px;
  height: 18px;
  -webkit-mask-image: url('images/star-c.svg');
  mask-image: url('images/star-c.svg');
  animation-delay: 1.5s;
}

/* Andrea's portrait is a transparent cutout — no frame, no rounding, and it
   must not be cropped by object-fit. */
.about-image-wrapper img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* The section has no bottom padding so Andrea's cutout can stand on the footer;
   this keeps the text column (and its button) clear of it. */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--coral);
  text-transform: uppercase;
  line-height: 1;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* The handwritten sign-off — Providence Sans in the original */
.about-cursive {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* =============================================
   FOOTER
   ============================================= */
/* Design centres the copyright and parks Instagram on the right, so the
   icon sits outside the flow rather than pushing the text off-centre. */
footer {
  position: relative;
  background-color: var(--wine);
  color: var(--cream);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-ig {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

footer a { color: var(--white); transition: opacity 0.2s; }
footer a:hover { opacity: 0.75; }

.footer-ig svg { width: 28px; height: 28px; fill: var(--cream); }

/* =============================================
   INTERIOR PAGE — Hero split
   ============================================= */
.page-hero {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero.reverse { direction: rtl; }
.page-hero.reverse > * { direction: ltr; }

.page-hero img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.page-hero-text { display: flex; flex-direction: column; gap: 1.2rem; }

.page-hero-text h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1.1;
}

.page-hero-text p { font-size: 0.95rem; line-height: 1.8; }

/* =============================================
   SECTION TITLE
   ============================================= */
/* Interior pages title in brown; only the homepage's "Hola, soy Andrea" is coral */
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--brown);
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}

/* =============================================
   HOW I WORK (Bodas)
   ============================================= */
.how-i-work {
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.how-i-work-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.how-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.how-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
}

.how-item h3 {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 400;
}

.how-item p { font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   STAGES (Bodas)
   ============================================= */
.stages { padding: 5rem 2rem; }

.stages-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Pink logo watermarks, as in the design: right of "Mi forma de trabajar",
   left of "Te acompaño en cada etapa". */
.how-i-work-inner,
.stages-inner { position: relative; }

.how-i-work-inner::before,
.stages-inner::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  width: 54px;
  height: 71px;
  background: url('images/logo-pink.png') center/contain no-repeat;
  opacity: 0.8;
  pointer-events: none;
}

.how-i-work-inner::before { right: -1rem; }
.stages-inner::before    { left: -3.5rem; top: 1rem; }

@media (max-width: 1024px) {
  .how-i-work-inner::before,
  .stages-inner::before { display: none; }
}

.stages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stage-box {
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.stage-box h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.stage-box p { font-size: 0.88rem; line-height: 1.6; color: var(--ink-soft); }

.stage-box.behind    { background-color: var(--box-behind); }
.stage-box.civil     { background-color: var(--box-civil); }
.stage-box.religiosa { background-color: var(--box-religiosa); }
.stage-box.recepcion { background-color: var(--box-recepcion); }

/* =============================================
   WHY SECTION (shared)
   ============================================= */
.why-section {
  padding: 5rem 2rem;
  background-color: var(--cream);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-inner img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.why-content { display: flex; flex-direction: column; gap: 1.25rem; }

.why-content ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.why-content ul li {
  font-size: 0.93rem;
  line-height: 1.7;
  padding-left: 0.5rem;
}

.why-content ul li span {
  font-weight: 700;
  color: var(--coral);
}

.why-content ul li span.gold { color: var(--gold); }
.why-content ul li span.wine { color: var(--wine); }
.why-content ul li span.pink { color: var(--pink); }
.why-content ul li span.green { color: #6B8F5E; }

/* =============================================
   PLANNERS — Brand support
   ============================================= */
.brand-support {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.brand-text { display: flex; flex-direction: column; gap: 1rem; }

.brand-text h2 {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--gold);
}

.brand-text p { font-size: 0.95rem; line-height: 1.8; }

.brand-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* =============================================
   DECORATIVE SPARKLE
   ============================================= */
.sparkle {
  display: inline-block;
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* =============================================
   CENTER WRAPPER
   ============================================= */
.center { text-align: center; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 768px) {
  .services,
  .about,
  .page-hero,
  .how-grid,
  .stages-grid,
  .why-inner,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.reverse { direction: ltr; }

  .about-image-wrapper img,
  .page-hero img { max-width: 100%; }

  .about { text-align: center; }
  .about-image-wrapper { display: flex; justify-content: center; }

  nav {
    flex-wrap: wrap;
    padding: 0.75rem 1.2rem;
    justify-content: space-between;
  }

  .nav-toggle { display: flex; order: 3; }

  /* The desktop left-tuck margins would indent the dropdown, so drop them */
  .nav-links {
    display: none;
    flex: 1 0 100%;
    order: 4;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-left: 0;
    padding: 1rem 0 0.5rem;
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }
  .nav-links .nav-star { display: none; }

  .nav-location {
    font-size: 0.8rem;
    margin-left: 1rem;
  }

  .nav-logo img { height: 60px; }

  .hero { min-height: 50vh; }

  .why-inner { grid-template-columns: 1fr; }
  .why-inner img { aspect-ratio: 4/3; }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.4rem; }
  .page-hero-text h1 { font-size: 1.6rem; }
  .about-title { font-size: 2rem; }

  .stages-grid { grid-template-columns: 1fr; }

  footer {
    padding: 1.2rem 3.5rem;
    text-align: center;
  }

  .footer-ig { right: 1rem; }
}

/* =============================================
   CUSTOM CURSOR
   Only on devices with a real mouse. The `.cursor-on`
   class is added by main.js, so without JS the native
   cursor is never hidden.
   ============================================= */
.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--coral);
  transition: opacity 0.3s, width 0.25s, height 0.25s, margin 0.25s,
              background-color 0.25s, border-color 0.25s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background-color: var(--coral);
}

.cursor-on .cursor-ring,
.cursor-on .cursor-dot { opacity: 1; }

/* Grow and fill when over something clickable */
.cursor-ring.is-hover {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  background-color: rgba(217, 123, 88, 0.15);
}

/* Over the wine nav / footer the coral reads muddy — go cream */
.cursor-ring.on-dark { border-color: var(--cream); }
.cursor-ring.on-dark.is-hover { background-color: rgba(245, 237, 224, 0.2); }
.cursor-dot.on-dark { background-color: var(--cream); }

.cursor-ring.is-down {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
}

@media (pointer: fine) {
  .cursor-on,
  .cursor-on a,
  .cursor-on button,
  .cursor-on .nav-toggle { cursor: none; }
}

/* =============================================
   SPARKLE TRAIL (hero only — nods to the brand)
   ============================================= */
.sparkle-particle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: #FFF3D6;
  box-shadow: 0 0 6px 2px rgba(255, 224, 160, 0.85);
  animation: sparkle-fade 900ms ease-out forwards;
}

@keyframes sparkle-fade {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), 26px) scale(0.2); }
}

/* =============================================
   SCROLL REVEAL
   Elements start hidden only once JS confirms it can
   reveal them (`.reveal-on` on <html>), so no-JS shows all.
   ============================================= */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children of a grid */
.reveal-on .reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal-on .reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal-on .reveal[data-delay="3"] { transition-delay: 0.36s; }

/* =============================================
   HERO ENTRANCE + PARALLAX
   ============================================= */
.hero-bg {
  /* Oversized so the parallax shift never exposes an edge */
  inset: -40px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-content > * {
  animation: hero-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-eyebrow { animation-delay: 0.15s; }
.hero-logo    { animation-delay: 0.3s; }
.hero-title   { animation-delay: 0.45s; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-logo {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero:hover .hero-logo { transform: scale(1.06) rotate(-2deg); }

/* =============================================
   IMAGE + CARD HOVER
   ============================================= */
.service-card img,
.how-item img,
.why-inner img,
.page-hero img,
.brand-grid img,
.about-image-wrapper img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card:hover img,
.how-item:hover img,
.why-inner:hover img,
.page-hero:hover img,
.brand-grid:hover img,
.about-image-wrapper:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px -12px rgba(46, 26, 14, 0.35);
}

.service-card h2,
.how-item h3 {
  transition: color 0.35s;
}
.service-card:hover h2,
.how-item:hover h3 { color: var(--coral); }

/* Stage boxes lift on hover */
.stage-box {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s;
}
.stage-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px -10px rgba(46, 26, 14, 0.3);
}

/* =============================================
   BUTTONS — sheen sweep on hover
   ============================================= */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* =============================================
   NAV — condense on scroll
   ============================================= */
nav {
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

nav.is-scrolled {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  box-shadow: 0 6px 24px -8px rgba(46, 26, 14, 0.45);
}

.nav-logo img {
  transition: height 0.35s ease, transform 0.35s ease;
}
nav.is-scrolled .nav-logo img { height: 38px; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-star { animation: star-twinkle 4s ease-in-out infinite; }
.nav-star.s-b { animation-delay: 1s; }
.nav-star.s-c { animation-delay: 2s; }
.nav-star.s-d { animation-delay: 3s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.92) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.08) rotate(8deg); }
}

.footer-ig svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.footer-ig:hover svg { transform: scale(1.15) rotate(-6deg); }

/* =============================================
   REDUCED MOTION — strip it all back
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on .reveal { opacity: 1; transform: none; }
  .sparkle-particle { display: none; }
}
