/* ============================================================
   LASER XPRESSIONS — Luxury Engraving Studio
   Shared stylesheet · Vanilla CSS
   Palette derived from the logo: Royal Navy (#001870)
   Light luxury · navy + champagne gold + platinum · glass depth
   ============================================================ */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surfaces (light) */
  --bg:          #F4F6FB;
  --surface:     #FFFFFF;
  --surface-2:   #EBEEF7;

  /* Brand navy — from logo #001870 */
  --navy:        #04226E;   /* primary brand — buttons, links, accents */
  --navy-2:      #0A2E86;   /* lighter navy for gradients */
  --navy-deep:   #05123F;   /* deep navy for dark blocks */

  /* Dark-block tones (topbar, CTA, footer) */
  --onyx:        #05123F;
  --onyx-2:      #071845;
  --onyx-3:      #0B2160;
  --onyx-glass:  rgba(255, 255, 255, 0.72);   /* light glass */

  /* Champagne gold accent */
  --gold:        #AF8A34;
  --gold-light:  #D8BE7C;
  --gold-deep:   #8A6B21;
  --gold-soft:   rgba(175, 138, 52, 0.12);

  /* Platinum / silver detail */
  --silver:      #414B66;   /* readable secondary text on light */
  --platinum:    #C9D2E6;

  /* Text (name kept as --ivory = strong ink so inline styles stay correct) */
  --ivory:       #0C1633;   /* strong headings / labels */
  --text:        #232C46;   /* body */
  --muted:       #5C6684;   /* muted */

  /* On dark blocks */
  --on-dark:       #EEF1FA;
  --on-dark-muted: #AAB4D6;

  --line:        rgba(4, 34, 110, 0.16);
  --line-soft:   rgba(12, 22, 51, 0.10);

  /* Type */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Elevation (navy-tinted, soft for light) */
  --shadow-1: 0 1px 2px rgba(9,20,54,.06), 0 10px 30px rgba(9,20,54,.08);
  --shadow-2: 0 2px 8px rgba(9,20,54,.09), 0 26px 60px rgba(9,20,54,.16);
  --shadow-gold: 0 12px 40px rgba(175,138,52,.20), 0 2px 10px rgba(175,138,52,.10);
  --shadow-navy: 0 12px 34px rgba(4,34,110,.26);

  /* z-index scale */
  --z-topbar: 40; --z-header: 50; --z-menu: 60; --z-float: 70; --z-toast: 90;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(58% 48% at 85% -5%, rgba(4,34,110,.07), transparent 60%),
    radial-gradient(44% 40% at -6% 100%, rgba(175,138,52,.07), transparent 60%),
    var(--bg);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

::selection { background: var(--navy); color: #fff; }

:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ivory);
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p  { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.gold-text {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.navy-text { color: var(--navy); }
.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ---------- 3. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--silver); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform; text-align: center; min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }

/* Primary = brand navy */
.btn-gold {
  background: linear-gradient(120deg, var(--navy-2), var(--navy) 55%, var(--navy-deep));
  color: #fff;
  box-shadow: var(--shadow-navy);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(4,34,110,.34); }

.btn-ghost {
  background: rgba(4,34,110,.03);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy-deep); transform: translateY(-3px); background: rgba(4,34,110,.06); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

.btn-gold::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease); pointer-events: none;
}
.btn-gold:hover::after { transform: translateX(120%); }

/* ---------- 5. TOP BAR (dark navy) ---------- */
.topbar { background: var(--onyx-2); color: var(--on-dark-muted); border-bottom: 1px solid rgba(255,255,255,.08); font-size: .82rem; position: relative; z-index: var(--z-topbar); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; flex-wrap: wrap; }
.topbar__contact { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; color: var(--on-dark-muted); }
.topbar__contact a, .topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: var(--on-dark-muted); transition: color .2s; }
.topbar__contact a:hover { color: var(--gold-light); }
.topbar__contact svg { width: 15px; height: 15px; color: var(--gold-light); flex: none; }
.topbar__socials { display: flex; align-items: center; gap: .35rem; }

.social-ico {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line-soft); color: var(--navy);
  transition: all .25s var(--ease);
}
.social-ico:hover { color: #fff; background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.social-ico svg { width: 16px; height: 16px; }
/* dark-context socials (topbar + footer) */
.topbar .social-ico, .footer__socials .social-ico { border-color: rgba(255,255,255,.16); color: #cbd4ee; }
.topbar .social-ico:hover, .footer__socials .social-ico:hover { color: var(--navy-deep); background: var(--gold-light); border-color: var(--gold-light); }

/* ---------- 6. HEADER / NAV (light glass) ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line-soft); box-shadow: 0 10px 34px rgba(9,20,54,.10); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .85rem; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 48px; width: auto; }   /* original navy logo */
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__link { position: relative; font-size: .93rem; font-weight: 500; color: var(--silver); padding: .3rem 0; transition: color .25s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1.5px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--navy); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: .9rem; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; color: var(--navy); }

/* Mobile drawer (light) */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  padding: 6rem 1.6rem 2rem; transform: translateX(100%);
  transition: transform .45s var(--ease); overflow-y: auto; visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.mobile-menu__close svg { width: 26px; height: 26px; color: var(--navy); }
.mobile-menu ul { display: flex; flex-direction: column; gap: .35rem; }
.mobile-menu a.m-link { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); padding: .7rem 0; border-bottom: 1px solid var(--line-soft); transition: color .2s, padding-left .2s; }
.mobile-menu a.m-link:hover { color: var(--navy); padding-left: .5rem; }
.mobile-menu .btn { margin-top: 1.6rem; }

/* ---------- 7. HERO (light) ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding-block: 5rem; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transform: scale(1.1); will-change: transform; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(244,246,251,.96) 0%, rgba(244,246,251,.86) 42%, rgba(244,246,251,.55) 100%),
    radial-gradient(60% 60% at 12% 40%, rgba(4,34,110,.08), transparent 60%);
}
.hero__inner { max-width: 780px; position: relative; }
.hero h1 { margin: 1.4rem 0 1.2rem; }
.hero__rotator { display: block; min-height: 1.15em; }
.hero__rotator .word { display: inline-block; opacity: 0; transform: translateY(14px); transition: opacity .5s, transform .5s; }
.hero__rotator .word.active { opacity: 1; transform: translateY(0); }
.hero p.lead { max-width: 560px; margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero__stats .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); line-height: 1; }
.hero__stats .lbl { font-size: .8rem; color: var(--muted); letter-spacing: .05em; margin-top: .4rem; }

.orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: -1; }
.orb--gold { width: 340px; height: 340px; background: rgba(175,138,52,.16); top: 10%; right: -60px; }
.orb--silver { width: 260px; height: 260px; background: rgba(4,34,110,.10); bottom: 5%; left: -40px; }

/* ---------- 8. GLASS CARD (light) ---------- */
.glass {
  background: var(--onyx-glass);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

/* trust strip */
.trust { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap; padding-block: 1.8rem; border-block: 1px solid var(--line-soft); }
.trust__item { display: flex; align-items: center; gap: .7rem; color: var(--silver); font-size: .92rem; font-weight: 500; }
.trust__item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }

/* ---------- 9. FEATURE / CATEGORY GRID ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-1);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); z-index: 0; }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(5,18,63,.5) 60%, rgba(5,18,63,.94)); z-index: 1; }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card__body { position: relative; z-index: 2; padding: 1.8rem; }
.cat-card__body h3 { color: #fff; margin-bottom: .35rem; }
.cat-card__body p { font-size: .9rem; margin-bottom: .9rem; color: rgba(255,255,255,.82); }
.cat-card__link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-light); font-size: .85rem; font-weight: 600; letter-spacing: .04em; }
.cat-card__link svg { width: 16px; height: 16px; transition: transform .3s; }
.cat-card:hover .cat-card__link svg { transform: translateX(5px); }

.feature {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  height: 100%; box-shadow: var(--shadow-1);
}
.feature:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.feature__ico { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--gold-soft); border: 1px solid var(--line); margin-bottom: 1.2rem; }
.feature__ico svg { width: 26px; height: 26px; color: var(--gold-deep); }
.feature h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.feature p { font-size: .93rem; }
.feature a { color: var(--navy); font-weight: 600; }

/* ---------- 10. PRODUCT CARDS ---------- */
.product { border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s; height: 100%; display: flex; flex-direction: column; box-shadow: var(--shadow-1); }
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); border-color: var(--line); }
.product__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #fff; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product:hover .product__media img { transform: scale(1.06); }
.product__tag { position: absolute; top: .9rem; left: .9rem; z-index: 2; background: rgba(255,255,255,.86); backdrop-filter: blur(6px); color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 100px; border: 1px solid var(--line); }
.product__body { padding: 1.2rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product__cat { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .45rem; font-weight: 600; }
.product__body h3 { font-size: 1.15rem; color: var(--ivory); margin-bottom: .8rem; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* ---------- 11. SPLIT / ABOUT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-2); }
.split__media .img-back { position: absolute; border-radius: var(--radius); border: 1px solid var(--line); inset: 22px -22px -22px 22px; z-index: -1; }
.split__media .badge-float { position: absolute; bottom: -26px; right: -10px; padding: 1.1rem 1.4rem; text-align: center; }
.split__media .badge-float .num { font-family: var(--font-display); font-size: 2rem; color: var(--navy); line-height: 1; }
.split__media .badge-float .lbl { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: .9rem; margin: 1.6rem 0; }
.check-list li { display: flex; gap: .8rem; color: var(--silver); font-size: .98rem; }
.check-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 1px; }

/* ---------- 12. PROCESS STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--surface); box-shadow: var(--shadow-1); }
.step__num { font-family: var(--font-display); font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; margin-bottom: 1rem; display: block; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .9rem; }

/* ---------- 13. REVIEWS ---------- */
.reviews-tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.review-tab { padding: .6rem 1.25rem; border-radius: 100px; border: 1px solid var(--line); color: var(--silver); font-size: .86rem; font-weight: 500; transition: all .25s var(--ease); background: var(--surface); }
.review-tab:hover { border-color: var(--navy); color: var(--navy); }
.review-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); font-weight: 600; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { padding: 1.8rem; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--surface); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; box-shadow: var(--shadow-1); }
.review-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-gold); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card__quote { color: var(--text); font-size: .98rem; margin-bottom: 1.4rem; flex: 1; }
.review-card__quote::before { content: "\201C"; font-family: var(--font-display); color: var(--gold); font-size: 2.4rem; line-height: 0; vertical-align: -.35em; margin-right: .15rem; }
.review-card__author { display: flex; align-items: center; gap: .8rem; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-2), var(--navy-deep)); color: #fff; font-weight: 700; font-family: var(--font-display); flex: none; }
.review-card__name { color: var(--ivory); font-weight: 600; font-size: .95rem; }
.review-card__meta { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; }
.g-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--muted); }
.g-badge svg { width: 18px; height: 18px; }
.reviews-summary { display: inline-flex; align-items: center; gap: 1.2rem; padding: 1rem 1.8rem; border-radius: 100px; margin-bottom: 2rem; }
.reviews-summary .rating { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); line-height: 1; }

/* ---------- 14. CTA BAND (dark navy) ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; border: 1px solid rgba(255,255,255,.12); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 50% 0%, rgba(175,138,52,.26), transparent 60%), linear-gradient(180deg, var(--onyx-3), var(--navy-deep)); }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; font-size: 1.08rem; color: var(--on-dark-muted); }
.cta-band .hero__cta { justify-content: center; }
/* inside the dark band: gold primary + light outline */
.cta-band .btn-gold { background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep)); color: #2a1f00; box-shadow: var(--shadow-gold); }
.cta-band .btn-gold:hover { box-shadow: 0 16px 44px rgba(175,138,52,.4); }
.cta-band .btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ---------- 15. INQUIRY FORM ---------- */
.form-wrap { padding: clamp(1.8rem, 4vw, 2.8rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 500; color: var(--silver); letter-spacing: .02em; }
.field label .req { color: var(--gold-deep); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1rem; color: var(--ivory);
  transition: border-color .25s, background .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2304226E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa2b8; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(4,34,110,.12); }
.field.error input, .field.error textarea, .field.error select { border-color: #d5473f; box-shadow: 0 0 0 3px rgba(213,71,63,.14); }
.field__msg { font-size: .78rem; color: #c5433b; min-height: 1em; display: none; }
.field.error .field__msg { display: block; }
.form-consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--navy); flex: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success svg { width: 60px; height: 60px; color: var(--navy); margin: 0 auto 1rem; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* ---------- 16. FOOTER (dark navy) ---------- */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.08); padding-top: clamp(3.5rem, 6vw, 5rem); position: relative; color: var(--on-dark-muted); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { height: 56px; background: #fff; padding: .7rem .9rem; border-radius: 12px; margin-bottom: 1.2rem; box-shadow: var(--shadow-1); }  /* white chip keeps original navy logo visible */
.footer__brand p { font-size: .92rem; max-width: 300px; margin-bottom: 1.4rem; color: var(--on-dark-muted); }
.footer__socials { display: flex; gap: .5rem; }
.footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.3rem; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a { font-size: .92rem; color: var(--on-dark-muted); transition: color .2s, padding-left .2s; }
.footer__links a:hover { color: #fff; padding-left: .3rem; }
.footer__contact li { display: flex; gap: .7rem; font-size: .92rem; color: var(--on-dark-muted); margin-bottom: .9rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--gold-light); flex: none; margin-top: 2px; }
.footer__contact a { color: var(--on-dark-muted); transition: color .2s; }
.footer__contact a:hover { color: #fff; }
.footer__contact .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.footer__contact .btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.6rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: var(--on-dark-muted); }
.footer__credit a { color: var(--gold-light); font-weight: 500; transition: color .2s; }
.footer__credit a:hover { color: #fff; }

/* ---------- 17. STICKY MOBILE CALL / WHATSAPP ---------- */
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-float); background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-top: 1px solid var(--line); padding: .55rem; gap: .55rem; box-shadow: 0 -8px 30px rgba(9,20,54,.14); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem; border-radius: 12px; font-weight: 600; font-size: .92rem; min-height: 48px; }
  .mobile-cta .m-call { background: linear-gradient(120deg, var(--navy-2), var(--navy-deep)); color: #fff; }
  .mobile-cta .m-wa { background: #1faf54; color: #fff; }
  .mobile-cta svg { width: 20px; height: 20px; }
  body { padding-bottom: 74px; }
}

/* ---------- 18. BACK TO TOP ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: var(--z-float); width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-navy); opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none; transition: all .4s var(--ease); }
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); background: var(--navy-deep); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 768px) { .to-top { bottom: 84px; } }

/* ---------- 19. PAGE HEADER (inner pages, light) ---------- */
.page-hero { position: relative; padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem); overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(244,246,251,.86), var(--bg)); }
.breadcrumb { display: flex; gap: .5rem; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--gold-deep); }
.page-hero h1 { max-width: 720px; }
.page-hero p { max-width: 620px; margin-top: 1.2rem; font-size: 1.1rem; }

/* ---------- 20. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory); text-align: left; }
.faq__q .icon { width: 26px; height: 26px; flex: none; position: relative; transition: transform .3s; }
.faq__q .icon::before, .faq__q .icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq__q .icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq__q .icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); transition: transform .3s; }
.faq__item.open .faq__q .icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding-bottom: 1.4rem; color: var(--muted); }

/* ---------- 21. MAP ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-1); min-height: 360px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- 22. INSTAGRAM STRIP ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.insta-grid a { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; display: block; box-shadow: var(--shadow-1); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(4,34,110,0); transition: background .3s; }
.insta-grid a:hover img { transform: scale(1.1); }
.insta-grid a:hover::after { background: rgba(4,34,110,.3); }

/* ---------- 23. SCROLL REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }

[data-tilt] { transform-style: preserve-3d; transition: transform .25s var(--ease); will-change: transform; }

@media (prefers-reduced-motion: no-preference) {
  @keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
  .floaty { animation: float-y 6s ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__bg img { transform: none !important; }
}

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__actions .btn:not(.nav__toggle) { display: none; }
  .nav__toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .img-back { display: none; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 620px) {
  .topbar__contact { gap: 1rem; }
  .topbar .topbar__item--hours { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__stats { gap: 1.5rem; }
  .hero__stats .num { font-size: 1.7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
