/* ============================================================
   MD PLATINUM EVENTS — Mimi Decor Platinum Events LLC
   Luxury Events & Decor — Hand-written Vanilla CSS
   Designed and developed by Novelio Technologies (2026)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #14110F;
  --primary-2: #241E18;
  --gold: #C9A35B;
  --gold-2: #E4C98C;
  --gold-deep: #9A7B3C; /* darkened gold for accessible text on white */
  --champagne: #D9C2A3;
  --blush: #E8D5C4;
  --bg: #FBF8F4;
  --surface: #FFFFFF;
  --surface-2: #F4EEE6;
  --text: #1A1714;
  --text-invert: #F6EFE6;
  --muted: #6B5E52;
  --border: #EAE0D4;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(20, 17, 15, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 17, 15, 0.10), 0 2px 8px rgba(20, 17, 15, 0.06);
  --shadow-lg: 0 24px 60px rgba(20, 17, 15, 0.16), 0 8px 20px rgba(20, 17, 15, 0.08);
  --shadow-gold: 0 12px 40px rgba(201, 163, 91, 0.28);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--primary); }

ul { list-style: none; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.mx-auto { margin-inline: auto; }

/* ---------- Typographic scale ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 1rem;
}
.h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.section-head { max-width: 64ch; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

/* gold hairline divider */
.divider {
  width: 84px; height: 2px; border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto;
}
.divider--left { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 500; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: var(--radius-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  position: relative; will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 18px 50px rgba(201, 163, 91, 0.42); }
.btn--ghost {
  border: 1px solid rgba(246, 239, 230, .55);
  color: var(--text-invert);
}
.btn--ghost:hover { background: rgba(246, 239, 230, .12); border-color: var(--gold-2); }
.btn--dark { background: var(--primary); color: var(--text-invert); }
.btn--dark:hover { background: var(--primary-2); box-shadow: var(--shadow-md); }
.btn--outline-dark { border: 1px solid var(--primary); color: var(--primary); }
.btn--outline-dark:hover { background: var(--primary); color: var(--text-invert); }
.btn--sm { padding: .7rem 1.25rem; font-size: .72rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary);
  color: var(--text-invert);
  font-size: .78rem; letter-spacing: .08em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: .55rem; flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-2); }
.topbar__mid { color: var(--champagne); letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar .icon-link { display: inline-flex; align-items: center; gap: .4rem; }
.topbar svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 244, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 248, 244, 0.95); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1.5rem;
}

/* Wordmark logo */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.32rem;
  letter-spacing: .14em; color: var(--primary); text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-body); font-size: .58rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 3px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav__link {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); font-weight: 500; position: relative; padding-block: .4rem;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--gold-deep); }

/* On desktop the CTA lives in .header__cta; the in-nav button is only for the mobile dropdown */
.nav > .btn { display: none; }
.header__cta { display: inline-flex; align-items: center; gap: 1.2rem; }

/* Hamburger */
.hamburger {
  display: none; width: 46px; height: 46px; border-radius: var(--radius-sm);
  position: relative; border: 1px solid var(--border); background: var(--surface);
}
.hamburger span {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 2px;
  background: var(--primary); transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.hamburger span:nth-child(1) { transform: translate(-50%, -8px); }
.hamburger span:nth-child(3) { transform: translate(-50%, 8px); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: var(--text-invert); overflow: hidden; isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -8% 0 -8% 0; z-index: -2;
  background-size: cover; background-position: center;
  will-change: transform;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,17,15,.45) 0%, rgba(20,17,15,.28) 38%, rgba(20,17,15,.74) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(20,17,15,.25), transparent 60%);
}
.hero__inner { padding-block: clamp(5rem, 12vw, 8rem); max-width: 56rem; }
.hero .eyebrow { color: var(--gold-2); }
.hero__title { font-size: clamp(2.8rem, 7.5vw, 5.6rem); color: var(--text-invert); letter-spacing: .005em; }
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--blush);
  max-width: 46ch; margin-top: 1.4rem; font-weight: 300;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--blush);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: .85;
}
.hero__scroll::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--gold-2), transparent); animation: scrollPulse 2.2s var(--ease) infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

.hero--page { min-height: 56vh; }
.hero--page .hero__inner { max-width: 50rem; }

/* ---------- Image fallback ---------- */
.img-fallback {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--gold-2) 45%, var(--blush) 100%) !important;
  position: relative;
}
.img-fallback::after {
  content: "MD"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  letter-spacing: .2em; color: rgba(20,17,15,.35);
}

/* ---------- Intro / overlapping images ---------- */
.intro__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.intro__media { position: relative; min-height: 460px; }
.intro__img {
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg);
  position: absolute;
}
.intro__img img { width: 100%; height: 100%; object-fit: cover; }
.intro__img--a { width: 70%; height: 78%; top: 0; left: 0; z-index: 2; aspect-ratio: 3/4; }
.intro__img--b { width: 56%; height: 60%; bottom: 0; right: 0; z-index: 3; border: 6px solid var(--surface); }
.intro__badge {
  position: absolute; z-index: 4; bottom: 8%; left: -2%;
  background: var(--primary); color: var(--text-invert);
  padding: 1.1rem 1.4rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  text-align: center;
}
.intro__badge strong { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-2); display: block; line-height: 1; }
.intro__badge span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); }
.intro__body p + p { margin-top: 1.1rem; }
.intro__sign {
  font-family: var(--font-head); font-style: italic; font-size: 1.5rem;
  color: var(--gold-deep); margin-top: 1.5rem;
}

/* ---------- Service cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative; height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--champagne); }
.card__media { aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__num { font-family: var(--font-head); font-size: .95rem; color: var(--gold-deep); letter-spacing: .1em; }
.card__title { font-size: 1.42rem; margin-block: .4rem .6rem; }
.card__text { color: var(--muted); font-size: .96rem; flex: 1; }
.card__link {
  margin-top: 1.1rem; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 500; display: inline-flex; align-items: center; gap: .5rem;
}
.card__link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.card__link:hover svg { transform: translateX(5px); }

/* ---------- Gallery teaser ---------- */
.teaser__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.teaser__item { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.teaser__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.teaser__item:hover img { transform: scale(1.08); }
.teaser__item--tall { grid-row: span 2; }
.teaser__item--wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews__aggregate {
  display: inline-flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px;
  padding: .7rem 1.5rem; box-shadow: var(--shadow-sm); margin-top: 1rem;
}
.reviews__score { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--primary); }
.reviews__meta { font-size: .85rem; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }

.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-block: 2rem; }
.filter-tab {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .6rem 1.2rem; border-radius: 100px; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); transition: all .3s var(--ease);
}
.filter-tab:hover { border-color: var(--champagne); color: var(--primary); }
.filter-tab.is-active { background: var(--primary); color: var(--text-invert); border-color: var(--primary); }

.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card__quote { font-family: var(--font-head); font-size: 1.18rem; line-height: 1.45; color: var(--text); font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--primary);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.review-card__name { font-weight: 500; font-size: .95rem; }
.review-card__cat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.review-note {
  margin-top: 2rem; font-size: .82rem; color: var(--muted); text-align: center;
  background: var(--surface-2); border: 1px dashed var(--border); border-radius: var(--radius-sm);
  padding: .9rem 1.2rem; position: relative;
}
.review-note button { color: var(--gold-deep); font-size: .8rem; text-decoration: underline; }

/* ---------- Process steps ---------- */
.process { background: var(--primary); color: var(--text-invert); position: relative; }
.process .eyebrow { color: var(--gold-2); }
.process h2 { color: var(--text-invert); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; }
.process__step { text-align: center; position: relative; padding: 1rem; }
.process__num {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: grid; place-items: center; font-family: var(--font-head); font-size: 1.8rem; font-weight: 700;
  color: var(--gold-2); border: 1px solid rgba(201,163,91,.45); background: rgba(201,163,91,.08);
}
.process__step h3 { color: var(--text-invert); font-size: 1.5rem; margin-bottom: .5rem; }
.process__step p { color: var(--champagne); font-size: .95rem; }

/* ---------- Areas served ---------- */
.areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.area-card {
  border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem 1.6rem;
  background: var(--surface); text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.area-card__abbr { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--gold-deep); }
.area-card h3 { font-size: 1.3rem; margin-block: .3rem .5rem; }
.area-card p { color: var(--muted); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: var(--text-invert); text-align: center; overflow: hidden; isolation: isolate;
}
.cta-band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,17,15,.82), rgba(36,30,24,.7)); }
.cta-band h2 { color: var(--text-invert); }
.cta-band .lead { color: var(--blush); margin-inline: auto; }
.cta-band__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Mini inquiry form ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--primary); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: .85rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,163,91,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { font-size: .78rem; color: #B23A48; min-height: 1em; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B23A48; }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.is-visible { display: block; animation: fadeUp .6s var(--ease); }
.form-success__icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); display: grid; place-items: center;
}
.form-success__icon svg { width: 36px; height: 36px; color: var(--primary); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Stats (about) ---------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

/* ---------- Why choose / feature list ---------- */
.feature-list { display: grid; gap: 1.4rem; }
.feature-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-item__icon {
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--gold-deep);
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.feature-item p { color: var(--muted); font-size: .95rem; }

/* ---------- Services detail ---------- */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.service-row + .service-row { margin-top: clamp(3rem, 7vw, 6rem); }
.service-row__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; position: relative; }
.service-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.service-row__media:hover img { transform: scale(1.06); }
.service-row--reverse .service-row__media { order: 2; }
.service-row__body .eyebrow { margin-bottom: .6rem; }
.service-row__body h2 { margin-bottom: 1rem; }
.service-row__body p { color: var(--muted); }
.service-row__body p + p { margin-top: .9rem; }
.service-features { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0; }
.tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--border); padding: .4rem .85rem; border-radius: 100px; background: var(--surface); }

/* ---------- Gallery page ---------- */
.gallery-grid {
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); display: block;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery-item img { width: 100%; transition: transform 1.1s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,15,.55));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item__cap {
  position: absolute; bottom: 1rem; left: 1.1rem; z-index: 2; color: var(--text-invert);
  opacity: 0; transform: translateY(8px); transition: all .4s var(--ease);
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: translateY(0); }
.gallery-item__cap span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.gallery-item__cap h3 { color: var(--text-invert); font-size: 1.2rem; }
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; background: rgba(20,17,15,.94);
  display: none; align-items: center; justify-content: center; padding: 2rem;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: fadeIn .3s var(--ease); }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(246,239,230,.1); border: 1px solid rgba(246,239,230,.3);
  color: var(--text-invert); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  transition: background .3s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(201,163,91,.3); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info { display: grid; gap: 1.6rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--gold-deep); }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.contact-item a, .contact-item p { color: var(--muted); font-size: .98rem; }
.contact-item a:hover { color: var(--gold-deep); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }
.appointment-note { background: var(--surface-2); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: .92rem; color: var(--muted); margin-top: 1.5rem; }

/* ---------- Footer ---------- */
.footer { background: var(--primary); color: var(--champagne); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .brand__name { color: var(--text-invert); }
.footer .brand__sub { color: var(--gold-2); }
.footer__about { margin-top: 1.2rem; max-width: 36ch; font-size: .92rem; line-height: 1.7; color: var(--champagne); }
.footer__title { font-family: var(--font-body); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer__nav { display: grid; gap: .65rem; }
.footer__nav a, .footer__contact a, .footer__contact p { color: var(--champagne); font-size: .93rem; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-2); }
.footer__contact { display: grid; gap: .6rem; }
.footer__social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(217,194,163,.3); display: grid; place-items: center; transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(217,194,163,.18); padding-block: 1.5rem; text-align: center; }
.footer__bottom p { font-size: .82rem; color: var(--champagne); }
.footer__credit { color: var(--gold-2); }

/* ---------- Mobile bottom bar ---------- */
.mobile-bar { display: none; }

/* ---------- Floating accents ---------- */
.accents { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.accent { position: absolute; opacity: .5; animation: floatY 9s ease-in-out infinite; color: var(--gold-2); }
.accent svg { width: 100%; height: 100%; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(12deg); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--scale { transform: translateY(34px) scale(.96); }
.reveal--scale.is-visible { transform: none; }
[data-reveal-delay="1"] { transition-delay: .12s; }
[data-reveal-delay="2"] { transition-delay: .24s; }
[data-reveal-delay="3"] { transition-delay: .36s; }
[data-reveal-delay="4"] { transition-delay: .48s; }
[data-reveal-delay="5"] { transition-delay: .6s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .8rem; color: var(--muted); letter-spacing: .06em; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb span { color: var(--gold-deep); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process__grid { gap: 1.25rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 880px) {
  :root { --header-h: 72px; }
  .nav, .header__cta .btn { display: none; }
  .hamburger { display: block; }

  /* Mobile slide-in nav */
  .nav {
    position: fixed; inset: var(--header-h) 0 0 auto; width: min(82%, 360px);
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 2rem var(--gutter); gap: 1.4rem; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); z-index: 99;
    border-left: 1px solid var(--border); overflow-y: auto;
  }
  .nav.is-open { display: flex; transform: translateX(0); }
  .nav__link { font-size: 1.05rem; width: 100%; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
  .nav__link::after { display: none; }
  .nav .btn { display: inline-flex; margin-top: .5rem; }

  body.nav-open { overflow: hidden; }

  .intro__grid, .service-row, .contact-grid { grid-template-columns: 1fr; }
  .service-row--reverse .service-row__media { order: 0; }
  .service-row__media { aspect-ratio: 16/11; }
  .intro__media { min-height: 420px; max-width: 460px; margin-inline: auto; }
  .process__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Mobile bottom bar */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 200; background: var(--primary); box-shadow: 0 -6px 24px rgba(20,17,15,.25);
    border-top: 1px solid rgba(201,163,91,.25);
  }
  .mobile-bar a {
    min-height: 56px; display: flex; align-items: center; justify-content: center; gap: .5rem;
    color: var(--text-invert); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  }
  .mobile-bar a + a { border-left: 1px solid rgba(201,163,91,.25); }
  .mobile-bar a:first-child { color: var(--gold-2); }
  .mobile-bar svg { width: 20px; height: 20px; }
  body { padding-bottom: 56px; }
}

@media (max-width: 640px) {
  .grid--3, .grid--2, .areas__grid, .stats__grid { grid-template-columns: 1fr; }
  .teaser__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .teaser__item--wide { grid-column: span 2; }
  .gallery-grid { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .topbar__mid { display: none; }
  .hero { min-height: 88vh; }
  .reviews__grid.grid--3 { gap: 1rem; }
}

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