:root {
  --ink: #151515;
  --paper: #e9e9e9;
  --white: #f8f8f6;
  --soft: #dedede;
  --muted: #666;
  --line: #b9b9b9;
  --accent: #ef2b2d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Montserrat", Arial, sans-serif; font-size: 16px; line-height: 1.55; }
a { color: inherit; }
button { font: inherit; }

.topbar { position: sticky; top: 0; z-index: 20; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 5vw, 74px); background: rgba(233,233,233,.95); border-bottom: 1px solid var(--ink); backdrop-filter: blur(14px); }
.brand { display: flex; gap: 10px; align-items: center; color: var(--ink); text-decoration: none; font-size: .84rem; font-weight: 900; letter-spacing: -.02em; }
.brand small { display: block; font-size: .56rem; font-weight: 600; letter-spacing: .18em; }
.brand-mark { width: 30px; height: 30px; display: grid; place-items: center; background: var(--ink); color: var(--accent); font-size: 1.15rem; }
.desktop-nav { display: flex; gap: 28px; }
.desktop-nav a { position: relative; color: var(--ink); text-decoration: none; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--accent); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.language { display: flex; border: 1px solid var(--ink); }
.lang-btn { border: 0; background: transparent; padding: 7px 10px; color: var(--ink); font-size: .68rem; font-weight: 800; cursor: pointer; }
.lang-btn.active { background: var(--ink); color: white; }

.hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(28px, 5vw, 80px); align-items: center; padding: clamp(58px, 7vw, 104px) clamp(22px, 5vw, 74px); overflow: hidden; }
.hero-copy { position: relative; max-width: 650px; }
.eyebrow { margin: 0 0 18px; color: var(--ink); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.welcome-home { display: grid; justify-items: start; gap: 1px; margin-bottom: 24px; text-transform: none; letter-spacing: 0; }
.welcome-home span { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.welcome-home strong { color: var(--accent); font-size: clamp(1.55rem, 2.2vw, 2.35rem); font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.hero h1, .section h2 { margin: 0; font-weight: 900; letter-spacing: -.075em; line-height: .86; }
.hero h1 { max-width: 660px; font-size: clamp(4rem, 8.2vw, 8.8rem); }
.script-accent { position: absolute; z-index: 2; top: 39%; right: 0; color: var(--accent); font-family: "Allura", cursive; font-size: clamp(2.6rem, 4.7vw, 5.3rem); line-height: 1; transform: rotate(-8deg); pointer-events: none; }
.hero-text { max-width: 590px; margin: 42px 0 0; color: #333; font-size: clamp(.98rem, 1.25vw, 1.12rem); line-height: 1.6; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--ink); border-radius: 0; text-decoration: none; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; transition: background .2s ease, color .2s ease; }
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--accent); border-color: var(--accent); }
.button.ghost:hover { background: var(--ink); color: white; }
.lake-card { position: relative; min-height: 520px; height: min(67vh, 670px); margin: 0; overflow: hidden; background: #ccc; }
.lake-card > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%; }
.photo-credit { position: absolute; top: 16px; right: 18px; padding: 5px 8px; background: rgba(233,233,233,.9); color: var(--ink); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.weather-note { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; padding: 14px 18px; background: rgba(21,21,21,.9); color: white; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.section { padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 74px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 42px; margin-bottom: 46px; }
.section-heading.compact { align-items: start; }
.section-heading h2 { max-width: 950px; font-size: clamp(3.1rem, 6.6vw, 7.2rem); }
.section-heading > p { max-width: 430px; margin: 8px 0 0; color: #444; font-size: .9rem; }

.planner { background: var(--white); color: var(--ink); }
.choice-row { display: flex; gap: 8px; overflow: auto; margin-bottom: 30px; padding-bottom: 8px; }
.choice { flex: 0 0 auto; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink); font-size: .74rem; cursor: pointer; }
.choice.active, .choice:hover { background: var(--ink); color: white; }
.choice.active span { color: var(--accent); }
.recommend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.recommend-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; background: var(--white); color: var(--ink); border-radius: 0; transition: background .2s ease, color .2s ease; }
.recommend-card:hover { background: var(--soft); }
.recommend-card.featured { background: var(--ink); color: white; }
.recommend-card[hidden] { display: none; }
.card-number { color: var(--accent); font-size: 1.2rem; font-weight: 800; }
.tag { margin: 20px 0 5px; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.recommend-card h3 { margin: 6px 0 12px; font-size: 1.55rem; font-weight: 900; letter-spacing: -.045em; line-height: 1.05; }
.recommend-card p:not(.tag) { margin: 0; font-size: .87rem; opacity: .76; }
.meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; opacity: .72; }
.recommend-card > a { margin-top: 12px; font-size: .75rem; font-weight: 800; text-decoration: none; }

.walk-section { background: var(--paper); }
.route-summary { display: grid; grid-template-columns: repeat(3, auto auto); align-items: baseline; gap: 0 7px; }
.route-summary strong { font-size: 1.35rem; }
.route-summary span { margin-right: 10px; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.walk-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 46px; align-items: start; }
.route-map { position: sticky; top: 96px; min-height: 520px; overflow: hidden; background: white; border: 1px solid var(--ink); }
.route-map img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.map-float { position: absolute; left: 0; bottom: 0; padding: 12px 16px; background: var(--accent); color: white; text-decoration: none; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.timeline li { border-bottom: 1px solid var(--ink); }
.stop-toggle { width: 100%; display: grid; grid-template-columns: 34px 1fr 20px; gap: 14px; align-items: center; padding: 18px 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.stop-toggle > span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--ink); font-size: .7rem; font-weight: 800; }
.stop-toggle div { display: flex; flex-direction: column; }
.stop-toggle b { font-size: .92rem; font-weight: 800; }
.stop-toggle small { color: var(--muted); font-size: .67rem; }
.stop-toggle i { color: var(--accent); font-size: 1.15rem; font-style: normal; }
.timeline li p { display: none; margin: -3px 30px 20px 48px; color: #444; font-size: .84rem; }
.timeline li:has(.stop-toggle[aria-expanded="true"]) p { display: block; }
.timeline li:has(.stop-toggle[aria-expanded="true"]) .stop-toggle > span { background: var(--accent); color: white; border-color: var(--accent); }
.note { margin: 36px 0 0; padding: 18px 20px; background: var(--ink); color: white; border-left: 5px solid var(--accent); font-size: .84rem; }

.eat-section { background: var(--white); }
.filterbar { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 30px; }
.filter { padding: 8px 13px; border: 1px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; cursor: pointer; }
.filter.active, .filter:hover { background: var(--ink); color: white; }
.places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.place { min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 18px; background: var(--white); color: var(--ink); text-decoration: none; transition: background .2s ease; }
.place:hover { background: var(--soft); }
.place div { display: flex; flex-direction: column; }
.place b { font-size: .86rem; font-weight: 800; }
.place small { color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .05em; }
.place > span { color: var(--accent); font-weight: 800; }

.culture-section { background: var(--paper); }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.editorial-grid article { min-height: 250px; padding: 30px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.editorial-grid article span { color: var(--accent); font-weight: 800; }
.editorial-grid h3 { margin: 34px 0 12px; font-size: 1.55rem; font-weight: 900; letter-spacing: -.045em; line-height: 1.05; }
.editorial-grid p { max-width: 540px; margin: 0; color: #444; font-size: .86rem; }

.trip-section { background: var(--ink); color: white; }
.trip-section .eyebrow { color: white; }
.trip-section .section-heading > p { color: #bbb; }
.trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #777; border: 1px solid #777; }
.trip-card { min-height: 330px; display: flex; flex-direction: column; padding: 24px; background: var(--ink); color: white; }
.trip-card.boat { background: var(--accent); color: white; }
.trip-top { display: flex; justify-content: space-between; }
.trip-top span { color: var(--accent); font-size: 1.4rem; }
.trip-card.boat .trip-top span { color: white; }
.trip-top small { color: #aaa; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.trip-card.boat .trip-top small { color: white; }
.trip-card h3 { margin: 28px 0 10px; font-size: 1.6rem; font-weight: 900; letter-spacing: -.045em; line-height: 1.05; }
.trip-card > p { margin: 0; color: #c7c7c7; font-size: .84rem; }
.trip-card.boat > p { color: white; }
.mini-list { display: grid; gap: 2px; margin-top: auto; padding-top: 22px; font-size: .7rem; }
.mini-list b { margin-top: 8px; color: white; }
.mini-list span { color: #aaa; }
.price-line { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; }
.price-line span { padding: 5px 7px; border: 1px solid white; font-size: .65rem; }

.more-section { background: var(--white); }
.more-card { position: relative; display: flex; justify-content: space-between; align-items: end; gap: 40px; padding: clamp(32px, 6vw, 70px); background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
.more-card::after { content: "local favourite"; position: absolute; top: 28px; right: 40px; color: var(--accent); font-family: "Allura", cursive; font-size: clamp(2rem, 3.7vw, 4rem); transform: rotate(-7deg); }
.more-card h2 { max-width: 700px; }
.more-card p { max-width: 640px; color: #444; }
.more-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; flex: 0 0 auto; }
.more-actions .button { background: var(--ink); color: white; }

.contact-section { background: var(--paper); }
.contact-card { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(40px, 7vw, 100px); padding: clamp(32px, 6vw, 70px); border: 1px solid var(--ink); background: var(--white); }
.contact-card h2 { max-width: 650px; margin: 8px 0 18px; font-size: clamp(3rem, 6vw, 6rem); font-weight: 900; letter-spacing: -.065em; line-height: .88; }
.contact-card > div > p:last-child { max-width: 580px; color: #444; }
.contact-actions { border-top: 1px solid var(--ink); }
.contact-link { position: relative; display: flex; flex-direction: column; gap: 4px; padding: 20px 42px 20px 0; border-bottom: 1px solid var(--ink); color: var(--ink); text-decoration: none; }
.contact-link small { color: var(--muted); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-link strong { overflow-wrap: anywhere; font-size: .88rem; }
.contact-link > span { position: absolute; right: 6px; top: 50%; color: var(--accent); font-weight: 900; transform: translateY(-50%); }
.contact-link:hover { background: var(--soft); }
.whatsapp-link small, .whatsapp-link > span { color: #147a42; }

.whatsapp-float { position: fixed; right: 18px; bottom: 72px; z-index: 30; display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: #147a42; color: white; border: 1px solid var(--ink); text-decoration: none; box-shadow: 4px 4px 0 var(--ink); font-size: .72rem; }
.whatsapp-float span { font-size: 1rem; }
.whatsapp-float b { font-weight: 800; }

footer { display: flex; justify-content: space-between; gap: 30px; padding: 38px clamp(22px, 5vw, 74px); background: var(--paper); color: var(--ink); border-top: 1px solid var(--ink); font-size: .68rem; }
footer b { font-weight: 900; letter-spacing: -.02em; }
footer p { max-width: 600px; margin: 5px 0 0; color: var(--muted); }
.to-top { position: fixed; right: 18px; bottom: 18px; width: 42px; height: 42px; border: 0; background: var(--accent); color: white; font-weight: 800; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.to-top.visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 820px; }
  .script-accent { right: 8%; }
  .lake-card { height: min(62vw, 620px); min-height: 430px; }
  .recommend-grid, .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .walk-layout { grid-template-columns: 1fr; }
  .route-map { position: relative; top: auto; }
  .places-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .topbar { height: 66px; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .script-accent { top: 42%; right: 4%; font-size: 3.4rem; }
  .hero-text { margin-top: 36px; }
  .lake-card { min-height: 310px; height: 62vw; }
  .photo-credit { top: 10px; right: 10px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .section-heading > p { margin-top: 20px; }
  .route-summary { margin-top: 22px; }
  .recommend-grid, .trip-grid, .places-grid, .editorial-grid { grid-template-columns: 1fr; }
  .recommend-card { min-height: 270px; }
  .route-map, .route-map img { min-height: 360px; }
  .timeline li p { margin-left: 0; }
  .more-card, footer { display: block; }
  .contact-card { grid-template-columns: 1fr; }
  .more-card::after { top: 18px; right: 20px; font-size: 2.5rem; }
  .more-actions { align-items: flex-start; margin-top: 28px; }
  footer > p { margin-top: 24px; }
  .choice-row { margin-right: -22px; }
  .editorial-grid { border-left: 0; }
  .editorial-grid article { border-left: 1px solid var(--ink); }
  .whatsapp-float b { display: none; }
  .whatsapp-float { width: 46px; height: 46px; justify-content: center; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
