:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #5d6975;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #dfe5e5;
  --blue: #2f6f8f;
  --green: #4d7c59;
  --rose: #ba5f54;
  --gold: #b78328;
  --shadow: 0 16px 48px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  min-height: 92vh;
  background:
    linear-gradient(120deg, rgba(23, 33, 43, 0.84), rgba(47, 111, 143, 0.52)),
    url("https://www.normandie-cabourg-paysdauge-tourisme.fr/app/uploads/iris-images/19585/sans-titre-1-1920x1080-f50_50.webp")
      center / cover;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.92;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  max-width: 1180px;
  min-height: calc(92vh - 72px);
  margin: 0 auto;
  padding: clamp(3rem, 12vh, 7rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 9vh, 5rem);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd58a;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.hero p {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.quick-votes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quick-votes a,
.tab {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.hero-panel,
.facts-box,
.early-option {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel span,
.facts-box span {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffe0a0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong,
.facts-box strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1.16;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.intro-grid,
.kids-grid,
.questions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.intro-grid p:last-child,
.section-heading p,
.destination-card p,
.questions li,
.check-list li {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.subheading {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.status-grid,
.decision-strip {
  display: grid;
  gap: 1rem;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.07);
}

.status-card.locked {
  border-color: rgba(77, 124, 89, 0.42);
  background: #f7fbf7;
}

.status-card h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.status-card p {
  color: var(--muted);
}

.status-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--green);
  line-height: 1.25;
}

.decision-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.decision-strip article {
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem;
  background: #fffaf0;
}

.decision-strip span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-strip strong {
  display: block;
  margin-bottom: 0.35rem;
}

.decision-strip p {
  margin: 0;
  color: var(--muted);
}

.weather-section {
  padding-top: clamp(2rem, 6vw, 4rem);
}

.weather-board {
  border: 1px solid rgba(47, 111, 143, 0.22);
  border-radius: 8px;
  padding: 1rem;
  background: #f2f8f8;
}

.weather-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.weather-meta a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.weather-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 270px;
  border: 1px solid rgba(47, 111, 143, 0.24);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.06);
}

.weather-card.pending,
.weather-card.loading {
  border-color: rgba(183, 131, 40, 0.34);
  background: #fffaf0;
}

.weather-date {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.weather-date time {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.weather-date span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: right;
}

.weather-places {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.25;
}

.weather-reports {
  display: grid;
  gap: 0.7rem;
}

.weather-report {
  display: grid;
  gap: 0.2rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.weather-report:first-child {
  border-top: 0;
  padding-top: 0;
}

.weather-report strong {
  font-size: 0.94rem;
}

.weather-report span,
.weather-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.muted-report strong {
  color: var(--gold);
}

.weather-note {
  margin: auto 0 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.08);
}

.image-card figure {
  margin: 0;
}

.image-frame {
  position: relative;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(47, 111, 143, 0.16), rgba(186, 95, 84, 0.16)),
    #eef4f1;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.placeholder {
  display: none;
  min-height: 230px;
  padding: 1rem;
  place-content: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.image-card.failed img {
  display: none;
}

.image-card.failed .placeholder {
  display: grid;
}

.image-card figcaption {
  padding: 1rem;
}

.image-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.source {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.source a {
  color: var(--blue);
}

.destinations {
  display: grid;
  gap: 1rem;
}

.destinations .section-heading {
  margin-bottom: 0.5rem;
}

.destination-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}

.destination-card p,
.destination-card .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.destination-card .eyebrow {
  color: #ffe0a0;
}

.destination-card h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #10151b;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.normandy {
  background:
    linear-gradient(110deg, rgba(23, 33, 43, 0.88), rgba(47, 111, 143, 0.58)),
    url("https://www.normandie-cabourg-paysdauge-tourisme.fr/app/uploads/2025/03/falaises-des-vaches-noires-studio-911-28083.webp")
      center / cover;
}

.destination-card .facts-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.kids-grid > div {
  border-top: 4px solid var(--line);
  padding-top: 1.25rem;
}

.shopping-section {
  scroll-margin-top: 1rem;
}

.shopping-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  max-width: none;
}

.shopping-heading p:last-child {
  margin: 0;
}

.shopping-person-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.shopping-person-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.shopping-person-nav a:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.shopping-person {
  scroll-margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.07);
}

.shopping-person-featured {
  border-color: rgba(47, 111, 143, 0.35);
  background: linear-gradient(180deg, #f5fafb 0, #fff 52%);
}

.shopping-person-header,
.shopping-placeholder-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.shopping-person-header h3 {
  max-width: 19ch;
}

.shopping-status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #dfeff3;
  color: #245a75;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.shopping-status-open {
  background: #f7f1e5;
  color: #8a641f;
}

.shopping-brief {
  max-width: 820px;
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.shopping-route {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(47, 111, 143, 0.26);
  border-radius: 10px;
  padding: 1rem;
  background: #eaf4f6;
}

.shopping-route > div:not(:first-child) {
  border-left: 1px solid rgba(47, 111, 143, 0.2);
  padding-left: 1rem;
}

.shopping-route span,
.shop-hours span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shopping-route strong {
  line-height: 1.25;
}

.shopping-route p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.paris-plan-section {
  background: linear-gradient(180deg, rgba(234, 244, 246, 0.52), transparent 34%);
}

.paris-plan-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.paris-plan-heading > p {
  max-width: 520px;
  margin: 0;
}

.paris-plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 1rem;
  align-items: start;
}

.paris-plan-side {
  display: grid;
  gap: 1rem;
}

.day-plan {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.07);
}

.day-plan-featured {
  border-color: rgba(47, 111, 143, 0.35);
  background: linear-gradient(150deg, #f5fafb, #fff 68%);
}

.day-plan-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.day-plan-header h3 {
  max-width: 22ch;
}

.plan-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 850;
  white-space: nowrap;
}

.plan-badge-soft {
  background: #f7f1e5;
  color: #8a641f;
}

.day-timeline {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-timeline li {
  display: grid;
  grid-template-columns: 8.7rem 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(47, 111, 143, 0.16);
  padding-top: 0.7rem;
}

.day-timeline li:first-child {
  border-top: 0;
  padding-top: 0;
}

.day-timeline time {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.day-timeline strong,
.day-plan h3 {
  display: block;
  margin-bottom: 0.25rem;
}

.day-timeline p,
.day-plan p {
  margin: 0;
  color: var(--muted);
}

.plan-card-kodawari {
  border-color: rgba(183, 131, 40, 0.35);
  background: #fffaf0;
}

.plan-card-monday {
  border-color: rgba(77, 124, 89, 0.35);
  background: #f7fbf7;
}

.queue-plan {
  margin-top: 1rem;
  border-top: 1px solid rgba(183, 131, 40, 0.25);
  padding-top: 0.9rem;
}

.queue-plan strong {
  display: block;
  margin-bottom: 0.5rem;
}

.queue-plan .check-list {
  margin-top: 0;
}

.plan-note {
  margin-top: 1rem !important;
  font-size: 0.84rem;
}

.tuesday-lunch-plan {
  margin-top: 1rem;
  border-color: rgba(77, 124, 89, 0.35);
  background: linear-gradient(120deg, #f7fbf7, #fff);
}

.tuesday-lunch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.tuesday-lunch-grid p + p {
  margin-top: 0.8rem;
}

.route-callout {
  border-left: 3px solid var(--green);
  padding-left: 1rem;
}

.route-callout strong {
  display: block;
  margin-bottom: 0.25rem;
}

.route-callout a {
  display: block;
  margin-top: 0.65rem;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.trip-map-section {
  scroll-margin-top: 1rem;
}

.trip-map-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.trip-map-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.trip-map-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
}

.trip-map-toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.trip-map-scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trip-map-scope {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.trip-map-scope:hover,
.trip-map-scope:focus-visible {
  border-color: var(--blue);
}

.trip-map-scope.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.trip-map-status {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: right;
}

.trip-map {
  z-index: 0;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border: 1px solid rgba(47, 111, 143, 0.24);
  border-radius: 8px;
  background: #e9efed;
}

.trip-map-loading,
.trip-map-fallback {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
}

.trip-map .leaflet-control-zoom a {
  color: var(--ink);
}

.trip-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.trip-map .leaflet-popup-content {
  margin: 0.85rem 1rem;
  font-family: inherit;
  line-height: 1.45;
}

.trip-map .leaflet-popup-content small,
.trip-map .leaflet-popup-content strong,
.trip-map .leaflet-popup-content span {
  display: block;
}

.trip-map .leaflet-popup-content small {
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-map .leaflet-popup-content span {
  margin-top: 0.15rem;
  color: var(--muted);
}

.trip-map .leaflet-popup-content p {
  margin: 0.45rem 0 0;
}

.trip-map .leaflet-popup-content a {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--blue);
  font-weight: 800;
}

.trip-map .leaflet-tooltip {
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(23, 33, 43, 0.2);
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 800;
}

.trip-map-marker {
  display: grid;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  place-items: center;
  transform: rotate(-45deg);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(23, 33, 43, 0.32);
  font-size: 0.7rem;
  font-weight: 900;
}

.trip-map-marker span {
  transform: rotate(45deg);
}

.trip-map-marker.category-stay {
  background: var(--rose);
}

.trip-map-marker.category-booked {
  background: var(--green);
}

.trip-map-marker.category-transport {
  background: #66727c;
}

.trip-map-marker.category-food {
  background: #a56a12;
}

.trip-map-marker.category-outing {
  background: var(--blue);
}

.trip-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.trip-map-legend > span {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.map-key {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.map-key-stay {
  background: var(--rose);
}

.map-key-booked {
  background: var(--green);
}

.map-key-transport {
  background: #66727c;
}

.map-key-food {
  background: #a56a12;
}

.map-key-outing {
  background: var(--blue);
}

.trip-map-help {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.shop-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-list-priority {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem;
  background: #fff;
}

.shop-card-value {
  border-color: rgba(77, 124, 89, 0.42);
  background: #f7fbf7;
}

.shop-card-priority {
  border-color: rgba(77, 124, 89, 0.55);
  background: linear-gradient(145deg, #f2f7f0, #fff);
}

.shop-card-bonus {
  border-color: rgba(183, 131, 40, 0.35);
  background: #fffaf0;
}

.shop-card-heading {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.shop-rank {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.shop-card h4 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}

.shop-address {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.shop-hours {
  margin-top: 1rem;
  border-radius: 8px;
  padding: 0.75rem;
  background: #edf6f7;
}

.shop-hours strong,
.shop-hours small {
  display: block;
}

.shop-hours strong {
  line-height: 1.25;
}

.shop-hours small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.shop-card > p {
  color: var(--muted);
}

.shop-price {
  margin-top: 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.7rem;
}

.shop-price span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-price strong {
  display: block;
  margin-top: 0.1rem;
  line-height: 1.25;
}

.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: auto 0 1rem;
  padding-top: 0.4rem;
}

.shop-tags span {
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: #eef3f3;
  color: #42505b;
  font-size: 0.74rem;
  font-weight: 750;
}

.shop-link {
  align-self: flex-start;
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.shopping-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 1rem;
  margin-top: 1rem;
  border-radius: 10px;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
}

.shopping-note span {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffd58a;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shopping-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.shopping-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.shopping-person-placeholder {
  min-height: 190px;
  box-shadow: none;
}

.shopping-person-placeholder h3 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.shopping-person-placeholder > p {
  margin-bottom: 0;
  color: var(--muted);
}

.likes {
  border-color: var(--green);
}

.watchouts {
  border-color: var(--rose);
}

.stay-grid,
.trip-grid {
  display: grid;
  gap: 1rem;
}

.stay-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.stay-card,
.trip-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.07);
}

.trip-grid .longues-sur-mer {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #f6f1e8, var(--surface));
}

.stay-card.featured {
  border-color: rgba(77, 124, 89, 0.45);
  background: #f2f7f0;
}

.stay-card p,
.trip-grid p {
  color: var(--muted);
}

.stay-card h3,
.trip-grid h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.normandy-actions {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.source-note a {
  color: var(--blue);
  font-weight: 750;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.pill-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.tab {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.tab.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.timeline {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.timeline time {
  color: var(--blue);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 0.25rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.early-option {
  margin-top: 1rem;
  border-color: var(--line);
  background: #f7f1e5;
  color: var(--ink);
  box-shadow: none;
}

.early-option p {
  color: var(--muted);
}

.question-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 4vw, 2rem);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 920px) {
  .hero,
  .intro-grid,
  .kids-grid,
  .questions,
  .destination-card {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: center;
  }

  .hero-panel {
    max-width: 520px;
  }

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weather-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-grid,
  .decision-strip {
    grid-template-columns: 1fr;
  }

  .stay-grid,
  .trip-grid,
  .shop-list,
  .shopping-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .shopping-heading,
  .shopping-note,
  .shopping-route {
    grid-template-columns: 1fr;
  }

  .paris-plan-heading,
  .day-plan-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .paris-plan-layout,
  .tuesday-lunch-grid,
  .shop-list-priority {
    grid-template-columns: 1fr;
  }

  .shopping-route > div:not(:first-child) {
    border-top: 1px solid rgba(47, 111, 143, 0.2);
    border-left: 0;
    padding-top: 1rem;
    padding-left: 0;
  }

  .trip-map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .trip-map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .trip-map-status {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .weather-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .day-timeline li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .shopping-person-header,
  .shopping-placeholder-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopping-person-placeholder h3 {
    margin-top: 1rem;
  }

  .trip-map {
    height: 420px;
  }
}
