@import url('fonts.css');

:root {
  --navy: #14293A;
  --navy-2: #1C374B;
  --navy-3: #25455C;
  --cream: #FFFDFA;
  --sand-border: #EDE4D6;
  --sand-border-2: #F0E9DC;
  --tan-bg: #F7F1E4;
  --tan-border: #E2D8C6;
  --tan-border-2: #E7DECD;
  --blue-bg: #EAF5FB;
  --blue-bg-2: #DCEAF3;
  --blue-border: #D8E7F0;
  --blue-border-2: #C9DDE9;
  --blue-accent: #4FA3D1;
  --blue-deep: #2C7DA8;
  --green-bg: #DFEDE4;
  --green-accent: #7FC7A4;
  --green-deep: #3F6B54;
  --tan-photo-bg: #F1E7D2;
  --muted: #7D8B96;
  --muted-2: #5A6C7C;
  --muted-3: #4A5E70;
  --text-soft: #41566A;
  --text-body: #3A4E60;
  --warm-muted: #8A7451;
  --danger: #A2555A;
  --white: #ffffff;
  --footer-text: #C6D8E4;
  --footer-muted: #8FA8B9;
  --footer-border: #24455C;
  --font-sans: 'Manrope', 'Helvetica Neue', Helvetica, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max: 1200px;
  --max-narrow: 1000px;
  --max-narrower: 900px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--navy); }
input, textarea, select, button { font-family: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { text-wrap: pretty; }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes slideLeft { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes slideInPanel { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
.container-narrower { max-width: var(--max-narrower); margin: 0 auto; padding: 0 24px; }

/* ============ TOP ANNOUNCEMENT BAR ============ */
.topbar {
  background: var(--navy);
  color: #EAF4FA;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 9px 0;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-accent); display: inline-block; margin-right: 8px; }
.topbar .loc { font-family: var(--font-mono); opacity: .75; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,253,250,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand-border);
}
.site-header .container { padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--blue-accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 15px; }
.brand-text { line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--navy); }
.brand-tag { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; flex: 1; }
.main-nav a {
  padding: 8px 12px; border-radius: 9px; font-size: 14.5px; font-weight: 600;
  color: var(--muted-3); cursor: pointer;
}
.main-nav a:hover { background: #F1EADC; color: var(--navy); }
.main-nav a.active { color: var(--navy); background: #F1EADC; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 10px;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; cursor: pointer; border: none;
}
.cart-btn:hover { background: var(--blue-accent); }
.cart-count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; background: var(--green-accent); color: #0F2A1D;
  font-size: 12.5px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--blue-border);
  background: #fff; cursor: pointer; flex-shrink: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 12px; font-weight: 700; font-size: 15.5px; cursor: pointer;
  border: none; text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); color: #fff; }
.btn-outline { background: #fff; border: 1px solid var(--blue-border); color: var(--navy); }
.btn-outline:hover { border-color: var(--blue-accent); color: var(--navy); }
.btn-accent { background: var(--green-accent); color: #0F2A1D; }
.btn-accent:hover { background: #fff; color: #0F2A1D; }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 9px; }
.link-arrow { font-weight: 700; font-size: 14.5px; cursor: pointer; }

/* ============ HERO / PAGE HEAD ============ */
.page-hero { border-bottom: 1px solid var(--sand-border); }
.page-hero-inner { padding: 56px 24px 46px; }
.eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; }
.page-hero h1 { font-family: var(--font-serif); font-size: 48px; font-weight: 400; margin: 0 0 14px; letter-spacing: -0.02em; }
.page-hero p { font-size: 17.5px; color: var(--text-soft); max-width: 720px; margin: 0; line-height: 1.6; }
.hero-blue { background: linear-gradient(180deg,#EAF5FB,#FFFDFA); }
.hero-green { background: linear-gradient(180deg,#DFEDE4,#FFFDFA); }
.hero-tan { background: linear-gradient(180deg,#F7F1E4,#FFFDFA); }

section.section { max-width: var(--max); margin: 0 auto; padding: 66px 24px 10px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-serif); font-size: 38px; font-weight: 400; margin: 0; letter-spacing: -0.02em; }

/* ============ PHOTO PLACEHOLDER BOXES (now real photos) ============ */
.photo-box { position: relative; overflow: hidden; background-color: var(--blue-bg-2); }
.photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-tag {
  position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 10.5px;
  color: var(--blue-deep); background: rgba(255,255,255,.92); padding: 4px 8px; border-radius: 6px;
}
.photo-tag-top { bottom: auto; top: 12px; }

/* ============ HOME HERO ============ */
.home-hero { position: relative; overflow: hidden; background: linear-gradient(180deg,#EAF5FB 0%,#F7F1E4 100%); border-bottom: 1px solid var(--sand-border); }
.home-hero .container { padding: 74px 24px 82px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.home-hero-copy { animation: riseIn .6s ease both; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--blue-border); font-size: 13px; font-weight: 600; color: var(--blue-deep); margin-bottom: 22px; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-accent); }
.home-hero h1 { font-family: var(--font-serif); font-size: 60px; line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 20px; font-weight: 400; }
.home-hero h1 em { color: var(--blue-deep); font-style: italic; }
.home-hero-lead { font-size: 18.5px; line-height: 1.6; color: var(--text-soft); margin: 0 0 30px; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-stats .stat-v { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; }
.hero-stats .stat-k { font-size: 13px; color: var(--muted); font-weight: 600; }

.hero-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; animation: slideLeft .7s ease both; }
.hero-collage .big { grid-column: 1 / -1; height: 240px; border-radius: 18px; }
.hero-collage .small { height: 150px; border-radius: 18px; }

/* ============ TRUST ROW ============ */
.trust-row { background: #fff; border-bottom: 1px solid var(--sand-border-2); }
.trust-row .container { padding: 26px 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 11px; min-width: 220px; }
.trust-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-bg); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--blue-deep); font-weight: 800; flex-shrink: 0; }
.trust-t { font-weight: 700; font-size: 14.5px; }
.trust-d { font-size: 12.5px; color: var(--muted); }

/* ============ CARDS: GUIDE ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.guide-card { cursor: pointer; border: 1px solid var(--sand-border); border-radius: 18px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.guide-card:hover { border-color: var(--blue-accent); }
.guide-card .photo-box { height: 172px; }
.guide-card.tan { background: var(--tan-bg); }
.guide-card.tan:hover { border-color: var(--green-accent); }
.guide-card.tan .photo-box { height: 150px; }
.guide-card-tag {
  position: absolute; left: 12px; top: 12px; background: rgba(255,255,255,.92); border-radius: 7px; padding: 5px 9px;
  font-size: 11.5px; font-weight: 700; color: var(--blue-deep);
}
.guide-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.guide-card-body h3 { margin: 0; font-size: 20px; letter-spacing: -0.01em; }
.guide-card-body p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted-2); flex: 1; }
.guide-card-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--muted); font-weight: 600; padding-top: 4px; }

/* ============ ROUTES (home mini + full) ============ */
.route-mini { cursor: pointer; display: flex; gap: 16px; padding: 18px; border: 1px solid var(--sand-border); border-radius: 16px; background: #fff; }
.route-mini:hover { border-color: var(--green-accent); }
.route-mini .photo-box { width: 74px; flex-shrink: 0; border-radius: 12px; }
.route-mini h3 { margin: 0 0 6px; font-size: 18px; }
.route-mini p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.5; }
.chip { font-size: 11.5px; font-weight: 700; padding: 4px 9px; border-radius: 6px; display: inline-block; }
.chip-green { color: var(--green-deep); background: var(--green-bg); }
.chip-blue { color: var(--blue-deep); background: var(--blue-bg); }
.chip-tan { color: var(--warm-muted); background: var(--tan-bg); }

.route-card { border: 1px solid var(--sand-border); border-radius: 20px; background: #fff; padding: 22px; display: grid; grid-template-columns: 220px 1fr 220px; gap: 24px; align-items: start; }
.route-card .photo-box { height: 160px; border-radius: 14px; }
.route-card h2 { margin: 0 0 8px; font-size: 23px; letter-spacing: -0.01em; }
.route-card p.lead { margin: 0 0 14px; font-size: 15.5px; line-height: 1.6; color: var(--muted-3); }
.route-stops { display: flex; flex-wrap: wrap; gap: 8px; }
.route-stops span { font-size: 13px; padding: 6px 11px; border-radius: 8px; background: var(--tan-bg); border: 1px solid var(--sand-border); }
.route-cost { background: var(--tan-bg); border-radius: 14px; padding: 16px; }
.route-cost .label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--warm-muted); margin-bottom: 10px; }
.route-cost .amount { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.route-cost .note { font-size: 13px; color: var(--muted-2); line-height: 1.5; margin-bottom: 12px; }
.route-cost .lunch { font-size: 13.5px; color: var(--text-body); line-height: 1.5; }

/* ============ WEBSHOP DARK PROMO (home) ============ */
.shop-promo { margin-top: 66px; background: var(--navy); color: #EAF4FA; overflow: hidden; }
.shop-promo .container { padding: 64px 24px; }
.shop-promo .section-head h2 { color: #fff; }
.shop-promo .eyebrow { color: var(--green-accent); }
.promo-product { background: var(--navy-2); border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.promo-product .photo-box { height: 150px; border-radius: 12px; background-color: var(--navy-3); }
.promo-product .cat { font-size: 11.5px; color: var(--green-accent); font-weight: 700; letter-spacing: 0.06em; }
.promo-product .name { font-weight: 700; font-size: 15.5px; line-height: 1.3; }
.promo-product .row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.promo-product .price { font-weight: 800; font-size: 16px; }
.add-btn { cursor: pointer; padding: 8px 13px; border-radius: 9px; background: var(--blue-bg); color: var(--navy); font-weight: 700; font-size: 13px; border: none; }
.add-btn:hover { background: var(--green-accent); }

/* ============ TWO COLUMN (tips + places on home) ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.tip-mini { cursor: pointer; padding: 16px 18px; border-radius: 14px; background: var(--tan-bg); border: 1px solid var(--sand-border); }
.tip-mini:hover { background: #F1EADC; }
.tip-mini .t { font-weight: 700; font-size: 15.5px; margin-bottom: 5px; }
.tip-mini .d { font-size: 14px; color: var(--muted-2); line-height: 1.5; }
.place-mini { cursor: pointer; display: flex; gap: 14px; align-items: center; padding: 12px; border-radius: 14px; border: 1px solid var(--sand-border); background: #fff; }
.place-mini:hover { border-color: var(--blue-accent); }
.place-mini .photo-box { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; }
.place-mini .name { font-weight: 700; font-size: 15px; }
.place-mini .meta { font-size: 13px; color: var(--muted); }
.place-mini .score { font-weight: 800; font-size: 14px; color: var(--green-deep); margin-left: auto; }

/* ============ NEWSLETTER ============ */
.newsletter-panel { border-radius: 22px; background: linear-gradient(120deg,#EAF5FB,#DFEDE4); padding: 44px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; border: 1px solid var(--blue-border); }
.newsletter-panel h2 { font-family: var(--font-serif); font-size: 33px; font-weight: 400; margin: 0 0 12px; letter-spacing: -0.02em; }
.newsletter-panel p { margin: 0 0 20px; font-size: 16px; color: var(--text-soft); line-height: 1.6; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email] { flex: 1; min-width: 240px; padding: 14px 16px; border-radius: 11px; border: 1px solid var(--blue-border-2); background: #fff; font-size: 15px; color: var(--navy); }
.newsletter-msg { font-size: 13px; color: var(--muted-2); margin-top: 10px; min-height: 18px; }
.newsletter-card { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid var(--blue-border); }
.newsletter-card .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
.newsletter-card .item { padding: 11px 0; border-bottom: 1px solid var(--sand-border-2); font-size: 14.5px; display: flex; gap: 10px; }
.newsletter-card .item span:first-child { color: var(--blue-accent); font-weight: 800; }
.newsletter-card .item:last-child { border-bottom: none; }

/* ============ GENERIC FORM ELEMENTS ============ */
.field { padding: 13px 14px; border-radius: 10px; border: 1px solid var(--blue-border); font-size: 14.5px; width: 100%; }
.field:focus { outline: 2px solid var(--blue-accent); outline-offset: 1px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; }
.checkbox-row input[type=checkbox] { width: 18px; height: 18px; border-radius: 5px; margin: 2px 0 0; flex-shrink: 0; }
.checkbox-row label { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 6px; display: none; }
.form-success { border: 1px solid var(--green-accent); background: var(--green-bg); border-radius: 18px; padding: 30px; }
.form-success .title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { margin: 0 0 8px; font-size: 16px; color: #2F4A3A; line-height: 1.6; }

/* ============ PRODUCT CARDS (shop) ============ */
.product-card { border: 1px solid var(--sand-border); border-radius: 18px; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--blue-accent); }
.product-card .photo-box { height: 190px; background-color: var(--green-bg); }
.product-card .badge { position: absolute; right: 12px; top: 12px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-body .cat { font-size: 11.5px; color: var(--muted); font-weight: 700; letter-spacing: 0.05em; }
.product-card-body h3 { margin: 0; font-size: 17px; line-height: 1.3; }
.product-card-body p { margin: 0; font-size: 13.5px; color: var(--muted-2); line-height: 1.5; flex: 1; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 6px; }
.product-card-foot .price { font-weight: 800; font-size: 18px; }
.product-card-foot .stock { font-size: 12px; color: var(--green-accent); font-weight: 700; }
.btn-cart { cursor: pointer; padding: 10px 15px; border-radius: 10px; background: var(--navy); color: #fff; font-weight: 700; font-size: 13.5px; border: none; }
.btn-cart:hover { background: var(--blue-accent); }

.cat-chip { cursor: pointer; padding: 10px 16px; border-radius: 10px; font-size: 14px; font-weight: 700; border: 1px solid var(--blue-border); background: #fff; color: var(--navy); }
.cat-chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.promise-box { padding: 20px; border-radius: 16px; background: var(--tan-bg); border: 1px solid var(--sand-border); }
.promise-box .t { font-weight: 700; font-size: 16px; margin-bottom: 7px; }
.promise-box .d { font-size: 14px; color: var(--muted-2); line-height: 1.55; }

/* ============ CART / CHECKOUT ============ */
.cart-line { display: flex; gap: 16px; align-items: center; padding: 16px; border: 1px solid var(--sand-border); border-radius: 16px; background: #fff; flex-wrap: wrap; }
.cart-line .photo-box { width: 78px; height: 78px; border-radius: 12px; flex-shrink: 0; background-color: var(--green-bg); }
.cart-line-info { flex: 1; min-width: 160px; }
.cart-line-info .cat { font-size: 12px; color: var(--muted); font-weight: 700; }
.cart-line-info .name { font-weight: 700; font-size: 16.5px; }
.cart-line-info .price { font-size: 13.5px; color: var(--muted-2); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { cursor: pointer; width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--blue-border); display: flex; align-items: center; justify-content: center; font-weight: 800; background: #fff; }
.qty-val { min-width: 26px; text-align: center; font-weight: 700; }
.cart-line-sum { min-width: 110px; text-align: right; font-weight: 800; font-size: 16.5px; }
.remove-link { cursor: pointer; color: var(--danger); font-size: 13px; font-weight: 700; background: none; border: none; }

.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.ship-form-box { border: 1px solid var(--sand-border); border-radius: 16px; padding: 20px; background: #fff; }
.ship-option { cursor: pointer; display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--blue-border); background: #fff; }
.ship-option.selected { border-color: var(--blue-accent); background: var(--blue-bg); }
.ship-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--blue-accent); background: transparent; flex-shrink: 0; }
.ship-option.selected .ship-radio { background: var(--blue-accent); }
.ship-option .label { font-weight: 700; font-size: 15px; flex: 1; }
.ship-option .note { font-size: 14px; color: var(--muted-2); }
.ship-option .price { font-weight: 800; font-size: 15px; }

.summary-box { border: 1px solid var(--sand-border); border-radius: 18px; padding: 22px; background: var(--tan-bg); position: sticky; top: 92px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; padding: 7px 0; }
.summary-row.vat { color: var(--green-deep); }
.summary-total { border-top: 1px solid var(--tan-border); margin-top: 10px; padding-top: 14px; display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .label { font-weight: 700; font-size: 16px; }
.summary-total .amount { font-weight: 800; font-size: 26px; }
.empty-cart { border: 1px dashed var(--blue-border); border-radius: 18px; padding: 44px; text-align: center; background: #fff; }

/* ============ GUIDE DETAIL ============ */
.guide-hero { background: var(--blue-bg); border-bottom: 1px solid var(--blue-border); }
.guide-hero-inner { max-width: var(--max-narrow); margin: 0 auto; padding: 44px 24px 40px; }
.guide-hero h1 { font-family: var(--font-serif); font-size: 46px; font-weight: 400; margin: 16px 0 12px; letter-spacing: -0.02em; }
.guide-hero p { font-size: 17.5px; color: var(--text-soft); line-height: 1.65; margin: 0 0 22px; max-width: 720px; }
.fact-row { display: flex; flex-wrap: wrap; gap: 10px; }
.fact-chip { background: #fff; border: 1px solid var(--blue-border); border-radius: 11px; padding: 10px 14px; }
.fact-chip .k { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.06em; }
.fact-chip .v { font-size: 14.5px; font-weight: 700; }
.guide-photo { height: 280px; border-radius: 20px; margin-bottom: 36px; }
.guide-body { max-width: var(--max-narrow); margin: 0 auto; padding: 34px 24px 80px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.guide-section { margin-bottom: 30px; }
.guide-section h2 { font-family: var(--font-serif); font-size: 29px; font-weight: 400; margin: 0 0 12px; letter-spacing: -0.01em; }
.guide-section p { margin: 0; font-size: 16.5px; line-height: 1.72; color: var(--text-body); }
.plan-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--sand-border-2); }
.plan-row .t { font-family: var(--font-mono); font-size: 12px; color: var(--blue-accent); font-weight: 600; min-width: 80px; padding-top: 3px; }
.plan-row .d { font-size: 15.5px; line-height: 1.6; color: var(--text-body); }
.guide-aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 92px; }
.highlight-box { border: 1px solid var(--sand-border); border-radius: 16px; padding: 18px; background: var(--tan-bg); }
.highlight-box .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--warm-muted); margin-bottom: 12px; }
.highlight-item { display: flex; gap: 9px; font-size: 14.5px; line-height: 1.5; padding: 6px 0; }
.highlight-item .check { color: var(--green-accent); font-weight: 800; }
.gear-box { border: 1px solid var(--blue-border); border-radius: 16px; padding: 18px; background: #fff; }
.gear-box .title { font-weight: 700; font-size: 15.5px; margin-bottom: 8px; }
.gear-row { display: flex; gap: 12px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--sand-border-2); }
.gear-row .photo-box { width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0; background-color: var(--green-bg); }
.gear-row .name { font-size: 14px; font-weight: 700; }
.gear-row .price { font-size: 13px; color: var(--muted); }
.gear-add { cursor: pointer; font-size: 12.5px; font-weight: 700; color: var(--blue-deep); background: none; border: none; }

/* ============ HOTELS / RESTAURANTS ============ */
.hotel-card { border: 1px solid var(--sand-border); border-radius: 18px; overflow: hidden; background: #fff; }
.hotel-card .photo-box { height: 150px; }
.hotel-score { position: absolute; right: 12px; top: 12px; background: var(--green-deep); color: #fff; border-radius: 7px; padding: 5px 9px; font-size: 12px; font-weight: 800; }
.hotel-body { padding: 17px; }
.hotel-body .meta { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.hotel-body h3 { margin: 0 0 8px; font-size: 18px; }
.hotel-body p { margin: 0 0 12px; font-size: 14px; color: var(--muted-2); line-height: 1.55; }
.hotel-body .price { font-weight: 800; font-size: 15px; }

.rest-card { display: flex; gap: 16px; padding: 16px; border: 1px solid var(--sand-border); border-radius: 16px; background: var(--tan-bg); }
.rest-card .photo-box { width: 70px; height: 70px; border-radius: 12px; flex-shrink: 0; background-color: var(--tan-photo-bg); }
.rest-card .meta { font-size: 12px; color: var(--warm-muted); font-weight: 700; margin-bottom: 4px; }
.rest-card h3 { margin: 0 0 6px; font-size: 17px; }
.rest-card p { margin: 0; font-size: 14px; color: var(--muted-2); line-height: 1.55; }

/* ============ TIPS ============ */
.tip-card { border: 1px solid var(--sand-border); border-radius: 18px; background: #fff; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.tip-card .cat { font-size: 11.5px; font-weight: 700; color: var(--blue-deep); letter-spacing: 0.06em; }
.tip-card h3 { margin: 0; font-size: 20px; letter-spacing: -0.01em; }
.tip-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted-3); flex: 1; }
.tip-card .read { font-size: 12.5px; color: var(--muted); font-weight: 600; border-top: 1px solid var(--sand-border-2); padding-top: 10px; }
.packing-panel { border-radius: 20px; background: var(--navy); color: #EAF4FA; padding: 34px; }
.packing-panel h2 { font-family: var(--font-serif); font-size: 30px; font-weight: 400; margin: 0 0 8px; }
.packing-panel > p { margin: 0 0 22px; color: #A8C0D0; font-size: 15.5px; }
.packing-group .group-title { font-weight: 700; font-size: 16px; margin-bottom: 10px; color: var(--green-accent); }
.packing-group .item { font-size: 14.5px; padding: 5px 0; color: #D5E4EE; }

/* ============ ABOUT ============ */
.about-section { margin-bottom: 30px; }
.about-section h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; margin: 0 0 10px; }
.about-section p { margin: 0; font-size: 16.5px; line-height: 1.72; color: var(--text-body); }
.team-card { border: 1px solid var(--sand-border); border-radius: 16px; background: #fff; padding: 18px; }
.team-card .photo-box { height: 190px; border-radius: 12px; margin-bottom: 12px; }
.team-card .name { font-weight: 700; font-size: 16px; }
.team-card .role { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }
.team-card .bio { font-size: 14px; color: var(--muted-2); line-height: 1.55; }

/* ============ CONTACT ============ */
.contact-info-box { border: 1px solid var(--sand-border); border-radius: 16px; padding: 20px; background: var(--tan-bg); }
.contact-info-box .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--warm-muted); margin-bottom: 12px; }
.contact-row { padding: 8px 0; border-bottom: 1px solid var(--tan-border-2); }
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-size: 12px; color: var(--muted); font-weight: 700; }
.contact-row .v { font-size: 15px; font-weight: 600; }
.map-embed { height: 220px; border-radius: 16px; overflow: hidden; border: 1px solid var(--blue-border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============ FAQ ============ */
.faq-item { border: 1px solid var(--sand-border); border-radius: 16px; background: #fff; padding: 20px; }
.faq-item .q { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.faq-item .a { font-size: 15.5px; color: var(--muted-3); line-height: 1.65; }

/* ============ LEGAL ============ */
.legal-hero { background: var(--tan-bg); border-bottom: 1px solid var(--sand-border); }
.legal-hero-inner { max-width: 880px; margin: 0 auto; padding: 48px 24px 36px; }
.legal-hero h1 { font-family: var(--font-serif); font-size: 42px; font-weight: 400; margin: 0 0 10px; letter-spacing: -0.02em; }
.legal-hero p { margin: 0; font-size: 16px; color: var(--muted-2); }
.legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.legal-tab { cursor: pointer; font-size: 13.5px; font-weight: 700; padding: 8px 13px; border-radius: 9px; background: #fff; color: var(--navy); border: 1px solid var(--tan-border); }
.legal-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.legal-section { margin-bottom: 26px; }
.legal-section h2 { font-size: 21px; margin: 0 0 10px; letter-spacing: -0.01em; }
.legal-section p { margin: 0; font-size: 16px; line-height: 1.72; color: var(--text-body); }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy); color: var(--footer-text); margin-top: auto; }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 54px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 32px; height: 32px; }
.footer-brand .name { font-weight: 800; font-size: 18px; color: #fff; }
.footer-desc { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; max-width: 320px; }
.footer-legalinfo { font-family: var(--font-mono); font-size: 12px; color: var(--footer-muted); line-height: 1.8; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; color: var(--footer-text); cursor: pointer; }
.footer-col a:hover { color: var(--green-accent); }
.footer-bottom-border { border-top: 1px solid var(--footer-border); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px; color: var(--footer-muted); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a, .footer-bottom-links span { color: var(--footer-muted); cursor: pointer; background: none; border: none; font-size: 13px; font-family: inherit; padding: 0; }
.footer-bottom-links a:hover, .footer-bottom-links span:hover { color: #fff; }

/* ============ CART DRAWER ============ */
.cart-overlay { position: fixed; inset: 0; z-index: 90; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-overlay-bg { position: absolute; inset: 0; background: rgba(20,41,58,0.42); border: none; cursor: pointer; padding: 0; }
.cart-drawer { position: relative; width: 410px; max-width: 92vw; height: 100%; background: var(--cream); box-shadow: -20px 0 50px rgba(20,41,58,.18); display: flex; flex-direction: column; animation: slideInPanel .28s ease both; }
.cart-drawer-head { padding: 20px 22px; border-bottom: 1px solid var(--sand-border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-head .title { font-weight: 800; font-size: 18px; }
.cart-drawer-close { cursor: pointer; font-size: 20px; color: var(--muted); background: none; border: none; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 22px; }
.cart-drawer-empty { color: var(--muted-2); font-size: 15px; line-height: 1.6; }
.drawer-line { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--sand-border-2); }
.drawer-line .photo-box { width: 58px; height: 58px; border-radius: 10px; flex-shrink: 0; background-color: var(--green-bg); }
.drawer-line-info { flex: 1; }
.drawer-line-info .name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.drawer-line-info .price { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.drawer-line-right { text-align: right; }
.drawer-line-right .sum { font-weight: 800; font-size: 14.5px; }
.cart-drawer-foot { padding: 18px 22px; border-top: 1px solid var(--sand-border); background: var(--tan-bg); }
.cart-drawer-foot .row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 6px; }
.cart-drawer-foot .note { font-size: 13px; color: var(--muted-2); margin-bottom: 14px; }

/* ============ COOKIE BANNER ============ */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; padding: 16px; display: none; }
.cookie-banner.open { display: block; }
.cookie-banner-inner { max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--blue-border); border-radius: 18px; box-shadow: 0 18px 44px rgba(20,41,58,.16); padding: 22px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.cookie-banner-inner .title { font-weight: 800; font-size: 16.5px; margin-bottom: 6px; }
.cookie-banner-inner p { margin: 0; font-size: 14px; color: var(--muted-3); line-height: 1.6; max-width: 660px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button { border: none; cursor: pointer; font-weight: 700; font-size: 14px; }
.cookie-reject { padding: 12px 18px; border-radius: 11px; border: 1px solid var(--blue-border); background: #fff; }
.cookie-accept { padding: 12px 20px; border-radius: 11px; background: var(--navy); color: #fff; }
.cookie-accept:hover { background: var(--blue-accent); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .home-hero .container { grid-template-columns: 1fr; }
  .hero-collage { order: -1; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .guide-body { grid-template-columns: 1fr; }
  .guide-aside { position: static; }
  .route-card { grid-template-columns: 1fr; }
  .newsletter-panel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    border-bottom: 1px solid var(--sand-border); flex-direction: column; padding: 8px 16px 16px; gap: 2px;
    box-shadow: 0 14px 24px rgba(20,41,58,.08);
  }
  .main-nav.open { display: flex; }
  .site-header .container { position: relative; flex-wrap: wrap; }
  .home-hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 34px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 10px; }
  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; max-width: 100%; }
  section.section { padding: 44px 20px 10px; }
}
