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

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --text: #161616;
  --muted: #5d5d5d;
  --line: rgba(22, 22, 22, 0.08);
  --dark: #101010;
  --radius: 28px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --success: #0f7a46;
  --warning: #b26a00;
  --danger: #b02d2d;
}

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

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 88px 0;
}

.section-kicker,
.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker,
.card-kicker {
  color: #707267;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

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

.section-heading h2,
.hero-panel h2,
.location-panel h2,
.contact-panel h2,
.checkout-panel h2,
.gallery-modal-header h2,
.booking-card h3,
.status-card h3,
.summary-card h3,
.guest-card h3,
.state-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  color: var(--text);
}

.section-lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.card-head {
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: var(--dark);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 767px) {
  body {
    font-size: 15.25px;
  }

  .container {
    width: min(1180px, calc(100% - 30px));
  }

  .section {
    padding: 60px 0;
  }

  .section-kicker,
  .eyebrow,
  .card-kicker {
    font-size: 0.76rem;
    margin-bottom: 10px;
  }

  .section-heading h2,
  .hero-panel h2,
  .location-panel h2,
  .contact-panel h2,
  .checkout-panel h2,
  .gallery-modal-header h2,
  .booking-card h3,
  .status-card h3,
  .summary-card h3,
  .guest-card h3,
  .state-card h3 {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.08;
  }

  .section-lead {
    font-size: 0.96rem;
  }

  .btn {
    min-height: 48px;
    padding: 11px 20px;
  }
}
