
:root {
  --bg: #F7F5F1;
  --surface: #FFFFFF;
  --text: #161616;
  --muted: #6A6A6A;
  --accent: #A57B5B;
  --accent-2: #DCC7B8;
  --container: 1180px;
  --radius: 22px;
  --space: 110px;
  --shadow-soft: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-card: 0 12px 30px rgba(0,0,0,0.06);
  --border-soft: 1px solid rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border-bottom: var(--border-soft);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.nav a {
  font-size: 13px;
  color: var(--muted);
  transition: 0.25s ease;
}
.nav a:hover { color: var(--text); }

.hero {
  padding: 94px 0 44px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.hero-copy {
  max-width: 760px;
}
.kicker {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 22px;
}
.hero h1, .section-title {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}
.hero p, .lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
}
.hero-media img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  min-height: 520px;
  object-fit: cover;
  width: 100%;
}
.section {
  padding: 72px 0;
}
.section--alt {
  background: var(--surface);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--surface);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.card h3 {
  margin-top: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn--primary {
  background: var(--text);
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}
.btn--secondary {
  background: transparent;
  border: var(--border-soft);
  color: var(--text);
}
.btn--secondary:hover {
  background: rgba(0,0,0,0.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.stat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: var(--border-soft);
}
.stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: var(--shadow-card);
}
.gallery-grid .span-7 { grid-column: span 7; min-height: 420px; }
.gallery-grid .span-5 { grid-column: span 5; min-height: 420px; }
.gallery-grid .span-4 { grid-column: span 4; min-height: 280px; }
.gallery-grid .span-8 { grid-column: span 8; min-height: 280px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}
.contact-box {
  background: var(--surface);
  border: var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.form-grid {
  display: grid;
  gap: 14px;
}
.input, textarea {
  width: 100%;
  border: var(--border-soft);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.footer {
  padding: 40px 0 60px;
  border-top: var(--border-soft);
  color: var(--muted);
  margin-top: 50px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}
.rich-text h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.rich-text h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}
.rich-text p, .rich-text li {
  color: var(--muted);
  font-size: 17px;
}
.rich-text ul {
  padding-left: 20px;
}
.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(0,0,0,0.03);
  color: var(--muted);
  margin-top: 16px;
}

@media (max-width: 980px) {
  .site-header__inner,
  .hero__grid,
  .grid-2,
  .grid-3,
  .contact-wrap,
  .footer__grid {
    grid-template-columns: 1fr;
    display: grid;
  }
  .site-header__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .span-7,
  .gallery-grid .span-5,
  .gallery-grid .span-4,
  .gallery-grid .span-8 {
    grid-column: auto;
    min-height: 260px;
  }
  .hero-media img {
    min-height: 340px;
  }
}
