:root {
  --ink: #1d2320;
  --muted: #65706a;
  --paper: #f7f5ef;
  --white: #ffffff;
  --olive: #526c46;
  --tomato: #a84d3f;
  --gold: #b38a42;
  --line: rgba(29, 35, 32, .14);
  --shadow: 0 18px 44px rgba(29, 35, 32, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(247, 245, 239, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand, nav a, .button {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--olive);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 21px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tomato);
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(320px, 1.05fr);
  background: #fff;
}

.hero-copy {
  padding: clamp(40px, 7vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.eyebrow {
  color: var(--tomato);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  max-width: 780px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 { margin-bottom: 8px; font-size: 22px; }
p { color: var(--muted); line-height: 1.65; }

.lead {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions, .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 28px;
}

.section-head p { max-width: 520px; margin-bottom: 0; }

.grid-3, .grid-2, .gallery-grid, .contact-grid {
  display: grid;
  gap: 16px;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: .95fr 1.05fr; }

.card, .note, .form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 35, 32, .06);
}

.card { overflow: hidden; }
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body, .note, .form-panel { padding: 22px; }
.price-row, .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  color: var(--olive);
  font-weight: 850;
}

.meta-row span:last-child {
  color: var(--tomato);
  text-align: right;
}

.note {
  display: grid;
  gap: 10px;
}

.note strong {
  color: var(--olive);
  font-size: 17px;
}

.offer-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  background: var(--olive);
  color: #fff;
}

.offer-band p { color: rgba(255,255,255,.8); }
.offer-band .button { background: #fff; color: var(--olive); }

.gallery-grid {
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:nth-child(2) { height: 460px; }

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.full { grid-column: 1 / -1; }
.form-panel .button { border: 0; cursor: pointer; }
#formStatus {
  margin: 14px 0 0;
  color: var(--olive);
  font-weight: 750;
}

footer {
  padding: 30px clamp(18px, 5vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  nav a:not(.button) { display: none; }
  .hero, .grid-3, .grid-2, .gallery-grid, .contact-grid, .offer-band { grid-template-columns: 1fr; }
  .hero img { min-height: 320px; max-height: 430px; }
  .gallery-grid img, .gallery-grid img:nth-child(2) { height: 280px; }
  .section-head, footer { display: grid; justify-content: start; }
}

@media (max-width: 560px) {
  header { min-height: 66px; padding: 0 12px; }
  .brand span:last-child { max-width: 128px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  nav .button { min-height: 38px; padding: 0 11px; font-size: 12px; }
  .hero-copy { padding: 34px 18px; }
  h1 { font-size: clamp(38px, 13vw, 52px); }
  section { padding: 52px 18px; }
  .lead { font-size: 16px; }
  .hero-actions .button, .actions .button, form .button { width: 100%; }
  form { grid-template-columns: 1fr; }
  .card-body, .note, .form-panel { padding: 18px; }
  .price-row, .meta-row { align-items: flex-start; flex-direction: column; gap: 6px; }
}
