:root {
  --bg: #f4efe7;
  --paper: #fbf8f3;
  --ink: #1a1612;
  --muted: #6f655c;
  --line: #e4d9cc;
  --wood: #8c5a32;
  --wood-2: #6e4324;
  --gold: #c4a06a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244, 239, 231, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.logo {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 600;
  line-height: 1.3;
  max-width: min(420px, 52%);
}
.logo span { color: var(--wood); }
.menu {
  display: flex; align-items: center; gap: 26px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
}
.menu a { color: var(--muted); }
.menu a:hover, .menu a.is-active { color: var(--wood); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  background: var(--wood); color: #fff !important;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--wood-2); }
.hamburger {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
}

.hero {
  min-height: 88vh;
  display: grid; place-items: end;
  background:
    linear-gradient(180deg, rgba(26, 22, 18, .18), rgba(26, 22, 18, .62)),
    url("../images/hero.jpg") center/cover;
  color: #fff;
}
.hero-copy { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 80px; }
.kicker {
  font-size: 12px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 500; line-height: 1.08; max-width: 720px;
}
.hero p { max-width: 520px; margin: 16px 0 28px; color: #f0e6d8; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost {
  background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff !important;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2, .serif {
  font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15; margin: 8px 0 12px;
}
.muted { color: var(--muted); }
.kicker-dark { color: var(--wood); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.card {
  background: var(--paper); border: 1px solid var(--line); overflow: hidden;
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 8px; }

.work-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; }
.work-item { position: relative; overflow: hidden; min-height: 280px; }
.work-item img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  font-family: var(--serif); font-size: 22px;
}
.work-item figcaption span { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; }
.num {
  width: 48px; height: 48px; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px; color: var(--wood);
}
.split-img { min-height: 420px; background-size: cover; background-position: center; border: 1px solid var(--line); }

.contact-block { background: var(--paper); border: 1px solid var(--line); padding: 32px; }
.contact-line { margin: 10px 0; font-size: 18px; }
.contact-line a { color: var(--wood); }
.contact-line a:hover { text-decoration: underline; }
.form { display: grid; gap: 12px; margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); background: #fff; padding: 12px 14px; outline: none;
}
textarea { min-height: 110px; resize: vertical; }
.toast { display: none; color: var(--wood); font-size: 14px; }
.toast.show { display: block; }

.footer {
  border-top: 1px solid var(--line); padding: 36px 0;
  font-size: 13px; color: var(--muted);
}
.footer-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a:hover { color: var(--wood); }

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav-inner { padding: 10px 0; }
  .logo { font-size: 13px; max-width: calc(100% - 56px); }
  .menu {
    display: none; position: absolute; inset: 76px 0 auto 0;
    background: var(--paper); flex-direction: column; padding: 18px; gap: 14px;
  }
  .menu.open { display: flex; }
  .grid-3, .grid-2, .work-grid, .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}
