:root {
  --color-primary: #1a3c27;
  --color-primary-dark: #0f2819;
  --color-primary-light: #2d5a3f;
  --color-accent: #c9a96e;
  --color-accent-dark: #a88b52;
  --color-accent-light: #dbb884;
  --color-text: #2c2c2c;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-surface: #f6f5f3;
  --color-bg-dark: #0f2819;
  --color-border: #e8e6e3;
  --color-dark: #1a1a1a;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --logo-height: clamp(36px, 5.5vh, 56px);
  --radius: 2px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  text-wrap: balance;
}

p { text-wrap: pretty; }

/* ========== UTILITIES ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 6rem 0; }
}

.text-center { text-align: center; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navbar.scrolled .nav-link { color: var(--color-text); }
.navbar.scrolled .nav-link:hover { color: var(--color-primary); }

/* ── Desktop inner layout ── */
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── Logo ── */
.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: var(--logo-height);
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.logo-darkbg  { display: block; }
.logo-lightbg { display: none; }

.navbar.scrolled .logo-darkbg  { display: none; }
.navbar.scrolled .logo-lightbg { display: block; }

/* ── NAV TOGGLE (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--color-text); }

  .nav-toggle.active span {
    background: var(--color-primary);
  }

/* ── SEARCH BAR (compact pill) ── */
.nav-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-search form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  width: 180px;
}

.nav-search form:focus-within {
  width: 260px;
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-search form {
  background: var(--color-bg-surface);
  border-color: var(--color-primary-light);
}
.navbar.scrolled .nav-search form:focus-within {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(3,218,200,0.15);
}

.nav-search input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #fff;
  outline: none;
  width: 100%;
}

.navbar.scrolled .nav-search input[type="search"] { color: var(--color-text); }

.nav-search input[type="search"]::placeholder { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.navbar.scrolled .nav-search input[type="search"]::placeholder { color: var(--color-text-muted); }

.nav-search button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.nav-search button[type="submit"]:hover { color: #fff; }
.navbar.scrolled .nav-search button[type="submit"] { color: var(--color-text-muted); }
.navbar.scrolled .nav-search button[type="submit"]:hover { color: var(--color-primary); }

.nav-search button svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* ── NAV MENU (desktop) ── */
.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-menu-desktop .nav-item { position: relative; }

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  position: relative;
  padding: 0.35rem 0;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

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

/* Dropdown arrow next to link text */
.nav-arrow {
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.nav-has-submenu:hover .nav-arrow { transform: rotate(180deg); }

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 1002;
}
.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-submenu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-submenu a:hover {
  background: var(--color-bg-surface);
  color: var(--color-primary);
}

/* Hide mobile panels & close button on desktop */
.nav-menu,
.nav-panel-close { display: none; }

/* ========== MOBILE / TABLET (≤1023px) ========== */
@media (max-width: 1023px) {
  .navbar {
    padding: 1.125rem 0;
  }
  .nav-toggle {
    display: flex;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span {
    width: 26px;
    height: 2.5px;
  }
  :root {
    --logo-height: clamp(40px, 6vh, 52px);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .nav-search { display: none !important; }
  .nav-menu-desktop { display: none !important; }

  /* Center logo absolutely in mobile header */
  .nav-inner {
    position: relative;
  }
  .nav-inner .logo-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Panel overlay */
  .nav-panel-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-panel-overlay.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  /* Left slide-in menu */
  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    overflow: hidden;
    margin-left: 0;
  }
  .nav-menu.active { left: 0; }

  /* Close X button in the 20% overlay gutter */
  .nav-panel-close {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 4vw;
    z-index: 1001;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, color 0.25s ease;
    pointer-events: none;
  }
  .nav-panel-close.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
  }
  .nav-panel-close.scrolled {
    color: var(--color-text);
  }

  /* Hide hamburger when panel is open */
  .nav-toggle.active {
    display: none;
  }

  /* Slide container for drill-down */
  .nav-panel-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .nav-panel-view {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .nav-panel-view-main { z-index: 1; }

  .nav-panel-submenu {
    z-index: 2;
    transform: translateX(100%);
  }
  .nav-panel-submenu.active {
    transform: translateX(0);
  }
  .nav-panel-view-main.pushed {
    transform: translateX(-25%);
  }
  .nav-panel-view-main.pushed .nav-panel-close {
    opacity: 0;
    pointer-events: none;
  }

  /* Panel header (brand + close) */
  .nav-panel-header {
    display: flex;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 2;
    flex-shrink: 0;
  }

  /* Drill-down arrows on main menu items */
  .nav-drill-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: color 0.15s ease;
  }

  /* Menu list */
  .nav-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .nav-panel-list .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-panel-list .nav-item:last-child { border-bottom: none; }
  .nav-panel-list .nav-link {
    color: var(--color-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
  }
  .nav-panel-list .nav-link::after {
    display: none;
  }

  /* Submenu view header */
  .submenu-header {
    display: flex;
    align-items: center;
    background: var(--color-bg-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 1.25rem;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  .submenu-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .submenu-back:hover { color: var(--color-primary-dark); }
  .submenu-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-left: auto;
  }

  /* Submenu list */
  .submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
  }
  .submenu-list li {
    border-bottom: 1px solid var(--color-border);
  }
  .submenu-list li:last-child { border-bottom: none; }
  .submenu-list a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    color: var(--color-text);
    transition: background 0.15s ease, color 0.15s ease;
  }
  .submenu-list a:hover {
    background: var(--color-bg-surface);
    color: var(--color-primary);
  }

  /* Search at bottom of panel */
  .nav-panel-search {
    display: block;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--color-border);
    width: 100%;
    flex-shrink: 0;
    background: #fff;
  }
  .nav-panel-search form {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .nav-panel-search form:focus-within {
    box-shadow: 0 0 0 3px rgba(3,218,200,0.15);
    border-color: var(--color-primary-light);
    background: #fff;
  }
  .nav-panel-search input[type="search"] {
    flex: 1;
    border: none;
    padding: 0.5rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    color: var(--color-text);
    background: transparent;
  }
  .nav-panel-search button[type="submit"] {
    background: none;
    border: none;
    color: var(--color-text-muted);
    padding: 0 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }
  .nav-panel-search button[type="submit"]:hover { color: var(--color-primary); }
  .nav-panel-search button svg {
    width: 16px; height: 16px;
    stroke: currentColor; stroke-width: 2;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
  }
}

/* ========== HERO ========== */
.page-hero {
  position: relative;
  min-height: 60vh;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero { min-height: 70vh; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  padding: 2rem 1.25rem 3rem;
  color: #fff;
}

@media (min-width: 768px) {
  .page-hero-content { padding: 3rem 2rem 5rem; }
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #fff;
  max-width: 800px;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.15rem; }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.875rem 0;
}

.breadcrumb a {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--color-primary); }

.breadcrumb span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0 0.5rem;
}

.breadcrumb-current {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}

/* ========== SECTION HEADER ========== */
.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* ========== MAIN LAYOUT ========== */
.content-wrapper {
  display: grid;
  gap: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* ========== QUICK FACTS STRIP ========== */
.quick-facts {
  background: var(--color-bg-dark);
  color: #fff;
  padding: 1.5rem 0;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
  text-align: center;
}

.quick-fact-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 0.5rem;
  color: var(--color-accent);
}

.quick-fact-icon svg {
  width: 100%;
  height: 100%;
}

.quick-fact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.quick-fact-value {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========== PROSE / BODY COPY ========== */
.prose p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

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

/* ========== SNAPSHOT / SIDEBAR ========== */
.snapshot-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: fit-content;
}

@media (min-width: 1024px) {
  .snapshot-card {
    position: sticky;
    top: 80px;
  }
}

.snapshot-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}

.snapshot-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
}

.snapshot-item:last-child { border-bottom: none; }

.snapshot-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.snapshot-icon svg {
  width: 100%;
  height: 100%;
}

.snapshot-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.snapshot-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.snapshot-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* ========== HIGHLIGHTS ========== */
.highlights-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight-item {
  padding: 1.5rem;
  background: var(--color-bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,60,39,0.08);
}

.highlight-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========== ITINERARY ========== */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.day-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--color-bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

@media (min-width: 640px) {
  .day-card {
    grid-template-columns: 80px 1fr;
    gap: 1.75rem;
  }
}

.day-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  flex-shrink: 0;
}

.day-number span:first-child {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.day-number span:last-child {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.day-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.day-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ========== SECTION BREAK IMAGE ========== */
.section-break {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.section-break img {
  width: 100%;
  height: 45vh;
  min-height: 220px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .section-break img { height: 50vh; }
}

/* ========== CTA BLOCK ========== */
.cta-block {
  background: #f5f0e8;
  color: var(--color-primary-dark);
  padding: 4rem 0;
  text-align: center;
}

.cta-block h2 {
  color: var(--color-primary-dark);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-block p {
  color: var(--color-primary);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-block .btn-outline {
  border-color: var(--color-primary-dark);
  color: var(--color-primary-dark);
}

.cta-block .btn-outline:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.cta-buttons {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-brand-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  align-self: start;
}

.footer-logo {
  height: var(--logo-height);
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-logo {
  margin-bottom: 1rem;
}

.footer-brand-logo img {
  height: var(--logo-height);
  width: auto;
  max-width: 100%;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a { transition: var(--transition); }

.footer-contact a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PRINT STYLES ========== */
@media print {
  .navbar, .breadcrumb, .cta-block, .footer, .gallery-grid, .snapshot-card .btn {
    display: none !important;
  }
  .page-hero { min-height: auto; max-height: none; page-break-after: avoid; }
  .page-hero-overlay { background: var(--color-primary-dark); }
  .day-card { break-inside: avoid; page-break-inside: avoid; }
  body { font-size: 11pt; line-height: 1.5; color: #000; }
  .content-wrapper { grid-template-columns: 1fr; }
  .snapshot-card { position: static; border: 1px solid #ccc; margin-bottom: 1rem; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-pulse {
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 20, 15, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 640px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.lightbox-overlay.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox-prev { left: 1.25rem; top: 50%; margin-top: -24px; }
.lightbox-next { right: 1.25rem; top: 50%; margin-top: -24px; }

.lightbox-prev svg,
.lightbox-next svg,
.lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lightbox-counter {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  pointer-events: none;
}

.lightbox-swipe-hint {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .lightbox-content { padding: 0.75rem; }
  .lightbox-prev,
  .lightbox-next { display: none; }
  .lightbox-img-wrap {
    max-width: 100vw;
    max-height: 85vh;
  }
  .lightbox-img { max-height: 72vh; }
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.35);
  }
  .lightbox-caption {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }
  .lightbox-counter { top: 1rem; }
  .lightbox-swipe-hint { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay,
  .lightbox-img,
  .lightbox-caption {
    transition: none !important;
  }
  .lightbox-img { transform: none !important; }
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.contact-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 3px;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}

.contact-phone a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.contact-phone a:hover {
  color: var(--color-primary);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
}

.wa-link:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.wa-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-whatsapp-cta {
  text-align: left;
  margin-top: 1.5em;
}

.contact-detail-icon.email-icon {
  background: var(--color-primary);
  color: #fff;
}

.contact-detail-icon.phone-icon {
  background: var(--color-accent);
  color: #fff;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: var(--color-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
