:root {
  --ink: #1d2024;
  --graphite: #30373d;
  --muted: #62666a;
  --gold: #b47a25;
  --gold-dark: #8f5c18;
  --gold-soft: #d9b875;
  --ivory: #fbfaf7;
  --paper: #ffffff;
  --sand: #f3eee7;
  --line: #e6ddd1;
  --line-strong: #d8c6ad;
  --shadow: 0 20px 55px rgba(40, 31, 20, .11);
  --radius: 18px;
  --container: 1270px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 105px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 5.1vw, 5rem); letter-spacing: -.035em; }
h2 { margin-bottom: 22px; font-size: clamp(2.2rem, 3.5vw, 3.45rem); letter-spacing: -.025em; }
h3 { margin-bottom: 12px; font-size: 1.12rem; line-height: 1.3; }
p { margin-top: 0; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .main-nav a:focus-visible, .text-link:focus-visible { outline: 3px solid rgba(180,122,37,.34); outline-offset: 3px; }
.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 28px rgba(143,92,24,.22);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(143,92,24,.3); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.78); }
.button-secondary:hover { border-color: var(--gold); background: #fff; }
.button-wide { width: 100%; }
.text-link { color: var(--gold-dark); font-weight: 750; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(218,205,187,.8);
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(16px);
}
.header-inner { display: grid; min-height: 88px; grid-template-columns: 250px 1fr auto; align-items: center; gap: 26px; }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 12px; }
.brand-mark { width: 58px; height: 58px; flex: 0 0 58px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.42rem; font-weight: 500; letter-spacing: .045em; text-transform: uppercase; }
.brand-copy small { margin-top: 7px; color: var(--gold-dark); font-size: .68rem; font-weight: 800; letter-spacing: .29em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.main-nav a { position: relative; padding: 31px 0 26px; color: var(--graphite); font-size: .91rem; font-weight: 650; }
.main-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; transform: scaleX(0); background: var(--gold); content: ""; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-cta { min-height: 46px; padding: 10px 18px; font-size: .87rem; }
.menu-toggle { display: none; width: 44px; height: 44px; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }

.hero { overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 12% 18%, rgba(217,184,117,.15), transparent 34%), #fff; }
.hero-grid { display: grid; min-height: 690px; grid-template-columns: 1.02fr .98fr; }
.hero-copy { display: flex; max-width: 620px; flex-direction: column; justify-content: center; padding: 78px 54px 72px 0; }
.hero-lead { max-width: 630px; margin-bottom: 31px; color: var(--muted); font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px 28px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--graphite); font-size: .91rem; }
.hero-meta a, .hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 21px; color: var(--gold); }
.hero-media { position: relative; min-height: 690px; margin: 0; overflow: hidden; background: var(--sand); }
.hero-media::before { position: absolute; z-index: 1; top: 0; bottom: 0; left: 0; width: 72px; background: linear-gradient(90deg, #fff, transparent); content: ""; pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.photo-badge { position: absolute; z-index: 2; right: 28px; bottom: 28px; display: grid; max-width: 245px; gap: 2px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.24); border-radius: 12px; color: #fff; background: rgba(27,30,33,.84); backdrop-filter: blur(8px); }
.photo-badge strong { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.photo-badge span { color: rgba(255,255,255,.74); font-size: .82rem; }

.trust-strip { padding: 34px 0; border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 8px 25px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }
.trust-item h2 { margin: 0 0 4px; font-family: var(--sans); font-size: .96rem; font-weight: 750; letter-spacing: 0; }
.trust-item p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.icon-box { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-dark); }
.icon-box svg { width: 23px; }

.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered p:last-child { color: var(--muted); }
.section-heading.compact { margin-bottom: 40px; }
.directions { background: var(--ivory); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 34px 32px 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.service-card::before { position: absolute; top: 0; right: 0; width: 115px; height: 115px; border-radius: 0 0 0 100%; background: linear-gradient(135deg, rgba(217,184,117,.18), transparent); content: ""; }
.service-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 18px 38px rgba(44,35,24,.08); }
.service-card-featured { color: #fff; border-color: var(--graphite); background: var(--graphite); }
.service-card-featured p { color: rgba(255,255,255,.7) !important; }
.service-card-featured a { color: var(--gold-soft) !important; }
.service-number { margin-bottom: 47px; color: var(--gold); font-family: var(--serif); font-size: 1.5rem; }
.service-card h3 { max-width: 280px; font-family: var(--serif); font-size: 1.52rem; font-weight: 500; }
.service-card p { margin-bottom: 24px; color: var(--muted); font-size: .93rem; }
.service-card a { margin-top: auto; color: var(--gold-dark); font-weight: 750; }
.service-card a span { margin-left: 6px; }

.about { border-block: 1px solid var(--line); background: #fff; }
.about-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: stretch; gap: 72px; }
.about-photo { min-height: 610px; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 47% 53%; }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding-block: 34px; }
.about-lead { margin-bottom: 24px; color: var(--muted); font-size: 1.08rem; }
.check-list { display: grid; gap: 14px; margin: 0 0 31px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { position: absolute; top: 1px; left: 0; color: var(--gold); content: "✓"; font-size: 1.1rem; font-weight: 800; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.visit { background: linear-gradient(180deg, var(--sand), var(--ivory)); }
.steps { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(5,1fr); list-style: none; }
.steps li { position: relative; padding: 0 25px; text-align: center; }
.steps li:not(:last-child)::after { position: absolute; top: 30px; right: -18px; width: 36px; height: 1px; background: var(--gold-soft); content: ""; }
.steps span { display: grid; width: 61px; height: 61px; margin: 0 auto 20px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-dark); background: #fff; font-family: var(--serif); font-size: 1.15rem; }
.steps h3 { font-size: 1rem; }
.steps p { margin: 0; color: var(--muted); font-size: .84rem; }

.reviews-cta { padding: 86px 0; color: #fff; background: var(--graphite); }
.reviews-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; }
.reviews-copy { padding: 32px 42px 32px 0; }
.reviews-copy h2, .booking-card h2 { color: #fff; }
.reviews-copy p:not(.eyebrow), .booking-card p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.reviews-copy .button-secondary { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.booking-card { padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.booking-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.phone-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 25px; margin-top: 23px; }
.phone-list a { color: rgba(255,255,255,.8); font-weight: 650; }
.phone-list a:hover { color: #fff; }

.site-footer { padding: 65px 0 24px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .8fr .9fr; gap: 50px; }
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand-lockup img { width: 66px; height: 66px; object-fit: contain; }
.footer-brand-lockup span { display: grid; line-height: 1; }
.footer-brand-lockup strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; letter-spacing: .045em; text-transform: uppercase; }
.footer-brand-lockup small { margin-top: 7px; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .27em; }
.footer-brand p { max-width: 280px; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.site-footer h2 { margin: 0 0 16px; font-family: var(--sans); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer address, .site-footer nav { display: grid; gap: 9px; font-style: normal; }
.site-footer a { color: var(--muted); font-size: .9rem; }
.site-footer a:hover { color: var(--gold-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); color: #8a8a8a; font-size: .79rem; }
.mobile-booking { display: none; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 220px 1fr auto; gap: 15px; }
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 34px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); row-gap: 24px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); gap: 38px 0; }
  .steps li:nth-child(3)::after, .steps li:last-child::after { display: none; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  body { padding-bottom: 70px; font-size: 16px; }
  .container { width: min(100% - 30px, var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 74px; grid-template-columns: 1fr auto; }
  .brand { gap: 9px; }
  .brand-mark { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { margin-top: 5px; font-size: .57rem; }
  .menu-toggle { display: grid; }
  .header-cta { display: none; }
  .main-nav { position: absolute; top: 74px; right: 15px; left: 15px; display: none; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; padding: 60px 0 42px; }
  .hero-media { min-height: 560px; border-radius: var(--radius) var(--radius) 0 0; }
  .hero-media::before { top: 0; right: 0; bottom: auto; left: 0; width: auto; height: 65px; background: linear-gradient(180deg, #fff, transparent); }
  .hero-media img { object-position: 50% 38%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:last-child { padding: 8px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 295px; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-photo { min-height: 560px; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps li { display: grid; grid-template-columns: 70px 1fr; gap: 0 14px; padding: 20px 0; border-bottom: 1px solid var(--line); text-align: left; }
  .steps li::after { display: none !important; }
  .steps span { grid-row: 1 / 3; margin: 0; }
  .steps h3 { margin-top: 8px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-copy { padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-booking { position: fixed; z-index: 90; right: 12px; bottom: 10px; left: 12px; display: flex; min-height: 51px; align-items: center; justify-content: center; border-radius: 9px; color: #fff; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); box-shadow: 0 10px 30px rgba(65,42,17,.3); font-weight: 800; }
}

/* Exact palette and typography from the approved Kirilo ZIP. */
:root {
  --ink: #f6f3ed;
  --graphite: #080a0c;
  --muted: #d0cfca;
  --gold: #d6a94f;
  --gold-dark: #f0c96d;
  --gold-soft: #f0c96d;
  --ivory: #080a0c;
  --paper: #0d1013;
  --sand: #131619;
  --line: rgba(255,255,255,.075);
  --line-strong: rgba(214,169,79,.34);
  --shadow: 0 24px 64px rgba(0,0,0,.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

body,
.site-header,
.directions,
.visit { background: #080a0c; }
.hero,
.trust-strip,
.about,
.site-footer { background: #0d1013; }
.service-card,
.booking-card,
.main-nav { background: #131619; }
.service-card-featured,
.reviews-cta { background: #111315; }
.button-secondary { background: #181b1e; }
.button-secondary:hover { background: #1b1e21; }
.menu-toggle { background: #131619; }
.main-nav a,
.hero-meta { color: var(--text, #f6f3ed); }
.hero-media::before { background: linear-gradient(90deg, #080a0c, transparent); }
.steps span { background: #131619; }
.photo-badge { background: rgba(8,10,12,.84); }
.service-card,
.booking-card { color: #f6f3ed; }
.service-card p,
.footer-brand p,
.site-footer a,
.trust-item p,
.hero-lead,
.about-lead,
.section-heading.centered p:last-child,
.steps p { color: #d0cfca; }
.site-footer h2,
.site-footer strong,
.trust-item h2,
.about-copy h2,
.section-heading h2 { color: #f6f3ed; }
.mobile-booking,
.button-primary { color: #0a0a0a; background: linear-gradient(135deg,#f3cf7f,#e4b65a); }

@media (max-width: 820px) {
  .hero-media::before { background: linear-gradient(180deg, #080a0c, transparent); }
}

@media (max-width: 520px) {
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.2rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; }
  .hero-media { min-height: 470px; }
  .photo-badge { right: 15px; bottom: 15px; left: 15px; max-width: none; }
  .service-card { padding: 30px 25px 25px; }
  .about-photo { min-height: 480px; }
  .about-actions { display: grid; }
  .about-actions .button { width: 100%; }
  .booking-card { padding: 28px 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* v4: review migration and pending social link */
.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}
.reviews-header h2 { color: #fff; margin-bottom: 14px; }
.reviews-header p:not(.eyebrow) { max-width: 820px; margin-bottom: 0; color: rgba(255,255,255,.72); }
.reviews-header .button-secondary { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.review-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.review-card { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.review-source { margin-bottom: 15px; color: var(--gold-soft); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-card blockquote { margin: 0 0 18px; color: #fff; font-family: var(--serif); font-size: 1.23rem; line-height: 1.45; }
.review-card a { color: var(--gold-soft); font-size: .9rem; font-weight: 750; }
.review-status { max-width: 920px; margin: 22px 0 36px; color: rgba(255,255,255,.62); font-size: .88rem; }
.booking-card-wide { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 40px; }
.social-pending { color: #8a8a8a; font-size: .9rem; cursor: help; }
@media (max-width: 820px) {
  .reviews-header, .review-cards, .booking-card-wide { grid-template-columns: 1fr; }
  .reviews-header { align-items: stretch; }
  .reviews-header .button { width: 100%; }
  .review-card blockquote { font-size: 1.08rem; }
}

/* Complete dark header-logo lockup; all other page styling stays unchanged. */
.brand-mark {
  border-radius: 50%;
  filter: invert(1) hue-rotate(180deg);
}
.brand-copy .brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: .42rem;
  font-weight: 650;
  letter-spacing: .1em;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .brand-copy .brand-tagline { font-size: .36rem; }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .brand {
    transform: scale(.84);
    transform-origin: left center;
  }
}
