
  /* --- BASE (consistent with your index.html style) --- */
  @font-face {
    font-family: "Custom1";
    src: url("fonts/custom1.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }

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

  body {
    font-family: "Custom1", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #e9e6df;
    color: #0f1e2e;
  }

  a { color: inherit; }

  .container {
    width: min(1100px, calc(100% - 3rem));
    margin-inline: auto;
  }

  /* --- SECTIONS (tuned vertical rhythm) --- */
  section {
    padding: clamp(2rem, 4.2vw, 3.5rem) 0;
  }

  /* Intro block: slightly tighter bottom padding */
  .intro {
    padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
  }

  /* Cards block: slightly tighter top padding */
  .chooser {
    padding-top: clamp(1.4rem, 3vw, 2.2rem);
  }

  /* --- PAGE INTRO --- */
  .page-title {
    font-size: clamp(1.8rem, 4.6vw, 2.7rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 800;
    /* tightened */
    margin-bottom: clamp(0.6rem, 1.6vw, 1rem);
  }

  .lede {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1rem, 2.6vw, 1.15rem);
    line-height: 1.75;
    color: #14263a;
    /* tightened line length */
    max-width: 70ch;
  }

  /* --- SECTION HEADING --- */
  .section-title {
    font-size: clamp(1.4rem, 3.6vw, 2.2rem);
    letter-spacing: 0.02em;
    margin-bottom: clamp(0.9rem, 2vw, 1.25rem);
  }

  /* --- CARD GRID: 2-up always (even on mobile) --- */
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* always 2-up */
    gap: clamp(0.85rem, 2.6vw, 1.5rem);
  }

  @media (max-width: 360px) {
    .container { width: min(1100px, calc(100% - 2rem)); }
  }

  /* --- CARDS --- */
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: clamp(210px, 42vw, 340px);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    padding: clamp(0.9rem, 2.8vw, 1.6rem);
  }

  .card::before {
    content: "";
    position: absolute;
    inset: 0;
    /* slightly lighter so images shine through more */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.08) 45%,
      rgba(0,0,0,0.52) 100%
    );
    z-index: 0;
  }

  .card > * {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }

  /* Kicker: a bit bigger + prominent (top) */
  .kicker {
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    opacity: 0.95;
  }

  /* Title: pinned to bottom */
  .title {
    margin-top: auto; /* pushes to bottom */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 0.98;
    font-size: clamp(1.3rem, 4vw, 2.4rem);
    max-width: 18ch;
  }

  /* --- Background images (swap to your assets) --- */
  .bg-walking { background: url("images/tours-walking.webp") center / cover no-repeat; }
  .bg-bike    { background: url("images/tours-bike-tours.webp") center / cover no-repeat; }
  .bg-hire    { background: url("images/tours-bike-hire.webp") center / cover no-repeat; }
  .bg-self    { background: url("images/tours-self-guided.webp") center / cover no-repeat; }

<style>
  /* Custom font */
  @font-face {
    font-family: "Custom1";
    src: url("fonts/custom1.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }

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

  body {
    font-family: "Custom1", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  /* ---------------- HERO ---------------- */

  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
  }

  .hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: start center;
    padding: clamp(1rem, 4vw, 3rem);
    color: #f2f0e8;
  }

  .hero-text {
    margin-top: 12%;
    text-align: center;
    width: 100%;
  }

  .hero-text h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 0.95;
  }

  .line-one {
    font-size: clamp(1.6rem, 5vw, 3rem);
    margin-bottom: clamp(0.35rem, 1.2vw, 0.9rem);
  }

  .line-two {
    font-size: clamp(3.2rem, 18vw, 12.5rem);
    width: 85vw;
    margin-inline: auto;
  }

  @media (min-width: 768px) {
    .hero-text { margin-top: 12%; }
  }

  @media (min-width: 1024px) {
    .hero-text { margin-top: 18%; }
  }

  .strapline {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1rem, 3vw, 1.25rem);
    line-height: 1.45;
    margin-top: clamp(1.2rem, 3.5vw, 2.2rem);
    max-width: 40ch;
    margin-inline: auto;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  }

  /* ---------------- INTRO ---------------- */

  .page-intro {
    background-color: #e9e6df;
    padding: clamp(3rem, 6vw, 6rem) 1.5rem;
  }

  .page-intro .container {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
  }

  .page-intro__title {
    font-family: "Custom1", system-ui, -apple-system, sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: #0f1e2e;
  }

  .page-intro__text {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    line-height: 1.7;
    color: #14263a;
    margin-bottom: 1.5rem;
  }

  .page-intro__text:last-child {
    margin-bottom: 0;
  }

  /* ---------------- OFFERINGS ---------------- */

 .offerings {
  background-color: #e9e6df; /* same as intro */
  padding: clamp(2rem, 5vw, 4rem) 1.5rem clamp(3rem, 6vw, 6rem);
}

  .feature-card {
    position: relative;
    display: block;
    width: 100%;
    min-height: clamp(280px, 45vw, 520px);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    background: url("images/walking-tours.webp") center / cover no-repeat;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%);
    z-index: 0;
  }

  .feature-card__kicker {
    position: absolute;
    top: clamp(1rem, 3vw, 2rem);
    left: clamp(1rem, 3vw, 2rem);
    z-index: 1;
    font-family: "Custom1", system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: clamp(1rem, 2.8vw, 1.4rem);
    color: #f2f0e8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  }

  .feature-card__title {
    position: absolute;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1;
    font-family: "Custom1", system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    line-height: 0.95;
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }

  .card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.8rem, 3vw, 1.5rem);
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }

  .mini-card {
    position: relative;
    display: block;
    min-height: clamp(200px, 30vw, 320px);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    isolation: isolate;
    padding: clamp(1rem, 3vw, 2rem);
  }

  .mini-card--itineraries {
    background: url("images/itineraries.webp") center / cover no-repeat;
  }

  .mini-card--attractions {
    background: url("images/attractions.webp") center / cover no-repeat;
  }

.feature-card--areas {
  background: url("images/explorebyarea.webp") center / cover no-repeat;
}

  .mini-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.10) 45%,
      rgba(0,0,0,0.55) 100%
    );
    z-index: 0;
  }

  .mini-card__title,
  .mini-card__desc {
    position: relative;
    z-index: 1;
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  }

  .mini-card__title {
    font-family: "Custom1", system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: clamp(1.6rem, 4.8vw, 2.6rem);
    line-height: 1;
    margin-bottom: 0.6rem;
  }

  .mini-card__desc {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, sans-serif;
    font-size: clamp(0.95rem, 2.6vw, 1.1rem);
    line-height: 1.45;
    max-width: 34ch;
    opacity: 0.95;
  }

.feature-card--food {
  margin-top: clamp(1rem, 3vw, 1.5rem);
  background: url("images/foodanddrink.webp") center / cover no-repeat;
}

.mini-card--free {
  background: url("images/free.webp") center / cover no-repeat;
}

.mini-card--streetart {
  background: url("images/streetart.webp") center / cover no-repeat;
}

.feature-card--areas-bottom {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.mini-card__desc {
  margin-top: auto;  /* pushes it to the bottom */
}

/* --- OVERRIDE: title stays top, subheading sticks to bottom --- */
.offerings .mini-card{
  display: flex !important;
  flex-direction: column;
}

.offerings .mini-card__desc{
  margin-top: auto !important;
}

/* =========================================
   TOUR PAGES — APPEND TO styles.css
   (keeps your fonts/colors/rounded cards)
   ========================================= */

/* Generic max-width helper (matches your container rhythm) */
.content {
  width: min(900px, calc(100% - 3rem));
  margin-inline: auto;
}

/* Tour hero (image + overlay + title) */
.tour-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tour-hero__img {
  width: 100%;
  height: clamp(320px, 52vw, 520px);
  object-fit: cover;
  display: block;
}

.tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.tour-hero__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: clamp(1rem, 4vw, 3rem);
}

.tour-hero__title {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-align: center;
  font-weight: 850;
  font-size: clamp(1.8rem, 6vw, 4rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  max-width: 22ch;
}

.tour-hero__subtitle {
  margin-top: 0.9rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: rgba(255,255,255,0.95);
  text-align: center;
  line-height: 1.5;
  max-width: 60ch;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Simple breadcrumb / back link */
.breadcrumb {
  padding: 1.25rem 0 0;
}

.breadcrumb a {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,30,46,0.25);
}

/* Section blocks (use your existing section padding) */
.tour-section {
  padding: clamp(2rem, 4.2vw, 3.5rem) 0;
}

.tour-section .section-title {
  margin-bottom: 1rem;
}

/* Key facts panel */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 2.6vw, 1.2rem);
}

@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; }
}

.fact {
  background: rgba(255,255,255,0.5);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15,30,46,0.10);
}

.fact__k {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.85rem;
  opacity: 0.9;
}

.fact__v {
  margin-top: 0.35rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  color: #14263a;
}

/* Buttons (quiet, not salesy) */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15,30,46,0.25);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn--primary {
  background: #0f1e2e;
  color: #ffffff;
  border-color: #0f1e2e;
}

.btn--ghost {
  background: transparent;
  color: #0f1e2e;
}

/* Itinerary list */
.itinerary {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(15,30,46,0.10);
  border-radius: 22px;
  padding: 1rem 1.25rem;
}

.itinerary ol {
  margin-left: 1.2rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.8;
  color: #14263a;
}

.itinerary li + li { margin-top: 0.25rem; }

/* Responsive video embed */
.media {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(15,30,46,0.10);
  border-radius: 22px;
  overflow: hidden;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,0.08);
}

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

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 2.6vw, 1.2rem);
}

@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
}

.gallery img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  min-height: 220px;
}

/* FAQ (details/summary) */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(15,30,46,0.10);
  border-radius: 18px;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.faq p {
  margin-top: 0.65rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #14263a;
}

/* Tours index: allow a wide 3rd card */
.grid--tours .card--wide {
  grid-column: 1 / -1;
}

