:root {
  --ink: #121212;
  --soft-ink: #35352f;
  --paper: #f4f4f1;
  --mist: #e1e3dc;
  --white: #ffffff;
  --herb: #566f5b;
  --wine: #7b1f2c;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 42px;
  color: var(--white);
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,0));
}
.wordmark { text-decoration: none; line-height: 1; }
.wordmark span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0;
}
.wordmark small { font-size: 11px; color: rgba(255,255,255,.76); }
.nav { display: flex; justify-content: center; gap: 30px; font-size: 13px; text-transform: uppercase; }
.nav a { text-decoration: none; color: rgba(255,255,255,.84); }
.nav a:hover { color: var(--white); }
.tools { display: flex; gap: 8px; }
.lang-button {
  width: 36px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.lang-button.is-active { background: var(--white); color: var(--ink); }

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 160px 42px 84px;
  color: var(--white);
  background: var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.25)), linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0) 58%);
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-copy { position: relative; z-index: 1; max-width: 760px; }
.kicker {
  margin: 0 0 14px;
  color: var(--herb);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .kicker { color: #d8e2d7; }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}
h1 { max-width: 760px; font-size: 96px; }
h2 { font-size: 56px; }
.hero-copy p:not(.kicker) { max-width: 520px; font-size: 19px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--wine);
  border-radius: 8px;
  color: var(--white);
  background: var(--wine);
  text-decoration: none;
  cursor: pointer;
}
.button:hover { filter: brightness(.92); }
.text-link { color: var(--white); text-underline-offset: 5px; }

.facts {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--mist);
}
.facts p { margin: 0; padding: 28px 24px; border-right: 1px solid var(--mist); }
.facts p:last-child { border-right: 0; }
.facts span { display: block; color: #72746e; font-size: 13px; }
.facts strong { font-weight: 500; }

.section { max-width: var(--max); margin: 0 auto; padding: 112px 28px; }
.intro, .reserve, .contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: start;
}
.body-copy, .reserve-text, .contact p { color: #5e625b; font-size: 17px; }
.image-story {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 40px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  align-items: end;
}
.image-story img:first-child { height: 640px; object-fit: cover; }
.image-story img:last-child { height: 430px; object-fit: cover; }

.section-head { max-width: 720px; margin-bottom: 46px; }
.courses { border-top: 1px solid var(--mist); }
.courses p {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--mist);
}
.courses span { font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.courses strong { color: #62655e; font-weight: 400; }
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--mist);
}
.prices p { margin: 0; padding: 24px; background: var(--white); }
.prices span { display: block; color: #6a6d66; }

.quote-band {
  padding: 92px 42px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}
.quote-band .kicker { color: #cbd8cb; }
.quote-band h2 { font-size: 42px; }

.reserve { border-bottom: 1px solid var(--mist); }
.policy { color: var(--wine); font-weight: 700; }
.reservation-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--mist);
}
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label span { display: block; margin-bottom: 7px; color: #696c65; font-size: 13px; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--mist);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}
textarea { resize: vertical; }
.check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; }
.check input { min-height: 18px; margin-top: 3px; }
.button-wide { width: 100%; }
.form-status { min-height: 22px; margin: 0; color: var(--herb); font-weight: 700; }

.gallery {
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}
.gallery img { width: 100%; height: 620px; object-fit: cover; }
.gallery img:nth-child(2) { height: 500px; align-self: center; }

.contact iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--mist);
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 42px;
  color: var(--white);
  background: var(--ink);
}
.footer nav { display: flex; gap: 22px; }
.footer a { color: #d5d8d1; text-decoration: none; }

.legal-page { max-width: 900px; margin: 0 auto; padding: 90px 22px; }
.legal-page h1 { color: var(--ink); font-size: 64px; }
.legal-page section { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--mist); }

@media (max-width: 900px) {
  .site-header { position: absolute; grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .nav { justify-content: flex-start; gap: 18px; overflow-x: auto; }
  .hero { min-height: 680px; padding: 150px 22px 64px; }
  h1 { font-size: 62px; }
  h2 { font-size: 42px; }
  .facts, .intro, .reserve, .contact, .image-story, .prices { grid-template-columns: 1fr; }
  .facts p { border-right: 0; border-bottom: 1px solid var(--mist); }
  .courses p { grid-template-columns: 1fr; gap: 6px; }
  .field-grid, .gallery { grid-template-columns: 1fr; }
  .image-story img:first-child, .image-story img:last-child, .gallery img, .gallery img:nth-child(2) { height: auto; min-height: 320px; }
  .section { padding: 78px 22px; }
  .footer { flex-direction: column; padding: 30px 22px; }
}
