* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3f8;
  --bg-alt: #eef5ee;
  --surface: #ffffff;
  --surface-soft: #faf8fc;
  --text: #28262b;
  --muted: #706b76;
  --border: #ded7e7;
  --accent: #6f7f68;
  --accent-2: #8d7ba8;
  --accent-dark: #46543f;
  --lavender: #e8e0f0;
  --sage: #dfeadc;
  --shadow: 0 22px 60px rgba(51, 45, 60, 0.12);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(141, 123, 168, 0.16), transparent 28rem),
    radial-gradient(circle at 95% 10%, rgba(111, 127, 104, 0.18), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

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

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

h1, h2, h3, .brand span {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 215, 231, 0.85);
}

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  min-width: max-content;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(51, 45, 60, 0.14);
}

.brand span {
  font-size: 1.35rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.language-select select {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}

.section, .hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px;
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 14px;
}

.lead {
  color: var(--muted);
  max-width: 680px;
  font-size: 1.18rem;
}

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

.hero-actions {
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 38px rgba(111, 127, 104, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: var(--border);
}

.full {
  width: 100%;
}

.trust-row {
  margin-top: 30px;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  border-radius: 38px;
  padding: 12px;
  background: linear-gradient(140deg, var(--lavender), var(--sage));
  box-shadow: var(--shadow);
}

.hero-panel > img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 4px;
  box-shadow: 0 12px 35px rgba(40, 38, 43, 0.14);
}

.floating-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.compact {
  margin-bottom: 0;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.gallery-main {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
  min-height: 500px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.gallery-main span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--text);
  font-weight: 800;
}

.thumb-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.thumb {
  border: 2px solid transparent;
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  box-shadow: 0 10px 25px rgba(51, 45, 60, 0.08);
}

.thumb.active {
  border-color: var(--accent-2);
}

.thumb img {
  width: 120px;
  height: 92px;
  object-fit: cover;
}

.thumb span {
  padding: 12px;
  font-weight: 800;
  color: var(--text);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.copy-card, .booking-form, .final-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.copy-card {
  padding: 30px;
}

.copy-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.copy-card p:last-child {
  margin-bottom: 0;
}

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

.features article {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sage), var(--lavender));
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.features p {
  color: var(--muted);
  margin-bottom: 0;
}

.location-band {
  max-width: none;
  background: linear-gradient(135deg, rgba(223, 234, 220, 0.72), rgba(232, 224, 240, 0.78));
}

.location-band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.arrival-map {
  margin: 0 auto 22px;
  max-width: 760px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.arrival-map-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 20px;
  overflow: hidden;
}

.arrival-map-button img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.arrival-map-button span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.8);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: .9rem;
}

.map-modal-content {
  width: min(1120px, 100%);
}

.map-modal-content img {
  max-height: 84vh;
  width: 100%;
  object-fit: contain;
  background: #fff;
}

.location-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-grid div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 6px;
}

.location-grid span {
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: start;
}

.booking-text p {
  color: var(--muted);
}

.booking-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 0.94rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fffdfd;
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.estimate-box {
  background: linear-gradient(135deg, rgba(223, 234, 220, 0.82), rgba(232, 224, 240, 0.86));
  border: 1px solid rgba(141, 123, 168, 0.26);
  border-radius: 24px;
  padding: 22px;
}

.estimate-header, .estimate-line, .estimate-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.estimate-header {
  padding-bottom: 12px;
  font-weight: 900;
}

.estimate-header strong {
  color: var(--accent-dark);
}

.estimate-line {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.estimate-line span {
  color: var(--muted);
}

.discount-line {
  color: var(--accent-dark);
}

.discount-line strong {
  color: var(--accent-dark);
}

.estimate-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid rgba(111, 127, 104, 0.28);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent-dark);
}

#estimateDetails {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
}

.privacy input {
  width: auto;
  margin-top: 5px;
}

.form-message {
  color: var(--accent-dark);
  font-weight: 800;
  margin: 0;
}

.final-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
}

.final-card img {
  border-radius: 22px;
  background: white;
}

.final-card p {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 31, 0.72);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: var(--surface);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.modal-content img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 20px;
  background: #111;
}

.modal-content p {
  margin: 12px 8px 0;
  font-weight: 900;
}

.modal-close, .modal-arrow {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.modal-close {
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
}

.modal-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  border-radius: 999px;
  font-size: 34px;
}

.modal-arrow.prev {
  left: 26px;
}

.modal-arrow.next {
  right: 26px;
}

.footer {
  padding: 32px 22px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0 4px;
    order: 4;
  }

  .nav-links.open {
    display: flex;
  }

  .hero, .gallery, .split, .features, .location-grid, .booking-section, .final-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel > img {
    height: 420px;
  }

  .gallery-main, .gallery-main img {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .section, .hero {
    padding: 62px 18px;
  }

  .brand span {
    font-size: 1.08rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .thumb {
    grid-template-columns: 92px 1fr;
  }

  .thumb img {
    width: 92px;
    height: 74px;
  }

  .modal-arrow {
    width: 40px;
    height: 46px;
  }

  .hero-panel > img {
    height: 340px;
  }

  .arrival-map {
    padding: 8px;
    border-radius: 20px;
  }

  .arrival-map-button,
  .arrival-map-button img {
    border-radius: 14px;
  }

  .arrival-map-button img {
    max-height: 300px;
  }

  .arrival-map-button span {
    left: 10px;
    right: 10px;
    text-align: center;
  }
}
