/* =========================================================
   1) THEME VARIABLES
========================================================= */
:root{
  --paper-base: #efe4cf;
  --paper-light: #f5f1e8;
  --paper-card: #f9f6f0;
  --paper-texture-url: url("../assets/images/parchment-bg.jpg");

  --ink: #1f1b16;
  --ink-base: #1f1b16;
  --ink-soft: #3a332b;

  --heritage-green: #2f5d4a;
  --heritage-green-2: #214437;
  --heritage-green-soft: rgba(47,93,74,.12);

  --heritage-red: #7a3a2e;
  --heritage-red-2: #5e2b22;

  --heritage-gold: #c9ad74;
  --heritage-gold-soft: rgba(201,173,116,.25);

  --hero-overlay: rgba(26, 22, 18, 0.62);
  --hero-overlay-2: rgba(26, 22, 18, 0.32);

  --hero-text: #ffffff;
  --hero-text-muted: rgba(255,255,255,.88);

  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.3);

  --font-serif: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --radius: 16px;
}

/* =========================================================
   2) RESET + GLOBAL BACKGROUND
========================================================= */
* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  min-height: 100vh;
  background-color: var(--paper-base);
  background-image: var(--paper-texture-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 120% at 50% 50%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,.07) 100%
  );
  mix-blend-mode: multiply;
  opacity: .7;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

body.menu-open{ overflow: hidden; }

/* =========================================================
   3) LOAD ANIMATIONS (CSS-only)
========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-fadein{
  opacity: 0;
  animation: fadeUp .85s ease forwards;
  animation-delay: 1s;
}

.hero-fadein{
  opacity: 0;
  animation: fadeUp .85s ease forwards;
}

.hero-fadein-1{ animation-delay: 0.5s; }
.hero-fadein-2{ animation-delay: 0.5s; }
.hero-fadein-3{ animation-delay: 0.5s; }
.hero-fadein-4{ animation-delay: 0.5s; }

/* =========================================================
   4) NAVBAR - DESKTOP BASE
========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
}

.site-nav{
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: background-color .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}

.site-nav.is-scrolled{
  background: rgba(47, 93, 74, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.brand{
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--hero-text);
  text-decoration: none;
  font-size: 1.25rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
}

.brand:hover{ color: var(--hero-text); }

.site-nav a{ color: var(--hero-text); }

.nav-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-link{
  display: inline-block;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .1px;
  position: relative;
}

.nav-link:hover,
.nav-link:focus{
  color: var(--hero-text);
}

.nav-link::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  background: var(--heritage-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity: .95;
}

.nav-link:hover::after,
.nav-link:focus::after{
  transform: scaleX(1);
}

.has-submenu{ position: relative; }

.has-submenu::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.submenu{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;

  list-style: none;
  margin: 0;
  padding: 10px;

  border-radius: 14px;
  background: rgba(239, 228, 207, 0.98);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1000;
}

.submenu a{
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.submenu a:hover,
.submenu a:focus{
  background: var(--heritage-gold-soft);
  color: var(--ink);
}

@media (min-width: 992px){
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* =========================================================
   5) HAMBURGER BUTTON (fixed, proper bars + X animation)
========================================================= */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;

  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);

  cursor: pointer;
  position: relative;
  z-index: 1300;
}

.nav-toggle span{
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.92);
  transform: translateX(-50%);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 21px; }
.nav-toggle span:nth-child(3){ top: 28px; }

.nav-toggle.is-open span:nth-child(1){
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3){
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================================================
   6) MOBILE OVERLAY NAV 
========================================================= */
@media (max-width: 991.98px){
  .nav-toggle{ display: inline-block; }

  .nav-links{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1200;

    margin: 0;
    padding: 92px 18px 26px;
    list-style: none;

    background: rgba(26, 22, 18, 0.72);
    backdrop-filter: blur(10px);

    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  .nav-links::-webkit-scrollbar{ width: 0; height: 0; }

  .nav-links.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .brand-logo {
    height: 35px;
  }

  .nav-links > li{
    width: min(560px, 92vw);
    margin: 0 auto 12px;
  }

  .nav-link{
    display: block;
    width: 100%;
    text-align: center;

    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.2;

    padding: 12px 14px;
    border-radius: 14px;

    color: var(--hero-text);
    text-decoration: none;

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
  }

  .nav-link::after{ display: none; }

  .submenu{
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;

    display: block;
    width: 100%;

    margin: 10px 0 0;
    padding: 10px;

    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: none;
  }

  .submenu li{
    margin-top: 8px;
  }

  .submenu a{
    display: block;
    padding: 10px 12px;
    border-radius: 12px;

    font-family: var(--font-sans);
    font-size: 0.98rem;
    line-height: 1.35;

    color: rgba(255,255,255,.92);
    text-decoration: none;

    background: rgba(255,255,255,.05);
  }

  .submenu a:hover,
  .submenu a:focus{
    background: rgba(255,255,255,.10);
  }

  .has-submenu::after{ display: none; }
}

/* =========================================================
   7) HERO (video background kept)
========================================================= */
.hero{
  height: 100svh;
  min-height: 520px;
  max-height: 100svh;
  position: relative;
  isolation: isolate;
}

.hero-content{ padding-top: 84px; }

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--hero-overlay), var(--hero-overlay-2)),
    radial-gradient(120% 120% at 50% 45%, rgba(0,0,0,.15), rgba(0,0,0,.55));
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  padding-bottom: clamp(18px, 3vw, 42px);
}

.hero-eyebrow{
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
}

.hero-title{
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 56px);
  color: var(--hero-text);
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-lead{
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.25;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--hero-text-muted);
  text-shadow: 0 10px 30px rgba(0,0,0,.30);
}

.btn-hero-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--heritage-green);
  color: var(--hero-text);
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease;
}
.btn-hero-primary:hover{
  transform: translateY(-1px);
  background: var(--heritage-green-2);
  color: var(--hero-text);
}

.btn-hero-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: var(--hero-text);
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn-hero-secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: var(--heritage-gold);
  color: var(--hero-text);
}

@media (max-width: 991.98px){
  .hero-content { text-align: center; }
}

/* =========================================================
   8) CONTENT STYLES
========================================================= */
.section-pad{
  padding: clamp(32px, 4vw, 64px) 0;
}

.section-pad + .section-pad::before{
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--heritage-gold) 20%,
    var(--heritage-gold) 80%,
    transparent 100%
  );
  margin: 0 auto clamp(32px, 4vw, 64px);
  max-width: 80%;
  opacity: .4;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.section-pad:nth-of-type(even){
  background: rgba(255,255,255,.15);
  border-top: 1px solid rgba(201,173,116,.2);
  border-bottom: 1px solid rgba(201,173,116,.2);
}

.section-header::after{
  content: "✦ ✦ ✦";
  display: block;
  text-align: center;
  color: var(--heritage-gold);
  font-size: 1.2rem;
  letter-spacing: 16px;
  margin-top: 24px;
  opacity: .5;
  padding-left: 16px;
}

.section-title{
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--ink);
  margin-bottom: 10px;
}

.section-lead{
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.section-tint{
  background: var(--heritage-green-soft);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* =========================================================
   OPENING TIMES & ADMISSION SECTION
========================================================= */
.visit-section .section-header{
  margin-bottom: 22px;
}

.visit-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px){
  .visit-grid{ grid-template-columns: 1fr 1fr; }
}

.visit-card{
  border-radius: var(--radius);
  background: var(--paper-light);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-title{
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .2px;
  margin: 0 0 12px;
  color: var(--ink);
}

.muted{ color: var(--ink-soft); }

.info-list{
  margin: 0 0 12px;
}

.info-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.info-row:last-child{ border-bottom: 0; }

.info-row dt{
  font-weight: 800;
  color: var(--heritage-green-2);
}

.info-row dd{
  margin: 0;
  color: var(--ink);
}

@media (max-width: 420px){
  .info-row{
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.price-table{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

.price-row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.price-row:last-child{ border-bottom: 0; }

.price-label{ color: var(--ink); font-weight: 650; }
.price-value{
  color: var(--heritage-red);
  font-weight: 900;
  white-space: nowrap;
}

.card-note{
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.visit-cta{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-visit-primary,
.btn-visit-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}

.btn-visit-primary{
  background: var(--heritage-green);
  color: var(--hero-text);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-visit-primary:hover{
  background: var(--heritage-green-2);
  color: var(--hero-text);
}

.btn-visit-secondary{
  background: rgba(255,255,255,.40);
  color: var(--ink);
  border: 1px solid rgba(0,0,0,.10);
}
.btn-visit-secondary:hover{
  background: rgba(255,255,255,.60);
  color: var(--ink);
}

/* =========================================================
   SCROLL REVEAL (no delay)
========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   THINGS TO SEE SECTION
========================================================= */

.things-list{
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.thing-card{
  position: relative;
  opacity: 1;
}

.thing-card-inner{
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,173,116,.4);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  position: relative;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.thing-card-inner:hover{
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  border-color: var(--heritage-gold);
}

@media (min-width: 768px){
  .thing-card-inner{
    grid-template-columns: 380px 1fr;
  }
  .thing-card--reverse .thing-card-inner{
    grid-template-columns: 1fr 380px;
  }
  .thing-card--reverse .thing-content{
    order: -1;
  }
}

/* IMAGE SECTION */
.thing-media{
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--heritage-green-soft);
}

.thing-image-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.thing-image-wrapper::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(47,93,74,.08) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.thing-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.thing-card-inner:hover .thing-media img{
  transform: scale(1.05);
}

.thing-badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(47,93,74,.92);
  color: var(--hero-text);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-serif);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  z-index: 3;
  border: 1px solid rgba(201,173,116,.6);
  backdrop-filter: blur(4px);
}

.thing-content{
  padding: 24px 28px;
  position: relative;
}

.thing-icon{
  display: none;
}

.thing-title{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0 0 14px;
  color: var(--heritage-green-2);
  letter-spacing: .2px;
}

.thing-description{
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: .95rem;
}

.thing-description p{
  margin-bottom: 12px;
}

.thing-description p:last-child{
  margin-bottom: 0;
}

.thing-highlight{
  background: var(--heritage-gold-soft);
  border-left: 3px solid var(--heritage-gold);
  padding: 10px 14px;
  margin: 14px 0 0;
  border-radius: 4px;
  font-size: .95rem;
}

.thing-highlight strong{
  color: var(--heritage-green-2);
  font-weight: 600;
}

.workshop-item{
  margin: 16px 0 0;
  padding: 14px;
  background: rgba(255,255,255,.5);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.05);
}

.workshop-item:first-of-type{
  margin-top: 8px;
}

.thing-subtitle{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--heritage-green-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.subtitle-icon{
  font-size: 1.15rem;
  opacity: .8;
}

.workshop-item p{
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
}

@media (max-width: 767px){
  .thing-image-wrapper{
    min-height: 220px;
  }
  
  .thing-content{
    padding: 20px 22px;
  }
  
  .thing-title{
    font-size: 1.5rem;
  }
  
  .thing-description{
    font-size: .92rem;
  }
}

/* =========================================================
   THINGS TO SEE - FULL SCREEN SCROLL EXPERIENCE
========================================================= */

.things-scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.scroll-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* Spacer to enable scrolling */
.scroll-spacer {
  height: 800vh;
  pointer-events: none;
}

.scroll-backgrounds {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.scroll-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.scroll-bg-layer.active {
  opacity: 1;
}

.scroll-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(31, 27, 22, 0) 0%,
    rgba(31, 27, 22, 0.1) 50%,
    rgba(31, 27, 22, 0.3) 100%
  );
  z-index: 2;
}

.scroll-contents {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.scroll-content-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(26, 22, 18, 0.92) 0%,
    rgba(26, 22, 18, 0.8) 60%,
    rgba(26, 22, 18, 0.4) 90%,
    rgba(26, 22, 18, 0) 100%
  );
  padding: 60px 0 50px;
}

.scroll-content-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-text-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.scroll-badge {
  display: none;
}

.scroll-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1.2;
}

.scroll-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 16px;
}

.scroll-description:last-child {
  margin-bottom: 0;
}

.scroll-highlight {
  background: rgba(201, 173, 116, 0.15);
  border-left: 4px solid var(--heritage-gold);
  padding: 12px 18px;
  margin: 18px 0 0;
  border-radius: 4px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}

.scroll-highlight strong {
  color: var(--heritage-gold);
  font-weight: 600;
}

.scroll-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scroll-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.scroll-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.scroll-dot.active {
  background: var(--heritage-gold);
  border-color: var(--heritage-gold);
  transform: scale(1.3);
}

.scroll-dot:focus {
  outline: 2px solid var(--heritage-gold);
  outline-offset: 4px;
}

@media (max-width: 992px) {
  .scroll-content-item {
    padding: 50px 0 40px;
  }
  
  .scroll-text-box {
    max-width: 100%;
    padding: 0 40px;
  }
  
  .scroll-title {
    font-size: 2.2rem;
  }
  
  .scroll-description {
    font-size: 1.05rem;
  }
  
  .scroll-nav {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .scroll-content-item {
    padding: 40px 0 30px;
  }
  
  .scroll-text-box {
    max-width: 100%;
    padding: 0 25px;
  }
  
  .scroll-title {
    font-size: 1.8rem;
  }
  
  .scroll-description {
    font-size: 1rem;
  }
  
  .scroll-nav {
    display: none;
  }
}

/* =========================================================
   HOW TO FIND US SECTION
========================================================= */

.findus-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px){
  .findus-grid{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .findus-map{
    grid-column: 1 / -1;
  }
}

.findus-card,
.findus-map{
  border-radius: var(--radius);
  background: var(--paper-light);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  padding: 18px;
}

.findus-card {
    min-height: 56vh;
}

.findus-map {
    min-width: 25vh;
}

.findus-title{
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.findus-address{
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}

.findus-address strong{
  color: var(--ink);
  font-weight: 800;
}

.postcode{
  font-weight: 800;
  color: var(--heritage-red);
}

.findus-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.findus-text{
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}

.findus-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
}
.findus-bullets li{ margin: 6px 0; }

.findus-note{
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.map-placeholder{
  border-radius: var(--radius);
  background: rgba(239, 228, 207, 0.55);
  border: 1px dashed rgba(0,0,0,.18);
  padding: 18px;
}

.map-placeholder__title{
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.map-placeholder__text{
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 80ch;
}

.map-placeholder__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   ACCESSIBILITY SECTION
========================================================= */

.accessibility-content{
  margin: 0 auto;
}

.accessibility-feature{
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
  align-items: start;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.feature-icon{
  font-size: 2.5rem;
  opacity: .85;
  line-height: 1;
}

.feature-content{
  padding-top: 2px;
}

.feature-title{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--heritage-green-2);
}

.feature-text{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: .98rem;
}

/* Accessibility Highlights Box */
.accessibility-highlights{
  margin: 40px 0 32px;
  padding: 28px 32px;
  background: var(--heritage-green-soft);
  border-radius: 12px;
  border: 1px solid rgba(47,93,74,.2);
}

.highlights-title{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 18px;
  color: var(--heritage-green-2);
}

.accessibility-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.accessibility-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.list-icon{
  color: var(--heritage-green);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.5;
}

.accessibility-card{
  margin: 40px 0 32px;
  padding: 32px 36px;
  background: var(--paper-light);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.accessibility-card-title{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 20px;
  color: var(--heritage-green-2);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--heritage-gold);
}

.accessibility-card-content{
  font-size: 1.05rem;
  line-height: 1.8;
}

.accessibility-summary{
  margin: 0 0 24px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
}

.facilities-simple-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.facilities-simple-list li{
  padding-left: 32px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.facilities-simple-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--heritage-green);
  font-weight: 700;
  font-size: 1.3rem;
}

.accessibility-cta{
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.4);
  text-align: center;
}

.cta-text{
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-text strong{
  color: var(--heritage-green-2);
  font-weight: 600;
}

@media (max-width: 767px){
  .accessibility-feature{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  
  .feature-icon{
    font-size: 2rem;
  }
  
  .feature-title{
    font-size: 1.35rem;
  }
  
  .accessibility-highlights{
    padding: 22px 20px;
  }
  
  .accessibility-list{
    gap: 10px;
  }
  
  .accessibility-cta{
    padding: 20px;
  }
}

@media (min-width: 768px){
  .accessibility-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
  }
}

/* =========================================================
   GROUP VISITS SECTION
========================================================= */

.group-visits-hero{
  margin: 32px 0 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 1px solid rgba(201,173,116,.3);
}

.group-visits-hero img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.hero-caption{
  padding: 14px 20px;
  background: rgba(255,255,255,.85);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  border-top: 1px solid rgba(201,173,116,.2);
}

.group-visits-content{
  margin: 0 auto;
}

.group-visit-card{
  margin-bottom: 32px;
  background: var(--paper-light);
  border-radius: 12px;
  border: 1px solid rgba(47, 93, 74, 0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  overflow: hidden;
}

.group-card-header{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px 20px;
  background: transparent;
  border-bottom: 1px solid rgba(47, 93, 74, 0.1);
}

.group-icon{
  font-size: 2.5rem;
  opacity: .85;
  line-height: 1;
}

.group-card-title{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0;
  color: var(--heritage-green-2);
}

.group-card-body{
  padding: 24px 28px;
}

.group-intro{
  margin: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}

/* Pricing Section */
.group-pricing{
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--paper-card);
  border-radius: 8px;
  border: 1px solid rgba(47, 93, 74, 0.1);
}

.pricing-subtitle{
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 16px;
  color: var(--heritage-green-2);
}

.pricing-grid{
  display: grid;
  gap: 12px;
}

.pricing-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: transparent;
  border-radius: 6px;
  border-bottom: 1px solid rgba(47, 93, 74, 0.08);
}

.pricing-label{
  font-weight: 500;
  color: var(--ink-soft);
  font-size: .98rem;
}

.pricing-value{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--heritage-green-2);
}

.group-note{
  margin: 20px 0 0;
  padding: 14px 18px;
  background: transparent;
  border-left: 3px solid var(--heritage-green);
  border-radius: 4px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.group-note strong{
  color: var(--heritage-green-2);
  font-weight: 600;
}

.email-link{
  color: var(--heritage-green);
  text-decoration: underline;
  font-weight: 500;
  transition: color .2s ease;
}

.email-link:hover{
  color: var(--heritage-green-2);
}

.group-testimonial{
  margin: 40px 0 36px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(47,93,74,.08) 0%, rgba(255,255,255,.6) 100%);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.3);
  position: relative;
}

.group-testimonial::before{
  content: "";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--heritage-gold);
  opacity: .3;
}

.testimonial-quote{
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-text{
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  padding-left: 32px;
}

.testimonial-footer{
  padding-left: 32px;
  border-top: 1px solid rgba(201,173,116,.3);
  padding-top: 14px;
}

.testimonial-author{
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heritage-green-2);
  font-style: normal;
  margin-bottom: 4px;
}

.testimonial-meta{
  display: block;
  font-size: .9rem;
  color: var(--ink-soft);
}

.group-booking-cta{
  margin-top: 40px;
  padding: 32px;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.4);
  text-align: center;
}

.cta-heading{
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 12px;
  color: var(--heritage-green-2);
}

.cta-description{
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 767px){
  .group-card-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px 18px;
  }
  
  .group-icon{
    font-size: 2rem;
  }
  
  .group-card-title{
    font-size: 1.5rem;
  }
  
  .group-card-body{
    padding: 20px 22px;
  }
  
  .group-pricing{
    padding: 18px 20px;
  }
  
  .pricing-item{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .group-testimonial{
    padding: 24px 20px;
  }
  
  .testimonial-text{
    font-size: 1rem;
    padding-left: 20px;
  }
  
  .testimonial-footer{
    padding-left: 20px;
  }
  
  .group-booking-cta{
    padding: 24px 20px;
  }
  
  .cta-heading{
    font-size: 1.5rem;
  }
  
  .cta-actions{
    flex-direction: column;
  }
  
  .cta-actions a{
    width: 100%;
  }
}

@media (min-width: 768px){
  .pricing-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* =========================================================
   MUSEUM SHOP SECTION
========================================================= */

.shop-content{
  margin: 0 auto;
}

.shop-intro{
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.shop-intro p{
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}

.shop-gallery{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 40px 0;
}

.shop-item{
  margin: 0;
  background: rgba(255,255,255,.65);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,173,116,.3);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.shop-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.shop-image-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: rgba(47,93,74,.05);
}

.shop-image-wrapper img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.shop-item:hover .shop-image-wrapper img{
  transform: scale(1.05);
}

.shop-caption{
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heritage-green-2);
  background: rgba(255,255,255,.85);
  border-top: 1px solid rgba(201,173,116,.2);
}

.shop-note{
  max-width: 700px;
  margin: 32px auto;
  padding: 14px 20px;
  text-align: center;
  background: rgba(201,173,116,.15);
  border-radius: 8px;
  border: 1px solid rgba(201,173,116,.3);
}

.shop-note p{
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.6;
}

.shop-note em{
  font-style: italic;
}

.shop-cta{
  margin-top: 40px;
  padding: 28px;
  background: rgba(255,255,255,.7);
  border-radius: 12px;
  border: 1px solid rgba(201,173,116,.4);
  text-align: center;
}

.shop-cta .cta-text{
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 600px){
  .shop-gallery{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 992px){
  .shop-gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 599px){
  .shop-intro{
    text-align: left;
  }
  
  .shop-cta{
    padding: 24px 20px;
  }
}

/* ========================================================================
   22) GALLERY
   ======================================================================== */
.gallery-section .section-header {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--heritage-green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  background: var(--paper-light);
  z-index: 1;
}

.gallery-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
  opacity: 0.9;
}

/* Optional: Add lightbox effect on click (requires JS) */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(47, 93, 74, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ========================================================================
   23) FOOTER
   ======================================================================== */
.site-footer {
  background-color: var(--heritage-green);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 4px solid var(--heritage-gold);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heritage-gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
  margin: 0;
}

.footer-text strong {
  color: var(--heritage-gold);
  font-weight: 600;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.social-links li {
  margin-bottom: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--heritage-gold);
  transform: translateX(4px);
}

.social-links svg {
  flex-shrink: 0;
}

.footer-charity {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-soft);
}

.footer-charity strong {
  color: var(--heritage-gold);
  display: block;
  margin-bottom: 0.25rem;
}

.footer-charity a {
  color: var(--white);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-charity a:hover {
  color: var(--heritage-gold);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-contact strong {
  color: var(--heritage-gold);
  font-weight: 600;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--heritage-gold);
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-donate-btn {
  display: inline-block;
  background-color: var(--heritage-gold);
  color: var(--heritage-green);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 0.5rem;
}

.footer-donate-btn:hover {
  background-color: #d4b97f;
  transform: translateY(-2px);
  color: var(--heritage-green);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-soft);
  text-align: center;
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
}

.footer-copyright a {
  color: var(--heritage-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-donate-btn {
    width: 100%;
  }
}

/* ========================================================================
   24) EVENTS PAGE
   ======================================================================== */
.events-section .section-header {
  margin-bottom: 2rem;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--paper-light);
  border: 1px solid rgba(47, 93, 74, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 93, 74, 0.12);
}

.event-card.event-featured {
  border-left: 4px solid var(--heritage-gold);
  background: var(--paper-light);
}

.event-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--heritage-green);
  color: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(47, 93, 74, 0.3);
}

.event-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-serif);
  color: var(--white);
}

.event-month {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
  color: var(--heritage-gold);
}

.event-details {
  flex: 1;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.event-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heritage-gold);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.event-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-base);
  margin: 0;
}

.events-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--heritage-green);
  border-left: 4px solid var(--heritage-gold);
  border-radius: 4px;
}

.events-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
}

.events-note strong {
  color: var(--heritage-gold);
}

@media (max-width: 767px) {
  .event-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .event-date {
    width: 70px;
    height: 70px;
  }

  .event-day {
    font-size: 1.75rem;
  }

  .event-month {
    font-size: 0.85rem;
  }

  .event-title {
    font-size: 1.3rem;
  }
}

/* ========================================================================
   25) NEWSLETTER PAGE
   ======================================================================== */
.newsletter-section {
  background: var(--paper-base);
}

.newsletter-section .section-header {
  margin-bottom: 2rem;
}

.newsletter-content {
  margin-top: 3rem;
}

.accordion {
  --bs-accordion-bg: var(--paper-light);
  --bs-accordion-border-color: rgba(47, 93, 74, 0.15);
  --bs-accordion-border-radius: 8px;
  --bs-accordion-active-bg: var(--paper-light);
  --bs-accordion-active-color: var(--heritage-green);
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(47, 93, 74, 0.15);
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--heritage-green);
  padding: 1.25rem 1.5rem;
  background: var(--paper-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--heritage-green);
  color: var(--white);
  border-bottom: 2px solid var(--heritage-gold);
  box-shadow: inset 0 -1px 0 rgba(201, 173, 116, 0.5);
}

.accordion-button:hover {
  background: rgba(47, 93, 74, 0.08);
}

.accordion-button:not(.collapsed):hover {
  background: #255241;
  color: var(--white);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f5d4a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-base);
  background: var(--paper-light);
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.newsletter-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heritage-green);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--heritage-green);
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.newsletter-download-link:hover {
  background-color: var(--heritage-green);
  color: white;
}

.newsletter-subscribe {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--paper-light);
  border: 2px solid var(--heritage-gold);
  border-radius: 12px;
  text-align: center;
}

.subscribe-heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 1rem;
}

.subscribe-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-base);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .accordion-button {
    font-size: 1.15rem;
    padding: 1rem 1.25rem;
  }

  .newsletter-subscribe {
    padding: 2rem 1.5rem;
  }

  .subscribe-heading {
    font-size: 1.5rem;
  }
}

/* ========================================================================
   26) HERO IMAGE VARIANT (for pages without video)
   ======================================================================== */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ========================================================================
   27) COLLECTIONS & RESEARCH PAGES
   ======================================================================== */

/* Collection List */
.collection-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.collection-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.collection-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--heritage-gold);
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Highlight Box */
.highlight-box {
  background: var(--paper-light);
  border-left: 4px solid var(--heritage-gold);
  padding: 1.5rem;
  margin: 2.5rem 0;
  border-radius: 4px;
}

.highlight-box p {
  margin-bottom: 0.75rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* Document Download */
.document-download {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--heritage-green);
  color: white;
  border-radius: 8px;
}

.download-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heritage-gold);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: transparent;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.download-link:hover {
  background: transparent;
  color: var(--white);
}

/* Search Box */
.search-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--paper-card);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-base);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--heritage-green);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(47, 93, 74, 0.2);
}

.btn-primary:hover {
  background: #234739;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 93, 74, 0.3);
}

/* File List in Accordion */
.file-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.file-list li {
  border-bottom: 1px solid var(--paper-light);
  padding: 0.75rem 0;
}

.file-list li:last-child {
  border-bottom: none;
}

.file-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heritage-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.file-list a:hover {
  color: var(--heritage-gold);
}

.file-list svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.archive-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--paper-card);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.archive-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-base);
  margin-bottom: 1.5rem;
}

.family-photos-grid {
  margin-top: 3rem;
}

.photos-heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heritage-green);
  text-align: center;
  margin-bottom: 2rem;
}

.photos-gallery {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.single-photo-container {
  background: var(--paper-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.family-history-image {
  width: 100%;
  height: auto;
  display: block;
}

.photo-caption {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-base);
  font-style: italic;
  margin: 0;
  background: var(--paper-card);
}

.alford-images-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--paper-card);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.images-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-base);
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
  .search-box,
  .archive-box,
  .alford-images-box {
    padding: 2rem 1.5rem;
  }

  .photos-heading {
    font-size: 1.5rem;
  }

  .photo-caption {
    padding: 1.25rem;
    font-size: 0.95rem;
  }

  .highlight-box {
    padding: 1.25rem;
  }

  .document-download {
    padding: 1.25rem;
  }

  .download-title {
    font-size: 1.3rem;
  }
}

/* =========================================================
   SUPPORT US PAGE STYLES
========================================================= */

.hero-support {
  position: relative;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay-sepia {
  background: linear-gradient(
    to bottom,
    rgba(80, 50, 20, 0.6) 0%,
    rgba(50, 35, 20, 0.75) 50%,
    rgba(20, 15, 10, 0.88) 100%
  );
}

.video-link-box {
  text-align: center;
  margin: 2rem 0;
}

.video-link-box .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-box {
  background: var(--paper-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--heritage-green);
  margin-top: 2rem;
}

.contact-info-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 1rem;
}

.subsection-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--heritage-gold);
}

.purposes-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.purposes-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.purposes-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--heritage-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-box {
  background: var(--heritage-green);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.pricing-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--heritage-gold);
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--white);
}

.pricing-list strong {
  color: var(--heritage-gold);
}

.cta-box {
  text-align: center;
  margin: 2.5rem 0;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.thanks-list {
  list-style: none;
  padding-left: 0;
}

.thanks-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.thanks-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--heritage-green);
  font-size: 1.5rem;
  line-height: 1;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sponsor-item {
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sponsor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sponsor-item:nth-child(3) .sponsor-logo,
.sponsor-item:nth-child(7) .sponsor-logo,
.sponsor-item:nth-child(8) .sponsor-logo,
.sponsor-item:nth-child(10) .sponsor-logo {
  object-fit: contain;
  background: var(--white);
  padding: 1.5rem;
}

.sponsor-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(47, 93, 74, 0.95) 0%, rgba(47, 93, 74, 0.8) 70%, transparent 100%);
  padding: 1.5rem 1rem 1rem;
  display: flex;
  align-items: flex-end;
}

.sponsor-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.sponsorship-cta-banner {
  background: var(--heritage-green);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.sponsorship-cta-content h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--heritage-gold);
  margin: 0 0 1rem 0;
}

.sponsorship-cta-content p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
}

.btn-sponsorship-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--heritage-gold);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.btn-sponsorship-contact:hover {
  background: var(--white);
  color: var(--heritage-green);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sponsorship-cta-banner {
    padding: 2rem 1.5rem;
  }

  .sponsorship-cta-content h3 {
    font-size: 1.6rem;
  }

  .sponsorship-cta-content p {
    font-size: 1rem;
  }

  .btn-sponsorship-contact {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

.info-note {
  background: var(--paper-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--heritage-gold);
  margin-top: 2rem;
}

.info-note em {
  color: #666;
}

.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .subsection-title {
    font-size: 1.5rem;
  }

  .pricing-box {
    padding: 1.5rem;
  }

  .sponsors-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .sponsor-item {
    height: 180px;
  }

  .sponsor-name {
    font-size: 0.95rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }
}

/* =========================================================
   ABOUT PAGE STYLES
========================================================= */

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.document-item {
  background: var(--heritage-green);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-item:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trustees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.trustee-card {
  background: var(--paper-card);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trustee-card:hover {
  border-color: var(--heritage-gold);
  transform: translateY(-4px);
}

.trustee-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin-bottom: 0.5rem;
}

.trustee-role {
  color: var(--heritage-gold);
  font-weight: 500;
  margin: 0;
}

.memory-boxes-gallery {
  margin: 3rem 0;
}

.memory-box-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.memory-box-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.memory-box-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.topics-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heritage-green);
  margin: 3rem 0 1.5rem;
  text-align: center;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

.topic-card {
  background: var(--heritage-green);
  color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.topic-card:hover {
  background: var(--heritage-gold);
  transform: translateY(-4px);
}

.topic-card h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.concert-gallery {
  margin: 3rem 0;
}

.concert-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concert-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.concert-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.image-caption {
  background: rgba(47, 93, 74, 0.95);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  margin: 0;
}

.dates-box {
  background: var(--heritage-green);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2.5rem 0;
}

.dates-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--heritage-gold);
  margin-bottom: 1rem;
}

.concert-dates {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .trustees-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .trustee-card {
    padding: 1rem;
  }

  .trustee-name {
    font-size: 1.1rem;
  }

  .memory-box-image img,
  .concert-image img {
    height: 200px;
  }

  .topics-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .topic-card {
    padding: 1.5rem 1rem;
  }

  .topic-card h4 {
    font-size: 1.1rem;
  }

  .dates-box {
    padding: 1.5rem;
  }

  .concert-dates {
    font-size: 1.1rem;
  }
}



