:root {
  --bg: #ffffff;
  --bg-cream: #f7f4ee;
  --bg-dark: #1a1a1a;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #8a8a8a;
  --line: #e6e2da;
  --accent: #b89a3e;
  --gold: #c9a94a;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg-dark);
  color: #fff;
  border-bottom: 1px solid #000;
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: opacity .2s;
}
.nav-link:hover { opacity: .7; }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: #fff;
}
.brand {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #fff;
}
.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px; padding: 6px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; margin: 5px 0; transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 16px 28px 24px;
}
.mobile-menu a {
  color: #fff; padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
}
.mobile-menu.open { display: flex; }

/* ---- Hero ---- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 640px;
  background: var(--bg-dark);
}
.hero-image {
  background-size: cover;
  background-position: center;
  min-height: 440px;
}
.hero-panel {
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 48px;
}
.hero-inner { max-width: 460px; text-align: center; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
  color: #fff;
}
.lede {
  font-size: 18px;
  color: #cfcfcf;
  margin: 0 0 32px;
  line-height: 1.55;
}
.btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.22em;
  font-weight: 500;
  padding: 16px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .25s, color .25s, border-color .25s;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #f3efe7; color: #000; border-color: #f3efe7; font-weight: 700; }
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-dark { background: #1a1a1a; color: #fff; border-color: #1a1a1a; font-weight: 600; }
.btn-dark:hover { background: #2a2a2a; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; font-weight: 600; }
.btn-outline:hover { background: #fff; color: #000; }

.phone-link {
  display: block;
  margin-top: 28px;
  font-size: 22px;
  font-weight: 300;
  color: #e8e8e8;
  letter-spacing: 0.04em;
}
.phone-link:hover { color: #fff; }

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section-light { background: #fff; }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--bg-dark); color: #ededed; }
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0 0 56px;
  color: #5a5736;
}
.section-title.light { color: #fff; }
.section-sub {
  text-align: center;
  margin: -32px auto 56px;
  color: #c8c8c8;
  font-size: 17px;
}

/* ---- Split (image + text) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media img {
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.25);
}
.split-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 20px;
}
.split-body .accent {
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 28px;
}

/* ---- Trio ---- */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.trio-col {
  text-align: center;
}
.trio-img {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.25);
}
.trio-icon {
  width: 80px; height: 80px;
  margin: 40px auto 24px;
  color: var(--accent);
}
.trio-icon svg { width: 100%; height: 100%; }
.trio-col h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 14px;
}
.trio-col p {
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.link-arrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.link-arrow:hover { opacity: .7; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}
.contact-info h4 {
  margin: 28px 0 8px;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.contact-info p, .contact-info a:not(.btn) { color: #c8c8c8; }
.contact-info a.btn-light { color: #000; }
.contact-info a.btn-light:hover { color: #fff; }
.contact-info a.btn-outline { color: #fff; }
.contact-info a.btn-outline:hover { color: #000; }
.link-light { color: #fff; border-bottom: 1px solid #555; padding-bottom: 1px; }
.hours {
  border-collapse: collapse;
  margin: 8px 0 0;
  width: 100%;
  max-width: 360px;
}
.hours td {
  padding: 8px 0;
  border-bottom: 1px solid #2c2c2c;
  color: #c8c8c8;
}
.hours td:last-child { text-align: right; }
.quote { margin: 24px 0 24px; color: var(--gold); font-size: 18px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.contact-form {
  background: #232323;
  padding: 36px;
  border-radius: 4px;
  border: 1px solid #2e2e2e;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form span {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b8b8b8;
  margin-bottom: 6px;
}
.contact-form span em { color: var(--gold); font-style: normal; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.form-note {
  font-size: 12px;
  color: #8a8a8a;
  margin: 16px 0 0;
}
.form-success {
  margin-top: 16px;
  padding: 12px 14px;
  background: #1f3a1f;
  color: #c8e6c8;
  border: 1px solid #2e5f2e;
  border-radius: 2px;
}

/* ---- Footer ---- */
.site-footer {
  background: #0f0f0f;
  color: #c8c8c8;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f1f1f;
}
.brand-footer {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.site-footer h5 {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: #fff; }
.copyright {
  text-align: center;
  padding: 24px 28px 0;
  font-size: 13px;
  color: #6a6a6a;
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 680px; margin: 0 auto;
  background: #1a1a1a; color: #fff;
  padding: 18px 22px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  z-index: 60;
}
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; min-width: 240px; color: #c8c8c8; }
.cookie-banner[hidden] { display: none; }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav-left, .nav-right { display: none; }
  .nav-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
  .brand { font-size: 26px; }
  .hamburger { display: block; justify-self: end; }

  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .hero-panel { padding: 56px 24px; }

  .section { padding: 72px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .trio { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .contact-form { padding: 24px; }
}
