/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0b0b11;
  color: #f4efe4;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(201,162,75,.35); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0b0b11; }
::-webkit-scrollbar-thumb { background: #2c2c3a; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #c9a24b; }

:root {
  --bg: #0b0b11;
  --bg-2: #10101a;
  --bg-3: #161622;
  --gold: #c9a24b;
  --gold-2: #e6c878;
  --text: #f4efe4;
  --muted: #a89f8f;
  --line: rgba(201,162,75,.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.gold-text {
  background: linear-gradient(120deg, #e6c878, #c9a24b 55%, #9a7a2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 2rem; font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-decoration: none; border-radius: 3px;
  border: 1px solid transparent; transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(120deg, #e6c878, #c9a24b);
  color: #14141c;
  box-shadow: 0 8px 30px rgba(201,162,75,.22);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(201,162,75,.38); }
.btn-ghost { border-color: rgba(201,162,75,.45); color: var(--text); background: transparent; }
.btn-ghost:hover { background: rgba(201,162,75,.08); border-color: var(--gold); transform: translateY(-3px); }
.btn-block { width: 100%; }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.25rem 0; transition: padding .4s ease, background .4s ease, box-shadow .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  padding: .7rem 0;
  background: rgba(11,11,17,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.monogram {
  width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .06em; color: #14141c;
  background: linear-gradient(135deg, #e6c878, #c9a24b);
  box-shadow: 0 6px 22px rgba(201,162,75,.35);
  border: 1px solid rgba(255,255,255,.25);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; }
.logo-text small { font-weight: 400; font-size: .72rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; }

.nav-desktop { display: flex; align-items: center; gap: 2.2rem; }
.nav-desktop a {
  position: relative; text-decoration: none; color: var(--text);
  font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  padding: .35rem 0; transition: color .3s;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .35s ease;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a:hover::after { width: 100%; }

.header-call { padding: .7rem 1.5rem; font-size: .88rem; }

/* ============ HAMBURGER ============ */
.hamburger {
  display: none; position: relative; z-index: 110;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 6px;
  background: rgba(11,11,17,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color .3s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--gold-2);
  border-radius: 2px; transition: transform .4s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(11,11,17,.97);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-2%);
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.nav-mobile { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.nav-mobile a {
  font-family: var(--serif); font-size: clamp(1.5rem, 6vw, 2rem);
  color: var(--text); text-decoration: none; padding: .55rem 1rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, color .3s;
}
.nav-mobile a:hover { color: var(--gold); }
.mobile-menu.open .nav-mobile a { opacity: 1; transform: none; transition-delay: calc(var(--i) * .07s + .15s); }
.mobile-menu-footer { display: flex; flex-direction: column; align-items: center; gap: .8rem; opacity: 0; transform: translateY(16px); transition: opacity .5s ease .55s, transform .5s ease .55s; }
.mobile-menu.open .mobile-menu-footer { opacity: 1; transform: none; }
.mobile-menu-footer p { color: var(--muted); font-size: .85rem; letter-spacing: .1em; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-bg--gradient { background: radial-gradient(1200px 700px at 75% 20%, #241a0e 0%, #0b0b11 60%); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,17,.62) 0%, rgba(11,11,17,.55) 45%, rgba(11,11,17,.9) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 7rem 0 8rem; }
.hero-eyebrow {
  color: var(--gold-2); letter-spacing: .42em; text-transform: uppercase;
  font-size: .8rem; font-weight: 600; margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  line-height: 1.12; letter-spacing: .01em;
}
.hero-divider { display: flex; align-items: center; justify-content: center; gap: .9rem; margin: 1.6rem auto; width: min(420px, 80%); }
.hero-divider span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-divider i { color: var(--gold); font-style: normal; font-size: .8rem; }
.hero-sub { max-width: 640px; margin: 0 auto 1.8rem; color: #d8d2c4; font-size: clamp(1rem, 2vw, 1.15rem); }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-bottom: 2.2rem; color: var(--text); }
.hero-rating strong { font-size: 1.25rem; font-family: var(--serif); }
.rating-count { color: var(--muted); font-size: .92rem; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; fill: #d9a92c; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.hero-scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem; text-decoration: none; color: var(--muted); }
.mouse { width: 24px; height: 38px; border: 1.5px solid rgba(201,162,75,.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.wheel { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
.scroll-text { font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; }

/* fade-in hero */
.fade-in { opacity: 0; animation: fadeUp 1s ease forwards; }
.fade-in.d1 { animation-delay: .15s; }
.fade-in.d2 { animation-delay: .35s; }
.fade-in.d3 { animation-delay: .55s; }
.fade-in.d4 { animation-delay: .75s; }
.fade-in.d5 { animation-delay: .95s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ============ INFO STRIP ============ */
.info-strip { background: linear-gradient(135deg, #13131d, #0e0e16); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.2rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.strip-item { display: flex; align-items: center; gap: 1rem; }
.strip-icon {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(201,162,75,.06);
  display: grid; place-items: center; color: var(--gold);
}
.strip-icon svg { width: 22px; height: 22px; }
.strip-item strong { display: block; font-size: 1rem; letter-spacing: .02em; }
.strip-item p { color: var(--muted); font-size: .85rem; }
#openStatus.is-open { color: #7ed99a; }
#openStatus.is-closed { color: #e08a8a; }

/* ============ SECTIONS ============ */
.section { padding: 6.5rem 0; position: relative; }
.section:nth-of-type(even), .services { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.section-head { text-align: center; margin-bottom: 3.6rem; }
.eyebrow { color: var(--gold); letter-spacing: .38em; text-transform: uppercase; font-size: .78rem; font-weight: 600; }
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 2.9rem); margin: .7rem 0 .4rem; line-height: 1.2; }
.divider { display: flex; align-items: center; justify-content: center; gap: .8rem; width: min(300px, 70%); margin: 1.1rem auto 0; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider i { color: var(--gold); font-style: normal; font-size: .72rem; }
.section-sub { color: var(--muted); max-width: 560px; margin: 1.2rem auto 0; }

section[id] { scroll-margin-top: 84px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center; }
.about-media { position: relative; }
.about-img-main { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.about-img-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(11,11,17,.55)); }
.about-img-main img { width: 100%; height: 520px; object-fit: cover; transition: transform 1.2s ease; }
.about-media:hover .about-img-main img { transform: scale(1.05); }
.about-badge {
  position: absolute; right: -1.4rem; bottom: 1.6rem; z-index: 2;
  background: linear-gradient(135deg, #e6c878, #c9a24b); color: #14141c;
  border-radius: 8px; padding: 1rem 1.4rem; text-align: center;
  box-shadow: 0 18px 44px rgba(201,162,75,.4);
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.about-badge span { font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.about-text p { color: #cfc9bc; margin-bottom: 1.2rem; }
.about-text p strong { color: var(--gold-2); }
.about-list { list-style: none; margin: 1.4rem 0 2rem; display: grid; gap: .7rem; }
.about-list li { display: flex; align-items: flex-start; gap: .7rem; color: #e7e1d3; }
.check {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,162,75,.14); border: 1px solid var(--line);
  color: var(--gold); display: grid; place-items: center; font-size: .72rem; margin-top: 2px;
}
.about-gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.4rem; margin-top: 3rem; }
.about-gallery img { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); transition: transform .8s ease, box-shadow .8s ease; }
.about-gallery img:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.55); }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  background: linear-gradient(160deg, #15151f, #101018);
  border: 1px solid rgba(201,162,75,.14); border-radius: 10px;
  padding: 2.4rem 2rem; text-align: center; position: relative; overflow: hidden;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .5s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,162,75,.45); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  border: 1px solid var(--line); background: rgba(201,162,75,.07);
  transition: background .4s, color .4s, transform .4s;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: linear-gradient(135deg, #e6c878, #c9a24b); color: #14141c; transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin-bottom: .7rem; letter-spacing: .02em; }
.service-card p { color: var(--muted); font-size: .93rem; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: 1fr 1.4fr 1.4fr; gap: 1.6rem; align-items: stretch; }
.rating-summary {
  background: linear-gradient(160deg, #15151f, #101018);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 2.4rem 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
}
.rating-big { display: flex; align-items: baseline; justify-content: center; }
.rating-big span { font-family: var(--serif); font-size: 4.2rem; line-height: 1; background: linear-gradient(120deg, #e6c878, #c9a24b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rating-big em { font-style: normal; color: var(--muted); font-size: 1.2rem; }
.rating-summary .stars svg { width: 22px; height: 22px; }
.rating-count strong { color: var(--gold-2); }
.rating-note { color: var(--muted); font-size: .88rem; font-style: italic; }

.review-card {
  background: linear-gradient(160deg, #15151f, #101018);
  border: 1px solid rgba(201,162,75,.14); border-radius: 10px;
  padding: 2.2rem 2rem; position: relative; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.review-card:hover { transform: translateY(-8px); border-color: rgba(201,162,75,.4); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.quote { position: absolute; top: .6rem; right: 1.4rem; font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: rgba(201,162,75,.18); }
.review-card blockquote { color: #d9d3c5; font-size: .98rem; font-style: italic; flex: 1; }
.review-card figcaption { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 44px;
  background: linear-gradient(135deg, #e6c878, #c9a24b); color: #14141c;
  display: grid; place-items: center; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
}
.review-card figcaption strong { display: block; font-size: .95rem; }
.review-card figcaption small { color: var(--muted); font-size: .78rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.4rem; align-items: start; }
.contact-info h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); margin-bottom: 1.8rem; max-width: 46ch; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 2.2rem; }
.contact-list li { display: flex; gap: 1.1rem; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(201,162,75,.06);
  display: grid; place-items: center; color: var(--gold);
}
.c-icon svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-size: .95rem; letter-spacing: .03em; }
.contact-list p { color: var(--muted); font-size: .92rem; }
.contact-list a { color: var(--gold-2); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.contact-card {
  background: linear-gradient(160deg, #15151f, #101018);
  border: 1px solid var(--line); border-radius: 12px; padding: 2.4rem 2.2rem;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.contact-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 1.3rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; }
.hours-table td { padding: .72rem .6rem; font-size: .94rem; border-bottom: 1px solid rgba(201,162,75,.1); }
.hours-table td:last-child { text-align: right; color: #e3ddcf; font-variant-numeric: tabular-nums; }
.hours-table tr.today td { background: rgba(201,162,75,.1); color: var(--gold-2); border-left: 3px solid var(--gold); padding-left: .4rem; }
.hours-table td.closed { color: #9a8f8f; }
.status-line { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.5rem; font-size: .92rem; color: var(--muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #8a8a8a; box-shadow: 0 0 0 4px rgba(138,138,138,.15); }
.status-line.is-open .dot { background: #4cd07d; box-shadow: 0 0 0 4px rgba(76,208,125,.18); }
.status-line.is-open #openStatus2 { color: #7ed99a; }
.status-line.is-closed .dot { background: #e06a6a; box-shadow: 0 0 0 4px rgba(224,106,106,.18); }
.status-line.is-closed #openStatus2 { color: #e08a8a; }

/* ============ FOOTER ============ */
.footer { background: #08080d; border-top: 1px solid var(--line); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.4fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links h5 { color: var(--gold); font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: .4rem; font-weight: 600; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .92rem; transition: color .3s, transform .3s; }
.footer-links a:hover { color: var(--gold-2); transform: translateX(4px); }
.footer-links span { color: var(--muted); font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(201,162,75,.12); padding: 1.4rem 0; text-align: center; }
.footer-bottom p { color: #7d7668; font-size: .82rem; }
.footer-bottom .credit { margin-top: .3rem; color: #5d574c; font-size: .74rem; }

/* ============ FLOATING ============ */
.fab-call {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #e6c878, #c9a24b); color: #14141c;
  display: none; align-items: center; justify-content: center; font-size: 1.4rem;
  box-shadow: 0 14px 34px rgba(201,162,75,.45);
  animation: pulse 2.4s ease-in-out infinite;
  text-decoration: none;
}
@keyframes pulse { 0%,100% { box-shadow: 0 14px 34px rgba(201,162,75,.45); } 50% { box-shadow: 0 14px 44px rgba(201,162,75,.7); } }
.scroll-top {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(16,16,26,.92); color: var(--gold);
  font-size: 1.1rem; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s, transform .35s, visibility .35s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { border-color: var(--gold); background: rgba(201,162,75,.12); }
@media (min-width: 641px) { .fab-call { display: none !important; } }

/* ============ REVEAL ============ */
.reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 0; transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.25,1); will-change: opacity, transform; }
.reveal { transform: translateY(40px); }
.reveal-l { transform: translateX(-44px); }
.reveal-r { transform: translateX(44px); }
.reveal-scale { transform: scale(.94); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .nav-desktop, .header-call { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .rating-summary { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main img { height: 440px; }
  .about-badge { right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .strip-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .section { padding: 4.6rem 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-column: auto; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img { height: 260px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 6.5rem 0 7.5rem; }
  .hero-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .fab-call { display: flex; }
  .contact-actions .btn { width: 100%; }
  .header { padding: .9rem 0; }
  .monogram { width: 42px; height: 42px; flex-basis: 42px; }
  .logo-text { font-size: .95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1; transform: none; }
  .nav-mobile a, .mobile-menu-footer { opacity: 1; transform: none; }
}