:root {
  --burgundy: #861514;
  --burgundy-dark: #5f0f10;
  --burgundy-soft: #a52a27;
  --champagne: #c89d7d;
  --champagne-light: #e6cfbd;
  --ink: #2c211e;
  --muted: #6f625d;
  --white: #ffffff;
  --off-white: #fbfaf9;
  --line: #eadfd8;
  --shadow: 0 18px 45px rgba(59, 24, 20, 0.13);
  --radius: 18px;
  --container: 1180px;
}

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

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0 0 18px;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  line-height: 1.08;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #534844; max-width: 720px; }
.muted { color: var(--muted); }

.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 1000; background: var(--white); padding: 10px 14px; border: 2px solid var(--burgundy); }

.topbar {
  background: var(--burgundy-dark);
  color: var(--white);
  font-size: .9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
}
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(134,21,20,.1);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 250px; height: auto; }
.nav { display: flex; align-items: center; gap: 27px; }
.nav a { font-weight: 700; color: #3f332f; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--burgundy); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; color: var(--burgundy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--burgundy);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(134,21,20,.18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--burgundy-dark); box-shadow: 0 14px 30px rgba(95,15,16,.23); }
.btn-outline { background: var(--white); color: var(--burgundy); border-color: var(--burgundy); box-shadow: none; }
.btn-outline:hover { color: var(--white); background: var(--burgundy); }
.btn-champagne { background: var(--champagne); color: #2f1b13; box-shadow: 0 10px 24px rgba(200,157,125,.25); }
.btn-champagne:hover { background: #b98967; }
.btn-sm { min-height: 44px; padding: 10px 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(200,157,125,.24), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff 58%, #fbf5f1 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 54px; }
.hero-copy { padding: 72px 0; }
.hero-copy h1 span { color: var(--burgundy); display: block; }
.hero-card {
  position: relative;
  padding: 34px;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  max-width: 94%;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 8px solid rgba(134,21,20,.08);
}
.hero-card img { position: relative; width: 470px; max-width: 94%; filter: drop-shadow(0 14px 16px rgba(68, 29, 22, .08)); }
.hero-note { margin-top: 18px; font-size: .92rem; color: var(--muted); }

.trust-strip { background: var(--burgundy); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 24px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); font-weight: 800; }
.trust-item:last-child { border-right: 0; }
.trust-item span { display: block; color: var(--champagne-light); font-weight: 500; font-size: .92rem; margin-top: 2px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 42px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(59,24,20,.06);
}
.card:hover { border-color: rgba(134,21,20,.26); }
.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 18px;
}
.card-link { color: var(--burgundy); font-weight: 800; display: inline-flex; gap: 7px; align-items: center; }
.card-link::after { content: "→"; }

.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.service-card { min-height: 260px; display: flex; flex-direction: column; }
.service-card .card-link { margin-top: auto; }

.band {
  background:
    linear-gradient(rgba(78,10,10,.92), rgba(78,10,10,.92)),
    radial-gradient(circle at 20% 20%, rgba(200,157,125,.24), transparent 35%);
  color: var(--white);
}
.band .lead { color: #f4e8e0; }
.band-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }

.steps { counter-reset: steps; margin-top: 36px; }
.step { position: relative; padding-left: 80px; min-height: 64px; margin-bottom: 32px; }
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.step h3 { margin-bottom: 7px; }

.quote-box {
  border-left: 5px solid var(--burgundy);
  background: var(--off-white);
  padding: 28px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.page-hero {
  padding: 86px 0 74px;
  background: linear-gradient(135deg, #fff 0%, #fff 55%, #fbf4ef 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }

.service-detail { padding: 30px 0; border-bottom: 1px solid var(--line); }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--burgundy); font-weight: 900; }

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 46px);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: #3d312d; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d9cbc3;
  border-radius: 12px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(134,21,20,.13); border-color: var(--burgundy); }
textarea { min-height: 150px; resize: vertical; }
.form-help { color: var(--muted); font-size: .88rem; }
.form-status { margin-top: 18px; font-weight: 700; color: var(--burgundy); }
.booking-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
.booking-tab { border: 2px solid var(--line); border-radius: 14px; padding: 16px; background: var(--white); color: var(--ink); font-weight: 800; }
.booking-tab.active { border-color: var(--burgundy); background: #fff8f7; color: var(--burgundy); }
.booking-panel[hidden] { display: none; }

.contact-card { display: grid; gap: 17px; }
.contact-row { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.contact-row .icon-circle { width: 48px; height: 48px; margin: 0; font-size: 1.2rem; }

.site-footer { background: #221714; color: #f8f1ed; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 38px; }
.footer-logo { width: 255px; background: #fff; border-radius: 10px; padding: 6px; margin-bottom: 18px; }
.site-footer h3 { color: var(--champagne-light); font-size: 1.2rem; }
.footer-links { display: grid; gap: 9px; }
.site-footer a:hover { color: var(--champagne-light); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; font-size: .88rem; color: #cdbeb7; }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .topbar .container { justify-content: center; }
  .topbar .container > span { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 126px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 12px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 10px; }
  .hero-grid, .grid-2, .band-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-bottom: 20px; }
  .hero-card { min-height: 430px; padding-top: 0; }
  .services-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 72px; }
  .topbar { display: none; }
  .site-header { top: 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 205px; }
  .nav { inset: 82px 12px auto 12px; }
  .section { padding: 64px 0; }
  .hero-grid { gap: 10px; }
  .hero-copy { padding-top: 48px; }
  .hero-card { min-height: 340px; padding: 10px 0 36px; }
  .hero-card::before { width: 330px; height: 330px; }
  .hero-card img { width: 330px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.18); }
  .services-grid, .grid-3, .grid-4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .booking-tabs { grid-template-columns: 1fr; }
  .band-grid { text-align: center; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(59,24,20,.12);
  }
  .mobile-actions a { display: grid; place-items: center; min-height: 64px; padding: 8px; font-size: .78rem; font-weight: 800; text-align: center; color: var(--burgundy); border-right: 1px solid var(--line); }
  .mobile-actions a:last-child { border-right: 0; background: var(--burgundy); color: var(--white); }
}
