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

:root {
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-accent: #3c59f4;
  --color-rust: #b7410f;
  --color-border: #e8e5e0;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --max-width: 800px;
  --max-width-wide: 1040px;
  --letter-spacing: 0.08em;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */

.site-header {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.back-link {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--color-accent);
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text);
  text-decoration: none;
}

/* ── Hero slideshow ── */

.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.25);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ── Main ── */

main {
  flex: 1;
  width: 100%;
}

/* ── Content sections ── */

.content-section {
  padding: 3.5rem 2rem;
}

.section-white {
  background-color: var(--color-surface);
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner--wide {
  max-width: var(--max-width-wide);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

/* ── Info list ── */

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.info-list li {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
  padding-left: 1.5rem;
  position: relative;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-rust);
}

/* ── Steps ── */

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-rust);
  line-height: 1;
  min-width: 3rem;
  opacity: 0.85;
}

.step-body {
  padding-top: 0.15rem;
}

.step-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── Season cards ── */

.season-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.season-card {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  background-color: var(--color-surface);
  border-top: 3px solid transparent;
}

.season-main {
  border-top-color: var(--color-rust);
}

.season-off {
  border-top-color: var(--color-border);
}

.season-xmas {
  border-top-color: var(--color-accent);
}

.season-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.season-dates {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.season-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ── Booking widget ── */

.booking-widget {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  min-height: 700px;
  padding: 0.5rem;
}

#previo-booking-engine {
  min-height: 680px;
}

/* ── Footer ── */

.site-footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: var(--letter-spacing);
  color: var(--color-muted);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .hero {
    height: 300px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .season-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .content-section {
    padding: 2.5rem 1.25rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .step-number {
    font-size: 2rem;
    min-width: 2.5rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 1rem 1.25rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }
}
