/* =====================================================================
   SEWLUTIONS ALTERATIONS — Luxury Atelier Design System
   Hand-written vanilla CSS. No frameworks.
   Palette derived from a bespoke-tailoring theme.
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Palette */
  --ivory:      #F6F1E9;   /* page background            */
  --linen:      #EDE6D8;   /* alt section surface        */
  --card:       #FCFAF6;   /* card surface               */
  --onyx:       #1C1A17;   /* headings / dark sections   */
  --onyx-2:     #26221E;   /* body text on light         */
  --gold:       #C4A15B;   /* primary accent             */
  --gold-deep:  #A9863F;   /* accent hover / borders     */
  --gold-soft:  #E7D6B0;   /* faint gold                 */
  --bordeaux:   #742E3A;   /* secondary accent           */
  --taupe:      #8B7E6A;   /* muted text                 */
  --taupe-2:    #6E6455;   /* muted text (AA on ivory)   */
  --line:       #E3D9C7;   /* hairline borders           */
  --white:      #FFFFFF;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --fs-lead: clamp(1.1rem, 1rem + 0.5vw, 1.32rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3.1rem);
  --fs-h1: clamp(2.6rem, 1.8rem + 4vw, 5rem);
  --fs-display: clamp(3rem, 2rem + 6vw, 6.5rem);

  /* Spacing / layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 8rem);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Shadows (multi-layer) */
  --shadow-sm: 0 1px 2px rgba(28,26,23,.05), 0 2px 6px rgba(28,26,23,.05);
  --shadow-md: 0 6px 16px rgba(28,26,23,.08), 0 14px 40px rgba(28,26,23,.09);
  --shadow-lg: 0 12px 30px rgba(28,26,23,.12), 0 30px 70px rgba(28,26,23,.14);
  --shadow-gold: 0 10px 30px rgba(196,161,91,.28);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 320ms;

  /* Z-scale */
  --z-topbar: 40;
  --z-nav: 50;
  --z-menu: 60;
  --z-sticky: 45;
  --z-toast: 80;
}

/* ------------------------------ Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--onyx-2);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold); color: var(--onyx); }

/* --------------------------- Typography --------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--onyx); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { max-width: 68ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.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);
}
.script { font-style: italic; color: var(--bordeaux); }
.text-gold { color: var(--gold-deep); }
.lead { font-size: var(--fs-lead); color: var(--taupe-2); line-height: 1.6; }

/* --------------------------- Layout ------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(3rem, 5vw, 5rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .8rem; }
.section-head p { margin-top: 1rem; }
.section-head.center p { margin-inline: auto; }

.bg-linen { background: var(--linen); }
.bg-onyx  { background: var(--onyx); color: #E9E2D4; }
.bg-onyx h1, .bg-onyx h2, .bg-onyx h3 { color: var(--white); }

/* Thin "stitched" divider */
.stitch {
  height: 1px; border: 0;
  background-image: linear-gradient(90deg, var(--gold) 45%, transparent 0);
  background-size: 12px 1px;
  opacity: .55;
}

/* Grain / texture overlay helper */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(28,26,23,.05) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ---------------------------- Buttons ----------------------------- */
.btn {
  --btn-bg: var(--gold); --btn-fg: var(--onyx);
  position: relative; display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; min-height: 48px;
  font-weight: 600; letter-spacing: .01em;
  border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  overflow: hidden; isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--onyx); transform: translateY(101%);
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover { color: var(--ivory); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }

.btn-outline {
  --btn-fg: var(--onyx);
  background: transparent; color: var(--btn-fg);
  border: 1.5px solid var(--onyx);
}
.btn-outline::before { background: var(--onyx); }
.btn-outline:hover { color: var(--ivory); border-color: var(--onyx); }

.btn-ghost-light {
  background: transparent; color: var(--ivory);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost-light::before { background: var(--gold); }
.btn-ghost-light:hover { color: var(--onyx); border-color: var(--gold); }

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--onyx);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-arrow:hover { gap: .8rem; color: var(--gold-deep); }

/* ---------------------------- Top bar ----------------------------- */
.topbar {
  background: var(--onyx); color: #D9D1C2;
  font-size: .82rem; letter-spacing: .01em;
  position: relative; z-index: var(--z-topbar);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .55rem; flex-wrap: wrap;
}
.topbar a { transition: color var(--dur) var(--ease); }
.topbar a:hover { color: var(--gold); }
.topbar__info { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__info span, .topbar__info a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__info svg { width: 15px; height: 15px; color: var(--gold); }
.topbar__social { display: flex; align-items: center; gap: .5rem; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
}
.topbar__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--onyx); }
.topbar__social svg { width: 15px; height: 15px; }

/* ---------------------------- Navbar ------------------------------ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(246,241,233,.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.scrolled { background: rgba(246,241,233,.92); border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: .85rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--onyx); letter-spacing: .01em; }
.brand__sub { display: block; font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a {
  position: relative; padding: .55rem .85rem; font-weight: 500; font-size: .96rem;
  color: var(--onyx-2); border-radius: 8px;
  transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .3rem; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--onyx); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--onyx); margin: 4px auto; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  background: var(--ivory);
  padding: 6rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: .4rem;
  transform: translateX(100%); transition: transform 420ms var(--ease-out);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--onyx);
  padding: .7rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a.m-link:hover { color: var(--gold-deep); }
.mobile-menu .btn { margin-top: 1.4rem; justify-content: center; }
.mobile-menu__contact { margin-top: auto; color: var(--taupe-2); font-size: .9rem; display: grid; gap: .4rem; }
.mobile-menu__contact a { color: var(--onyx); font-weight: 600; }

/* ----------------------------- Hero ------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 7vw, 7rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero h1 { margin: 1.1rem 0 1.4rem; }
.hero h1 .script { display: block; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__meta { display: flex; align-items: center; gap: 1.6rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__rating { display: flex; align-items: center; gap: .6rem; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.hero__rating b { font-family: var(--font-display); font-size: 1.15rem; }
.hero__rating small { color: var(--taupe-2); }

.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(196,161,91,.25), rgba(116,46,58,.28)),
    var(--linen);
  transform: rotate(1.4deg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; z-index: 3; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero__badge--tl { top: -18px; left: -18px; }
.hero__badge--br { bottom: -18px; right: -14px; }
.hero__badge .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge b { font-family: var(--font-display); font-size: 1.15rem; color: var(--onyx); display: block; line-height: 1; }
.hero__badge small { color: var(--taupe-2); font-size: .78rem; }
.hero__blob {
  position: absolute; z-index: -1; width: 60vw; max-width: 620px; aspect-ratio: 1;
  right: -12%; top: -18%; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(196,161,91,.22), transparent 62%);
  filter: blur(6px);
}

/* ---------------------- Marquee / trust strip --------------------- */
.trust { border-block: 1px solid var(--line); background: var(--card); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
}
.stat { background: var(--card); padding: clamp(1.6rem, 3vw, 2.4rem) 1.2rem; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--onyx); display: block; line-height: 1; }
.stat b .plus { color: var(--gold-deep); }
.stat span { display: block; margin-top: .5rem; font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe-2); }

/* --------------------------- Card grids --------------------------- */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--bordeaux));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--ivory); border: 1px solid var(--line); color: var(--gold-deep);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--taupe-2); font-size: .98rem; }
.card__list { margin-top: 1rem; display: grid; gap: .45rem; }
.card__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--onyx-2); }
.card__list svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; margin-top: .28rem; }
.card__foot { margin-top: 1.3rem; }

/* Tilt (JS-driven) */
.tilt { transform-style: preserve-3d; will-change: transform; }

/* --------------------------- Split feature ------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split__media { order: 2; }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5 / 6; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(116,46,58,.25), rgba(196,161,91,.22)), var(--linen);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--wide { aspect-ratio: 4 / 3; }
.checklist { display: grid; gap: .8rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.checklist .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.checklist .tick svg { width: 15px; height: 15px; }
.checklist b { display: block; color: var(--onyx); }
.checklist span { color: var(--taupe-2); font-size: .95rem; }

/* ----------------------------- Process ---------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--gold);
  line-height: 1; display: inline-block;
}
.step h3 { margin: .7rem 0 .5rem; font-size: 1.2rem; }
.step p { color: var(--taupe-2); font-size: .94rem; }
.step:not(:last-child)::before {
  content: ""; position: absolute; top: 1.5rem; left: 3.2rem; right: -0.7rem; height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 40%, transparent 0);
  background-size: 10px 1px; opacity: .6;
}

/* ----------------------------- Gallery ---------------------------- */
.gallery { columns: 3; column-gap: 1.2rem; }
.gallery__item {
  break-inside: avoid; margin-bottom: 1.2rem; border-radius: var(--radius);
  overflow: hidden; position: relative; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(196,161,91,.2), rgba(116,46,58,.2)), var(--linen);
}
.gallery__item img { width: 100%; transition: transform 600ms var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem .9rem;
  background: linear-gradient(0deg, rgba(28,26,23,.78), transparent);
  color: var(--ivory); font-size: .85rem; letter-spacing: .05em;
  opacity: 0; transform: translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__tag { display: inline-block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ----------------------------- Reviews ---------------------------- */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.gscore { display: flex; align-items: center; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-sm); }
.gscore__num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--onyx); }
.gscore small { color: var(--taupe-2); font-size: .82rem; }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 2.2rem; }
.tab {
  padding: .6rem 1.15rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--card); color: var(--taupe-2);
  font-weight: 500; font-size: .92rem;
  transition: all var(--dur) var(--ease);
}
.tab:hover { color: var(--onyx); border-color: var(--gold-soft); }
.tab[aria-selected="true"] { background: var(--onyx); color: var(--ivory); border-color: var(--onyx); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__top { display: flex; align-items: center; justify-content: space-between; }
.review__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.review__stars svg { width: 16px; height: 16px; }
.review__gicon { width: 22px; height: 22px; }
.review p { color: var(--onyx-2); font-size: .96rem; }
.review__who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bordeaux); color: var(--ivory); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex: none; }
.review__who b { color: var(--onyx); font-size: .95rem; }
.review__who span { display: block; color: var(--taupe-2); font-size: .8rem; }
.review__cat { align-self: flex-start; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--gold-soft); border-radius: 999px; padding: .2rem .7rem; }

/* ------------------------------ FAQ ------------------------------- */
.faq { display: grid; gap: .9rem; max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem; font-weight: 600; color: var(--onyx); font-size: 1.05rem;
}
.faq__q .pm { width: 26px; height: 26px; flex: none; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold-deep); transition: transform var(--dur) var(--ease); }
.faq__q .pm::before { width: 14px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 14px; }
.faq__item[open] .pm::after { transform: scaleY(0); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--taupe-2); }
.faq__a p { font-size: .98rem; }
/* details native */
details.faq__item summary { list-style: none; cursor: pointer; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* ---------------------------- CTA band ---------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(233,226,212,.85); margin: 1rem auto 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band__deco { position: absolute; inset: 0; z-index: 1; opacity: .5;
  background:
    radial-gradient(600px circle at 15% 20%, rgba(196,161,91,.28), transparent 60%),
    radial-gradient(500px circle at 85% 90%, rgba(116,46,58,.4), transparent 60%);
}

/* ----------------------------- Forms ------------------------------ */
.form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--onyx); letter-spacing: .02em; }
.field label .req { color: var(--bordeaux); }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--ivory); color: var(--onyx); transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(196,161,91,.16); }
.field .err { font-size: .78rem; color: var(--bordeaux); min-height: 1em; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: var(--bordeaux); }
.form-foot { margin-top: 1.2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-note { color: var(--taupe-2); font-size: .84rem; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%);
  background: var(--onyx); color: var(--ivory); padding: 1rem 1.4rem; border-radius: 14px;
  box-shadow: var(--shadow-lg); z-index: var(--z-toast); display: flex; align-items: center; gap: .7rem;
  transition: transform 420ms var(--ease-out); max-width: 92vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ------------------------- Contact info card ---------------------- */
.info-list { display: grid; gap: 1.3rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.info-item .ico svg { width: 22px; height: 22px; }
.info-item b { display: block; color: var(--onyx); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.info-item a, .info-item p { color: var(--onyx-2); font-weight: 500; }
.info-item a:hover { color: var(--gold-deep); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }

/* ----------------------------- Footer ----------------------------- */
.footer { background: var(--onyx); color: #C7BFB0; padding-top: clamp(3.5rem, 6vw, 5rem); position: relative; }
.footer a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.4rem; }
.footer .brand__name { color: var(--white); }
.footer__about p { color: #A79E8E; margin: 1.1rem 0 1.3rem; font-size: .95rem; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: grid; place-items: center; transition: all var(--dur) var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--onyx); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__links { display: grid; gap: .7rem; }
.footer__links a { color: #A79E8E; font-size: .95rem; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; color: #A79E8E; font-size: .92rem; padding: .3rem 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.footer__hours b { color: var(--white); font-weight: 500; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.6rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .86rem; color: #8E8676;
}
.footer__bottom a { color: var(--gold); font-weight: 600; }

/* ---------------------- Mobile sticky actions --------------------- */
.mobile-actions { display: none; }

/* --------------------------- Animations --------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }
.reveal[data-delay="4"] { transition-delay: 360ms; }

@media (prefers-reduced-motion: no-preference) {
  .float { animation: float 6s ease-in-out infinite; }
  .float.slow { animation-duration: 9s; }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
  .spin-slow { animation: spin 26s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn::before { transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* --------------------------- Page hero ---------------------------- */
.page-hero { background: var(--linen); padding-block: clamp(3rem, 6vw, 5.5rem); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--taupe-2); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 1rem; }
.page-hero__deco { position: absolute; right: -6%; top: -30%; width: 40vw; max-width: 460px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(196,161,91,.2), transparent 62%); z-index: 1; }

/* --------------------------- Utilities ---------------------------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.flex-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.pill-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.pill-badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--onyx-2); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem; }
.pill-badge svg { width: 15px; height: 15px; color: var(--gold-deep); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-inline: auto; order: -1; }
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::before { display: none; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .topbar__info { gap: 1rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: -1; }
  .split__media { max-width: 520px; margin-inline: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .review-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step::before { display: none !important; }
  .topbar__info span.hide-sm { display: none; }
  .hero__badge--tl { top: -12px; left: 6px; }
  .hero__badge--br { bottom: -12px; right: 6px; }
  .reviews-head { align-items: flex-start; }

  /* Sticky mobile call / whatsapp */
  .mobile-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky);
    box-shadow: 0 -6px 24px rgba(28,26,23,.18);
  }
  .mobile-actions a {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .95rem; font-weight: 600; color: var(--ivory); min-height: 54px;
  }
  .mobile-actions .m-call { background: var(--onyx); }
  .mobile-actions .m-wa { background: #1FA855; }
  .mobile-actions svg { width: 20px; height: 20px; }
  body { padding-bottom: 54px; }
}
