/* ========================================
   MATBATEN — STYLE.CSS
   ======================================== */

:root {
  --primary: #2C3E50;
  --primary-dark: #1A252F;
  --accent: #E74C3C;
  --accent-dark: #C0392B;
  --bg: #FDFEFE;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #7F8C8D;
  --border: #ECF0F1;
  --gold: #F1C40F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 42px; }
h2 { font-size: 32px; margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 12px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin-bottom: 16px; padding-left: 24px; }
li { margin-bottom: 6px; }

strong { font-weight: 600; }

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 800px; }

.section { padding: 80px 0; }
.section--alt { background: var(--white); }
.section--thankyou { min-height: 60vh; display: flex; align-items: center; }

.section__title {
  font-size: 38px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--primary);
}

.section__intro {
  text-align: center;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.section__cta { text-align: center; margin-top: 40px; }

.text-center { text-align: center; }

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.btn--large { padding: 16px 40px; font-size: 17px; }

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner--visible { display: block; }

.cookie-banner__content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 260px;
}

.cookie-banner__content a { color: var(--gold); }
.cookie-banner__content a:hover { color: var(--white); }

.cookie-banner__buttons { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-banner .btn--outline {
  color: var(--white);
  border-color: var(--white);
}
.cookie-banner .btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ========================================
   HEADER
   ======================================== */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo:hover { text-decoration: none; color: var(--primary); }

.nav { display: flex; align-items: center; gap: 4px; }

.nav__link {
  padding: 8px 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}
.nav__link:hover {
  background: var(--border);
  text-decoration: none;
  color: var(--primary);
}
.nav__link--active { color: var(--accent); font-weight: 600; }

.nav__dropdown { position: relative; }

.nav__dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  margin-top: 4px;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-content,
.nav__dropdown:focus-within .nav__dropdown-content { display: block; }

.nav__dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14px;
  transition: background 0.15s;
}
.nav__dropdown-content a:hover {
  background: var(--border);
  text-decoration: none;
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary);
  padding: 8px;
  line-height: 1;
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  background: var(--primary) url('../images/paris-breakfast.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,80,0.45) 0%, rgba(44,62,80,0.65) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__title {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 36px;
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumbs {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; }

/* ========================================
   ABOUT GRID
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-grid__text p { margin-bottom: 16px; }

.about-grid__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ========================================
   CARDS
   ======================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title { font-size: 22px; margin-bottom: 12px; }

.card__text {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 16px;
  flex: 1;
}

.card__meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.card__link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  align-self: flex-start;
}
.card__link:hover { text-decoration: underline; }

/* ========================================
   FAQ
   ======================================== */

.faq { margin-top: 32px; }

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--accent); }

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.25s;
  font-family: 'Open Sans', sans-serif;
}

.faq__item--open .faq__question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.faq__item--open .faq__answer { display: block; }

/* ========================================
   RECIPES
   ======================================== */

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.recipe {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.recipe:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.recipe__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.recipe__title {
  font-size: 22px;
  margin: 20px 24px 12px;
}

.recipe__title a { color: var(--primary); }
.recipe__title a:hover { color: var(--accent); text-decoration: none; }

.recipe__text {
  color: var(--text-light);
  font-size: 15px;
  margin: 0 24px 12px;
  flex: 1;
}

.recipe__meta {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 24px 24px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Article */
.article-content { line-height: 1.75; }

.article-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
}

.article-hero {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
}

.article-content h2 { margin-top: 36px; }

.article-cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  font-size: 17px;
}

/* ========================================
   TOUR DETAIL
   ======================================== */

.tour-hero-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 32px;
  font-size: 14px;
}

.tour-meta span { color: var(--text-light); }
.tour-meta strong { color: var(--primary); }

.tour-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ========================================
   TEAM
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.team-member__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-member__name { font-size: 20px; margin-bottom: 6px; }

.team-member__role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-member__bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   CAREERS
   ======================================== */

.job-listing {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.job-listing h3 { margin-top: 0; }

.job-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ========================================
   CONTACT
   ======================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-block { margin-bottom: 32px; }

.contact-block h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-block p { margin-bottom: 6px; }

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.contact-form-wrapper h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

.form-group--checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.form-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
}

.map-wrapper { margin-top: 64px; }

.map-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.map-wrapper iframe {
  border-radius: 8px;
  display: block;
}

/* ========================================
   THANK YOU
   ======================================== */

.thankyou__message {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.thankyou__cta { margin-top: 32px; }

/* ========================================
   LEGAL
   ======================================== */

.legal-content h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol { margin-bottom: 16px; }

.legal-content ul,
.legal-content ol { padding-left: 24px; }

.legal-content li { margin-bottom: 6px; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  background: var(--white);
}

.cookie-table th,
.cookie-table td {
  padding: 12px 14px;
  text-align: left;
  border: 1px solid var(--border);
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.cookie-table tr:nth-child(even) td {
  background: #F8F9FA;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 0;
  margin-top: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer__col p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #BDC3C7;
  line-height: 1.6;
}

.footer__col a {
  color: #BDC3C7;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #95A5A6;
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .section { padding: 56px 0; }
  .section__title { font-size: 28px; }

  .hero__title { font-size: 34px; }
  .hero__subtitle { font-size: 17px; }
  .hero { height: 70vh; min-height: 440px; }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 4px;
  }

  .nav--open { display: flex; }

  .nav__link {
    padding: 12px 16px;
    width: 100%;
    font-size: 16px;
  }

  .nav__dropdown { width: 100%; }

  .nav__dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    margin-top: 0;
    background: transparent;
  }

  .nav__dropdown-content a {
    padding: 10px 16px;
    font-size: 14px;
  }

  .nav-toggle { display: block; }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__buttons {
    justify-content: stretch;
  }

  .cookie-banner__buttons .btn {
    flex: 1;
  }

  .footer__inner { gap: 32px; }

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

  .cookie-table { font-size: 13px; }
  .cookie-table th,
  .cookie-table td { padding: 8px 10px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 15px; }
  .btn--large { padding: 14px 28px; font-size: 15px; }
  .card__body { padding: 20px; }
  .recipe__title,
  .recipe__text,
  .recipe__meta { margin-left: 20px; margin-right: 20px; }
}

/* Matbaten adaptation: supplied layout, finished content and shared functional controls. */
:root { --primary:#142b3f; --primary-dark:#0c1e2d; --accent:#b34029; --accent-dark:#8c2c1a; --bg:#fffdf9; --text:#20384b; --text-light:#526574; --border:#e3e2da; --gold:#f4c978; }
body { font-family: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
h1,h2,h3,h4,.logo { font-family: Georgia,"Times New Roman",serif; }
.btn { font-family:inherit; border-radius:5px; min-height:46px; }
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,summary:focus-visible { outline:3px solid #c77837; outline-offset:4px; }
.skip-link { position:absolute; top:-90px; left:20px; padding:12px 18px; z-index:10001; background:white; color:var(--primary); }
.skip-link:focus { top:12px; }
.container { max-width:1200px; }
.container--narrow { max-width:820px; }
.eyebrow { font-family:inherit; color:var(--accent); font-size:12px; line-height:1.5; font-weight:750; letter-spacing:.16em; text-transform:uppercase; margin-bottom:15px; }
.logo { font-size:32px; line-height:1; }
.logo-sub { display:block; margin-top:7px; font:650 10px/1.3 ui-sans-serif,system-ui,sans-serif; letter-spacing:.22em; }
.header__inner { height:86px; }
.nav__link { padding:10px 13px; font-size:14px; }
.nav-toggle { font:600 15px/1.5 ui-sans-serif,system-ui,sans-serif; border:1px solid var(--border); border-radius:5px; }
.hero { height:auto; min-height:650px; background-image:url('../images/paris-breakfast.webp'); text-align:left; }
.hero__overlay { background:linear-gradient(90deg,rgba(7,22,32,.86),rgba(7,22,32,.49) 55%,rgba(7,22,32,.12)); }
.hero__content { width:100%; max-width:1200px; padding-top:92px; padding-bottom:105px; }
.hero .eyebrow { color:#f4c978; }
.hero__title { max-width:780px; font-weight:400; font-size:clamp(44px,5.8vw,78px); line-height:1.07; letter-spacing:-.04em; }
.hero__subtitle { max-width:570px; font-size:19px; line-height:1.7; font-weight:400; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
.btn--light { color:white; background:transparent; border:1px solid rgba(255,255,255,.7); }
.btn--light:hover { color:var(--primary); background:white; text-decoration:none; }
.hero-caption { position:absolute; bottom:21px; right:max(20px,calc((100vw - 1160px)/2)); color:#fff; font-size:12px; letter-spacing:.04em; }
.intro-strip { background:var(--primary); color:#fff; padding:20px 0; font-size:14px; }
.intro-strip .container { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.section-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:36px; }
.section-heading h2 { font-size:clamp(30px,3.5vw,44px); font-weight:400; letter-spacing:-.025em; max-width:650px; margin-bottom:0; }
.section-heading>a { flex-shrink:0; }
.section--warm { background:#f3efe7; }
.tour-cards { grid-template-columns:repeat(2,minmax(0,1fr)); gap:30px; }
.card { border-radius:9px; }
.card-image-link { display:block; }
.card__image { height:270px; }
.card__title { font-size:27px; }
.card__title a { color:var(--primary); }
.card__body { padding:28px; }
.card__text { font-size:16px; }
.card__meta { font-size:14px; }
.about-grid__text h2 { font-size:clamp(32px,3.8vw,46px); font-weight:400; letter-spacing:-.025em; }
.about-grid__image img { aspect-ratio:4/3; object-fit:cover; }
.page-heading { background:#f3efe7; padding:65px 0 48px; }
.page-heading .section__title { text-align:left; font-size:clamp(36px,4.6vw,58px); line-height:1.12; font-weight:400; letter-spacing:-.035em; }
.page-heading .section__intro { text-align:left; margin:0; color:var(--text-light); }
.content-section { padding:52px 0 10px; }
.content-section:has(.article-content:empty) { display:none; }
.content-section:last-child { padding-bottom:80px; }
.route-top h1 { font-size:clamp(38px,4.5vw,58px); line-height:1.1; letter-spacing:-.03em; margin-bottom:24px; font-weight:400; }
.route-intro { font-size:18px; color:var(--text-light); }
.route-tags { display:flex; gap:10px; flex-wrap:wrap; margin:28px 0; }
.route-tags span { background:#f3efe7; border:1px solid #e3ddcf; padding:7px 11px; border-radius:4px; font-size:13px; }
.tour-hero-image { aspect-ratio:4/3; object-fit:cover; margin:0; }
figcaption { margin-top:10px; color:var(--text-light); font-size:12px; }
.route-stops { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:36px; margin-top:36px; }
.route-stops p { color:var(--text-light); }
.stop-number { display:block; font:400 46px/1.2 Georgia,serif; color:var(--accent); margin-bottom:20px; }
.article-content h2 { font-weight:400; }
.article-content p,.article-content li { font-size:17px; }
.article-content a { text-decoration:underline; text-underline-offset:3px; }
.article-content .btn { text-decoration:none; }
.faq { margin-top:0; }
.faq details { border-bottom:1px solid #d3d8d8; padding:0 0 4px; }
.faq summary { cursor:pointer; padding:22px 30px 22px 0; font-size:18px; font-weight:650; }
.faq details p { padding:0 0 20px; color:var(--text-light); max-width:850px; }
.contact-layout { margin-top:0; }
.contact-block a { overflow-wrap:anywhere; }
.contact-block h3 { font-size:19px; }
.contact-form input:not([type]),.contact-form input[type=text] { width:100%; padding:12px 14px; border:1px solid #9aa8af; border-radius:4px; font:inherit; }
.contact-form input,.contact-form select,.contact-form textarea { border-color:#9aa8af; font:inherit; }
.contact-form label { font-size:15px; }
.form-note { text-align:left; font-size:14px; margin-bottom:20px; }
.form-status { margin:16px 0 0; min-height:26px; font-size:15px; }
.form-status[data-error=true] { color:#a32d1c; }
.honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
button:disabled { opacity:.65; cursor:wait; }
.footer { margin-top:0; }
.footer__inner { grid-template-columns:1.35fr 1fr 1fr 1.2fr; gap:32px; }
.footer__title { font:600 16px/1.4 ui-sans-serif,system-ui,sans-serif; }
.footer-brand { font:400 34px/1.1 Georgia,serif; }
.footer__col a { overflow-wrap:anywhere; }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; gap:20px; }
.footer__bottom p { margin:0; }
.footer-button { background:none; border:0; color:#fff; cursor:pointer; font:inherit; text-decoration:underline; }
.cookie-banner { left:18px; right:18px; bottom:18px; margin:auto; max-width:1060px; border:1px solid #d5d6cf; border-radius:10px; background:#fff; color:var(--primary); padding:20px; box-shadow:0 10px 40px #142b3f33; }
.cookie-banner.show { display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.cookie-banner>p { flex:1 1 300px; margin:0; font-size:14px; }
.cookie-actions { display:flex; flex-wrap:wrap; gap:8px; }
.cookie-actions button { font:600 14px/1.3 ui-sans-serif,system-ui,sans-serif; min-height:44px; padding:10px 13px; background:white; color:var(--primary); border:1px solid #657480; border-radius:5px; cursor:pointer; }
#consent-dialog { color:var(--primary); background:#fff; margin:auto; border:1px solid var(--border); border-radius:12px; padding:28px; max-width:min(560px,calc(100% - 32px)); max-height:calc(100dvh - 32px); }
#consent-dialog::backdrop { background:#102335a6; }
#consent-dialog h2 { font-size:29px; }
#consent-dialog label { display:flex; align-items:baseline; gap:12px; margin:22px 0; }
#consent-dialog input { width:20px; height:20px; flex:0 0 auto; }
.actions { display:flex; flex-wrap:wrap; gap:12px; }
#consent-dialog .btn-dark { background:var(--primary); color:#fff; }
#consent-dialog .btn-outline { border:1px solid var(--primary); color:var(--primary); background:#fff; }
@media(max-width:1050px) {
 .nav { display:none; position:absolute; top:86px; left:0; right:0; padding:16px; background:#fff; flex-direction:column; align-items:stretch; border-bottom:1px solid var(--border); box-shadow:0 12px 20px #142b3f22; }
 .nav.nav--open { display:flex; }
 .nav-toggle { display:block; }
 .nav__link { font-size:16px; padding:12px; }
}
@media(max-width:760px) {
 .section-heading { align-items:start; flex-direction:column; gap:18px; }
 .tour-cards,.route-stops,.footer__inner { grid-template-columns:1fr; }
 .hero { min-height:600px; background-position:62% center; }
 .hero__content { padding-top:75px; padding-bottom:80px; }
 .hero__title { font-size:clamp(42px,10vw,62px); }
 .hero__subtitle { font-size:17px; }
 .intro-strip .container { flex-direction:column; gap:8px; }
 .card__image { height:230px; }
 .contact-form-wrapper { padding:24px; }
 .footer__bottom { align-items:start; }
 .route-top .about-grid { gap:32px; }
 .cookie-banner.show { gap:16px; }
 .cookie-banner>p { flex-basis:auto; }
 .cookie-actions { width:100%; }
 .cookie-actions button { flex:1 1 125px; }
}
@media(prefers-reduced-motion:reduce) { html{scroll-behavior:auto;} *,*::before,*::after{transition:none!important;animation:none!important;} }
