:root {
  --bg: #f6f2eb;
  --paper: #ffffff;
  --ink: #1c1a17;
  --muted: #5a554e;
  --accent: #9b6a37;
  --accent-dark: #7d542a;
  --line: #e2d7ca;
  --shadow: 0 18px 45px rgba(0,0,0,0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(28,26,23,0.88);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { color: #fff; display: flex; flex-direction: column; }
.brand-top { font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; }
.brand-sub { font-size: .82rem; color: #d8ccbe; }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: #fff; text-decoration: none; font-size: 0.95rem; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.24);
  padding: 10px 14px;
  border-radius: 999px;
}
.hero {
  position: relative; min-height: 88vh; display: grid; align-items: end;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}
.hero-content {
  position: relative; color: #fff; padding: 90px 0 70px;
  max-width: 760px;
}
.eyebrow {
  display: inline-block; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 700; color: #ebd1af;
}
.eyebrow.dark { color: var(--accent-dark); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.96; margin: 0 0 18px; letter-spacing: -0.04em;
}
.hero-text { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 640px; color: #f1e9e0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 18px; border-radius: 999px; text-decoration: none; font-weight: 700;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28);
}
.hero-contact { display: flex; gap: 22px; flex-wrap: wrap; font-size: .95rem; }
.section { padding: 86px 0; }
.section-alt { background: #efe7dc; }
.highlights { margin-top: -46px; position: relative; z-index: 3; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.highlight-card, .service-card, .about-panel, .contact-card, .review-banner {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.highlight-card { padding: 24px; }
.highlight-card h2 { margin: 0 0 10px; font-size: 1.1rem; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.02; margin: 0 0 10px; }
.section-heading p { color: var(--muted); margin: 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card { padding: 24px; }
.service-card h3 { margin: 0 0 8px; }
.gallery-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 18px;
}
.gallery-item {
  background: var(--paper); border-radius: 22px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.gallery-large img { min-height: 100%; }
.gallery-item figcaption { padding: 14px 16px; font-weight: 600; }
.about-grid, .contact-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start;
}
.about-panel, .contact-card { padding: 28px; }
.about-panel h3 { margin-top: 0; }
.about-panel ul { padding-left: 20px; margin-bottom: 0; }
.review-banner {
  padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.contact-section { background: linear-gradient(180deg, #1d1914, #2b241d); color: #fff; }
.contact-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.contact-line {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-line:last-of-type { border-bottom: 0; }
.contact-line span { color: #d9ccbf; }
.contact-note { margin-top: 16px; color: #d9ccbf; }
.site-footer { background: #15120f; color: #d9ccbf; padding: 24px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 920px) {
  .nav { display: none; }
  .highlights-grid, .services-grid, .gallery-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-item img { min-height: 260px; }
  .review-banner, .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { min-height: 78vh; }
  .hero-content { padding-bottom: 42px; }
  .btn { width: 100%; }
  .hero-contact { flex-direction: column; gap: 8px; }
  .section { padding: 66px 0; }
}
