:root {
  --bg: #f7f4ef;
  --surface: #fffdfa;
  --surface-strong: rgba(255, 253, 250, 0.92);
  --text: #23313a;
  --muted: #61717b;
  --line: #d9e1e4;
  --accent: #2f6d73;
  --accent-soft: #e2efef;
  --shadow: 0 18px 45px rgba(35, 49, 58, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
iframe {
  max-width: 100%;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 76px 0;
}

.section-label,
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p,
li,
label span,
input,
textarea,
a,
button {
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(21, 34, 41, 0.78), rgba(47, 109, 115, 0.38)),
    url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 17, 24, 0.08), rgba(7, 17, 24, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
  padding: 48px 0;
}

.hero-text {
  max-width: 620px;
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-solid {
  background: #ffffff;
  color: var(--text);
}

.btn-outline {
  border-color: rgba(255,255,255,0.64);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.hero-card,
.card,
.offer-box,
.booking-form,
.policy-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--surface-strong);
  color: var(--text);
  padding: 28px;
  backdrop-filter: blur(5px);
}

.hero-card ul,
.offer-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--line);
}

.offer {
  background: linear-gradient(180deg, #eef5f5, #f7f4ef);
}

.offer-wrap,
.booking-grid,
.contact-grid,
.policy-grid,
.footer-inner {
  display: grid;
  gap: 28px;
}

.offer-wrap {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.offer-box {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 26px;
}

.booking-grid,
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
}

.booking-form label {
  display: block;
  margin-bottom: 16px;
}

.booking-form span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d3d8;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--text);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

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

.contact-copy a,
.site-footer a {
  color: var(--accent);
  text-decoration: none;
}

.map-wrap {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

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

.policy-box {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2ede5;
  padding: 24px 0;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

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

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }

  .hero-inner,
  .offer-wrap,
  .booking-grid,
  .contact-grid,
  .policy-grid,
  .footer-inner,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 96px 0 56px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero-actions,
  .site-footer nav {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .hero-card,
  .card,
  .offer-box,
  .booking-form,
  .policy-box {
    border-radius: 18px;
  }
}
