*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F6EBE3;  /* warm clay-cream */
  --bg-warm:     #EFDED3;  /* deeper sand */
  --bg-rose:     #F3D9D6;  /* dusty rose wash */
  --surface:     #FDF6F1;  /* tinted card, not pure white */
  --blush:       #C77E8A;  /* tessa mauve-rose */
  --blush-soft:  #E6BCC2;
  --blush-wash:  #F3DEE0;
  --clay:        #A35E63;  /* deep rosewood */
  --ink:         #2B2326;  /* charcoal plum */
  --ink-soft:    #6B5F60;
  --line:        rgba(43,35,38,0.12);
  --line-soft:   rgba(43,35,38,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--blush-soft); color: var(--ink); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 4px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 80px;
  transition: background .4s, box-shadow .4s, height .4s;
}
nav.scrolled, nav.nav-solid {
  background: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.25);
}
nav.scrolled { height: 68px; }

/* dark navbar (matches footer) — light text */
nav.nav-solid .nav-logo, nav.scrolled .nav-logo { color: var(--bg); }
nav.nav-solid .nav-logo b, nav.scrolled .nav-logo b { color: var(--blush-soft); }
nav.nav-solid .nav-links a, nav.scrolled .nav-links a { color: rgba(246,235,227,.75); }
nav.nav-solid .nav-links a:hover, nav.nav-solid .nav-links a.active,
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: #fff; }
nav.nav-solid .nav-book, nav.scrolled .nav-book { background: #fff; color: var(--ink) !important; }
nav.nav-solid .nav-book:hover, nav.scrolled .nav-book:hover { background: var(--blush-soft) !important; }
nav.nav-solid .hamburger span, nav.scrolled .hamburger span { background: var(--bg); }
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo b { color: var(--blush); font-weight: 400; font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-book {
  color: var(--surface) !important;
  background: var(--ink);
  padding: .6rem 1.4rem;
  border-radius: 100px;
  transition: background .25s, transform .2s !important;
}
.nav-book:hover { background: var(--blush) !important; transform: translateY(-1px); }

/* nav over a dark hero (home) — light text until scrolled */
nav.on-dark:not(.scrolled) .nav-logo { color: #fff; }
nav.on-dark:not(.scrolled) .nav-logo b { color: var(--blush-soft); }
nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
nav.on-dark:not(.scrolled) .nav-links a:hover,
nav.on-dark:not(.scrolled) .nav-links a.active { color: #fff; }
nav.on-dark:not(.scrolled) .nav-book { background: #fff; color: var(--ink) !important; }
nav.on-dark:not(.scrolled) .nav-book:hover { background: var(--blush-soft) !important; }
nav.on-dark:not(.scrolled) .hamburger span { background: #fff; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: all .3s;
}

/* ── MOBILE OVERLAY ── */
#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
#mobileMenu a:hover { color: var(--blush); }
#mobileMenu .mob-book { font-style: italic; color: var(--blush) !important; }

/* ── HERO (full-bleed cinematic) ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #211b1e; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(33,24,27,.94) 0%, rgba(33,24,27,.5) 45%, rgba(33,24,27,.2) 100%),
    linear-gradient(to right, rgba(33,24,27,.6) 0%, transparent 58%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 4rem 6rem;
}
.hero-copy { max-width: 680px; }
.hero-overline {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blush-soft);
  margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .8s .2s ease forwards;
}
.hero-overline::before { content: ''; width: 28px; height: 1px; background: var(--blush-soft); }
.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 300; line-height: .96; letter-spacing: -.02em;
  color: #fff; margin-bottom: .35em;
  text-shadow: 0 2px 40px rgba(0,0,0,.35);
  opacity: 0; animation: fadeUp .9s .35s ease forwards;
}
.hero-title em { font-style: italic; color: var(--blush-soft); }
.hero-sub {
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,.88);
  max-width: 480px; margin-bottom: 2.4rem;
  opacity: 0; animation: fadeUp .9s .5s ease forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  opacity: 0; animation: fadeUp .9s .65s ease forwards;
}
#hero .btn-primary { background: var(--blush); color: #fff; }
#hero .btn-primary:hover { background: #fff; color: var(--ink); }
#hero .btn-text { color: #fff; border-color: rgba(255,255,255,.55); }
#hero .btn-text:hover { color: var(--blush-soft); border-color: var(--blush-soft); }
.hero-meta {
  display: flex; gap: 2.6rem;
  margin-top: 2.8rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  opacity: 0; animation: fadeUp .9s .8s ease forwards;
}
.hero-meta .m-num { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 400; color: #fff; line-height: 1; }
.hero-meta .m-lbl { font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.72); margin-top: .35rem; }
.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll span { width: 3px; height: 8px; border-radius: 3px; background: rgba(255,255,255,.85); animation: scrolldot 1.8s ease-in-out infinite; }

/* ── INNER PAGE HEADER ── */
.page-hero {
  position: relative;
  padding: 12rem 0 5rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 80% 0%, var(--bg-rose) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, var(--bg-warm) 0%, transparent 55%),
    var(--bg);
}
.page-hero .label { justify-content: center; }
.page-hero .label::before { display: none; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 300; line-height: 1.04; letter-spacing: -.02em;
  color: var(--ink);
}
.page-hero h1 em { font-style: italic; color: var(--blush); }
.page-hero p { max-width: 540px; margin: 1.2rem auto 0; color: var(--ink-soft); font-size: 1rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink);
  color: var(--surface);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--blush); transform: translateY(-2px); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem .4rem;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  transition: color .25s, border-color .25s, gap .25s;
}
.btn-text:hover { color: var(--blush); border-color: var(--blush); gap: .8rem; }

/* ── SECTIONS ── */
section { padding: 7.5rem 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 4rem; }

.label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.1rem;
}
.label::before { content: ''; width: 22px; height: 1px; background: var(--clay); }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--blush); }
.section-cta { text-align: center; margin-top: 3.5rem; }

/* ── ABOUT ── */
.tint-rose { background: var(--bg-rose); }
.tint-warm { background: var(--bg-warm); }
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 1.1rem;
  max-width: 480px;
}
.about-features { list-style: none; margin-top: 1.8rem; display: grid; gap: .9rem; }
.about-features li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--ink); }
.about-features svg { flex-shrink: 0; color: var(--blush); }
.stats-row {
  display: flex;
  gap: 2.8rem;
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.stat-num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 400; line-height: 1; color: var(--blush); }
.stat-desc { font-size: .74rem; letter-spacing: .02em; color: var(--ink-soft); margin-top: .4rem; }

.about-img-frame { position: relative; }
.about-img-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.about-img-frame .dot-deco {
  position: absolute;
  top: -22px; right: -22px;
  width: 110px; height: 110px;
  border-radius: 24px;
  background: var(--blush-soft);
  z-index: -1;
}
.about-img-frame .yrs-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--ink);
  color: var(--bg);
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 18px 40px -18px rgba(43,35,38,.5);
}
.yrs-badge b { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; line-height: 1; color: var(--blush-soft); }
.yrs-badge span { display: block; font-size: .72rem; letter-spacing: .05em; margin-top: .3rem; color: rgba(246,235,227,.75); }

/* ── SERVICES ── */
.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(43,35,38,.25);
  border-color: var(--blush-soft);
}
.svc-num {
  font-family: 'Fraunces', serif;
  font-size: .9rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 1.2rem;
}
.svc-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: .55rem;
}
.svc-card .from { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--clay); margin-bottom: .9rem; }
.svc-card p {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.svc-tags li {
  font-size: .7rem;
  font-weight: 500;
  color: var(--clay);
  background: var(--blush-wash);
  padding: .35rem .75rem;
  border-radius: 100px;
}

/* ── PRICING ── */
.pricing-head { text-align: center; margin-bottom: 3.5rem; }
.pricing-head .label { justify-content: center; }
.pricing-head .label::before { display: none; }
.price-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 920px;
  margin: 0 auto;
}
.price-group h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: .9rem;
  margin-bottom: .6rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: .55rem;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: .55rem 0;
}
.price-row .pr-name { font-size: .92rem; color: var(--ink); white-space: nowrap; }
.price-row .pr-dot { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.price-row .pr-price { font-size: .92rem; font-weight: 600; color: var(--clay); white-space: nowrap; }
.pricing-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 3rem; font-style: italic; }

/* ── GALLERY ── */
.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.8rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gi { overflow: hidden; border-radius: 18px; position: relative; cursor: pointer; }
.gi img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gi:hover img { transform: scale(1.07); }
.gi-1 { grid-column: 1 / 6;  height: 420px; }
.gi-2 { grid-column: 6 / 9;  height: 420px; }
.gi-3 { grid-column: 9 / 13; height: 420px; }
.gi-4 { grid-column: 1 / 7;  height: 340px; }
.gi-5 { grid-column: 7 / 13; height: 340px; }
/* extended gallery rows */
.gi-6 { grid-column: 1 / 5;  height: 360px; }
.gi-7 { grid-column: 5 / 9;  height: 360px; }
.gi-8 { grid-column: 9 / 13; height: 360px; }

/* ── REVIEWS ── */
.reviews-band { background: var(--blush); }
.reviews-intro { text-align: center; margin-bottom: 3.5rem; }
.reviews-intro .label { justify-content: center; color: #5a2c30; }
.reviews-intro .label::before { display: none; }
.reviews-intro .section-title { color: #fff; }
.reviews-intro .section-title em { color: #5a2c30; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rev-card {
  background: var(--surface);
  border: none;
  border-radius: 22px;
  padding: 2.4rem;
  box-shadow: 0 20px 45px -28px rgba(90,44,48,.55);
  transition: transform .3s, box-shadow .3s;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: 0 30px 55px -28px rgba(90,44,48,.65); }
.rev-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.star { color: var(--blush); font-size: .95rem; }
.rev-text {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.rev-author { font-weight: 600; font-size: .85rem; color: var(--ink); }
.rev-source { font-size: .74rem; color: var(--ink-soft); margin-top: .15rem; }

/* ── CTA BANNER ── */
.cta-band {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-band .cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-media::after { content: ''; position: absolute; inset: 0; background: rgba(33,24,27,.8); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band .label { justify-content: center; color: var(--blush-soft); }
.cta-band .label::before { display: none; }
.cta-band h2 { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: #fff; line-height: 1.1; }
.cta-band p { color: rgba(255,255,255,.82); margin: 1rem auto 2.2rem; max-width: 440px; }
.cta-band .btn-text { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-text:hover { color: var(--blush-soft); border-color: var(--blush-soft); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ── VISIT ── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.hours-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 2.6rem;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .85rem 0; font-size: .9rem; }
.hours-table td:first-child { color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.hours-table tr.is-today td { color: var(--blush); font-weight: 600; }

.contact-block { display: flex; flex-direction: column; gap: 1.6rem; margin-top: .5rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.c-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blush-wash);
  color: var(--clay);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.c-label { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .25rem; }
.c-val { font-size: .95rem; color: var(--ink); text-decoration: none; line-height: 1.5; }
.c-val:hover { color: var(--blush); }
.map-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.8rem;
  font-size: .8rem; font-weight: 500;
  color: var(--surface); background: var(--ink);
  text-decoration: none;
  padding: .85rem 1.6rem; border-radius: 100px;
  transition: background .25s, transform .2s;
}
.map-btn:hover { background: var(--blush); transform: translateY(-2px); }
.visit-head { margin-bottom: 1.6rem; }
.visit-head h3 { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 400; }
.map-embed { margin-top: 3rem; border-radius: 22px; overflow: hidden; border: 1px solid var(--line-soft); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--bg); padding: 4.5rem 0 2.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { display: block; color: var(--bg); font-size: 1.6rem; margin-bottom: 1rem; }
.footer-brand .nav-logo b { color: var(--blush-soft); }
.footer-brand p { font-size: .88rem; color: rgba(246,235,227,.6); line-height: 1.8; max-width: 280px; margin-bottom: 1.6rem; }
.social-row { display: flex; gap: .7rem; }
.s-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(246,235,227,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,235,227,.7);
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}
.s-link:hover { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.footer-col h4 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bg); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a { font-size: .88rem; color: rgba(246,235,227,.6); text-decoration: none; transition: color .25s; }
.footer-col a:hover { color: var(--blush-soft); }
.footer-bottom {
  border-top: 1px solid rgba(246,235,227,.12);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(246,235,227,.5); }
.footer-bottom a { color: var(--blush-soft); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}
@keyframes scrolldot {
  0%   { opacity: 0; transform: translateY(-4px); }
  50%  { opacity: 1; transform: translateY(4px); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ── FILM-GRAIN TEXTURE ── */
.grain {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 2.5rem; }
  nav { padding: 0 2.5rem; }
  .hero-inner { padding: 0 2.5rem 4.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img-frame { order: -1; }
  .about-img-frame img { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .container { padding: 0 1.5rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 9rem 0 3.5rem; }
  .services-top, .gallery-intro { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .price-cols { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gi-1 { grid-column: 1 / 3; height: 280px; }
  .gi-2 { grid-column: 1 / 2; height: 220px; }
  .gi-3 { grid-column: 2 / 3; height: 220px; }
  .gi-4 { grid-column: 1 / 2; height: 220px; }
  .gi-5 { grid-column: 2 / 3; height: 220px; }
  .gi-6 { grid-column: 1 / 2; height: 220px; }
  .gi-7 { grid-column: 2 / 3; height: 220px; }
  .gi-8 { grid-column: 1 / 3; height: 240px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .6rem; text-align: center; }
  .about-img-frame .yrs-badge { left: 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { justify-content: center; }
  .stats-row, .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
}
