/* ========================================
   Men's Wellness Retreat – Landing Page
   Color scheme: Warm & Calm (earth tones)
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,700;1,500&display=swap');

/* --- Custom Properties --- */
:root {
  --color-bg: #FAF6F1;
  --color-bg-alt: #F0E9E0;
  --color-text: #3D3229;
  --color-text-light: #6B5D52;
  --color-accent: #7A8B6F;
  --color-accent-hover: #647556;
  --color-warm: #C4956A;
  --color-warm-light: #E8D5C0;
  --color-border: #DDD4C9;
  --color-white: #FFFFFF;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;

  --max-width: 960px;
  --spacing-section: 6rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  font-size: 2.75rem;
  color: var(--color-white);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--spacing-section) 0;
  scroll-margin-top: var(--nav-height, 76px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--color-text);
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
}

.nav-cta {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.nav-cta:hover {
  color: var(--color-text);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('2025-11-17 17-21-54 001.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2.5rem;
  background: var(--color-warm);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: #B8855A;
  color: var(--color-white);
}

.hero-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}

.hero-arrow:hover {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Vision --- */
.vision {
  background: var(--color-bg);
}

.vision-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.vision-content p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

.vision-content .highlight {
  color: var(--color-text);
  font-weight: 500;
}

/* --- Vision Pillars --- */
.vision-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4.5rem;
  margin-top: 4.5rem;
}

.vision-pillar {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-warm-light);
}

.vision-pillar-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vision-pillar svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-warm);
  stroke-width: 1.75;
  flex-shrink: 0;
}

.vision-pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
}

.vision-pillar-text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* --- Schedule --- */
.schedule {
  background: var(--color-white);
}

/* Click hint */
.schedule-hint {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.schedule-hint svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* Master-detail layout wrapper (desktop) */
.schedule-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1px;
  background: var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.schedule-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

/* 2-col grid when inside the master-detail layout */
.schedule-layout .schedule-timeline {
  grid-template-columns: repeat(2, 1fr);
  border-radius: 0;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 2rem 1rem;
  background: var(--color-bg);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  user-select: none;
}

.schedule-day:hover:not(.schedule-day--locked):not(.active) {
  background: var(--color-bg-alt);
}

.schedule-day--locked {
  cursor: default;
  opacity: 0.7;
  filter: grayscale(0.6);
}

.schedule-day.active {
  background: var(--color-accent);
}

.schedule-day.active .day-label {
  color: rgba(255, 255, 255, 0.65);
}

.schedule-day.active svg {
  color: #fff;
}

.schedule-day.active .day-title {
  color: #fff;
}

.schedule-day svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
  color: var(--color-accent);
}

.day-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.day-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* Detail panel */
.schedule-detail {
  background: var(--color-bg-alt);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  min-height: 260px;
}

.schedule-description {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.schedule-description + .schedule-description {
  margin-top: 0.55rem;
}

.schedule-description + .schedule-hint {
  margin-top: 0.9rem;
}

/* Day-specific detail content */
@keyframes detail-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes detail-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

.schedule-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  position: relative;
  animation: detail-in 0.25s ease;
}

.schedule-detail-content.is-closing {
  animation: detail-out 0.2s ease forwards;
  pointer-events: none;
}

.schedule-detail-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text-light);
  transition: color 0.15s;
  line-height: 1;
}

.schedule-detail-close:hover {
  color: var(--color-text);
}

.schedule-detail-close svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.detail-day-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  font-weight: 500;
}

.detail-day-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  line-height: 1.3;
}

.detail-day-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Route stats */
.route-stats {
  display: flex;
  gap: 1.25rem;
  min-height: 1.2rem;
}

.route-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.route-stat svg {
  width: 13px;
  height: 13px;
  color: var(--color-accent);
  stroke-width: 2;
  flex-shrink: 0;
}

/* Map */
.schedule-map {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid var(--color-border);
  isolation: isolate;
}

/* Waypoint marker – solid (start / finish) */
.map-waypoint-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.map-waypoint-marker:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.map-waypoint-marker svg {
  width: 12px;
  height: 12px;
  color: #fff;
  stroke-width: 2.5;
}

/* Outline variant – POI waypoints */
.map-waypoint-marker--outline {
  background: var(--color-bg);
  border: 1.5px solid var(--color-accent);
}

.map-waypoint-marker--outline svg {
  color: var(--color-accent);
}

/* Custom zoom controls */
.map-zoom-control {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.map-zoom-btn {
  width: 32px;
  height: 32px;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.map-zoom-btn:hover {
  background: var(--color-bg-alt);
}

.map-zoom-btn svg {
  width: 14px;
  height: 14px;
  color: var(--color-text);
  stroke-width: 2;
}

/* Attribution watermark */
.leaflet-control-attribution {
  background: rgba(250, 246, 241, 0.8) !important;
  backdrop-filter: blur(4px);
  color: var(--color-text-light) !important;
  font-family: var(--font-body) !important;
  font-size: 0.6rem !important;
  padding: 2px 6px !important;
  box-shadow: none !important;
  border-radius: 4px 0 0 0 !important;
}

.leaflet-control-attribution a {
  color: var(--color-accent) !important;
}

/* Leaflet popup – match website design */
.leaflet-popup-content-wrapper {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 0.85rem;
  padding: 0;
}

.leaflet-popup-content {
  margin: 0.6rem 0.9rem !important;
}

.leaflet-popup-tip {
  background: var(--color-bg);
}

.leaflet-popup-close-button {
  color: var(--color-text-light) !important;
  font-size: 1rem !important;
  padding: 4px 6px !important;
}

.map-popup-label {
  font-weight: 500;
  color: var(--color-text);
}

.schedule-note-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-accent-hover);
  font-weight: 500;
  flex-direction: row;
  width: fit-content;
  margin: 0 auto;
  grid-column: 1 / -1;
  background: var(--color-bg);
  width: 100%;
  padding: 1.25rem 2rem;
  box-sizing: border-box;
}

.schedule-note-text svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* --- Bike Accordion --- */
.bike-accordion {
  margin-top: 4rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg);
}

.bike-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.bike-accordion-trigger:hover { background: var(--color-bg-alt); }

.bike-accordion-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bike-accordion.is-open .bike-accordion-chevron {
  transform: rotate(180deg);
}

.bike-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.bike-accordion-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--color-border);
}

.bike-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-image {
  width: 100%;
  max-width: 340px;
  object-fit: contain;
}

.bike-info-columns {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bike-info-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
  margin-top: 1.25rem;
}

.bike-info-col-title:first-child { margin-top: 0; }

.bike-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bike-spec-list li {
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.spec-key {
  color: var(--color-text-light);
  min-width: 5rem;
  flex-shrink: 0;
}

.spec-val { font-weight: 400; }

.bike-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bike-check-list li {
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bike-check-list li svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
  stroke-width: 2.5;
}

/* --- Details Block --- */
.details-block {
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.details-facts {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.details-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
}

.details-fact svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 1.5;
  color: var(--color-accent);
  flex-shrink: 0;
}

.fact-value {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
}

.fact-note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.1rem;
}

.details-divider {
  height: 1px;
  background: var(--color-border);
  margin: 1.75rem 0;
}

.details-prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.details-prices .details-fact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.details-prices .fact-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.details-prices .fact-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.price-available {
  display: block;
  font-size: 0.78rem;
  color: var(--color-warm-light);
  margin-top: 0.5rem;
}

/* --- About --- */
.about {
  background: var(--color-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 260px;
  height: 350px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.about-text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  white-space: pre-line;
}

/* --- Gallery --- */
.gallery {
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-viewport {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.gallery-viewport.dragging {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-slide {
  min-width: 100%;
}

.gallery-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.gallery-image-placeholder {
  width: 100%;
  height: 440px;
  background: var(--color-warm-light);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.gallery-btn:hover {
  background: var(--color-white);
}

.gallery-btn-prev { left: 1rem; }
.gallery-btn-next { right: 1rem; }

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: var(--color-white);
}

.gallery-caption {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin: 0;
}

.gallery-dots {
  display: flex;
  gap: 0.4rem;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.gallery-dot.active {
  background: var(--color-warm);
}

/* --- Conversations --- */
.conversations {
  background: var(--color-bg-alt);
}

.conversations-body {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.conversations-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  white-space: pre-line;
}

.conversations-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* --- Accommodation --- */
.accommodation {
  background: var(--color-bg-alt);
}

.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.accommodation-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.accommodation-image-wrap {
  position: relative;
}

.accommodation-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.accommodation-image-placeholder {
  width: 100%;
  height: 260px;
  background: var(--color-warm-light);
}

.accommodation-info {
  padding: 1.75rem;
}

.accommodation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.accommodation-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text);
}

.accommodation-price-block {
  text-align: right;
}

.accommodation-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  line-height: 1.1;
}

.accommodation-price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.accommodation-note {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-text);
  background: rgba(250, 246, 241, 0.88);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  margin: 0;
}

.accommodation-available {
  position: absolute;
  top: 0.9rem;
  right: 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 246, 241, 0.75);
}

/* --- Food ---
   Not a photo-plus-cards section: a hand-set menu instead. Row I sits
   left-aligned, row II right-aligned — an asymmetric little break from
   the uniform grid, without tipping into anything gimmicky. */
.food {
  background: var(--color-bg);
}

.food-menu {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3rem;
}

.food-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
  max-width: 30rem;
}

.food-row--a {
  margin-right: auto;
}

.food-row--b {
  grid-template-columns: 1fr auto;
  margin-left: auto;
  text-align: right;
}

.food-row--b .food-row-number { order: 2; }
.food-row--b .food-row-body   { order: 1; }

.food-row-number {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.25rem, 6vw, 5rem);
  line-height: 0.75;
  color: var(--color-warm);
  opacity: 0.85;
}

.food-row-title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.food-row-text {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .food-row,
  .food-row--b {
    grid-template-columns: auto 1fr;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .food-row--b .food-row-number { order: 0; }
  .food-row--b .food-row-body   { order: 0; }
}

/* --- Contact --- */
.contact {
  background: var(--color-text);
}

.contact h2 {
  color: var(--color-white);
}

.contact-intro-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.contact .details-block {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact .details-fact {
  color: var(--color-white);
}

.contact .details-fact svg {
  color: var(--color-warm-light);
}

.contact .fact-value {
  color: var(--color-white);
}

.contact .fact-note {
  color: rgba(255, 255, 255, 0.5);
}

.contact .details-divider {
  background: rgba(255, 255, 255, 0.12);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
}

.contact-info {
  padding: 2.5rem;
  background: var(--color-bg-alt);
}

.contact-info h3 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: var(--color-text-light);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.contact-link:hover {
  border-color: var(--color-accent);
  background: var(--color-bg);
  color: var(--color-text);
}

.contact-link svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

.form-submit {
  padding: 0.85rem 2rem;
  background: var(--color-warm);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: #B8855A;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: default;
}

/* Bot trap: kept out of sight and out of the tab order, but not
   display:none, which the smarter crawlers check for. */
.form-decoy {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.form-status:empty {
  display: none;
}

.form-status--pending {
  color: var(--color-text-light);
}

.form-status--success {
  color: var(--color-warm);
}

.form-status--error {
  color: #B4453C;
}

/* --- Footer --- */
.footer {
  padding: 2rem 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 768px) {
  :root {
    --spacing-section: 4rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

.about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    margin: 0 auto;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .contact-info {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .schedule-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-layout .schedule-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-detail {
    min-height: auto;
    padding: 1.5rem;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --spacing-section: 3rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-details {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --- FAQ --- */
.faq {
  background: #4A3C33;
  padding: 6rem 0;
}

.faq h2 {
  color: #FAF6F1;
}

.faq-list {
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(250, 246, 241, 0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(250, 246, 241, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #FAF6F1;
  font-family: var(--font-body);
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: rgba(250, 246, 241, 0.45);
  stroke-width: 2;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: rgba(250, 246, 241, 0.8);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250, 246, 241, 0.6);
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s, padding-bottom 0.3s ease;
}

.faq-item.is-open .faq-answer-inner {
  padding-bottom: 1.4rem;
  opacity: 1;
  transform: translateY(0);
}
