:root {
  --navy: #10233d;
  --navy-2: #1d3b63;
  --gold: #c8a45d;
  --cream: #f7f2e9;
  --white: #ffffff;
  --text: #1b2430;
  --muted: #5f6b7a;
  --border: rgba(16, 35, 61, 0.08);
  --shadow: 0 18px 45px rgba(16, 35, 61, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--navy-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

iframe {
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: var(--cream);
}

.section-intro {
  margin-bottom: 2rem;
}

.section-intro.narrow {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

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

.section-copy,
.small-muted,
.footer-copy,
.meta-label {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--navy);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(16, 35, 61, 0.15);
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}

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

.button-secondary {
  background: #fff;
  color: var(--navy) !important;
  border-color: rgba(16, 35, 61, 0.14);
  box-shadow: none;
}

.button-small {
  min-width: 130px;
  padding: 0.75rem 1.15rem;
  font-size: 0.95rem;
}

.site-nav .button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  font-size: 0.95rem;
}

.site-nav .button:hover,
.nav-cta:hover {
  opacity: 0.96;
  text-decoration: none;
}

.hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-short {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-grid,
.hero-grid-tight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1.7rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16, 35, 61, 0.1);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.hero-meta > div {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.meta-label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-main-image,
.hero-side-image {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-main-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-side-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-main-image figcaption {
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.promo-card,
.stack-card,
.booking-summary-card,
.form-panel,
.process-panel .stack-card,
.calendar-card,
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.promo-card {
  padding: 1.4rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  font-weight: 700;
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.booking-promo {
  display: grid;
  gap: 1.5rem;
}

.promo-copy {
  max-width: 760px;
}

.promo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.faq-preview,
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.faq-list details p {
  margin-top: 0.9rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.form-panel,
.booking-summary-card {
  padding: 1.5rem;
}

.process-panel {
  display: grid;
  gap: 1rem;
}

.stack-card {
  padding: 1.35rem;
}

.summary-list,
.details-list,
.step-list,
.footer-links {
  margin: 0;
  padding-left: 1.15rem;
}

.summary-list li,
.details-list li,
.step-list li,
.footer-links li {
  margin-bottom: 0.6rem;
}

.booking-form {
  margin-top: 1.2rem;
}

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

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--navy);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 61, 0.15);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(29, 59, 99, 0.18);
  border-color: var(--navy-2);
}

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

.estimate-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(16, 35, 61, 0.1);
  border-radius: 18px;
  background: var(--cream);
}

.estimate-title {
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--navy);
}

.estimate-note,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text span,
.site-footer h3,
.site-footer .footer-copy,
.site-footer .footer-links {
  color: #fff;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.map-card {
  background: #ffffff;
  border: 1px solid rgba(15, 34, 59, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 34, 59, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.calendar-card {
  background: #ffffff;
  border: 1px solid rgba(15, 34, 59, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 34, 59, 0.08);
}

.calendar-card iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  border: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .hero-grid-tight,
  .booking-layout,
  .footer-grid,
  .three-up,
  .promo-points {
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-nav {
    position: absolute;
    top: 84px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .hero-main-image img {
    height: 300px;
  }

  .hero-side-image img {
    height: 180px;
  }

  .calendar-card iframe {
    min-height: 520px;
  }
}