/* ============================================================
   WESTSIDE FRAME SHOP — Luxury Atelier Design System
   Vanilla CSS · Author: Novelio Technologies
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&family=Marcellus&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — derived from the grey skyline logo + warm gallery imagery */
  --ink: #17130E;
  --ink-2: #241E17;
  --charcoal: #2B2620;
  --paper: #F7F2EA;
  --paper-2: #EFE7DA;
  --surface: #FCFAF5;
  --surface-2: #FFFFFF;
  --gold: #B08D4F;
  --gold-2: #CBA75E;
  --gold-deep: #8A6D38;
  --walnut: #4A3B2C;
  --stone: #5F584C;      /* muted text on light — AA on --paper */
  --stone-2: #8A8175;
  --line: #E3D9C8;
  --line-soft: rgba(23,19,14,.10);

  /* Dark-section text */
  --d-text: #F3ECDF;
  --d-muted: #BCB1A0;
  --d-line: rgba(243,236,223,.14);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-eyebrow: 'Marcellus', 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows — layered for depth */
  --sh-sm: 0 1px 2px rgba(23,19,14,.06), 0 2px 4px rgba(23,19,14,.06);
  --sh-md: 0 8px 18px -8px rgba(23,19,14,.20), 0 3px 8px rgba(23,19,14,.08);
  --sh-lg: 0 26px 50px -20px rgba(23,19,14,.30), 0 10px 22px -12px rgba(23,19,14,.16);
  --sh-xl: 0 40px 80px -28px rgba(23,19,14,.40), 0 16px 34px -18px rgba(23,19,14,.20);
  --sh-gold: 0 14px 34px -10px rgba(176,141,79,.50);
  --sh-inset: inset 0 1px 0 rgba(255,255,255,.5);

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

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --topbar-h: 40px;
  --nav-h: 86px;

  /* Z-index scale */
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 100;
  --z-nav: 200;
  --z-overlay: 500;
  --z-toast: 900;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* Selection */
::selection { background: var(--gold); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.h-display { font-size: clamp(2.7rem, 6.4vw, 5.2rem); font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--stone); }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .74rem;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--stone); line-height: 1.75; }
.script-accent { font-style: italic; font-family: var(--font-display); color: var(--gold-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dark { background: var(--ink); color: var(--d-text); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--d-muted); }
.section--paper2 { background: var(--paper-2); }
.section-head { max-width: 640px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .9rem; }
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--ink);
  --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  background: var(--_bg); color: var(--_fg);
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .93rem; letter-spacing: .01em;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .3s;
  box-shadow: var(--sh-md);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-2));
  opacity: 0; transition: opacity .4s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn:hover::after { opacity: 1; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(-1px); }

.btn--gold { --_bg: linear-gradient(120deg, var(--gold-deep), var(--gold) 60%, var(--gold-2)); --_fg: #1c1710; box-shadow: var(--sh-gold); }
.btn--gold::after { background: var(--ink); }
.btn--gold:hover { --_fg: #fff; }

.btn--ghost {
  --_bg: transparent; --_fg: var(--ink);
  border: 1px solid var(--line-soft); box-shadow: none; backdrop-filter: blur(4px);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { --_fg: #fff; border-color: transparent; }
.section--dark .btn--ghost { --_fg: var(--d-text); border-color: var(--d-line); }
.section--dark .btn--ghost::after { background: var(--gold); }

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

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--gold-deep); font-size: .92rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink); color: var(--d-text);
  font-size: .82rem; height: var(--topbar-h);
  display: flex; align-items: center;
  position: relative; z-index: var(--z-nav);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-info { display: flex; align-items: center; gap: 1.4rem; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: .45rem; color: var(--d-muted); transition: color .25s; white-space: nowrap; }
.topbar-info a:hover { color: var(--gold-2); }
.topbar-info svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-socials { display: flex; align-items: center; gap: .35rem; }
.topbar-socials a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%; color: var(--d-muted);
  transition: color .25s, background .25s, transform .25s;
}
.topbar-socials a svg { width: 15px; height: 15px; }
.topbar-socials a:hover { color: #fff; background: var(--gold); transform: translateY(-2px); }
.topbar-info .hide-sm { }
@media (max-width: 860px) { .topbar-info .hide-sm { display: none; } }
@media (max-width: 560px) { .topbar-info span.addr { display: none; } }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.header.scrolled {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 10px 30px -18px rgba(23,19,14,.4);
  border-bottom-color: var(--line);
}
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 66px; width: auto; transition: transform .4s var(--ease-out); }
.brand:hover img { transform: scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; letter-spacing: .02em; }
.brand-text small { font-family: var(--font-eyebrow); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  padding: .5rem .9rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width .3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 18px; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-links .mobile-cta { display: none; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--gold-deep); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-cta > .btn--gold { display: none; }
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .2rem; padding: calc(var(--topbar-h) + var(--nav-h) + 1.4rem) var(--gutter) 3rem;
    background: color-mix(in srgb, var(--paper) 98%, transparent);
    backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; transform: translateX(24px);
    transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s; overflow-y: auto;
  }
  body.nav-open .nav-links { opacity: 1; visibility: visible; transform: none; box-shadow: var(--sh-xl); }
  .nav-links a { padding: 1rem .4rem; font-size: 1.25rem; font-family: var(--font-display); border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: inline-flex; margin-top: 1.4rem; border: none; }
  .nav-links .mobile-cta.btn { color: #fff; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; position: relative; z-index: var(--z-raised); }
.hero-eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .script-accent { display: block; }
.hero-copy { max-width: 30rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-rating { display: flex; align-items: center; gap: .8rem; margin-top: 2.2rem; }
.hero-rating .stars { display: flex; gap: 2px; }
.hero-rating .stars svg { width: 18px; height: 18px; color: var(--gold); }
.hero-rating b { font-family: var(--font-display); font-size: 1.5rem; }
.hero-rating small { color: var(--stone-2); font-size: .82rem; display: block; }

/* Hero visual — layered frames + parallax */
.hero-visual { position: relative; aspect-ratio: 4/4.4; }
.hero-frame {
  position: absolute; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-xl);
  border: 6px solid #fff;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame--main { top: 0; right: 0; width: 76%; aspect-ratio: 3/3.7; z-index: 2; }
.hero-frame--accent { left: 0; bottom: 2%; width: 50%; aspect-ratio: 4/3; z-index: 3; border-width: 5px; }
.hero-outline { position: absolute; inset: 12% -5% -4% 12%; border: 2px solid var(--gold); border-radius: var(--r); z-index: 0; opacity: .55; transform: rotate(-2deg); }
.hero-badge {
  position: absolute; z-index: 4; top: 7%; left: -3%;
  background: var(--ink); color: var(--d-text);
  padding: 1rem 1.25rem; border-radius: var(--r); box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: .8rem;
}
.hero-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-2); line-height: 1; }
.hero-badge small { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--d-muted); }
.hero-glow { position: absolute; z-index: 1; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(176,141,79,.35), transparent 68%); filter: blur(20px); top: 8%; right: 2%; }

.hero-deco { position: absolute; inset: 0; z-index: var(--z-base); pointer-events: none; }
.hero-deco::before { content: ""; position: absolute; top: -10%; right: -8%; width: 46vw; max-width: 620px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 40% 40%, rgba(203,167,94,.16), transparent 70%); }
.hero-deco::after { content: ""; position: absolute; bottom: -18%; left: -12%; width: 42vw; max-width: 540px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(74,59,44,.10), transparent 70%); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin-inline: auto; width: 100%; order: -1; }
  .hero-copy { max-width: none; }
  .hero-badge { left: 0; }
  .hero-outline { inset: 12% 0 -2% 6%; }
  .hero-deco { display: none; }
  .hero { overflow: hidden; }
}
@media (max-width: 520px) {
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- Marquee / Trust strip ---------- */
.trust { background: var(--ink); color: var(--d-muted); border-block: 1px solid var(--d-line); overflow: hidden; }
.trust .marquee { display: flex; gap: 3.5rem; align-items: center; padding-block: 1.1rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.trust .marquee span { display: inline-flex; align-items: center; gap: .8rem; font-family: var(--font-display); font-size: 1.35rem; color: var(--d-text); }
.trust .marquee span svg { width: 16px; height: 16px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust .marquee { animation: none; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.4vw,2rem); text-align: center; }
.stat { padding: 1.5rem 1rem; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--line); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; color: var(--ink); line-height: 1; }
.stat .num .plus { color: var(--gold-deep); }
.stat .label { margin-top: .5rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-2); }
.section--dark .stat .num { color: #fff; }
.section--dark .stat:not(:last-child)::after { background: var(--d-line); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2)::after { display: none; } }

/* ---------- Cards / Services ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.7rem;
  position: relative; overflow: hidden; isolation: isolate;
  box-shadow: var(--sh-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
  transform-style: preserve-3d;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: radial-gradient(120% 80% at 20% 0%, rgba(203,167,94,.14), transparent 60%);
  transition: opacity .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: color-mix(in srgb, var(--gold) 40%, var(--line)); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--r); display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ink), var(--charcoal));
  color: var(--gold-2); margin-bottom: 1.3rem; box-shadow: var(--sh-md);
  transition: transform .5s var(--ease-out);
}
.card:hover .card-icon { transform: translateY(-3px) rotate(-4deg); }
.card-icon svg { width: 26px; height: 26px; }
.card-icon--img { width: 64px; height: 64px; background: linear-gradient(160deg, #fff, var(--paper)); border: 1px solid color-mix(in srgb, var(--gold) 34%, var(--line)); box-shadow: var(--sh-sm); }
.card-icon--img img { width: 38px; height: 38px; object-fit: contain; }
.card:hover .card-icon--img { transform: translateY(-3px); }
/* small original icon used on service detail blocks */
.svc-ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: linear-gradient(160deg, #fff, var(--paper)); border: 1px solid color-mix(in srgb, var(--gold) 34%, var(--line)); display: grid; place-items: center; box-shadow: var(--sh-sm); margin-bottom: 1.1rem; }
.svc-ico img { width: 28px; height: 28px; object-fit: contain; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .95rem; margin-bottom: 1.2rem; }
.card .link-arrow { font-size: .78rem; }
.card .card-num { position: absolute; top: 1.3rem; right: 1.5rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--line); font-weight: 700; }

/* Feature / split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .framed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 8px solid #fff; }
.split-media .framed img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .accent-card {
  position: absolute; bottom: -22px; right: -18px; background: var(--ink); color: var(--d-text);
  padding: 1.1rem 1.35rem; border-radius: var(--r); box-shadow: var(--sh-lg); max-width: 210px;
}
.split-media .accent-card b { font-family: var(--font-display); color: var(--gold-2); font-size: 1.7rem; }
.split-media .accent-card small { color: var(--d-muted); font-size: .78rem; }
.split ul.checklist { margin-top: 1.4rem; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-2); font-size: .96rem; }
.checklist li svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } .split-media .accent-card { right: 0; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep);
  position: absolute; top: 0; left: 0; font-weight: 700; letter-spacing: .1em;
}
.step::after { content: ""; position: absolute; top: .55rem; left: 2.4rem; right: -.8rem; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { font-size: .92rem; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.4rem; }
.chip {
  padding: .55rem 1.15rem; border-radius: var(--r-pill); font-size: .85rem; font-weight: 500;
  border: 1px solid var(--line); color: var(--stone); background: var(--surface);
  transition: all .3s var(--ease); letter-spacing: .02em;
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--sh-md); }
.masonry { columns: 3 260px; column-gap: clamp(.8rem, 1.6vw, 1.3rem); }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(.8rem, 1.6vw, 1.3rem); }
.tile {
  position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm);
  cursor: pointer; border: 6px solid #fff; background: #fff;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.tile img { width: 100%; display: block; transition: transform .7s var(--ease-out), filter .5s; }
.tile::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(23,19,14,.6), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.tile .tile-cap { position: absolute; left: 1rem; bottom: .9rem; z-index: 2; color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.tile .tile-cap .cat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); }
.tile .tile-cap b { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after, .tile:hover .tile-cap { opacity: 1; transform: translateY(0); }
.tile.is-hidden { display: none; }
@media (max-width: 560px) { .masonry { columns: 2 150px; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(15,12,8,.92); backdrop-filter: blur(6px); display: none; place-items: center; padding: 5vw; }
.lightbox.open { display: grid; animation: fade .3s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 86vh; border: 8px solid #fff; border-radius: 6px; box-shadow: var(--sh-xl); }
.lightbox-close { position: absolute; top: 3vh; right: 4vw; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; transition: background .3s; }
.lightbox-close:hover { background: var(--gold); }
.lightbox-close svg { width: 24px; height: 24px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Reviews ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.google-badge { display: inline-flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: .8rem 1.1rem; box-shadow: var(--sh-sm); }
.google-badge .g-logo { width: 30px; height: 30px; flex-shrink: 0; }
.google-badge .g-rate { display: flex; flex-direction: column; line-height: 1.1; }
.google-badge .g-rate b { font-family: var(--font-display); font-size: 1.5rem; }
.google-badge .stars { display: flex; gap: 1px; }
.google-badge .stars svg { width: 13px; height: 13px; color: var(--gold); }
.google-badge small { color: var(--stone-2); font-size: .74rem; }

.review-cats { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.review {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.7rem; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.review .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: .5; color: var(--line); position: absolute; top: 1.4rem; right: 1.3rem; }
.review .stars { display: flex; gap: 2px; margin-bottom: .9rem; }
.review .stars svg { width: 16px; height: 16px; color: var(--gold); }
.review p { color: var(--ink-2); font-size: .96rem; margin-bottom: 1.3rem; position: relative; z-index: 1; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-deep), var(--gold-2)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.review-author b { display: block; font-size: .92rem; color: var(--ink); font-weight: 600; }
.review-author small { color: var(--stone-2); font-size: .78rem; display: inline-flex; align-items: center; gap: .3rem; }
.review-author small svg { width: 12px; height: 12px; }
.review.is-hidden { display: none; }
.review .cat-tag { display: inline-block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: color-mix(in srgb, var(--gold) 12%, transparent); padding: .25rem .6rem; border-radius: var(--r-pill); margin-bottom: 1rem; }

/* ---------- Inquiry form ---------- */
.inquiry { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: stretch; }
.inquiry-aside { display: flex; flex-direction: column; justify-content: center; }
.inquiry-aside .contact-list { margin-top: 1.8rem; display: grid; gap: 1.1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-deep); flex-shrink: 0; box-shadow: var(--sh-sm); }
.section--dark .contact-item .ci-icon { background: rgba(255,255,255,.05); border-color: var(--d-line); color: var(--gold-2); }
.contact-item .ci-icon svg { width: 20px; height: 20px; }
.contact-item b { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone-2); margin-bottom: .2rem; }
.section--dark .contact-item b { color: var(--d-muted); }
.contact-item a, .contact-item span { font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.section--dark .contact-item a, .section--dark .contact-item span { color: var(--d-text); }
.contact-item a:hover { color: var(--gold-deep); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--sh-lg); }
.section--dark .form-card { background: rgba(255,255,255,.04); border-color: var(--d-line); backdrop-filter: blur(8px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; position: relative; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .45rem; color: var(--ink-2); }
.section--dark .field label { color: var(--d-text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface-2); color: var(--ink);
  transition: border-color .25s, box-shadow .25s; font-size: .95rem;
}
.section--dark .field input, .section--dark .field select, .section--dark .field textarea { background: rgba(255,255,255,.06); border-color: var(--d-line); color: #fff; }
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent); }
.field .error-msg { color: #b0402f; font-size: .78rem; margin-top: .35rem; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0533f; }
.field.invalid .error-msg { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .78rem; color: var(--stone-2); margin-top: 1rem; text-align: center; }
.section--dark .form-note { color: var(--d-muted); }
.form-success { display: none; text-align: center; padding: 1.5rem 0; }
.form-success.show { display: block; animation: fade .4s var(--ease); }
.form-success .ok-icon { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: color-mix(in srgb, var(--gold) 16%, transparent); color: var(--gold-deep); display: grid; place-items: center; }
.form-success .ok-icon svg { width: 32px; height: 32px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .inquiry { grid-template-columns: 1fr; } }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.25) contrast(1.02); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink), var(--charcoal)); color: var(--d-text); border-radius: var(--r-xl); padding: clamp(2.6rem, 6vw, 4.5rem); text-align: center; box-shadow: var(--sh-xl); }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(203,167,94,.28), transparent 70%); }
.cta-band::after { content: ""; position: absolute; bottom: -50%; left: -10%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(203,167,94,.14), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: var(--d-muted); max-width: 40rem; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: var(--ink); color: var(--d-text); padding-top: clamp(3.5rem, 8vw, 6rem); padding-bottom: clamp(3.5rem, 8vw, 6rem); overflow: hidden; text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(203,167,94,.18), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: var(--d-muted); max-width: 42rem; margin-inline: auto; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; align-items: center; margin-bottom: 1.4rem; font-size: .82rem; color: var(--d-muted); }
.breadcrumb a { color: var(--gold-2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--d-muted); padding-top: clamp(3.5rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(1.6rem, 4vw, 3rem); padding-bottom: 3rem; }
.footer-brand img { height: 54px; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .92rem; max-width: 22rem; }
.footer-socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--d-line); display: grid; place-items: center; color: var(--d-muted); transition: all .3s var(--ease); }
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-3px); }
.footer h4 { color: #fff; font-family: var(--font-eyebrow); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { display: grid; gap: .7rem; }
.footer-links a { font-size: .92rem; transition: color .25s, padding .25s; display: inline-flex; align-items: center; gap: .4rem; }
.footer-links a::before { content: ""; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-links a:hover::before { width: 12px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .92rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-hours { margin-top: 1rem; font-size: .84rem; }
.footer-hours div { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px dashed var(--d-line); max-width: 260px; }
.footer-hours span:last-child { color: var(--d-text); }
.footer-bottom { border-top: 1px solid var(--d-line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; font-size: .82rem; }
.footer-bottom a { color: var(--gold-2); font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
.footer-credit { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky); display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--d-line); box-shadow: 0 -8px 24px -10px rgba(0,0,0,.4); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .55rem; padding: .95rem; font-weight: 600; font-size: .95rem; letter-spacing: .02em; }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-call { background: var(--ink); color: #fff; }
.mobile-bar .mb-wa { background: #1faf54; color: #fff; }
.mobile-bar a:active { filter: brightness(.9); }
@media (max-width: 768px) { .mobile-bar { display: grid; } body { padding-bottom: 56px; } }

/* ---------- Floating buttons (desktop) ---------- */
.floaters { position: fixed; right: clamp(1rem, 2vw, 1.6rem); bottom: clamp(1.4rem, 3vw, 2rem); z-index: var(--z-sticky); display: flex; flex-direction: column; gap: .7rem; }
.floaters .fab { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-lg); transition: transform .35s var(--ease-out); }
.floaters .fab svg { width: 24px; height: 24px; }
.floaters .fab:hover { transform: translateY(-4px) scale(1.06); }
.fab-wa { background: #1faf54; color: #fff; animation: pulse 2.6s infinite; }
.fab-top { background: var(--ink); color: var(--gold-2); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .35s, transform .35s; }
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
@keyframes pulse { 0%,100% { box-shadow: var(--sh-lg), 0 0 0 0 rgba(31,175,84,.5); } 50% { box-shadow: var(--sh-lg), 0 0 0 12px rgba(31,175,84,0); } }
@media (max-width: 768px) { .floaters { bottom: 68px; } .fab-wa { display: none; } }
@media (prefers-reduced-motion: reduce) { .fab-wa { animation: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-reveal="left"] { transform: translateX(-32px); }
.reveal[data-reveal="right"] { transform: translateX(32px); }
.reveal[data-reveal="zoom"] { transform: scale(.94); }
.reveal.in[data-reveal] { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-stagger].in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Floating decorative animation */
.float-slow { animation: floaty 7s ease-in-out infinite; }
.float-slower { animation: floaty 9s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .float-slow, .float-slower { animation: none; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.gold { color: var(--gold-deep); }
.divider-orn { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold); margin: 1rem 0; }
.divider-orn::before, .divider-orn::after { content: ""; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orn svg { width: 18px; height: 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: var(--z-toast); background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }
