:root {
  --bg: #090908;
  --bg-soft: #11110f;
  --panel: #14130f;
  --panel-2: #181711;
  --line: rgba(215, 187, 132, .18);
  --line-strong: rgba(215, 187, 132, .35);
  --gold: #b99a67;
  --gold-light: #d7bb84;
  --text: #f1eee7;
  --muted: #a7a39a;
  --dark: #080806;
  --max: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-weight: 650;
  font-size: 11px;
}
.serif { font-family: Georgia, "Times New Roman", serif; }

.topbar {
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: #060605;
  min-height: 34px;
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; justify-content: space-between; gap: 20px; font-size: 11px; letter-spacing: .08em; color: #b8b4aa; }
.topbar strong { color: var(--gold-light); font-weight: 500; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9,9,8,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.065);
}
.nav {
  height: 106px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; flex-direction: column; width: fit-content; }
.brand-main { font-family: Georgia, serif; font-size: 35px; line-height: .95; color: var(--gold-light); letter-spacing: -.04em; }
.brand-sub { color: #8d806a; font-size: 8px; font-weight: 750; letter-spacing: .15em; margin-top: 5px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 38px; color: #d8d3ca; font-size: 13px; }
.nav-links a { transition: color .18s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-actions { display: flex; justify-content: flex-end; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--gold); }
.btn-gold { background: var(--gold); color: #14110b; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); }
.btn-link { min-height: auto; padding: 0; border: 0; color: var(--gold-light); }

.mobile-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 24px; }
.mobile-menu { display: none; border-top: 1px solid rgba(255,255,255,.07); padding: 12px 20px 22px; }
.mobile-menu.open { display: grid; gap: 12px; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }

.hero { padding: 0 0 74px; }
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; min-height: 580px; }
.hero-copy { padding: 92px 72px 70px 0; display: flex; flex-direction: column; justify-content: center; }
.hero h1, .page-hero h1, .booking-hero h1 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 400;
}
.hero p.lead { max-width: 510px; margin: 0 0 32px; color: #b9b5ad; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 68px; color: #a4a097; display: flex; gap: 12px; max-width: 390px; font-size: 13px; }
.hero-note::before { content: "◈"; color: var(--gold); }
.hero-media { position: relative; overflow: hidden; min-height: 570px; background: linear-gradient(135deg, #201d17, #0e0e0d); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.02); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,8,.18), transparent 45%); pointer-events:none; }
.hero-caption { position: absolute; z-index: 2; left: 48px; bottom: 44px; background: rgba(6,6,5,.92); border: 1px solid rgba(215,187,132,.16); padding: 22px 27px; width: 260px; font-family: Georgia, serif; font-size: 24px; line-height: 1.05; }

.section { padding: 86px 0; border-top: 1px solid rgba(255,255,255,.05); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 40px; }
.section-title { margin: 9px 0 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 62px); line-height: .98; font-weight: 400; letter-spacing: -.045em; }
.section-sub { color: var(--muted); max-width: 520px; }

.calc-wrap { display: grid; grid-template-columns: 1.35fr .65fr; border: 1px solid var(--line); background: var(--panel); }
.calc-main { padding: 42px; }
.calc-total { padding: 42px; border-left: 1px solid var(--line); background: #0f0f0d; display: flex; flex-direction: column; justify-content: center; }
.calc-title-row { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom: 30px; }
.calc-title-row h3 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.pill { border: 1px solid var(--line); color: var(--gold-light); padding: 6px 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field label { display:block; color:#8f8b82; text-transform:uppercase; font-size:10px; letter-spacing:.12em; margin-bottom:10px; }
select, input, textarea { width:100%; background:#0d0d0b; border:1px solid #2c2a24; color:var(--text); min-height:48px; padding:0 13px; outline:none; border-radius:0; }
textarea { min-height: 100px; padding-top: 12px; resize: vertical; }
select:focus, input:focus, textarea:focus { border-color:var(--gold); }
.counter { display:flex; align-items:center; border:1px solid #2c2a24; width:180px; height:48px; }
.counter button { width:48px; height:100%; border:0; background:#10100e; color:var(--text); font-size:22px; cursor:pointer; }
.counter output { flex:1; text-align:center; font-family:Georgia,serif; font-size:20px; }
.duration { margin-top: 24px; color: #a9a49b; font-size: 13px; }
.total-label { color:#8f8b82; font-size:10px; letter-spacing:.14em; text-transform:uppercase; }
.total-number { font-family:Georgia,serif; color:var(--gold-light); font-size:58px; line-height:1; margin:14px 0 8px; }
.total-number span { font-family:Inter,sans-serif; font-size:15px; color:#b4aea1; letter-spacing:.08em; }
.total-breakdown { color:#aaa59b; font-size:12px; margin: 8px 0 24px; }
.calc-note { margin-top: 13px; color:#7f7b72; font-size:11px; }

.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.service-card { background:#0d0d0b; min-height:300px; padding:36px; display:flex; flex-direction:column; transition:background .2s ease; }
.service-card:hover { background:#14130f; }
.service-card .index { color:var(--gold); font-family:Georgia,serif; font-size:17px; }
.service-card h3 { margin:55px 0 12px; font-family:Georgia,serif; font-size:31px; font-weight:400; line-height:1.02; }
.service-card p { color:var(--muted); margin:0 0 24px; }
.service-card .arrow { margin-top:auto; color:var(--gold-light); }


/* Homepage service cards with images */
.home-services .service-card { min-height:420px; padding:0; overflow:hidden; }
.home-services .service-card-media { aspect-ratio:16 / 10; overflow:hidden; border-bottom:1px solid var(--line); }
.home-services .service-card-media img { width:100%; height:100%; object-fit:cover; display:block; }
.home-services .service-card-body { padding:28px 32px 32px; display:flex; flex-direction:column; flex:1; }
.home-services .service-card h3 { margin:0 0 12px; }

.services-page .service-card { min-height:420px; padding:0; overflow:hidden; }
.services-page .service-card-media { aspect-ratio:16 / 10; overflow:hidden; border-bottom:1px solid var(--line); }
.services-page .service-card-media img { width:100%; height:100%; object-fit:cover; display:block; }
.services-page .service-card-body { padding:28px 32px 32px; display:flex; flex-direction:column; flex:1; }
.services-page .service-card h3 { margin:0 0 12px; }

.trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.trust h3 { font-family:Georgia,serif; font-weight:400; font-size:24px; margin:0 0 8px; }
.trust p { color:var(--muted); font-size:13px; }

.page-hero { padding:90px 0 72px; border-bottom:1px solid rgba(255,255,255,.05); }
.page-hero h1 { max-width:760px; }
.page-hero .lead { color:var(--muted); max-width:620px; font-size:17px; }

.service-layout { display:grid; grid-template-columns:1fr 1fr; min-height:580px; border-top:1px solid rgba(255,255,255,.05); }
.service-copy { padding:80px max(32px, calc((100vw - var(--max))/2)) 80px max(32px, calc((100vw - var(--max))/2)); }
.service-copy h1 { font-family:Georgia,serif; font-size:60px; font-weight:400; line-height:.97; letter-spacing:-.05em; margin:12px 0 22px; }
.service-copy p { color:var(--muted); max-width:600px; }
.checklist { list-style:none; padding:0; margin:28px 0; display:grid; gap:12px; }
.checklist li::before { content:"✓"; color:var(--gold); margin-right:10px; }
.service-image { min-height:560px; background:#151410; overflow:hidden; }
.service-image img { width:100%; height:100%; object-fit:cover; }
.faq { max-width:850px; }
.faq-item { padding:25px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.faq-item h3 { font-family:Georgia,serif; font-size:23px; font-weight:400; margin:0 0 9px; }
.faq-item p { color:var(--muted); margin:0; }

.booking-hero { padding:70px 0 30px; }
.booking-hero h1 { font-size:64px; max-width:650px; }
.steps { display:flex; gap:0; margin:32px 0 34px; border:1px solid var(--line); width:100%; }
.step { flex:1; padding:15px 16px; color:#77736c; border-right:1px solid var(--line); font-size:12px; }
.step:last-child { border-right:0; }
.step.active { color:var(--gold-light); background:#11100d; }
.step b { margin-right:8px; }
.booking-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.booking-card { background:#11110f; padding:38px; }
.booking-card.aside { background:#0d0d0b; }
.included { margin:30px 0; }
.included h4 { font-family:Georgia,serif; font-size:19px; font-weight:400; }
.included ul { list-style:none; padding:0; display:grid; gap:10px; color:#aaa59b; font-size:13px; }
.included li::before { content:"✓"; color:var(--gold); margin-right:9px; }
.hidden { display:none !important; }
.slot-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:16px; }
.slot { min-height:44px; border:1px solid #313028; background:#0c0c0a; color:#d8d3ca; cursor:pointer; }
.slot:hover, .slot.selected { border-color:var(--gold); color:var(--gold-light); }
.summary-box { border:1px solid var(--line); padding:18px; margin-top:20px; color:#b0aba1; font-size:13px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid .full { grid-column:1 / -1; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line); }
.contact-panel { background:#11110f; padding:48px; }
.contact-panel h2 { font-family:Georgia,serif; font-size:34px; font-weight:400; margin-top:0; }
.contact-panel p, .contact-panel address { color:var(--muted); font-style:normal; }
.contact-line { padding:18px 0; border-bottom:1px solid rgba(255,255,255,.07); }

.footer { border-top:1px solid rgba(255,255,255,.07); padding:54px 0 28px; margin-top:30px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:50px; }
.footer-brand p { color:var(--muted); max-width:320px; }
.footer h4 { color:#8c887f; font-size:10px; text-transform:uppercase; letter-spacing:.13em; margin:0 0 16px; }
.footer a, .footer span { color:#bcb7ad; font-size:13px; }
.footer-col { display:grid; align-content:start; gap:10px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; color:#77736b; font-size:11px; padding-top:36px; margin-top:36px; border-top:1px solid rgba(255,255,255,.06); }

.notice { background:#16140f; border:1px solid var(--line); color:#b7b1a5; padding:15px 18px; font-size:12px; margin:18px 0; }

@media (max-width: 900px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .nav { height:78px; grid-template-columns:1fr auto; }
  .brand-main { font-size:29px; }
  .nav-links, .nav-actions { display:none; }
  .mobile-toggle { display:block; }
  .hero-grid, .service-layout, .booking-grid, .contact-grid, .calc-wrap { grid-template-columns:1fr; }
  .hero-copy { padding:68px 0 54px; }
  .hero-media { min-height:420px; }
  .calc-total { border-left:0; border-top:1px solid var(--line); }
  .cards, .trust-grid { grid-template-columns:1fr; }
  .service-copy { padding:60px 22px; }
  .service-copy h1 { font-size:48px; }
  .service-image { min-height:420px; }
  .footer-grid { grid-template-columns:1fr; gap:26px; }
  .footer-bottom { flex-direction:column; }
}

@media (max-width: 560px) {
  .topbar .container { font-size:9px; }
  .hero h1, .page-hero h1 { font-size:54px; }
  .booking-hero h1 { font-size:48px; }
  .hero-media { min-height:340px; }
  .hero-caption { left:22px; bottom:22px; width:220px; font-size:21px; }
  .section { padding:62px 0; }
  .section-head { align-items:flex-start; flex-direction:column; }
  .field-grid, .form-grid { grid-template-columns:1fr; }
  .form-grid .full { grid-column:auto; }
  .calc-main, .calc-total, .booking-card, .contact-panel { padding:28px 22px; }
  .total-number { font-size:48px; }
  .steps { overflow:auto; }
  .step { min-width:150px; }
  .slot-grid { grid-template-columns:repeat(2,1fr); }
}

/* Booking calendar */
.booking-calendar { border:1px solid var(--line); background:#0c0c0a; }
.calendar-head { min-height:58px; display:grid; grid-template-columns:52px 1fr 52px; align-items:center; border-bottom:1px solid var(--line); }
.calendar-head strong { text-align:center; font-family:Georgia,serif; font-size:21px; font-weight:400; color:var(--text); }
.calendar-nav { height:100%; border:0; background:transparent; color:var(--gold-light); cursor:pointer; font-size:18px; }
.calendar-nav:hover:not(:disabled) { background:#14130f; }
.calendar-nav:disabled { opacity:.2; cursor:default; }
.calendar-weekdays { display:grid; grid-template-columns:repeat(7,1fr); padding:12px 12px 8px; color:#77736b; font-size:9px; text-transform:uppercase; letter-spacing:.11em; text-align:center; }
.calendar-days { display:grid; grid-template-columns:repeat(7,1fr); gap:6px; padding:0 12px 14px; }
.calendar-day { aspect-ratio:1 / 1; min-height:42px; border:1px solid transparent; background:#11110f; color:#d6d1c8; cursor:pointer; }
.calendar-day:hover:not(:disabled) { border-color:var(--line-strong); color:var(--gold-light); }
.calendar-day.selected { background:var(--gold); border-color:var(--gold); color:#15110a; font-weight:750; }
.calendar-day:disabled { color:#494740; background:#0a0a09; cursor:default; }
.calendar-day.sunday { color:#5b4c3f; }
.calendar-day.blank { background:transparent; border:0; }
.selected-date-line { display:flex; justify-content:space-between; gap:18px; align-items:center; border:1px solid var(--line); border-top:0; padding:13px 15px; color:#77736b; font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.selected-date-line strong { color:var(--gold-light); font-weight:550; text-transform:none; letter-spacing:0; }
.schedule-rule { margin-top:14px; color:#7f7b72; font-size:11px; line-height:1.55; }
.schedule-math { display:grid; grid-template-columns:1fr auto; gap:12px 18px; margin-top:24px; padding:18px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); font-size:12px; }
.schedule-math span { color:#7f7b72; }
.schedule-math strong { color:var(--gold-light); font-weight:550; }
.no-slots { grid-column:1 / -1; border:1px solid var(--line); padding:16px; color:#a9a49b; line-height:1.5; }

@media (max-width: 560px) {
  .calendar-head { grid-template-columns:46px 1fr 46px; }
  .calendar-days { gap:4px; padding-left:8px; padding-right:8px; }
  .calendar-weekdays { padding-left:8px; padding-right:8px; }
  .calendar-day { min-height:36px; }
  .selected-date-line { align-items:flex-start; flex-direction:column; gap:4px; }
}

/* Live Google Calendar booking sync */
.slot-label-row { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.availability-status { color:#77736b; font-size:10px; letter-spacing:.08em; text-transform:uppercase; }
.no-slots.loading { position:relative; padding-left:38px; }
.no-slots.loading::before { content:""; position:absolute; left:16px; top:50%; width:10px; height:10px; margin-top:-6px; border:1px solid var(--gold); border-top-color:transparent; border-radius:50%; animation:skyspin .8s linear infinite; }
@keyframes skyspin { to { transform:rotate(360deg); } }
.booking-status { margin-top:18px; border:1px solid var(--line); padding:14px 16px; font-size:12px; line-height:1.55; }
.booking-status.working { color:#bcb6aa; border-color:#3a372e; background:#0b0b09; }
.booking-status.error { color:#d6b7a5; border-color:#5a392c; background:#140d0a; }
.booking-status a { color:var(--gold-light); text-decoration:underline; text-underline-offset:3px; }
.booking-success { margin-top:24px; border:1px solid #53472d; background:#100f0b; padding:26px; }
.booking-success h3 { margin:12px 0 10px; font-family:Georgia,serif; font-size:30px; font-weight:400; }
.booking-success p { color:#b0aba1; line-height:1.6; margin:0 0 20px; }
.honeypot { position:absolute !important; width:1px !important; height:1px !important; overflow:hidden !important; opacity:0 !important; pointer-events:none !important; }
.btn:disabled { opacity:.5; cursor:not-allowed; }
