/* ==========================================================================
   THULA TRAVEL — Stylesheet
   --------------------------------------------------------------------------
   This file controls how the whole website looks.

   The block just below (":root") is the CONTROL PANEL. Every colour, font and
   spacing value the site uses is named and set here once. Change a value here
   and it updates everywhere automatically — you never have to hunt through the
   file. The rest of the stylesheet just refers back to these names.
   ========================================================================== */

:root {

  /* ---- Colours (Thula brand: forest greens, warm cream, brass gold) ----- */
  /* Light, warm backgrounds for the photo-led sections                      */
  --mist:           #F5EFE1;   /* soft warm cream-white — the main background */
  --mist-deep:      #EDE4CF;   /* a deeper cream for soft bands               */
  --cream:          #F1E6C6;   /* the brand ivory — text on green, accents    */

  /* The Thula greens, taken from the brand artwork                          */
  --stillwater:     #234B30;   /* rich forest green — our anchor colour       */
  --stillwater-dk:  #18361F;   /* deeper forest green for the footer          */
  --forest:         #234B30;   /* same forest green, clearer name             */
  --moss:           #3E6B45;   /* mid green — used in the dot artwork         */
  --sage:           #7E9A66;   /* soft sage green — dot-art highlights        */

  /* Warm metallics and accents                                              */
  --late-sun:       #BE9A4E;   /* antique brass-gold — buttons, fine accents  */
  --late-sun-dk:    #A1813B;   /* the same gold, darker, for hover            */
  --gold:           #BE9A4E;   /* clearer name for the brass-gold             */
  --clay:           #B98A7A;   /* a gentle dusty-rose warm accent             */
  --clay-wash:      #EDE4CF;   /* soft cream tint for set-apart sections      */

  --riverbed:       #36302A;   /* warm dark brown — body text on light        */

  /* ---- Fonts ----------------------------------------------------------- */
  --font-heading:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:      'Mulish', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-script:    'Alex Brush', 'Brush Script MT', cursive;

  /* ---- Spacing rhythm (consistent gaps, small to huge) ----------------- */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 9rem;

  /* ---- Layout ---------------------------------------------------------- */
  --content-width:  1180px;   /* the widest the content ever gets */
  --reading-width:  640px;    /* narrow column for comfortable reading */
  --edge:           1.5rem;   /* breathing room at the screen edges on phones */
}


/* ==========================================================================
   BASE — sensible defaults for the whole page
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;        /* makes sizing predictable */
}

html {
  scroll-behavior: smooth;       /* gentle glide when clicking nav links */
}

body {
  margin: 0;
  background-color: var(--mist);
  background-image: url('../images/dot-pattern-light.svg');
  background-size: 440px;
  color: var(--riverbed);
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* ~17px — comfortable for all ages */
  line-height: 1.7;              /* airy, easy-to-read text */
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;                  /* images never overflow or squash */
}

a {
  color: inherit;
}

/* A "skip link" — lets keyboard users jump straight to the content.
   It stays hidden until focused. An accessibility good-manners touch. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--stillwater);
  color: var(--cream);
  padding: var(--space-sm) var(--space-md);
  z-index: 100;
}
.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}

/* Visually hidden, but read aloud by screen readers and seen by search engines.
   Used for headings that keep the document outline correct without changing
   the visible design. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   TYPOGRAPHY — headings and shared text styles
   ========================================================================== */

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--stillwater);
  margin: 0 0 var(--space-md) 0;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }   /* grows with screen size */
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin: 0 0 var(--space-md) 0; }

/* A small, letter-spaced label in capitals — like signage on a good hotel.
   Used above headings as a quiet "kicker". */
.kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--late-sun);
  margin: 0 0 var(--space-sm) 0;
}

/* The recurring "whisper" — the word thula or a soft phrase in italic.
   Our quiet signature, repeated gently through the page. */
.whisper {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--clay);
}


/* ==========================================================================
   REUSABLE PIECES
   ========================================================================== */

/* Centres content and stops it stretching too wide on big screens. */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

/* Generous vertical space around each section — the "room to breathe". */
.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

/* A centred text block on a comfortable reading width (used on the About page) */
.text-center { text-align: center; }
.text-center .container { max-width: var(--reading-width); }

/* THE SIGNATURE ELEMENT — a calm horizon line.
   A thin rule with a small diamond at its centre, like sea meeting sky.
   Used to separate sections quietly. */
.horizon {
  border: 0;
  width: 200px;
  height: 80px;
  margin: var(--space-md) auto;
  background: url('../images/divider.svg') center / contain no-repeat;
}

/* Cathy's story follows straight after Gillian's divider, and is itself
   followed immediately by a photo, so the usual generous section padding
   would double up on both sides. */
section[aria-label="Cathy's story"] { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }

/* The buttons. The solid gold one is for the single most important action. */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: var(--late-sun);
  color: var(--forest);
  border: 1px solid var(--late-sun);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--late-sun-dk);
  border-color: var(--late-sun-dk);
}
/* An "outline" button for darker backgrounds. */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover,
.btn-ghost:focus {
  background: #fff;
  color: var(--stillwater);
  border-color: #fff;
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: absolute;            /* sits over the hero photo */
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.brand {
  font-family: var(--font-script);
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-decoration: none;
}
/* The Thula Travel logo image (white, transparent) */
.brand-logo {
  display: block;
  height: 64px;
  width: auto;
}
.brand-logo--footer {
  height: 74px;
  margin: 0 auto;
}

/* The menu button (hamburger) — shown on small screens only */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* On small screens the menu is hidden until the button is tapped */
.main-nav {
  flex-basis: 100%;
  display: none;
}
.main-nav.is-open { display: block; }

.main-nav > ul {
  list-style: none;
  margin: var(--space-sm) 0 0 0;
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  background: rgba(24, 54, 31, 0.96);
  border-radius: 4px;
}
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.main-nav a:hover,
.main-nav a:focus {
  border-bottom-color: var(--late-sun);
}

/* Instagram icon link in the top bar */
.social-link {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  padding-bottom: 0;
  border-bottom: none;
  transition: color 0.25s ease;
}
.social-link:hover,
.social-link:focus {
  color: var(--late-sun);
  border-bottom: none;
}
.social-link svg {
  display: block;
  width: 22px;
  height: 22px;
}

/* The "Journeys" dropdown parent button */
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: none;
  border: 0;
  padding: 0 0 2px 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus { border-bottom-color: var(--late-sun); }
.nav-dropdown-toggle .caret { margin-left: 0.4em; font-size: 0.7em; }

/* The dropdown sub-menu, hidden until opened */
.nav-dropdown {
  list-style: none;
  margin: var(--space-sm) 0 0 0;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.has-dropdown.open .nav-dropdown { display: flex; }

@media (min-width: 720px) {
  .has-dropdown { position: relative; }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--space-sm);
    min-width: 235px;
    padding: var(--space-md);
    background: rgba(24, 54, 31, 0.97);
    border-radius: 4px;
    text-align: center;
    z-index: 40;
  }
  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown { display: flex; }
  .nav-dropdown a { white-space: nowrap; }
}


/* ==========================================================================
   HERO — the full-screen opening photograph
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  /* The photo, with a soft dark wash ONLY where the text sits, so the
     headline stays readable without hiding the picture. */
  background-image:
    linear-gradient(to bottom,
      rgba(24, 54, 31, 0.45) 0%,
      rgba(24, 54, 31, 0.15) 35%,
      rgba(24, 54, 31, 0.25) 70%,
      rgba(24, 54, 31, 0.55) 100%),
    url('../images/hero-cape-town.jpg');
  background-size: cover;
  background-position: center;
}
.hero__inner {
  max-width: 760px;
  padding: var(--space-xl) var(--edge);
}
.hero h1 {
  color: var(--cream);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero__tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 300;
  max-width: 30ch;
  margin: 0 auto var(--space-xl) auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* A gentle "scroll down" hint at the bottom of the hero. */
.scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 230, 198, 0.85);
}


/* ==========================================================================
   WELCOME — the short, airy introduction
   ========================================================================== */

.welcome {
  text-align: center;
}
.welcome .container {
  max-width: var(--reading-width);
}
.welcome .lead {
  font-size: 1.2rem;
}

/* A full-width photograph used as a calm band between sections */
.feature-image {
  margin: 0;
}
.feature-image img {
  display: block;
  width: 100%;
  height: clamp(320px, 55vh, 720px);
  object-fit: cover;
  object-position: center 35%;
}


/* ==========================================================================
   THE SIGNATURE JOURNEY — intro + three alternating chapters
   ========================================================================== */

.journey-intro {
  text-align: center;
}
.journey-intro .container {
  max-width: var(--reading-width);
}

/* One chapter = a photo and a piece of text, side by side on wide screens,
   stacked on phones. */
.chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.chapter:last-child { margin-bottom: 0; }

.chapter__media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px -22px rgba(24, 54, 31, 0.55);
}
.chapter__body .kicker {
  color: var(--late-sun);
}
.chapter__body h3 {
  margin-bottom: var(--space-sm);
}


/* ==========================================================================
   COMING SOON — the women's getaways
   ========================================================================== */

.getaways {
  background-color: var(--mist-deep);
  background-image: url('../images/dot-pattern-light.svg');
  background-size: 440px;
}
.getaways__head {
  text-align: center;
  max-width: var(--reading-width);
  margin: 0 auto var(--space-lg) auto;
}
.getaways__head .kicker { color: var(--gold); }

.getaway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.getaway-card {
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 45px -28px rgba(58, 53, 47, 0.5);
  display: flex;
  flex-direction: column;
}
.getaway-card__media {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 14px;
}
.getaway-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* A small "Coming soon" ribbon on each card. */
.tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: rgba(44, 70, 63, 0.92);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}
.getaway-card__body {
  padding: var(--space-md);
}
.getaway-card__body h3 {
  margin-bottom: var(--space-xs);
  color: var(--gold);
}
.getaway-card__meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: var(--space-sm);
}

/* Two honeymoon journeys side by side, used to let a couple pick a path. */
.journey-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
@media (min-width: 760px) {
  .journey-options {
    grid-template-columns: 1fr 1fr;
  }
}


/* ==========================================================================
   WHY THULA — the trust / who-we-are moment
   ========================================================================== */

.why {
  background-color: var(--forest);
  background-image: url('../images/dot-pattern.svg');
  background-size: 440px;
  color: var(--cream);
  text-align: center;
}
.why .container { max-width: 760px; }
.why h2 { color: var(--cream); }
.why .whisper { color: var(--clay); }

/* A quiet placeholder for a future testimonial. */
.testimonial-soon {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(241, 230, 198, 0.75);
}


/* ==========================================================================
   TAILORED — a green feature band for personalised journeys
   ========================================================================== */

.tailored {
  background-color: var(--forest);
  background-image: url('../images/dot-pattern.svg');
  background-size: 440px;
  color: var(--cream);
  text-align: center;
}
.tailored .container { max-width: var(--reading-width); }
.tailored h2 { color: var(--cream); }
.tailored .kicker { color: var(--gold); }

/* A photo collage of curated experiences (on the Tailored Journeys band) */
.collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) auto;
}
.collage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* ==========================================================================
   REVIEWS — kind words from travellers (green band, cream quote card)
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  max-width: 980px;
  margin: var(--space-md) auto 0;
}
.reviews .review {
  margin: 0;
  background: var(--cream);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
}
.review-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--riverbed);
  margin: 0 0 var(--space-md);
}
.review-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--late-sun-dk);
  margin: 0;
}
.review-name::before {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: var(--late-sun);
  margin: 0 auto var(--space-sm);
}

/* Dictionary-style definition (e.g. the meaning of "thula") */
.definition {
  max-width: 460px;
  margin: var(--space-lg) auto;
  text-align: center;
  color: var(--cream);
}
.definition dt { font-family: var(--font-heading); }
.definition__word { font-size: 1.9rem; font-style: italic; }
.definition__phon { color: var(--gold); font-style: italic; font-size: 1.05rem; margin-left: 8px; }
.definition__pos {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 8px;
}
.definition dd {
  margin: var(--space-sm) 0 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.5;
}
/* Dark-text version for light (cream) backgrounds */
.definition.definition--light { color: var(--riverbed); }


/* ==========================================================================
   ENQUIRY — the closing invitation
   ========================================================================== */

.enquire {
  text-align: center;
}
.enquire .container { max-width: var(--reading-width); }


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

.site-footer {
  background-color: var(--stillwater-dk);
  background-image: url('../images/dot-pattern.svg');
  background-size: 440px;
  color: rgba(241, 230, 198, 0.82);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
  text-align: center;
}
.site-footer .brand {
  display: inline-block;
  margin-bottom: var(--space-xs);
}
.footer-whisper {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--clay);
  margin-bottom: var(--space-lg);
}
.footer-nav ul {
  list-style: none;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}
.footer-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(241, 230, 198, 0.78);
}
.footer-nav a:hover,
.footer-nav a:focus { color: var(--late-sun); }

.footer-fineprint {
  font-size: 0.8rem;
  color: rgba(241, 230, 198, 0.5);
}


/* ==========================================================================
   LARGER SCREENS — tablet and desktop adjustments
   The site is built for phones first; these rules enhance it on bigger screens.
   ========================================================================== */

/* Tablet and up */
@media (min-width: 720px) {

  /* On larger screens, show the full menu inline and hide the menu button. */
  .nav-toggle { display: none; }
  .main-nav { display: block; flex-basis: auto; }
  .main-nav > ul {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background: none;
    gap: var(--space-sm) var(--space-md);
  }

  /* A single getaway card, centred and held to a sensible width. */
  .getaway-grid {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Desktop */
@media (min-width: 960px) {

  .section {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
  }

  /* Chapters become two columns: photo on one side, words on the other. */
  .chapter {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  /* Alternate the sides — every second chapter flips, for visual rhythm. */
  .chapter:nth-child(even) .chapter__media { order: 2; }

  .chapter__body { padding: 0 var(--space-md); }
}


/* ==========================================================================
   ENQUIRE PAGE — a green banner at the top, then the enquiry form
   ========================================================================== */

/* The green banner holds the logo, the menu, and the page title. */
.page-banner {
  background-color: var(--forest);
  background-image: url('../images/dot-pattern.svg');
  background-size: 440px;
  color: var(--cream);
}
.banner-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}
.banner-title {
  max-width: var(--reading-width);
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--space-xl);
}
.banner-title h1 { color: var(--cream); margin-bottom: var(--space-sm); }
.banner-title .kicker { color: var(--gold); }
.banner-lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(241, 230, 198, 0.9);
  margin: 0;
}

/* The form itself. */
.form-wrap { max-width: var(--reading-width); }

.enquiry-form .field {
  margin-bottom: var(--space-md);
  text-align: left;
}
.enquiry-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-xs);
}
.enquiry-form label .optional {
  color: var(--moss);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--riverbed);
  background: #FFFDF7;
  border: 1px solid #CDBF9E;
  border-radius: 3px;
  padding: 0.85rem 1rem;
}
.enquiry-form textarea {
  min-height: 150px;
  resize: vertical;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 154, 78, 0.20);
}
.enquiry-form .btn-primary {
  margin-top: var(--space-sm);
  cursor: pointer;
}

/* A spam-catcher field, hidden from real visitors. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* The gentle error note, shown only if something goes wrong. */
.form-error {
  margin-top: var(--space-md);
  color: #9A3B2F;
  font-size: 0.95rem;
}

/* The thank-you message shown after a successful send. */
.form-thanks {
  text-align: center;
  padding: var(--space-lg) 0;
}
.form-thanks h2 { color: var(--forest); }

/* A personal "prefer to talk?" note beneath the enquiry form. */
.form-contact {
  text-align: center;
  margin-top: var(--space-lg);
}
.form-contact .horizon { margin-bottom: var(--space-md); }
.form-contact p { margin-bottom: var(--space-xs); }
.form-contact a {
  color: var(--late-sun-dk);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.form-contact a:hover,
.form-contact a:focus { border-bottom-color: var(--late-sun-dk); }

@media (min-width: 720px) {
  .banner-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ==========================================================================
   CAPTURED MOMENTS — the photo gallery and its enlarged "lightbox" view
   ========================================================================== */

/* The grid of photos. Two columns on a phone, more as the screen widens.
   Each photo fills a neat square tile; tapping one opens the full picture. */
.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

/* Each photo sits inside a button so it can be opened and is keyboard-friendly. */
.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 14px 32px -22px rgba(24, 54, 31, 0.55);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.05);   /* a gentle zoom on hover */
}
.gallery__item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.gallery-note {
  text-align: center;
  margin-top: var(--space-lg);
  margin-bottom: 0;
}

/* ---- The lightbox (enlarged photo over a dark backdrop) ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: rgba(24, 54, 31, 0.92);
}
.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}

/* The close (×) and the left/right arrows. */
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  background: var(--late-sun);
  color: var(--forest);
}
.lightbox__close {
  top: var(--space-sm);
  right: var(--space-sm);
  width: 48px;
  height: 48px;
  font-size: 1.9rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}
.lightbox__prev { left: var(--space-sm); }
.lightbox__next { right: var(--space-sm); }

@media (min-width: 720px) {
  .lightbox__close { width: 54px; height: 54px; }
  .lightbox__prev { left: var(--space-md); }
  .lightbox__next { right: var(--space-md); }
}

/* ==========================================================================
   ART RETREAT PAGE (Cape Vines & Visions)
   The day-by-day itinerary list and the "what's included" list.
   ========================================================================== */

/* A narrow column of ordinary paragraphs, so long text stays easy to read. */
.retreat-prose {
  max-width: 640px;
  margin: var(--space-md) auto 0 auto;
}

.retreat-prose h3 {
  margin-top: var(--space-lg);
  margin-bottom: 0.4rem;
}

.retreat-day {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.retreat-day:last-of-type { border-bottom: none; }

.retreat-day .kicker { margin-bottom: 0.4rem; }

.retreat-included {
  max-width: 560px;
  margin: var(--space-md) auto 0 auto;
  padding: 0;
  list-style: none;
}

.retreat-included li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.retreat-included li:last-child { border-bottom: none; }

.retreat-included li::before {
  content: "\2713"; /* a small tick before each item */
  position: absolute;
  left: 0;
  color: var(--gold, #b08d4f);
}

/* Included-list items with a bold title line and description below */
.retreat-included li strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* The "not included" list: a quiet dash instead of a gold tick */
.retreat-excluded li::before {
  content: "\2013";
  color: var(--clay, #a0522d);
}

/* Day-by-day accordion on the Art Retreat page.
   Uses the browser's built-in open/close behaviour — no JavaScript needed. */

.day-accordion {
  max-width: 680px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.day-accordion summary {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.1rem 2rem 1.1rem 0.2rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.day-accordion summary::-webkit-details-marker { display: none; }

/* A small + that turns into a − when the day is open */
.day-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  font-size: 1.4rem;
  color: var(--gold, #b08d4f);
  transition: transform 0.2s ease;
}

.day-accordion[open] summary::after { content: "\2212"; }

.day-accordion__number {
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold, #b08d4f);
  min-width: 2.2rem;
}

.day-accordion__title {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.day-accordion__tags {
  margin-left: auto;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay, #a0522d);
  white-space: nowrap;
}

.day-accordion__body {
  padding: 0 0.2rem 1.3rem 3.3rem;
}

.day-accordion__body p { margin: 0; }

/* On small phones the tags drop below the title instead of squeezing */
@media (max-width: 540px) {
  .day-accordion summary { flex-wrap: wrap; }
  .day-accordion__tags {
    margin-left: 3.3rem;
    flex-basis: 100%;
  }
  .day-accordion__body { padding-left: 0.2rem; }
}
