/* Google Font: Cormorant Garamond (headings). Body text uses Jost, loaded per page. */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --ra-sage: #8aa57b;         /* primary brand green */
  --ra-sage-dark: #708764;    /* hover state for sage */
  --ra-gold: #c7a46d;         /* accent gold (decorative use) */
  --ra-ink: #2b241f;          /* default body text */
  --ra-muted: #6f655d;        /* secondary / paragraph text */
  --ra-bg: #f4efe9;           /* page background */
  --ra-surface: #fffaf4;      /* card / panel background */
  --ra-border: #e5d7c8;       /* border colour for cards and inputs */
  --ra-footer: #221d19;       /* footer background */
}

/* ── Global reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base layout ────────────────────────────────────────────────────────────── */
/* Sticky footer: flex column ensures the footer is pushed to the bottom of the
   viewport. Body font/colour/background are set once here. */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #2c2118;
  background: #faf7f3;
  overflow-x: hidden;
}

/* main grows to fill remaining vertical space between navbar and footer */
main {
  flex: 1;
}

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.3px;
}

/* clamp() scales font size fluidly between a min and max value */
h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
  color: var(--ra-muted);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;   /* removes inline baseline gap */
  border-radius: 14px;
}

a {
  color: var(--ra-sage);
}

a:hover {
  color: var(--ra-sage-dark);
}

/* ── Navigation bar ─────────────────────────────────────────────────────────── */
/* Supports both .navigation-bar and .navbar class names for flexibility */
.navigation-bar,
.navbar {
  /* min() keeps it from exceeding 1200px while leaving 24px page margin */
  width: min(1200px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 12px 18px;
  border-radius: 18px;
  border: 1px solid var(--ra-border);
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(6px); /* frosted-glass effect on scroll */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 10px;
  z-index: 1000;
}

.logo-image,
.logo-container {
  flex-shrink: 0; /* prevents logo from compressing when nav is tight */
}

.logo-image img,
.logo {
  width: 132px;
  border-radius: 0; /* override global img border-radius for the logo */
}

.navigation-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.navigation-links a {
  text-decoration: none;
  color: #433930;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 8px 11px;
  border-radius: 999px; /* pill shape */
  transition: background-color 0.25s ease, color 0.25s ease;
}

.navigation-links a:hover {
  background-color: #efe6db;
  color: #211b17;
  transform: none;
}

.navigation-btns {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Primary CTA button used in the navbar */
.nav-btn {
  text-decoration: none;
  background-color: var(--ra-sage);
  color: #fff;
  border: 1px solid var(--ra-sage);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.nav-btn:hover {
  background-color: var(--ra-sage-dark);
  border-color: var(--ra-sage-dark);
  color: #fff;
}

/* Language switch (EN / AF) pill toggle in the navbar */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--ra-border);
  border-radius: 999px;
  overflow: hidden;
  align-self: center;
}

.lang-switch a {
  padding: 6px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #6f655d;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch a.active {
  background: var(--ra-sage);
  color: #fff;
}

.lang-switch a:not(.active):hover {
  background: #efe6db;
  color: #211b17;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  margin-top: 2.4rem;
  padding: 2rem 1rem 2.4rem;
  text-align: center;
  background: var(--ra-footer);
  color: #f8f0e7;
}

footer p {
  color: #f3e8de;
}

footer nav {
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

footer nav a {
  text-decoration: none;
  color: #d6ebcc;
  font-weight: 600;
}

.social-icons {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.social-icons a {
  color: #fffaf4;
  font-size: 1.3rem;
  text-decoration: none;
}

.social-icons a:hover,
.contact-icon:hover {
  color: #b9d1ac;
}

/* ── Home page ──────────────────────────────────────────────────────────────── */
/* Three sections: the slideshow hero, the "what we offer" cards, and the enquiry
   form. The global reset and base body styles live once at the top of this file. */

/* ── SLIDESHOW HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: none;
}
.slide.active img {
  animation: kenBurns 9s ease-in-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,247,243,0.12) 0%,
    rgba(250,247,243,0.08) 50%,
    rgba(250,247,243,0.55) 100%
  );
  z-index: 1;
}

/* ── NAME ── */
.hero-name {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.venue-pre {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(.6rem, 1.6vw, .75rem);
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  animation: fadeUp .8s .3s both;
}

.venue-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 8.5rem);
  line-height: .95;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
  animation: fadeUp 1s .5s both;
}
.venue-title em {
  display: block;
  font-style: italic;
  font-size: clamp(2rem, 7.5vw, 6rem);
  color: rgba(255,255,255,.88);
}

.venue-rule {
  width: 48px; height: 1px;
  background: rgba(255,255,255,.7);
  margin: 1.8rem auto;
  animation: fadeUp .8s .8s both;
}

.venue-tagline {
  font-size: clamp(.82rem, 2vw, .95rem);
  letter-spacing: .18em;
  color: rgba(255,255,255,.78);
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  animation: fadeUp .8s 1s both;
}

.hero-book {
  margin-top: 2.4rem;
  animation: fadeUp .8s 1.2s both;
}
.hero-book a {
  display: inline-block;
  padding: .9rem 2.6rem;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.12);
  transition: background .3s, color .3s, border-color .3s;
  border-radius: 1.5rem;
}
.hero-book a:hover {
  background: #A8C0A2;
  border-color: #A8C0A2;
  color: #444444;
  font-size: 80%;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SLIDE DOTS ── */
.dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: .6rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── SLIDE ARROWS ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 1.4rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .3s;
}
.arrow:hover { background: rgba(255,255,255,.35); }
.arrow-prev { left: 1.5rem; }
.arrow-next { right: 1.5rem; }
@media(max-width:480px){ .arrow { display: none; } }


/* ── BOOKING OF AN ENQUIRY SECTION IN THE HOME PAGE ── */
.booking {
  background: #faf7f3;
  padding: 6rem 2rem;
}
.booking-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.booking .eyebrow { font-size: .65rem; letter-spacing: .45em; text-transform: uppercase; color: #b07d4a; margin-bottom: 1rem; }
.booking h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.booking p { color: #444444; line-height: 2; font-size: .95rem; margin-bottom: 2.5rem; }

.bform { text-align: left; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media(max-width:480px){ .bform { grid-template-columns: 1fr; } }
.bform .full { grid-column: 1/-1; }

.bform label { display: block; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: #b07d4a; margin-bottom: .4rem; }
.bform input, .bform select, .bform textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd4c5;
  padding: .6rem 0;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #444444;
  outline: none;
  transition: border-color .3s;
}
.bform input:focus, .bform select:focus, .bform textarea:focus { border-color: #b07d4a; }
.bform textarea { resize: vertical; min-height: 80px; }
.bform .full.center { text-align: center; margin-top: .5rem; }

.btn-submit {
  padding: .95rem 3rem;
  background: #444444;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  border-radius: 1.5rem;
}
.btn-submit:hover { background: #A8C0A2; transform: translateY(-2px); }

#form-thanks { display: none; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.4rem; color: #b07d4a; padding: 2rem 0; }

/* END OF THE MAIN CODE OF SLIDESHOWS AND FORMS IN HOME PAGE*/


/* auto-fit grid collapses columns as viewport narrows */
.cards {
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  padding-bottom: 2.2rem;
}

.cards .card {
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  padding: 0.95rem;
  box-shadow: 0 8px 26px rgba(56, 39, 23, 0.08);
}

/* Fixed height keeps card images uniform regardless of source dimensions */
.cards .card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Blank photo placeholder — same footprint as the card image until real
   photos are added. */
.cards .card .card-photo {
  width: 100%;
  height: 190px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--ra-surface, #f4ece1),
      var(--ra-surface, #f4ece1) 12px,
      #ece2d4 12px,
      #ece2d4 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0a090;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cards .card .card-photo::after {
  content: "Photo coming soon";
}

.card-heading {
  margin: 0.8rem 0 0.3rem;
  color: #2f271f;
}

.book-btn-link {
  display: inline-block;
  margin-top: 0.7rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--ra-sage);
  color: #fff;
  font-size: 0.9rem;
}

.book-btn-link:hover {
  color: #fff;
  background: var(--ra-sage-dark);
}

/* ── ABOUT STRIP ── */
  .about {
    max-width: 700px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
  }
  .about .eyebrow {
    font-size: .65rem;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: #b07d4a;
    margin-bottom: 1.2rem;
  }
  .about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 5vw, 3rem);
    line-height: 1.25;
    margin-bottom: 1.4rem;
  }
  .about h2 em { font-style: italic; color: #b07d4a; }
  .about p {
    color: #7a6e64;
    line-height: 2;
    font-size: clamp(.88rem, 2vw, 1rem);
  }
  .thin-rule {
    width: 40px; height: 1px;
    background: #c9a97a;
    margin: 1.6rem auto;
  }

/* ── About page ─────────────────────────────────────────────────────────────── */
.about-main {
  width: min(1200px, calc(100% - 24px));
  margin: 1.2rem auto 0;
}

/* Two-column layout: image on one side, text on the other */
.about-main .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  padding: 1.1rem;
}

.about-paragraph-container {
  padding: 0.6rem;
}

.about-heading {
  color: #31261f;
  text-align: center;
}

.about-paragraph {
  margin: 0.6rem 0 1rem;
}

.directionsBtn {
  border: 1px solid var(--ra-sage);
  background: var(--ra-sage);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.directionsBtn:hover {
  background: var(--ra-sage-dark);
}

/* ── About page: wedding package showcase ───────────────────────────────────── */
.package {
  width: min(1000px, calc(100% - 24px));
  margin: 2.4rem auto 0;
}

/* Intro */
.pkg-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.4rem;
}

.pkg-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ra-gold);
  margin-bottom: 0.9rem;
}

.pkg-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: #2f271f;
  margin-bottom: 1.2rem;
}

.pkg-title em { font-style: italic; color: var(--ra-sage); }

.pkg-intro p { margin-bottom: 1rem; }

.pkg-note {
  font-style: italic;
  color: var(--ra-gold);
  font-size: 0.95rem;
}

/* Content blocks */
.pkg-block {
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 26px rgba(56, 39, 23, 0.06);
}

.pkg-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #2f271f;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--ra-border);
}

.pkg-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ra-sage-dark);
  margin: 1.6rem 0 0.6rem;
}

/* Info cards (coordination / accommodation / providers / payment) */
.pkg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.pkg-card {
  background: #fff;
  border: 1px solid var(--ra-border);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.pkg-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #2f271f;
  margin-bottom: 0.5rem;
}

.pkg-card h4 i { color: var(--ra-sage); margin-right: 0.4rem; }

/* Décor style cards with colour swatches */
.pkg-decor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.pkg-decor-card {
  border: 1px solid var(--ra-border);
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
  background: #fff;
}

.pkg-swatch {
  display: block;
  height: 46px;
  border-radius: 10px;
  margin-bottom: 0.7rem;
}

.pkg-swatch--classic { background: linear-gradient(90deg, #1a1a18 0 33%, #efe7db 33% 66%, #7a5a3c 66%); }
.pkg-swatch--autumn  { background: linear-gradient(90deg, #b3541e, #d98a3d); }
.pkg-swatch--nature  { background: linear-gradient(90deg, var(--ra-sage-dark), var(--ra-sage)); }

.pkg-decor-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #2f271f;
  margin-bottom: 0.15rem;
}

.pkg-decor-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ra-gold);
  margin-bottom: 0.5rem;
}

/* Inclusion lists */
.pkg-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
}

.pkg-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ra-muted);
  line-height: 1.5;
}

.pkg-list li::before {
  content: '\2713'; /* check mark */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ra-sage);
  font-weight: 700;
}

/* Long lists flow into two columns on wider screens */
.pkg-list--cols {
  columns: 2;
  column-gap: 2rem;
}

.pkg-list--cols li { break-inside: avoid; }

/* Excluded items use a muted cross marker */
.pkg-list--excluded li::before {
  content: '\2715'; /* cross */
  color: #b6725f;
}

/* Closing note + signature */
.pkg-closing {
  text-align: center;
  max-width: 720px;
  margin: 1.6rem auto 0;
}

.pkg-closing p { margin-bottom: 1rem; }

.pkg-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #2f271f;
  line-height: 1.6;
}

.pkg-signature em { color: var(--ra-sage); font-size: 1.4rem; }

/* Contact strip */
.pkg-contact {
  width: min(1000px, calc(100% - 24px));
  margin: 2rem auto 0;
  text-align: center;
}

.pkg-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #2f271f;
  margin-bottom: 1.2rem;
}

.pkg-contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.pkg-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  color: #4a3f36;
  text-decoration: none;
  font-size: 0.92rem;
}

.pkg-contact-item i { color: var(--ra-sage); }

a.pkg-contact-item:hover { background: #efe6db; color: #211b17; }

/* Phones: collapse the two-column inclusion lists and tighten padding */
@media (max-width: 640px) {
  .pkg-list--cols { columns: 1; }
  .pkg-block { padding: 1.3rem; }
}

/* ── Contact page ───────────────────────────────────────────────────────────── */
.contact-main {
  width: min(920px, calc(100% - 24px));
  margin: 1.2rem auto 0;
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  padding: 1.4rem;
  text-align: center;
}

/* Divider between contact detail rows; last child has no border */
.contact-main article {
  padding: 0.6rem 0;
  border-bottom: 1px solid #efe2d4;
}

.contact-main article:last-child {
  border-bottom: none;
}

.contact-main .addressLine,
.contact-main .contactLink {
  color: #58493f;
}

/* ── Booking page ───────────────────────────────────────────────────────────── */
/* The booking page is styled by css/bookings.css. */

/* ── Sign In / Sign Up ──────────────────────────────────────────────────────── */
.sign-main {
  width: min(640px, calc(100% - 24px));
  margin: 1.2rem auto 0;
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  padding: 1.3rem;
  box-shadow: 0 10px 26px rgba(40, 28, 18, 0.08);
}

.sign-main form {
  margin: 0;
}

.sign-main h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.sign-main label {
  display: block;
  margin: 0.75rem 0 0.35rem;
  font-weight: 700;
  color: #3a2f27;
}

/* Icon positioned absolutely inside the input so it doesn't shift layout */
.sign-main .input_box {
  position: relative;
}

.sign-main .input_box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b7a6d;
}

/* Left padding leaves room for the absolutely positioned icon */
.sign-main .input_box input {
  width: 100%;
  border: 1px solid #d8c9ba;
  border-radius: 10px;
  padding: 0.72rem 0.8rem 0.72rem 2.2rem;
}

.sign-main .input_box input:focus {
  border-color: var(--ra-sage);
  outline: 2px solid #dce7d5;
}

/* Responsive button row — collapses to single column on narrow screens */
.sign-main .formButtons {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.65rem;
}

.sign-main button {
  border: 1px solid #cebbab;
  border-radius: 999px;
  background: #fff;
  padding: 0.58rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.sign-main button:hover {
  background: #f3e9dd;
}

/* ── Popups: language selector + cookie consent ─────────────────────────────── */
/* Both banners are fixed to opposite edges (top / bottom) of the viewport */
.popups #language-container,
.popups #cookies-container {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1100; /* above the sticky navbar (z-index: 1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: rgba(31, 25, 22, 0.95);
}

.popups #language-container {
  top: 0;
}

.popups #cookies-container {
  bottom: 0;
}

.popups button {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 6px 12px;
  color: #fff;
}

/* Distinct colours make the accept/reject actions immediately clear */
#accept-cookies-btn,
#accept-language-btn {
  background: #2f7f47;
}

#reject-cookies-btn {
  background: #a93a3a;
}

/* ── Back-to-top button ──────────────────────────────────────────────────────── */
/* Shown/hidden via JS; fixed to bottom-right corner */
#top-btn {
  background-color: var(--ra-sage);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
}

/* ── Responsive breakpoints ─────────────────────────────────────────────────── */

/* Tablet and below: unstick the navbar and stack nav links below the logo */
@media (max-width: 991px) {
  .navigation-bar,
  .navbar {
    position: static;
    width: calc(100% - 18px);
    margin-top: 9px;
    border-radius: 14px;
    flex-wrap: wrap;
  }

  /* Links row drops to a third flex line, centred beneath logo and buttons */
  .navigation-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .navigation-btns {
    margin-left: auto;
  }

  /* About image + text stacks vertically on smaller screens */
  .about-main .container {
    grid-template-columns: 1fr;
  }
}

/* Mobile: tighten logo, nav links, and full-bleed content sections */
@media (max-width: 640px) {
  .logo-image img,
  .logo {
    width: 108px;
  }

  .navigation-links a {
    font-size: 0.9rem;
    padding: 7px 10px;
  }

  .nav-btn {
    padding: 7px 11px;
  }

  .home-body main {
    padding: 0 0.4rem;
  }

  .sign-main {
    padding: 1rem;
  }

  /* Remove the calc() side margins so these sections go edge-to-edge */
  .contact-main,
  .about-main,
  .booking-main .container {
    width: calc(100% - 16px);
  }
}

/* ── Blog page ──────────────────────────────────────────────────────────────── */
.blog-hero {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem 2.4rem;
}

.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  color: #2f271f;
  margin-bottom: 0.8rem;
}

.blog-hero h1 em { font-style: italic; color: var(--ra-sage); }
.blog-hero-sub { color: var(--ra-muted); font-size: 1.05rem; }

.blog-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ra-gold);
  margin-bottom: 0.9rem;
}

/* Listing grid */
.blog-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 2.5rem auto 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.4rem;
}

.blog-card {
  background: var(--ra-surface);
  border: 1px solid var(--ra-border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(56, 39, 23, 0.12);
}

.blog-card-img {
  display: block;
  height: 175px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--ra-border), #efe6db);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.7rem 1.8rem 1.9rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ra-gold);
  margin-bottom: 0.7rem;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 0.8rem;
}

.blog-card-title a { color: #2f271f; text-decoration: none; }
.blog-card-title a:hover { color: var(--ra-sage-dark); }

.blog-card-excerpt {
  flex: 1;
  color: var(--ra-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.3rem;
}

.blog-card-link {
  color: var(--ra-sage);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.blog-card-link:hover { color: var(--ra-sage-dark); }

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ra-muted);
  padding: 3rem 0;
}

/* Single post */
.blog-single {
  width: min(760px, calc(100% - 48px));
  margin: 2.6rem auto 4.5rem;
}

.blog-back {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--ra-sage);
  font-weight: 600;
  text-decoration: none;
}

.blog-back:hover { color: var(--ra-sage-dark); }

.blog-single-hero {
  width: 100%;
  height: clamp(220px, 36vw, 360px);
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1.8rem;
}

.blog-single-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  color: #2f271f;
  margin-bottom: 1.4rem;
}

.blog-single-body {
  color: #4a4038;
  font-size: 1.08rem;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .blog-hero { padding: 3rem 1.2rem 1.6rem; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin: 1.8rem auto 3.5rem;
  }
  .blog-card-title { font-size: 1.8rem; }
}

/*
    !remember!:
    *tested this on: chrome and edge 
    *both have the