:root {
  --ink: #22333c;
  --sage: #647a67;
  --sage-deep: #4f6352;
  --cream: #f7f4ef;
  --paper: #ffffff;
  --muted: #6b7370;
  --line: #e4dfd6;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--ink);
  color: #d7ddd8;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1.4rem;
  padding: 0.5rem 0;
}
.topbar a:hover { color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.nav ul { display: flex; gap: 1.7rem; list-style: none; }
.nav a { font-size: 0.92rem; letter-spacing: 0.04em; }
.nav a:hover { color: var(--sage); }
.nav__toggle { display: none; font-size: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: var(--sage);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}
.btn:hover { background: var(--sage-deep); }
.btn--line { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn--line:hover { background: #fff; color: var(--ink); }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,51,60,.72), rgba(34,51,60,.18));
}
.hero__inner { position: relative; padding: 5.5rem 0 4.2rem; max-width: 760px; }
.hero small {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 14ch; }
.hero p { max-width: 48ch; margin: 1rem 0 1.6rem; color: #efeae3; font-size: 1.05rem; }
.hero__acts { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.section { padding: 4.6rem 0; }
.section--cream { background: var(--cream); }
.kicker {
  display: block;
  color: var(--sage);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.head { max-width: 640px; margin-bottom: 2.2rem; }
.head h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.head p { color: var(--muted); margin-top: 0.7rem; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }

.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.way { position: relative; min-height: 280px; color: #fff; overflow: hidden; }
.way img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.way::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,51,60,.78), rgba(34,51,60,.12));
}
.way div { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; }
.way h3 { font-size: 2rem; }
.way span { font-size: 0.9rem; color: #efeae3; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1.2rem; }
.card { background: var(--paper); }
.card__pic { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream); }
.card__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.card:hover .card__pic img { transform: scale(1.04); }
.card h3 { font-size: 1.55rem; margin: 0.85rem 0 0.3rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--sage); }
.card > a:first-of-type { display: block; }
.card > a:last-of-type { display: inline-block; margin-top: 0.7rem; color: var(--sage-deep); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.card > a:last-of-type:hover { color: var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.split p { color: var(--muted); margin-bottom: 0.8rem; }

.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.4rem; }
.info { list-style: none; }
.info li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.info small { display: block; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; color: var(--muted); font-weight: 700; }
.info a:hover { color: var(--sage); }

.form { background: var(--paper); border: 1px solid var(--line); padding: 1.4rem; }
.form label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.3rem; }
.form input, .form textarea, .form select {
  width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font: inherit;
  color: var(--ink);
}
.form textarea { min-height: 110px; resize: vertical; }

.legal { max-width: 760px; padding: 3.2rem 0 4.6rem; }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0.4rem 0 0.5rem; }
.legal .updated { color: var(--muted); margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.45rem; margin: 1.7rem 0 0.45rem; }
.legal p, .legal li { margin-bottom: 0.65rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.6rem; }

.footer { background: var(--ink); color: #c5cdc8; padding: 1.3rem 0; font-size: 0.85rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.2rem; }
.footer a:hover { color: #fff; }

.crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumb a:hover { color: var(--sage); }
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; padding: 3.2rem 0 4.5rem; }
.detail__pic { background: var(--cream); }
.detail__pic img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.detail h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 0.8rem; }
.detail__lead { color: var(--muted); margin-bottom: 1.4rem; }
.specs { width: 100%; border-collapse: collapse; margin-bottom: 1.6rem; }
.specs th, .specs td { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { width: 34%; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.more { padding-bottom: 4rem; }
.more h2 { font-size: 2rem; margin-bottom: 1.2rem; }

@media (max-width: 860px) {
  .ways, .split, .contact, .detail { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .nav ul {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    flex-direction: column;
    padding: 0.6rem 20px 1rem;
    border-bottom: 1px solid var(--line);
    gap: 0.6rem;
  }
  .nav ul.is-open { display: flex; }
  .nav__toggle { display: block; }
  .nav__inner { position: relative; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}
