@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;
  color: #0f1e2e;
}

.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);
}

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

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

.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 {
  background-color: #e9e6df;
  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/tours/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: flex;
  flex-direction: column;
  min-height: clamp(200px, 30vw, 320px);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  padding: clamp(1rem, 3vw, 2rem);
}

.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.1) 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(0.9rem, 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;
  margin-top: auto;
}

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

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

.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 {
  background: url("/images/explorebyarea.webp") center / cover no-repeat;
}

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

/* --- FULLY INDEPENDENT BESPOKE CARD --- */
.bespoke-feature-card {
  position: relative;
  display: block;
  width: 100%;
  /* Same gap as 'By Area' */
  margin-top: clamp(1.5rem, 4vw, 2.5rem); 
  min-height: clamp(280px, 45vw, 520px);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  /* Your specific image */
  background: url("/images/bespoke-luke.webp") center / cover no-repeat;
}

/* Mirroring the dark overlay from your other cards */
.bespoke-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;
}

/* Hover effect */
.bespoke-feature-card:hover {
  filter: brightness(1.05);
  transition: filter 0.3s ease;
}

/* Specifically for long titles like Entertainment to prevent overflow */
.mini-card__title--long {
  font-size: clamp(0.9rem, 4.2vw, 2.1rem); /* Reduced scaling and max-size */
  letter-spacing: 0.04em; /* Slightly tighter tracking to save space */
}