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

:root {
  --paper: #f7f4ee;
  --paper-deep: #eee8de;
  --card: #fffdf9;
  --ink: #17211f;
  --muted: #68726f;
  --green: #173f39;
  --green-soft: #dce8e1;
  --red: #a94b42;
  --line: rgba(23, 63, 57, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 18px 50px rgba(29, 39, 36, .10);
  --header-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.wrap { width: min(100% - 36px, 1120px); margin-inline: auto; }
.section { padding-block: 72px; }
.section--tint { background: var(--paper-deep); }
.section-label { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 0; color: var(--green); font: 600 clamp(34px, 8vw, 58px)/1.08 var(--serif); letter-spacing: -.035em; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid transparent; border-radius: 999px; padding: 0 20px; font-size: 13px; font-weight: 700; text-decoration: none; }
.button span { font-size: 17px; }
.button--light { background: #fff; color: var(--green); }
.button--glass { border-color: rgba(255,255,255,.45); background: rgba(12,31,28,.24); color: #fff; backdrop-filter: blur(12px); }
.button--dark { background: var(--green); color: #fff; }
.button--full { width: 100%; margin-top: 22px; }

/* Navigation */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: calc(var(--header-h) + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top); color: #fff; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.site-header.is-solid,
.site-header:not(.is-overlay) { background: rgba(247,244,238,.94); color: var(--green); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.site-header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 111; color: inherit; font: 600 23px/1 var(--serif); letter-spacing: -.03em; text-decoration: none; }
.brand em { color: #d9877d; font-style: italic; }
.site-header.is-solid .brand em,
.site-header:not(.is-overlay) .brand em { color: var(--red); }
.desktop-nav { display: none; align-items: center; gap: 30px; }
.desktop-nav a { font-size: 12px; font-weight: 700; text-decoration: none; }
.menu-button { position: relative; z-index: 111; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: inherit; cursor: pointer; }
.site-header.is-solid .menu-button,
.site-header:not(.is-overlay) .menu-button { background: #fff; box-shadow: 0 5px 18px rgba(23,63,57,.1); }
.menu-lines { width: 18px; height: 13px; position: relative; }
.menu-lines::before,
.menu-lines::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .22s ease, top .22s ease; }
.menu-lines::before { top: 2px; }
.menu-lines::after { top: 10px; }
.menu-open .menu-lines::before { top: 6px; transform: rotate(45deg); }
.menu-open .menu-lines::after { top: 6px; transform: rotate(-45deg); }
.menu-overlay { position: fixed; inset: 0; z-index: 105; visibility: hidden; background: rgba(6,20,18,.5); opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.menu-panel { position: fixed; inset: 0 0 0 auto; z-index: 110; width: min(88vw, 380px); overflow-y: auto; padding: calc(var(--header-h) + env(safe-area-inset-top) + 30px) 28px calc(42px + env(safe-area-inset-bottom)); background: var(--green); color: #fff; transform: translateX(102%); transition: transform .28s cubic-bezier(.22,.8,.35,1); }
.menu-open .menu-overlay { visibility: visible; opacity: 1; }
.menu-open .menu-panel { transform: translateX(0); }
.menu-primary { display: grid; gap: 4px; }
.menu-primary a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); font: 600 29px/1.2 var(--serif); text-decoration: none; }
.menu-days { margin-top: 34px; }
.menu-days__label { margin-bottom: 12px; color: #dfb3a9; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.menu-days a { display: flex; justify-content: space-between; padding: 10px 0; color: rgba(255,255,255,.76); font-size: 13px; text-decoration: none; }
.menu-days a span { color: #fff; font-weight: 700; }
.bottom-nav { position: fixed; inset: auto 12px calc(10px + env(safe-area-inset-bottom)); z-index: 90; height: 62px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.65); border-radius: 22px; background: rgba(255,253,249,.9); box-shadow: 0 14px 34px rgba(23,38,34,.18); backdrop-filter: blur(18px); }
.bottom-nav a { display: grid; place-items: center; align-content: center; gap: 2px; color: #6e7774; font-size: 9px; font-weight: 700; text-decoration: none; }
.bottom-nav a::before { content: attr(data-icon); color: var(--green); font-size: 20px; line-height: 1; }
.bottom-nav a.active { color: var(--red); }

/* Home */
.home-hero { position: relative; min-height: 720px; height: 91svh; color: #fff; background: var(--green); }
.home-hero__photo,
.home-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero__photo { object-fit: cover; object-position: 55% center; }
.home-hero__shade { background: linear-gradient(180deg, rgba(5,22,19,.22), rgba(5,22,19,.14) 30%, rgba(5,22,19,.82) 100%); }
.home-hero__content { position: relative; z-index: 2; min-height: inherit; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 76px; }
.trip-pill { margin-bottom: 15px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; padding: 8px 12px; font-size: 10px; font-weight: 700; letter-spacing: .16em; backdrop-filter: blur(8px); }
.home-hero h1 { max-width: 620px; margin-bottom: 18px; font: 600 clamp(40px, 11vw, 68px)/1.02 var(--serif); letter-spacing: -.045em; }
.home-hero p { margin-bottom: 28px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.8; }
.home-hero p b { color: #fff; font-size: 15px; }
.hero-actions { width: 100%; display: flex; flex-wrap: wrap; gap: 10px; }
.photo-credit { position: absolute; z-index: 3; right: 16px; bottom: 14px; color: rgba(255,255,255,.6); font-size: 8px; text-decoration: none; }
.intro-grid { display: grid; gap: 28px; margin-top: 18px; }
.intro-copy > p { margin-bottom: 30px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.trip-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.trip-facts div { padding: 20px 4px; text-align: center; }
.trip-facts div + div { border-left: 1px solid var(--line); }
.trip-facts b { display: block; color: var(--green); font: 600 28px/1 var(--serif); }
.trip-facts span { display: block; margin-top: 6px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .1em; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { margin-top: 6px; }
.section-heading > p { margin-bottom: 3px; color: var(--muted); font: 600 14px var(--serif); }
.desktop-only-link { display: none; color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; }
.calendar { display: grid; gap: 14px; }
.cal { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--card); box-shadow: 0 10px 28px rgba(29,39,36,.06); }
.cal-link { min-height: 156px; display: grid; grid-template-columns: 116px minmax(0, 1fr); color: var(--ink); text-decoration: none; }
.cal__image-wrap { min-height: 100%; overflow: hidden; background: var(--green-soft); }
.cal__image { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cal:hover .cal__image { transform: scale(1.035); }
.cal__body { min-width: 0; display: flex; flex-direction: column; padding: 16px; }
.cal-top { display: flex; align-items: center; justify-content: space-between; }
.caldate { color: var(--green); font: 600 17px var(--serif); }
.caltype { color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.cal h3 { margin: 14px 0 7px; color: var(--green); font: 600 22px/1.12 var(--serif); }
.cal p { margin-bottom: 12px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.cal__arrow { margin-top: auto; color: var(--green); font-size: 9px; font-weight: 700; }
.text-link { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--green); padding: 12px 0; color: var(--green); font-size: 13px; font-weight: 700; text-decoration: none; }
.featured-places { display: grid; gap: 16px; }
.feature-card { position: relative; min-height: 390px; overflow: hidden; border-radius: 28px; background: var(--green); color: #fff; box-shadow: var(--shadow); }
.feature-card__image,
.feature-card__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.feature-card__image { object-fit: cover; transition: transform .5s ease; }
.feature-card:hover .feature-card__image { transform: scale(1.03); }
.feature-card__shade { background: linear-gradient(180deg, transparent 30%, rgba(5,22,19,.86)); }
.feature-card__body { position: absolute; inset: auto 0 0; z-index: 2; padding: 24px; }
.feature-card__meta { margin-bottom: 9px; color: #efd0c9; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feature-card h3 { margin-bottom: 6px; font: 600 31px/1.08 var(--serif); }
.feature-card p { margin-bottom: 16px; color: rgba(255,255,255,.72); font-size: 11px; }
.feature-card a { display: inline-flex; min-height: 42px; align-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 0 15px; font-size: 10px; font-weight: 700; text-decoration: none; backdrop-filter: blur(10px); }
.update-card { display: grid; gap: 22px; border: 1px solid var(--line); border-radius: 28px; padding: 28px; background: var(--card); }
.update-card__mark { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--green); color: #fff; font: 600 18px var(--serif); }
.update-card h2 { margin: 8px 0 14px; font-size: 34px; }
.update-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.decision-card { display: grid; gap: 15px; border-radius: 26px; padding: 24px; background: var(--green); color: #fff; text-decoration: none; box-shadow: var(--shadow); }
.decision-card span { display: block; margin-bottom: 8px; color: #efb8ae; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.decision-card b { display: block; font: 600 27px/1.18 var(--serif); }
.decision-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.8; }
.decision-card i { display: block; margin-top: 12px; color: #fff; font-style: normal; font-weight: 700; }

/* Inner pages */
.page-main { padding-top: calc(var(--header-h) + env(safe-area-inset-top)); }
.page-hero { padding: 54px 0 42px; }
.page-hero--image { position: relative; min-height: 520px; display: flex; align-items: flex-end; padding: 0 0 50px; color: #fff; background: var(--green); }
.page-hero__image,
.page-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__image { object-fit: cover; }
.page-hero__shade { background: linear-gradient(180deg, rgba(5,22,19,.12), rgba(5,22,19,.82)); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { margin: 8px 0 16px; color: inherit; font: 600 clamp(45px, 13vw, 78px)/1 var(--serif); letter-spacing: -.05em; }
.page-hero p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.page-hero--image p { color: rgba(255,255,255,.76); }
.page-kicker { color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.page-hero--image .page-kicker { color: #efb8ae; }
.route-strip { display: flex; gap: 8px; overflow-x: auto; margin: 24px -18px 0; padding: 0 18px 8px; scrollbar-width: none; }
.route-strip::-webkit-scrollbar { display: none; }
.route-strip a { flex: 0 0 auto; min-width: 73px; border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; background: var(--card); color: var(--green); text-align: center; text-decoration: none; }
.route-strip a.active { background: var(--green); color: #fff; }
.route-strip b { display: block; font: 600 18px var(--serif); }
.route-strip span { display: block; margin-top: 3px; font-size: 8px; font-weight: 700; letter-spacing: .08em; }
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; top: 20px; bottom: 20px; left: 42px; width: 1px; background: var(--line); }
.timeline-row { position: relative; display: grid; grid-template-columns: 68px 1fr; gap: 12px; padding-bottom: 18px; }
.timeline-time { position: relative; z-index: 2; width: 60px; padding-top: 18px; background: var(--paper); color: var(--red); font: 600 14px var(--serif); }
.event { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--card); }
.event__image { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.event__body { padding: 19px; }
.event__topline, .place__topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.event__label { color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.event h3 { margin: 5px 0 4px; color: var(--green); font: 600 23px/1.15 var(--serif); }
.event small { color: var(--muted); font-size: 10px; }
.event p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.event__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 17px 0 0; border-block: 1px solid var(--line); }
.event__facts div { min-width: 0; padding: 12px 5px; }
.event__facts div:nth-child(even) { border-left: 1px solid var(--line); padding-left: 12px; }
.event__facts div:nth-child(n+3) { border-top: 1px solid var(--line); }
.event__facts dt { margin-bottom: 4px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .05em; }
.event__facts dd { margin: 0; color: var(--ink); font-size: 10px; line-height: 1.45; overflow-wrap: anywhere; }
.event__actions { display: flex; gap: 8px; margin-top: 14px; }
.event__actions a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; padding: 0 13px; color: var(--green); font-size: 9px; font-weight: 700; text-decoration: none; }
.event__actions a:first-child { border-color: var(--green); background: var(--green); color: #fff; }
.rating { display: inline-flex; margin-top: 14px; border-radius: 999px; padding: 7px 10px; background: var(--green-soft); color: var(--green); font-size: 9px; font-weight: 700; }
.priority { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 24px; border-radius: 999px; padding: 0 8px; font-size: 8px; font-weight: 700; white-space: nowrap; }
.priority--must { background: #a94b42; color: #fff; }
.priority--want { background: #e8d2a5; color: #59451f; }
.priority--optional { background: var(--green-soft); color: var(--green); }
.event--castle { border-color: rgba(202,149,93,.55); background: linear-gradient(160deg, #fffaf0, var(--card)); }
.event--frozen { border-color: rgba(81,142,178,.38); background: linear-gradient(160deg, #f4fbff, var(--card)); }
.event--night { border-color: rgba(108,91,164,.45); background: linear-gradient(160deg, #f3f0ff, var(--card)); }
.schedule-notice { margin: 22px 0 20px 80px; border: 1px solid rgba(169,75,66,.22); border-radius: 18px; padding: 16px; background: #fff5ef; }
.schedule-notice b { color: var(--red); font-size: 10px; letter-spacing: .08em; }
.schedule-notice p { margin: 5px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }
.route-button { margin-top: 18px; }

/* Places */
.places-hero { padding-bottom: 30px; }
.search-shell { position: sticky; top: calc(var(--header-h) + env(safe-area-inset-top)); z-index: 50; margin-top: 26px; padding: 12px 0; background: rgba(247,244,238,.94); backdrop-filter: blur(16px); }
.search-box { position: relative; }
.search-box::before { content: "⌕"; position: absolute; left: 16px; top: 50%; translate: 0 -50%; color: var(--green); font-size: 23px; }
.search-box input { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 17px; outline: none; padding: 0 16px 0 48px; background: var(--card); color: var(--ink); font-size: 13px; }
.search-box input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23,63,57,.08); }
.filters { display: flex; gap: 8px; overflow-x: auto; margin-inline: -18px; padding: 11px 18px 3px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filters button { flex: 0 0 auto; min-height: 38px; border: 1px solid var(--line); border-radius: 999px; padding: 0 15px; background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; cursor: pointer; }
.filters button.on { border-color: var(--green); background: var(--green); color: #fff; }
.place-count { margin: 18px 0; color: var(--muted); font-size: 11px; }
.places { display: grid; gap: 18px; }
.place { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--card); }
.place__image-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--green-soft); }
.place__image { width: 100%; height: 100%; object-fit: cover; }
.place__rating { position: absolute; top: 14px; right: 14px; border-radius: 999px; padding: 8px 11px; background: rgba(255,253,249,.9); color: var(--green); font-size: 10px; font-weight: 700; backdrop-filter: blur(12px); }
.place__aiko { position: absolute; left: 14px; bottom: 14px; border-radius: 999px; padding: 8px 11px; background: rgba(169,75,66,.92); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(12px); }
.place__body { padding: 21px; }
.place__kicker { color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.place h3 { margin: 6px 0 3px; color: var(--green); font: 600 29px/1.12 var(--serif); }
.place__address { color: var(--muted); font-size: 10px; line-height: 1.6; }
.place__summary { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.tags span { border-radius: 999px; padding: 6px 9px; background: var(--green-soft); color: var(--green); font-size: 8px; font-weight: 700; }
.friend-note { margin: 0 0 16px; border-top: 1px solid var(--line); padding-top: 14px; }
.friend-note summary { color: var(--green); font-size: 10px; font-weight: 700; cursor: pointer; }
.friend-note--aiko { border-top-color: rgba(169,75,66,.28); }
.friend-note--aiko summary { color: var(--red); }
.friend-note p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.place__hours { margin-bottom: 16px; color: var(--muted); font-size: 9px; }
.place__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.place__actions a { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--green); font-size: 10px; font-weight: 700; text-decoration: none; }
.place__actions a:first-child { border-color: var(--green); background: var(--green); color: #fff; }
.place--no-image .place__image-wrap { display: grid; place-items: center; background: linear-gradient(135deg, var(--green), #35665d); }
.place--no-image .place__image-wrap::after { content: "PARIS PICKS"; color: rgba(255,255,255,.65); font: 600 13px var(--serif); letter-spacing: .18em; }
.empty-state { grid-column: 1/-1; padding: 56px 20px; border: 1px dashed var(--line); border-radius: 24px; color: var(--muted); text-align: center; font-size: 12px; }

/* Practical */
.info-grid { display: grid; gap: 14px; }
.info { border: 1px solid var(--line); border-radius: 22px; padding: 22px; background: var(--card); }
.info__number { color: var(--red); font: 600 12px var(--serif); }
.info h3 { margin: 7px 0 9px; color: var(--green); font: 600 24px var(--serif); }
.info p { margin-bottom: 15px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.info a { color: var(--green); font-size: 10px; font-weight: 700; text-decoration: none; }
.notice { margin-top: 22px; border-radius: 22px; padding: 21px; background: var(--green); color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.75; }
.notice b { color: #fff; }
.compare-grid, .strategy-grid { display: grid; gap: 14px; }
.compare { border: 1px solid var(--line); border-radius: 24px; padding: 23px; background: var(--card); }
.compare--recommended { border: 0; background: var(--green); color: #fff; box-shadow: var(--shadow); }
.compare__verdict { display: inline-flex; align-items: center; min-height: 26px; border-radius: 999px; padding: 0 9px; background: var(--green-soft); color: var(--green); font-size: 8px; font-weight: 700; }
.compare--recommended .compare__verdict { background: #fff; }
.compare h3 { margin: 12px 0 16px; color: var(--green); font: 600 29px var(--serif); }
.compare--recommended h3 { color: #fff; }
.compare dl { margin: 0; border-block: 1px solid var(--line); }
.compare--recommended dl { border-color: rgba(255,255,255,.16); }
.compare dl div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 10px 0; }
.compare dl div + div { border-top: 1px solid var(--line); }
.compare--recommended dl div + div { border-color: rgba(255,255,255,.16); }
.compare dt { color: var(--muted); font-size: 9px; }
.compare--recommended dt { color: rgba(255,255,255,.55); }
.compare dd { margin: 0; font-size: 10px; line-height: 1.6; }
.compare p { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.compare--recommended p { color: rgba(255,255,255,.7); }
.decision-summary { margin-top: 16px; border-left: 3px solid var(--red); padding: 5px 0 5px 18px; }
.decision-summary span { color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.decision-summary h3 { margin: 6px 0 8px; color: var(--green); font: 600 25px var(--serif); }
.decision-summary p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.8; }
.strategy { border: 1px solid var(--line); border-radius: 22px; padding: 22px; background: var(--card); }
.strategy--lead { border: 0; background: #e8eef7; }
.strategy > span { color: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.strategy h3 { margin: 6px 0 13px; color: var(--green); font: 600 24px/1.15 var(--serif); }
.strategy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.strategy ul { display: grid; gap: 10px; margin: 0; padding-left: 18px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.strategy li b, .strategy li small { display: block; }
.strategy li b { color: var(--green); }
.strategy li small { margin-top: 2px; color: var(--muted); font-size: 10px; }

/* Footer */
.site-footer { padding: 58px 0 calc(105px + env(safe-area-inset-bottom)); background: var(--green); color: #fff; }
.footer-brand { font: 600 31px var(--serif); }
.footer-brand em { color: #e0a69b; font-style: italic; }
.footer-copy { max-width: 420px; margin: 13px 0 28px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer-links a { color: rgba(255,255,255,.82); font-size: 10px; font-weight: 700; text-decoration: none; }
.footer-meta { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 8px; line-height: 1.7; }

@media (min-width: 720px) {
  .wrap { width: min(100% - 72px, 1120px); }
  .section { padding-block: 100px; }
  .home-hero__content { padding-bottom: 92px; }
  .intro-grid { grid-template-columns: 1.05fr .95fr; align-items: end; gap: 80px; }
  .calendar { max-width: 860px; }
  .cal-link { grid-template-columns: 210px minmax(0, 1fr); min-height: 190px; }
  .cal__body { padding: 24px; }
  .cal h3 { font-size: 29px; }
  .featured-places { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3) { grid-column: 1/-1; min-height: 470px; }
  .update-card { grid-template-columns: auto 1fr; align-items: start; padding: 42px; }
  .places { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 63px; }
  .timeline-row { grid-template-columns: 110px 1fr; gap: 24px; }
  .timeline-time { width: 100px; font-size: 17px; }
  .event__body { padding: 24px; }
  .schedule-notice { margin-left: 134px; }
  .route-strip { margin-inline: 0; padding-inline: 0; }
}

@media (min-width: 920px) {
  .desktop-nav { display: flex; }
  .menu-button, .menu-panel, .menu-overlay, .bottom-nav { display: none; }
  .desktop-only-link { display: block; }
  .site-footer { padding-bottom: 62px; }
  .home-hero { height: 90vh; }
  .home-hero__photo { object-position: center 48%; }
  .hero-actions { width: auto; }
  .featured-places + .button--full { display: none; }
  .featured-places { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(3) { grid-column: auto; min-height: 390px; }
  .places { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .decision-card { grid-template-columns: 1fr 1fr; align-items: center; padding: 34px; }
}

@media (max-width: 430px) {
  .home-hero h1 { max-width: 330px; font-size: clamp(38px, 10.8vw, 46px); }
  .cal-link { grid-template-columns: 108px minmax(0, 1fr); }
  .cal__body { padding: 14px; }
  .cal h3 { font-size: 20px; }
  .timeline::before { left: 32px; }
  .timeline-row { grid-template-columns: 54px minmax(0, 1fr); gap: 8px; }
  .timeline-time { width: 48px; font-size: 12px; }
  .event__body { padding: 16px; }
  .event h3 { font-size: 21px; }
  .schedule-notice { margin-left: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
