:root {
  --amber: #FFDC00;
  --rose: #FF1744;
  --peach: #FFEAA7;
  --peach-soft: #FFF4D6;
  --ink: #2A1B12;
  --ink-soft: #6B5544;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 30px rgba(255, 23, 68, 0.12);
  --shadow-card: 0 8px 24px rgba(42, 27, 18, 0.10);
  --shadow-lift: 0 18px 40px rgba(42, 27, 18, 0.18);
  --radius: 18px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --gradient-sunset: linear-gradient(135deg, #FFDC00 0%, #FF1744 100%);
  --gradient-sunset-soft: linear-gradient(135deg, #FFEAA7 0%, #FFC4D6 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--peach-soft);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.5em; }

p { margin-bottom: 1em; }

a {
  color: var(--rose);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--ink); }

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

ul, ol { margin: 0 0 1em 1.2em; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 234, 167, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  padding: 18px 0;
  box-shadow: 0 1px 0 rgba(42, 27, 18, 0.06);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(255, 244, 214, 0.98);
  box-shadow: 0 6px 24px rgba(42, 27, 18, 0.12);
}

.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
  flex-shrink: 0;
}

.logo span { color: var(--rose); }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 23, 68, 0.10);
  color: var(--rose);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 23, 68, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateX(-50%) translateY(8px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateX(-50%) translateY(-8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
  background-image: linear-gradient(rgba(42, 27, 18, 0.55), rgba(42, 27, 18, 0.65)), url('https://picsum.photos/seed/golden-sunset-travel/1920/1280');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to top, var(--peach-soft), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.4em;
}

.hero .hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  line-height: 1.5;
}

.hero .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  padding: 8px 18px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  margin-bottom: 1.5em;
  backdrop-filter: blur(4px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: var(--gradient-sunset);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 23, 68, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  text-align: center;
}

.btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 23, 68, 0.45);
  filter: brightness(1.05);
  color: var(--white);
}

.btn:active { transform: scale(1.01); }

.btn-ghost {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(42, 27, 18, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 24px;
  position: relative;
}

.section-alt {
  background: var(--peach);
}

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

.section-divider {
  border: none;
  border-top: 1px solid rgba(42, 27, 18, 0.12);
  margin: 0;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--rose);
  margin-bottom: 0.8em;
}

.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient-sunset-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: 0.4em;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 1.2em;
  flex-grow: 1;
}

.card .card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose);
  align-self: flex-start;
}
.card .card-link::after {
  content: " →";
  transition: margin 0.25s var(--ease);
}
.card .card-link:hover::after { margin-left: 4px; }

/* Card with image */
.card-media .card-img {
  width: 100%;
  height: 200px;
  margin: -32px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

/* ===== CONTENT BLOCKS ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split .split-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.split .split-text p {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.feature-list {
  list-style: none;
  margin: 1.5em 0 0;
  padding: 0;
}
.feature-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 500;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-sunset);
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .stat-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ===== CONTACT / NAP ===== */
.contact-block {
  background: var(--white);
  border-radius: var(--radius);