:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #65736a;
  --paper: #f4f0e7;
  --surface: #fffaf0;
  --white: #ffffff;
  --line: #ded5c5;
  --green: #2f5f44;
  --green-deep: #132b24;
  --water: #477f85;
  --gold: #c29042;
  --shadow: 0 22px 70px rgba(24, 34, 29, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(78px, 8vw, 104px);
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 18, 14, .2);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(8, 18, 14, .2);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: var(--white);
  font-size: 16px;
}

.brand-copy small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.topbar-write {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 7px;
  padding: 0 14px;
  background: var(--gold);
  color: #1d211d;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(8, 18, 14, .18);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 6vw, 88px) 70px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-deep);
}

.hero-picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-picture {
  display: block;
  background: #263a34;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: brightness(1.12) contrast(1.05) saturate(1.03);
}

@media (min-width: 760px) {
  .hero-image {
    object-position: center 42%;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 21, 17, .28) 0%, rgba(9, 21, 17, .12) 52%, rgba(9, 21, 17, .02) 100%),
    linear-gradient(180deg, rgba(9, 21, 17, 0), rgba(9, 21, 17, .12));
}

.hero-content {
  position: relative;
  max-width: 820px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .48);
}

.hero-logo {
  display: block;
  width: min(440px, 86vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 18px 48px rgba(8, 18, 14, .26);
}

.eyebrow,
.section-label,
.status {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: .94;
}

h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.38;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

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

.format-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.gazebo-booking-actions {
  margin-top: 0;
  margin-bottom: 28px;
}

.button,
.lead-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.lead-form button {
  background: var(--gold);
  color: #1d211d;
}

.booking-button {
  background: var(--gold);
  color: #1d211d;
  box-shadow: 0 10px 24px rgba(194, 144, 66, .22);
}

.button.ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.section {
  padding: clamp(58px, 9vw, 106px) clamp(18px, 6vw, 88px);
}

.split,
.booking,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr);
  gap: clamp(28px, 6vw, 76px);
}

.text-stack,
.location-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-stack p,
.format-card p,
.format-card li,
.house-type-copy p,
.house-type-copy li,
.service-grid p,
.rules-list p,
.benefit-grid p,
.audience p,
.location-panel p,
.location-panel dd,
.booking-copy p,
.booking-steps p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefit-grid article {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(42px, 64px) minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.benefit-grid span {
  grid-row: span 2;
  display: block;
  margin-bottom: 0;
  color: var(--water);
  font-weight: 900;
}

.benefit-grid h3 {
  margin-bottom: 0;
}

.benefit-grid p {
  margin-bottom: 0;
}

.section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.gazebo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.gazebo-gallery figure,
.house-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gazebo-gallery figure:not(.gazebo-photo-main) {
  display: grid;
}

.gazebo-gallery img,
.house-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gazebo-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gazebo-photo-main img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.gazebo-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(19, 43, 36, .82);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.house-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.house-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(19, 43, 36, .82);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.house-types {
  display: grid;
  gap: 28px;
}

.house-type {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(24, 34, 29, .08);
}

.house-type-wide {
  grid-template-columns: 1fr;
}

.house-type-copy {
  align-self: center;
}

.house-type-heading h3,
.house-type-copy h3 {
  margin-bottom: 14px;
}

.house-type-heading .status {
  margin-bottom: 10px;
}

.house-type-media {
  margin: 0;
}

.house-type-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, .85fr);
  gap: 12px;
}

.house-type-media-grid figure {
  margin: 0;
}

.house-type-media-grid .house-type-photo-wide img {
  object-position: center;
}

.house-type-media-grid figure:not(.house-type-photo-wide) img {
  object-position: center 42%;
}

.big-house-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.big-house-gallery figure {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee7dc;
  box-shadow: 0 16px 38px rgba(24, 34, 29, .1);
}

.big-house-gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.big-house-gallery img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.big-house-gallery-main img {
  height: 534px;
}

.big-house-gallery figcaption {
  flex: 1;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.small-house-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.small-house-gallery figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.house-type-media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.small-house-gallery figure:first-child img {
  height: 588px;
}

.house-type-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.house-photo-wide {
  grid-row: span 2;
}

.house-photo-wide img {
  height: 100%;
  min-height: 100%;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-card,
.audience article {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.format-card.accent {
  border-color: #bed3c1;
  background: #edf5ed;
}

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

.service-grid article {
  padding: clamp(16px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.service-grid p {
  margin-bottom: 0;
}

.service-wide {
  grid-column: span 2;
}

.rules {
  background: var(--green-deep);
  color: var(--white);
}

.rules .section-label {
  color: #dfb86d;
}

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

.rules-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.rules-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #1d211d;
  font-weight: 900;
}

.rules-list p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 22px;
}

li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.audience,
.contact {
  background: var(--green-deep);
  color: var(--white);
}

.audience .section-label,
.contact .section-label {
  color: #dfb86d;
}

.audience p,
.contact p {
  color: rgba(255, 255, 255, .74);
}

.audience article {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

dl {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: minmax(150px, .34fr) 1fr;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--green);
  font-weight: 900;
}

dd {
  margin: 0;
}

.map-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking {
  align-items: center;
  background: var(--paper);
}

.booking-steps {
  display: grid;
  gap: 12px;
}

.booking-steps article {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.booking-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.booking-steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-title {
  margin: 26px 0 0;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  color: var(--white);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.45;
}

.form-note a,
.footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  color: #dfb86d;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #0f211b;
  color: rgba(255, 255, 255, .68);
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer nav {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-logo {
  display: block;
  width: clamp(82px, 9vw, 118px);
  height: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
}

.footer strong {
  color: var(--white);
}

.legal-body {
  background: var(--surface);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 6vw, 88px);
  background: var(--green-deep);
  color: var(--white);
}

.legal-main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 48px);
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(40px, 7vw, 76px);
}

.legal-main h2 {
  margin-top: 38px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-main p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 920px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-top: 110px;
  }

  .split,
  .booking,
  .contact,
  .benefit-grid,
  .gazebo-gallery,
  .house-gallery,
  .house-type,
  .house-type-media-grid,
  .big-house-gallery,
  .service-grid,
  .rules-list,
  .cards.two,
  .cards.three {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-column: auto;
  }

  .big-house-gallery-main {
    grid-column: auto;
  }

  .small-house-gallery,
  .small-house-gallery figure:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .gazebo-gallery img,
  .gazebo-photo-main img,
  .house-gallery img,
  .house-type-media img,
  .house-photo-wide img,
  .gazebo-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .small-house-gallery .house-type-media img {
    aspect-ratio: auto;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .benefit-grid span {
    margin-bottom: 0;
  }

  dl div,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }
}
