:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f1ece4;
  --text: #1f1f1f;
  --muted: #5d5d5d;
  --line: #ddd4c8;
  --accent: #1f1f1f;
  --accent-soft: #eadfce;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 2rem)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,31,31,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}
.brand img { width: 240px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.main-nav > a, .nav-group > span {
  padding: .6rem .8rem;
  border-radius: 999px;
  font-weight: 500;
}
.main-nav > a.active,
.main-nav > a:hover,
.nav-group:hover > span { background: var(--surface-soft); }
.nav-group {
  position: relative;
  cursor: default;
}
.dropdown {
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  min-width: 280px;
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dropdown a {
  display: block;
  padding: .85rem 1rem;
}
.dropdown a:hover { background: var(--surface-soft); }
.nav-group:hover .dropdown { display: block; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--text); color: #fff; }
.btn-light { background: rgba(255,255,255,.9); color: var(--text); border-color: rgba(31,31,31,.08); }
.btn-dark { background: var(--text); color: #fff; }
.eyebrow {
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: #7b6f61;
}
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: stretch;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.72), rgba(20,20,20,.28) 55%, rgba(20,20,20,.18));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 85vh;
}
.hero-card {
  width: min(700px, 100%);
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hero-card p { color: rgba(255,255,255,.9); }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.section { padding: 5rem 0; }
.intro { background: var(--surface); }
.two-col, .grid-2, .split-layout, .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
  align-items: center;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.panel.soft { background: var(--surface-soft); }
.cards-section { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.feature-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.feature-card img { width: 100%; height: 290px; object-fit: cover; }
.card-copy { padding: 1.35rem; }
.split-band { background: #ece3d6; }
.split-layout img,
.image-panel img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reverse { grid-template-columns: 1.1fr .9fr; }
.page-hero {
  padding: 6rem 0 3rem;
  background: linear-gradient(180deg, #ece3d6 0%, var(--bg) 100%);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
}
.service-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
}
.alt { background: var(--surface-soft); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: .45rem;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}
.form-note { font-size: .92rem; margin-top: 1rem; }
.site-footer {
  background: #171717;
  color: #efefef;
  padding: 3rem 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.82); }
.site-footer h4 { font-family: 'Inter', sans-serif; margin-bottom: .8rem; }
.site-footer a { display: block; margin-bottom: .6rem; }
.footer-logo { width: 210px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: .75rem 1rem;
  font: inherit;
}
@media (max-width: 980px) {
  .card-grid,
  .two-col,
  .grid-2,
  .split-layout,
  .contact-grid,
  .service-list,
  .footer-wrap { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { min-height: auto; padding: 7rem 0 4rem; }
  .hero-card { background: rgba(22,22,22,.45); }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + .5rem);
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .dropdown {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    margin-top: .5rem;
  }
}
