﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f4efe7;
  --bg-alt: #eef2f1;
  --surface: #ffffff;
  --surface-2: #f8f7f2;
  --surface-dark: #082735;
  --surface-dark-2: #0d3a4c;
  --text: #1f2d36;
  --muted: #61717b;
  --muted-2: #8b9aa3;
  --line: #d7d8d4;
  --line-strong: #bcc4c1;
  --accent: #c19a4a;
  --accent-2: #1b6a63;
  --accent-3: #b35b44;
  --white: #ffffff;
  --shadow-sm: 0 8px 18px rgba(10, 26, 33, 0.08);
  --shadow-md: 0 18px 40px rgba(10, 26, 33, 0.12);
  --shadow-lg: 0 26px 70px rgba(10, 26, 33, 0.16);
  --radius: 8px;
  --container: min(1200px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #faf8f3 0%, var(--bg) 100%);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: '';
  background:
    repeating-linear-gradient(135deg, rgba(193, 154, 74, 0.025) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(45deg, rgba(8, 39, 53, 0.03) 0 1px, transparent 1px 64px);
  opacity: 0.75;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: rgba(193, 154, 74, 0.9);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.logo {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-gold {
  color: var(--white);
  background: linear-gradient(180deg, #cfad61 0%, #b98b35 100%);
  box-shadow: 0 10px 20px rgba(185, 139, 53, 0.2);
}

.button-gold:hover {
  box-shadow: 0 12px 24px rgba(185, 139, 53, 0.28);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.button-outline:hover {
  color: var(--surface-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-light {
  color: var(--surface-dark);
  background: var(--white);
  border-color: rgba(8, 39, 53, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: rgba(8, 39, 53, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(8, 39, 53, 0.12);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav > a:not(.button),
.mobile-nav > a:not(.button) {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.desktop-nav > a:not(.button):hover,
.mobile-nav > a:not(.button):hover {
  color: #f0cf80;
}

.nav-cta {
  margin-left: 6px;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, #0a3142 0%, #081f2c 60%, #06171f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(25deg, rgba(193, 154, 74, 0.04) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 36%, rgba(255, 255, 255, 0.02) 100%);
  opacity: 0.9;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 108px;
  content: '';
  background: linear-gradient(180deg, transparent 0%, rgba(244, 239, 231, 0.72) 100%);
}

.hero-glow {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 72px;
  padding-block: 92px 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #f3d99a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 28px;
  height: 1px;
  background: #f0cf80;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero-copy > p {
  max-width: 640px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

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

.quick-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(10, 36, 49, 0.72);
  box-shadow: var(--shadow-lg);
}

.quick-label {
  color: #f3d99a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quick-card h2 {
  margin: 10px 0 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.02;
}

.quick-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-card li > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(240, 207, 128, 0.42);
  border-radius: 999px;
  color: #f3d99a;
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 28px;
  background: #f0cf80;
  animation: scrollPulse 1.8s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
  }
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--surface-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.benefits {
  background: linear-gradient(180deg, var(--surface-2) 0%, #f1eee7 100%);
}

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

.benefit-card {
  position: relative;
  min-height: 270px;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 154, 74, 0.5);
  box-shadow: var(--shadow-md);
}

.card-number {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #d5dcd8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(180deg, var(--surface-dark-2) 0%, var(--surface-dark) 100%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--surface-dark);
  font-size: 1.14rem;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.gazebos {
  background: linear-gradient(180deg, #f7f6f2 0%, #f2efe8 100%);
}

.gazebo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gazebo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gazebo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 154, 74, 0.45);
  box-shadow: var(--shadow-md);
}

.gazebo-photo {
  position: relative;
  display: grid;
  height: 228px;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
  background:
    linear-gradient(145deg, #e8ece8 0%, #dce4df 100%);
}

.gazebo-photo::before {
  position: absolute;
  inset: 14px;
  content: '';
  border: 1px solid rgba(8, 39, 53, 0.08);
  border-radius: 10px;
}

.gazebo-photo::after {
  position: absolute;
  inset: 0;
  content: '';
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 60px);
  opacity: 0.45;
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
}

.photo-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: #95a39c;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.photo-placeholder small {
  color: #5d6a6c;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gazebo-content {
  padding: 24px;
}

.gazebo-content h3 {
  margin: 0 0 10px;
  color: var(--surface-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.05;
}

.gazebo-content > p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.gazebo-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  color: var(--text);
  font-size: 0.88rem;
}

.gazebo-meta span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.gazebo-meta b {
  color: var(--surface-dark);
}

.gazebo-card .button {
  width: 100%;
}

.booking {
  background: linear-gradient(180deg, #f2efe8 0%, #f6f4ef 100%);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.66fr);
  align-items: start;
  gap: 22px;
}

.booking-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.form-head > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--surface-dark-2), var(--surface-dark));
  font-weight: 800;
}

.form-head h3,
.form-head p {
  margin: 0;
}

.form-head h3 {
  color: var(--surface-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.1;
}

.form-head p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.field-error {
  display: none;
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.field-error.show {
  display: block;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid var(--line);
  outline: none;
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field select {
  cursor: pointer;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #97a3a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(193, 154, 74, 0.9);
  box-shadow: 0 0 0 4px rgba(193, 154, 74, 0.14);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: rgba(179, 91, 68, 0.85);
  box-shadow: 0 0 0 4px rgba(179, 91, 68, 0.1);
}

.submit-button {
  width: 100%;
  margin-top: 22px;
}

.submit-button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.submit-button span {
  font-size: 1.15rem;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.booking-summary {
  position: sticky;
  top: 102px;
  padding: 30px;
  border-radius: 12px;
  color: var(--white);
  background:
    linear-gradient(145deg, #0a3040 0%, #082735 100%);
  box-shadow: var(--shadow-lg);
}

.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f2dca1;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-top i {
  width: 32px;
  height: 1px;
  background: #f0cf80;
}

.booking-summary h3 {
  margin: 14px 0 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.02;
}

.booking-summary > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.89rem;
}

.booking-summary dl {
  margin: 0;
}

.booking-summary dl div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-summary dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.booking-summary dd {
  margin: 0;
  max-width: 60%;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-help {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-help > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(240, 207, 128, 0.38);
  border-radius: 999px;
  color: #f3d99a;
}

.summary-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.48;
}

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

.contacts {
  padding-bottom: 120px;
  background: var(--bg-alt);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-dark);
  box-shadow: var(--shadow-lg);
}

.contact-copy {
  padding: 56px;
  background:
    linear-gradient(140deg, #0a3142 0%, #082735 100%);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 520px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-link {
  padding: 10px 8px;
  color: #f3d99a;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-details {
  display: grid;
  align-content: center;
  padding: 40px 46px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details > div:last-child {
  border-bottom: 0;
}

.contact-details span {
  color: #f3d99a;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-details p,
.contact-details strong {
  display: block;
  margin: 0;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.contact-details strong {
  margin-top: 5px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer {
  color: var(--white);
  background: #061b26;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 52px;
}

.footer-logo {
  height: 52px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.22s ease;
}

.footer-nav a:hover {
  color: #f3d99a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(430px, calc(100% - 32px));
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(10, 26, 33, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(180deg, var(--surface-dark-2), var(--surface-dark));
  font-weight: 800;
}

.toast.error > span {
  background: linear-gradient(180deg, #c7644d, #9f4634);
}

.toast p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.toast button {
  margin-left: auto;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 1.15rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

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

  .hero-grid {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-block: 72px 108px;
  }

  .hero {
    min-height: auto;
  }

  .quick-card {
    max-width: 660px;
  }

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

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 auto;
    display: flex;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    background: rgba(8, 39, 53, 0.98);
    box-shadow: 0 18px 30px rgba(8, 39, 53, 0.18);
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  }

  .mobile-nav.open {
    max-height: calc(100vh - 84px);
    padding: 22px 20px 28px;
    opacity: 1;
  }

  .mobile-nav .button {
    width: 100%;
    margin-top: 4px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 74px 0;
  }

  .logo {
    height: 44px;
  }

  .header-inner {
    min-height: 72px;
  }

  .mobile-nav {
    inset: 72px 0 auto;
  }

  .hero-grid {
    padding-block: 64px 104px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-copy > p {
    margin: 22px 0 28px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .quick-card {
    padding: 22px 18px;
  }

  .quick-card h2 {
    font-size: 1.65rem;
  }

  .scroll-hint {
    white-space: nowrap;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }

  .benefit-grid,
  .gazebo-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .benefit-card {
    min-height: auto;
  }

  .gazebo-content > p {
    min-height: auto;
  }

  .booking-form {
    padding: 22px 18px;
  }

  .booking-summary {
    padding: 24px 18px;
  }

  .contact-copy,
  .contact-details {
    padding: 34px 20px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .text-link {
    width: 100%;
    text-align: center;
  }

  .footer-main {
    padding-block: 40px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
