/* Part 2 — Map, Story, Activities, Reviews, FAQ, Contact, Footer, Tweaks */

/* === MAP === */
.map-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 960px) { .map-wrap { grid-template-columns: 1fr; } }
.map-canvas {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: oklch(0.5 0.06 120);
  box-shadow: var(--shadow-md);
}
.map-embed { width: 100%; height: 100%; border: 0; display: block; }
[data-theme="dark"] .map-embed { filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.92); }
.map-open-btn {
  position: absolute; bottom: 18px; right: 18px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-radius: 999px;
  background: var(--bg); color: var(--ink);
  font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  transition: transform 0.2s;
}
.map-open-btn:hover { transform: translateY(-1px); }

.map-overlay-corner {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  padding: 14px 18px;
  background: oklch(from var(--bg) l c h / 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-sm);
  border: 1px solid var(--line-soft);
}
.map-overlay-corner.top-left { top: 20px; left: 20px; }
.map-overlay-corner.top-right { top: 20px; right: 20px; text-align: right; }
.map-overlay-corner .mono { font-size: 10px; letter-spacing: 0.18em; color: var(--ink); }
.map-coord, .map-sub { font-family: var(--mono); font-size: 10px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.05em; }

.map-legend {
  position: absolute;
  bottom: 20px; right: 20px;
  background: oklch(from var(--bg) l c h / 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }

.map-sidebar { display: flex; flex-direction: column; gap: 36px; justify-content: space-between; }
.map-para { display: flex; flex-direction: column; gap: 18px; }
.map-para p { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.map-distances ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 14px; }
.map-distances li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.map-distances li .dotted { flex: 1; border-bottom: 1px dotted var(--line); height: 1px; margin: 0 8px; transform: translateY(4px); }
.map-distances li .mono { color: var(--ink-3); font-size: 10.5px; white-space: nowrap; }

/* === STORY === */
.story { background: var(--bg-2); }
.story-wrap { margin-top: 20px; }
.timeline {
  position: relative;
  height: 60px;
  margin-bottom: 60px;
  padding: 0 20px;
}
.timeline-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.timeline-node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.timeline-year { color: var(--ink-3); transition: color 0.2s; }
.timeline-node.active .timeline-year { color: var(--ink); }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--ink-3);
  transition: all 0.2s;
}
.timeline-node.active .timeline-dot { background: var(--copper); border-color: var(--copper); transform: scale(1.3); }
.timeline-node:hover .timeline-dot { border-color: var(--ink); }

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .story-content { grid-template-columns: 1fr; } }
.story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.story-year-huge {
  position: absolute;
  bottom: 20px; left: 24px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 108px;
  line-height: 0.9;
  color: oklch(0.98 0 0 / 0.9);
  font-style: normal;
}
.story-title { font-size: clamp(36px, 4.5vw, 60px); font-style: normal; font-weight: 800; letter-spacing: -0.025em; color: var(--ink); margin: 12px 0 24px; }
.story-body { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 40px; }
.story-nav { display: flex; align-items: center; gap: 20px; }
.story-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--ink);
}
.story-arrow:hover:not(:disabled) { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.story-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.story-counter { color: var(--ink-3); }

/* === ACTIVITIES === */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
.activity-card {
  background: var(--bg);
  padding: 28px 24px;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.activity-card:hover { background: var(--bg-2); }
.activity-top { display: flex; justify-content: space-between; align-items: flex-start; }
.activity-icon { font-size: 28px; color: var(--wood); font-family: var(--serif); }
.activity-num { color: var(--ink-3); font-size: 10px; }
.activity-name { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-top: 20px; }
.activity-type { font-size: 13px; color: var(--ink-2); }
.activity-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.activity-dist, .activity-time { color: var(--ink-3); font-size: 10.5px; }
.activity-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

/* === REVIEWS === */
.reviews { background: var(--ink); color: var(--bg); }
.reviews .section-title, .reviews .eyebrow, .reviews .section-lead { color: var(--bg); }
.reviews .eyebrow { color: oklch(from var(--bg) l c h / 0.6); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; margin-bottom: 60px; }
.reviews-header .section-header { margin-bottom: 0; }
.reviews-score { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: var(--bg); }
.airbnb-logo { color: oklch(0.65 0.18 15); }
.score-main { display: flex; align-items: baseline; gap: 8px; font-family: var(--serif); }
.score-main .star { color: oklch(0.75 0.15 70); font-size: 28px; }
.score-num { font-size: 64px; line-height: 1; letter-spacing: -0.02em; }
.score-sub { color: oklch(from var(--bg) l c h / 0.6); }

.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track { display: flex; transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1); }
.review-slide { flex: 0 0 100%; padding: 0 2px; }
.review-card { background: oklch(from var(--bg) l c h / 0.05); border: 1px solid oklch(from var(--bg) l c h / 0.1); padding: 50px; border-radius: var(--r-lg); min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
.review-stars { color: oklch(0.75 0.15 70); font-size: 18px; letter-spacing: 4px; margin-bottom: 20px; }
.review-text { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 2.4vw, 32px); line-height: 1.35; font-style: normal; letter-spacing: -0.01em; margin-bottom: 40px; max-width: 800px; }
.review-meta { display: flex; align-items: center; gap: 16px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wood); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; font-weight: 700; font-style: normal; color: #fff; }
.review-name { font-size: 15px; }
.review-origin { color: oklch(from var(--bg) l c h / 0.6); }
.review-stay { color: oklch(from var(--bg) l c h / 0.5); margin-top: 2px; font-size: 10.5px; }

.reviews-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; }
.reviews-dots { display: flex; gap: 8px; }
.dot-btn { width: 28px; height: 2px; background: oklch(from var(--bg) l c h / 0.25); transition: all 0.2s; cursor: pointer; padding: 0; border-radius: 0; }
.dot-btn.active { background: var(--bg); width: 48px; }
.reviews-arrows { display: flex; gap: 8px; }
.reviews-arrows button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid oklch(from var(--bg) l c h / 0.3); color: var(--bg); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.reviews-arrows button:hover { background: var(--bg); color: var(--ink); }

/* === FAQ === */
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; gap: 40px; } }
.faq-aside { margin-top: 30px; color: var(--ink-2); }
.faq-aside p { margin-bottom: 16px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.arrow-link:hover { color: var(--copper); border-color: var(--copper); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--wood); }
.faq-num { color: var(--ink-3); font-family: var(--mono); font-size: 11px; width: 30px; }
.faq-q-text { flex: 1; }
.faq-icon { font-size: 28px; color: var(--ink-3); font-family: var(--serif); transition: color 0.2s; }
.faq-item.open .faq-icon { color: var(--copper); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 50px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 0 28px 50px; }
.faq-a p { color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 640px; }

/* === CONTACT === */
.contact { background: var(--bg-2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 50px; } }
.contact-title { font-size: clamp(48px, 6vw, 84px); margin: 16px 0 16px; }
.contact-lead { font-size: 17px; color: var(--ink-2); margin-bottom: 40px; max-width: 480px; }

.contact-airbnb {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.airbnb-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.airbnb-avatar { width: 40px; height: 40px; border-radius: 50%; background: oklch(0.95 0.04 15); color: oklch(0.55 0.18 15); display: flex; align-items: center; justify-content: center; }
.airbnb-name { font-size: 15px; font-weight: 500; }
.airbnb-sub { color: var(--ink-3); margin-top: 2px; font-size: 10.5px; }
.superhost-badge { margin-left: auto; width: 32px; height: 32px; border-radius: 50%; background: oklch(0.95 0.04 15); color: oklch(0.55 0.18 15); display: flex; align-items: center; justify-content: center; }
.airbnb-body { padding-top: 16px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.airbnb-body p { color: var(--ink-3); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.airbnb-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.airbnb-link:hover { color: var(--copper); border-color: var(--copper); }

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.channel { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--r-md); transition: all 0.2s; color: var(--ink); }
.channel:hover { border-color: var(--ink); transform: translateX(4px); }
.channel-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); display: flex; align-items: center; justify-content: center; color: var(--ink); }

.contact-form { background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-form label span { color: var(--ink-3); font-size: 10px; letter-spacing: 0.12em; }
.contact-form input, .contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  resize: none;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--copper); }

/* === FOOTER === */
.footer { background: var(--ink); color: var(--bg); padding: 80px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { color: var(--bg); margin-bottom: 20px; }
.footer-name { font-family: var(--serif); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; font-style: normal; margin-bottom: 12px; }
.footer-tagline { color: oklch(from var(--bg) l c h / 0.6); max-width: 360px; line-height: 1.5; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: oklch(from var(--bg) l c h / 0.65);
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--ember); }

.footer-col .mono { color: oklch(from var(--bg) l c h / 0.5); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--bg); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--copper); }

.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid oklch(from var(--bg) l c h / 0.15); color: oklch(from var(--bg) l c h / 0.4); font-size: 10.5px; }

/* === TWEAKS trigger === */
.tweaks-trigger {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 99;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.3s;
}
.tweaks-trigger:hover { transform: rotate(90deg); }
.tweaks-panel h4 { color: var(--ink); font-family: var(--mono); }

/* season tint accents */
[data-season] .hero-eyebrow .dot { background: var(--seasonal); }

/* dark mode review adjustments */
[data-theme="dark"] .reviews { background: var(--bg-3); }
[data-theme="dark"] .reviews .section-title { color: var(--ink); }
[data-theme="dark"] .reviews .eyebrow { color: var(--ink-3); }
[data-theme="dark"] .review-card { background: oklch(from var(--ink) l c h / 0.05); border-color: var(--line); }
[data-theme="dark"] .reviews-dots .dot-btn { background: var(--line); }
[data-theme="dark"] .reviews-dots .dot-btn.active { background: var(--ink); }
[data-theme="dark"] .reviews-arrows button { border-color: var(--line); color: var(--ink); }
[data-theme="dark"] .reviews-arrows button:hover { background: var(--ink); color: var(--bg); }
[data-theme="dark"] .reviews-score, [data-theme="dark"] .review-text, [data-theme="dark"] .review-name { color: var(--ink); }
[data-theme="dark"] .reviews-score .score-sub, [data-theme="dark"] .review-origin, [data-theme="dark"] .review-stay { color: var(--ink-3); }

[data-theme="dark"] .footer { background: oklch(0.12 0.015 55); }
