:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE6D6;
  --text: #3D2B1F;
  --text-muted: #8B7355;
  --accent: #C4663A;
  --accent-hover: #A8522D;
  --sage: #8B9F7B;
  --sage-light: #A8B89A;
  --walnut: #5C4033;
  --cream: #FFF8F0;
  --card-shadow: 0 4px 20px rgba(61,43,31,0.08);
  --card-shadow-hover: 0 12px 40px rgba(61,43,31,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.pinboard-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-alt);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 1.4rem;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--walnut);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--cream);
  transition: color 0.3s;
}

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

.mobile-nav-link.wa-link {
  font-family: var(--font-body);
  font-size: 1.2rem;
  background: #25D366;
  padding: 12px 28px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  position: sticky;
  top: 56px;
  z-index: 90;
  background: rgba(245,240,232,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bg-alt);
  padding: 12px 32px;
}

.filter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--bg-alt);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.filter-chip.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.filter-chip:hover:not(.active) {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ===== CARD CONSTELLATION ===== */
.card-constellation {
  padding: 24px 32px 60px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(139,115,85,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,102,58,0.02) 0%, transparent 50%);
}

.card-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 10px;
  gap: 24px;
}

/* ===== CARD BASE ===== */
.card {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.4s, display 0.4s;
  position: relative;
}

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

.card-hidden {
  display: none !important;
}

/* Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO CARD ===== */
.hero-card {
  grid-column: span 2;
  grid-row: span 30;
  position: relative;
  min-height: 300px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.85) 0%, rgba(61,43,31,0.3) 50%, transparent 100%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  color: white;
  line-height: 1.1;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.hero-location {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* ===== INTRO CARD ===== */
.intro-card {
  grid-row: span 22;
  background: var(--cream);
  padding: 32px;
  border-left: 4px solid var(--sage);
  position: relative;
}

.intro-heading {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.intro-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.compass-rose {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  opacity: 0.15;
  border: 2px solid var(--text);
  border-radius: 50%;
}

.compass-rose::before,
.compass-rose::after {
  content: '';
  position: absolute;
  background: var(--text);
}

.compass-rose::before {
  width: 2px;
  height: 20px;
  top: 3px;
  left: 12px;
}

.compass-rose::after {
  width: 20px;
  height: 2px;
  top: 12px;
  left: 3px;
}

/* ===== SERVICE CARDS ===== */
.service-card-1 {
  grid-row: span 24;
}

.service-card-2 {
  grid-row: span 22;
}

.service-card-3 {
  grid-row: span 24;
  display: flex;
  min-height: 220px;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}

.service-card-1 .service-img-wrap,
.service-card-2 .service-img-wrap {
  height: 55%;
}

.service-card-2 .service-img-wrap {
  height: 50%;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-img-wrap.landscape {
  width: 40%;
  flex-shrink: 0;
}

.service-img-wrap.landscape img {
  height: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-content {
  padding: 24px;
  background: var(--cream);
}

.landscape-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
}

.service-tag.sage {
  background: var(--sage);
}

.handwritten-quote {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 16px;
}

/* ===== GALLERY CARD ===== */
.gallery-card {
  grid-row: span 30;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(245,240,232,0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption-text {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.gallery-arrow {
  color: var(--accent);
  font-size: 1rem;
}

/* ===== ABOUT CARD ===== */
.about-card {
  grid-column: span 2;
  grid-row: span 20;
  display: flex;
  background: var(--cream);
}

.about-img-wrap {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.about-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.about-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-divider {
  width: 60px;
  height: 2px;
  background: var(--sage);
}

/* ===== STATS CARD ===== */
.stats-card {
  grid-row: span 14;
  background: var(--walnut);
  color: var(--cream);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,248,240,0.15);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.8;
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  grid-row: span 18;
  background: var(--cream);
  padding: 32px;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 28px;
}

.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 20px 0 12px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.testimonial-location {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== CTA CARD ===== */
.cta-card {
  grid-row: span 20;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card:hover {
  transform: translateY(-10px);
}

.cta-compass-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-compass-bg::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: none;
}

.btn-cta:hover::after {
  left: 100%;
  transition: left 0.6s ease;
}

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

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
}

.btn-secondary:hover {
  border-color: white;
  transform: scale(1.03);
}

/* ===== MAP CARD ===== */
.map-card {
  grid-row: span 18;
  position: relative;
}

.map-card iframe {
  display: block;
}

.map-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--cream);
  color: var(--text);
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER ===== */
.pinboard-footer {
  background: var(--walnut);
  color: var(--cream);
  padding: 60px 32px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,248,240,0.75);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-hours p {
  font-size: 0.9rem;
  color: rgba(255,248,240,0.75);
  margin-bottom: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,248,240,0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,248,240,0.5);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

/* ===== DESTINATIONS PAGE ===== */
.destinations-header {
  padding: 80px 32px 40px;
  text-align: center;
  background: var(--bg);
  background-image: radial-gradient(ellipse at center, rgba(196,102,58,0.04) 0%, transparent 70%);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}

.dest-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 16px;
}

.dest-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.destination-grid-section {
  background: var(--bg);
  padding: 0 32px 60px;
}

.destination-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

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

.destination-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,31,0.8) 0%, transparent 60%);
  transition: background 0.4s;
}

.destination-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(61,43,31,0.88) 0%, rgba(61,43,31,0.1) 70%);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.destination-card:hover .dest-card-content {
  transform: translateY(-8px);
}

.dest-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 4px;
}

.dest-arrow {
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 0.9rem;
  margin-left: 6px;
}

.destination-card:hover .dest-arrow {
  opacity: 1;
}

.dest-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Destinations CTA Band */
.dest-cta-band {
  padding: 60px 32px;
  background: var(--walnut);
  text-align: center;
}

.dest-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.dest-cta-subtext {
  font-size: 1rem;
  color: rgba(255,248,240,0.7);
  max-width: 600px;
  margin: 0 auto 24px;
}

.dest-cta-btn {
  background: var(--accent);
  color: white;
  padding: 16px 40px;
}

.dest-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(196,102,58,0.3);
}

/* ===== CONTACT PAGE ===== */
.contact-header {
  padding: 80px 32px 40px;
  text-align: center;
  background: var(--bg);
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-subtext {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-cards-section {
  padding: 0 32px 40px;
  background: var(--bg);
}

.contact-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.contact-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 16px;
}

.sage-bg {
  background: var(--bg-alt);
  color: var(--sage);
}

.accent-bg {
  background: var(--bg-alt);
  color: var(--accent);
}

.walnut-bg {
  background: var(--bg-alt);
  color: var(--walnut);
}

.contact-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-pill-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}

.contact-pill-btn:hover {
  background: var(--accent);
  color: white;
}

/* Contact Form */
.contact-form-section {
  padding: 40px 32px 60px;
  background: var(--bg);
}

.contact-form-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
}

.contact-form-card {
  background: var(--cream);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 24px;
}

.trip-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--bg-alt);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,102,58,0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  background: var(--accent);
  color: white;
  width: 100%;
  border: none;
  padding: 16px 32px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}

/* Decorative Column */
.contact-decorative {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.decorative-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  max-width: 320px;
}

.decorative-img-frame img {
  width: 100%;
  display: block;
}

.decorative-sticky-note {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--text-muted);
  transform: rotate(-6deg);
  background: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
}

.decorative-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Map Section */
.map-section {
  padding: 0 32px 60px;
  background: var(--bg);
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
}

.map-container iframe {
  display: block;
}

.map-visit-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--cream);
  color: var(--text);
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== BREATHING ANIMATIONS (Living Pinboard) ===== */
@media (prefers-reduced-motion: no-preference) {
  @keyframes breathe-shadow {
    0%, 100% { box-shadow: 0 4px 20px rgba(61,43,31,0.08); }
    50% { box-shadow: 0 4px 20px rgba(61,43,31,0.12); }
  }

  @keyframes breathe-rotate {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }

  @keyframes breathe-sway {
    0%, 100% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
  }

  @keyframes breathe-scale {
    0%, 100% { transform: scale(1.0); }
    50% { transform: scale(1.03); }
  }

  @keyframes breathe-border-color {
    0%, 100% { border-left-color: var(--sage); }
    50% { border-left-color: var(--accent); }
  }

  @keyframes ken-burns-zoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.08); }
  }

  @keyframes ken-burns-drift {
    0% { transform: scale(1.0) translateX(0); }
    100% { transform: scale(1.04) translateX(-3%); }
  }

  @keyframes rotate-compass {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @keyframes stamp-rotate {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }

  @keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.1); }
  }

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

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

  @keyframes icon-rock {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
  }

  @keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196,102,58,0); }
    50% { box-shadow: 0 0 20px 4px rgba(196,102,58,0.3); }
  }

  @keyframes sticky-sway {
    0%, 100% { transform: rotate(-6deg); }
    50% { transform: rotate(-4deg); }
  }

  @keyframes breathe-img {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
  }

  /* Apply breathing to cards via nth-child */
  .card:nth-child(odd) { animation: breathe-shadow 5s ease-in-out infinite; }
  .card:nth-child(even) { animation: breathe-shadow 7s ease-in-out infinite 0.5s; }
  .card:nth-child(3n) { animation: breathe-shadow 6s ease-in-out infinite 1s; }

  .hero-bg {
    animation: ken-burns-zoom 20s ease-in-out infinite alternate;
  }

  .hero-stamp {
    animation: stamp-rotate 8s ease-in-out infinite;
  }

  .intro-card {
    animation: breathe-border-color 6s ease-in-out infinite;
  }

  .service-tag {
    animation: pulse-tag 4s ease-in-out infinite;
  }

  .gallery-card > img {
    animation: ken-burns-drift 25s ease-in-out infinite alternate;
  }

  .quote-mark {
    animation: breathe-rotate 6s ease-in-out infinite, breathe-scale 6s ease-in-out infinite;
  }

  .handwritten-quote {
    animation: breathe-sway 7s ease-in-out infinite;
  }

  .cta-compass-bg {
    animation: rotate-compass 60s linear infinite;
  }

  .map-badge, .map-visit-badge {
    animation: pulse-badge 5s ease-in-out infinite;
  }

  .whatsapp-float {
    animation: pulse-whatsapp 3s ease-in-out infinite;
  }

  .contact-icon-circle {
    animation: icon-rock 4s ease-in-out infinite;
  }

  .contact-info-card:nth-child(2) .contact-icon-circle {
    animation-delay: 0.5s;
  }

  .contact-info-card:nth-child(3) .contact-icon-circle {
    animation-delay: 1s;
  }

  .dest-cta-btn {
    animation: glow-pulse 3s ease-in-out infinite;
  }

  .decorative-sticky-note {
    animation: sticky-sway 5s ease-in-out infinite;
  }

  .decorative-img-frame img {
    animation: breathe-img 8s ease-in-out infinite;
  }

  .destination-card:nth-child(1) img { animation: ken-burns-zoom 22s ease-in-out infinite alternate; }
  .destination-card:nth-child(2) img { animation: ken-burns-drift 28s ease-in-out infinite alternate; }
  .destination-card:nth-child(3) img { animation: ken-burns-zoom 25s ease-in-out infinite alternate-reverse; }
  .destination-card:nth-child(4) img { animation: ken-burns-drift 20s ease-in-out infinite alternate-reverse; }
  .destination-card:nth-child(5) img { animation: ken-burns-zoom 30s ease-in-out infinite alternate; }
  .destination-card:nth-child(6) img { animation: ken-burns-drift 24s ease-in-out infinite alternate; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }

  .gallery-caption {
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-inner {
    padding: 12px 20px;
  }

  .filter-bar {
    padding: 10px 20px;
    top: 48px;
  }

  .card-constellation {
    padding: 16px 20px 40px;
  }

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

  .hero-card {
    grid-column: span 1;
    grid-row: span 28;
    min-height: 280px;
  }

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

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-content {
    padding: 24px;
  }

  .about-card {
    grid-column: span 1;
    flex-direction: column;
  }

  .about-img-wrap {
    width: 100%;
    height: 200px;
  }

  .about-img-wrap img {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .about-content {
    padding: 24px;
  }

  .about-heading {
    font-size: 1.4rem;
  }

  .service-card-3 {
    flex-direction: column;
  }

  .service-img-wrap.landscape {
    width: 100%;
    height: 180px;
  }

  .service-img-wrap.landscape img {
    border-radius: var(--radius) var(--radius) 0 0;
  }

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

  .destination-card {
    aspect-ratio: 4/3;
  }

  .dest-heading {
    font-size: 2rem;
  }

  .destinations-header {
    padding: 70px 20px 30px;
  }

  .destination-grid-section {
    padding: 0 20px 40px;
  }

  .dest-cta-band {
    padding: 40px 20px;
  }

  .dest-cta-heading {
    font-size: 1.5rem;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .contact-header {
    padding: 70px 20px 30px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards-section {
    padding: 0 20px 30px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-decorative {
    display: none;
  }

  .contact-form-section {
    padding: 20px 20px 40px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .map-section {
    padding: 0 20px 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pinboard-footer {
    padding: 40px 20px 16px;
  }

  .gallery-caption {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-card {
    min-height: 240px;
  }

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

  .filter-chip {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
}
