:root {
  --bone: #f4efe4;
  --bone-dim: #ece3d2;
  --ink: #2b2420;
  --ink-soft: #5c5248;
  --clay: #b5502f;
  --clay-dark: #8f3d22;
  --palm: #445c40;
  --palm-dark: #32452f;
  --gold: #c99a3d;
  --line: rgba(43, 36, 32, 0.12);

  --shadow-sm: 0 1px 2px rgba(43, 36, 32, 0.08), 0 2px 6px rgba(181, 80, 47, 0.06);
  --shadow-md: 0 4px 10px rgba(43, 36, 32, 0.10), 0 12px 28px rgba(181, 80, 47, 0.10);
  --shadow-lg: 0 10px 24px rgba(43, 36, 32, 0.14), 0 24px 60px rgba(181, 80, 47, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Fraunces', serif;
}

.font-display { font-family: 'Fraunces', serif; }
.font-body { font-family: 'Inter', sans-serif; }
.font-script { font-family: 'Caveat', cursive; }

body, p, span, a, button, li { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, .display { font-family: 'Fraunces', serif; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(244, 239, 228, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-link {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--clay); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after, .nav-link:focus-visible::after { transform: scaleX(1); }

.btn-primary {
  background: var(--clay);
  color: var(--bone);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--clay-dark); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(20, 16, 13, 0.92) 0%, rgba(20, 16, 13, 0.55) 42%, rgba(20, 16, 13, 0.25) 68%, rgba(20, 16, 13, 0.35) 100%),
    linear-gradient(to right, rgba(20, 16, 13, 0.35), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-family: 'Caveat', cursive;
  color: #f0c896;
}

/* ---------- Carousels ---------- */
.carousel-wrap {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  cursor: grab;
  padding: 0.5rem 0.25rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track.dragging .dest-card { pointer-events: none; }

.dest-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.dest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-card-media img { transform: scale(1.06); }

.dest-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,36,32,0.65) 0%, rgba(43,36,32,0.05) 45%, transparent 65%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.dest-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(181,80,47,0.18), rgba(68,92,64,0.10));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.dest-card-tag {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.9);
  color: var(--clay-dark);
  font-weight: 600;
}

.dest-card-title {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.8rem;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.edge-fade {
  position: absolute;
  top: 0;
  bottom: 1.5rem;
  width: 28px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.edge-fade.left {
  left: 0;
  background: linear-gradient(to right, var(--bone), transparent);
}
.edge-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--bone), transparent);
}

.section-eyebrow {
  color: var(--palm);
  font-family: 'Caveat', cursive;
}

/* ---------- Callout ---------- */
.callout {
  background: linear-gradient(135deg, var(--palm), var(--palm-dark));
  color: var(--bone);
  box-shadow: var(--shadow-md);
}

/* ---------- Testimonials (guest photos) ---------- */
.guest-photo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.guest-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guest-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform 0.5s ease;
}
.guest-photo-card:hover img { transform: scale(1.06); }
.guest-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(181,80,47,0.14), rgba(68,92,64,0.08));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone-dim);
}
.footer-link {
  color: var(--bone-dim);
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-link:hover { opacity: 1; transform: translateX(2px); }
