@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --pine:      #1a2e1e;
  --moss:      #2d4a32;
  --sage:      #4a7c59;
  --stone:     #8a8075;
  --cream:     #f4f0e8;
  --parchment: #ede8dc;
  --snow:      #fafaf7;
  --ember:     #c4622d;
  --sky:       #5b8fa8;
  --ink:       #1a1c18;
  --radius:    4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

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

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(26, 46, 30, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand__icon { border-radius: 6px; width: 26px; height: 26px; opacity: 0.9; }
.brand__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px; font-weight: 700;
  color: var(--cream); line-height: 1.1;
}
.brand__sub {
  font-size: 10px; color: rgba(244,240,232,0.5);
  letter-spacing: 0.8px; text-transform: uppercase;
}

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

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 2px; padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn--ghost {
  border-color: rgba(244,240,232,0.28);
  color: rgba(244,240,232,0.8);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn--primary { background: var(--ember); color: #fff; }
.btn--primary:hover { background: #d4733f; }
.btn--dark { background: var(--pine); color: var(--cream); }
.btn--dark:hover { background: var(--moss); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh; min-height: 560px; max-height: 900px;
  overflow: hidden;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero__grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,28,24,0.94) 0%,
    rgba(26,28,24,0.42) 40%,
    rgba(26,28,24,0.08) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 56px 52px;
  animation: heroUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(244,240,232,0.55);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::after {
  content: ''; display: block;
  width: 44px; height: 1px;
  background: rgba(244,240,232,0.3);
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 900;
  color: var(--cream);
  line-height: 0.95; letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: rgba(244,240,232,0.68);
}

.pills { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 18px;
  background: rgba(244,240,232,0.09);
  border: 1px solid rgba(244,240,232,0.18);
  backdrop-filter: blur(8px);
  border-radius: 2px; min-width: 130px;
}
.pill__k {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244,240,232,0.5);
}
.pill__v {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: var(--cream);
}

.hero__scroll {
  position: absolute; bottom: 52px; right: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(244,240,232,0.4);
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  animation: heroUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s both;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(244,240,232,0.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ── PAGE BODY ── */
.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px 64px;
}

/* ── SECTIONS ── */
.section { margin-top: 80px; }

.section-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sage); margin-bottom: 6px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 700;
  color: var(--pine); line-height: 1.2;
  margin-bottom: 22px;
}

/* ── ABOUT + WEATHER ── */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}

.about-text {
  font-size: 15px; line-height: 1.78; color: #3a3d35;
}
.about-text p + p { margin-top: 16px; }

.about-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }

/* ── CARD ── */
.card {
  background: var(--snow);
  border: 1px solid rgba(138,128,117,0.2);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 24px rgba(26,46,30,0.05);
}

/* ── WEATHER ── */
.wx-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}

.wx-now {
  display: flex; align-items: flex-end; gap: 18px;
  padding: 20px 22px;
  background: var(--pine);
  border-radius: 3px;
  margin-bottom: 14px;
}

.wx__temp {
  font-family: 'Playfair Display', serif;
  font-size: 60px; font-weight: 900;
  color: var(--cream); line-height: 1;
}

.wx-now-right { padding-bottom: 8px; }

.wx__desc {
  font-size: 15px; color: rgba(244,240,232,0.8);
  margin-bottom: 10px;
}

.wx-meta { display: flex; gap: 18px; }
.wx-meta-item { display: flex; flex-direction: column; gap: 2px; }
.wx-meta-label {
  font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(244,240,232,0.42);
}
.wx-meta-val { font-size: 14px; font-weight: 500; color: rgba(244,240,232,0.9); }

.wx__days {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 8px;
}

.day {
  padding: 12px 10px;
  background: var(--parchment);
  border: 1px solid rgba(138,128,117,0.15);
  border-radius: 3px;
}
.day__k {
  font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--stone); margin-bottom: 6px;
}
.day__v {
  font-family: 'Playfair Display', serif;
  font-size: 13px; font-weight: 700; color: var(--pine);
}
.day__p { font-size: 11px; color: var(--stone); margin-top: 3px; }

.foot { margin-top: 14px; font-size: 11px; color: var(--stone); }

/* ── MAP + PHOTOS ── */
.map-photos-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px; align-items: start;
  margin-top: 80px;
}

.map-coords {
  font-size: 11px; color: var(--stone);
  letter-spacing: 0.3px; margin-bottom: 12px;
}

.mapframe {
  border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(138,128,117,0.2);
}
.mapframe iframe {
  width: 100%; height: 400px; border: 0; display: block;
}

.map-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* ── PHOTOS ── */
.photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ph {
  display: block;
  border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(138,128,117,0.15);
  background: var(--parchment);
  position: relative;
}
.ph::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,46,30,0);
  transition: background 0.25s;
}
.ph:hover::after { background: rgba(26,46,30,0.1); }
.ph img {
  width: 100%; height: 142px; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.ph:hover img { transform: scale(1.05); }

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 16px;
  margin: 80px 0 0;
  color: var(--stone);
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: rgba(138,128,117,0.25);
}

/* ── FOOTER ── */
.footer {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 28px; margin-top: 80px;
  border-top: 1px solid rgba(138,128,117,0.22);
  font-size: 12px; color: var(--stone); letter-spacing: 0.3px;
}
.footer a {
  border-bottom: 1px solid rgba(138,128,117,0.3);
  padding-bottom: 1px; transition: all 0.2s;
}
.footer a:hover { color: var(--pine); border-color: var(--pine); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .topbar { padding: 12px 18px; }
  .hero__content { padding: 36px 24px 40px; }
  .hero__scroll { right: 24px; bottom: 40px; }
  .hero__title { font-size: clamp(40px, 10vw, 68px); }
  .about-row { grid-template-columns: 1fr; }
  .map-photos-row { grid-template-columns: 1fr; margin-top: 48px; }
  .wx__days { grid-template-columns: repeat(3,1fr); }
  .page { padding: 0 18px 48px; }
  .section { margin-top: 56px; }
}

@media (max-width: 600px) {
  .hero__content { padding: 24px 18px 28px; }
  .hero__scroll { display: none; }
  .pills { gap: 8px; }
  .pill { min-width: 110px; padding: 10px 14px; }
  .pill__v { font-size: 17px; }
  .wx__days { grid-template-columns: repeat(2,1fr); }
  .actions .btn--ghost:not(:last-child) { display: none; }
  .section { margin-top: 44px; }
  .divider, .footer { margin-top: 44px; }
}
