/* =========================================================
   REVISE.IE — refined academic brand (v2)
   Dark forest green · Black · Warm cream · Gold accents
   Cormorant Garamond (display) + Public Sans (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Public+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  /* Palette — fixed */
  --forest:        #14352a;
  --forest-deep:   #0c2218;
  --ink:           #0a0a0a;
  --cream:         #f4ede0;
  --cream-deep:    #eadfca;
  --paper:         #fbf8f1;
  --gold:          #b08a3e;
  --gold-bright:   #d4a85a;
  --gold-soft:     #c89a4a;
  --muted:         #6b6253;
  --rule:          #d8cdb3;
  --rule-dark:     #2a4a3a;

  /* Type */
  --serif: 'Cormorant Garamond', 'Garamond', 'Georgia', serif;
  --sans:  'Public Sans', system-ui, -apple-system, sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 8rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 880px;
}

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: 1240px;
  margin: 0 auto;
}

/* ============== WORDMARK — refined ============== */
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.005em;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  line-height: 1;
}
.wordmark__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 1px;
  align-self: center;
  margin: 0 0.05em;
  flex-shrink: 0;
}
.wordmark__suffix {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--forest);
  letter-spacing: 0.005em;
}

/* Footer wordmark — slightly larger, cream */
.footer__brand .wordmark {
  color: var(--cream);
  font-size: 1.85rem;
}
.footer__brand .wordmark__suffix { color: var(--cream); }
.footer__brand .wordmark__dot { background: var(--gold-bright); }

/* SVG wordmark (real logo) — sizing preserves the old nav/footer hierarchy */
.wordmark__img { height: 30px; width: auto; display: block; }
.footer__brand .wordmark__img { height: 38px; }
@media (max-width: 600px) {
  .wordmark__img { height: 26px; }
  .footer__brand .wordmark__img { height: 32px; }
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav a {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.nav__cta {
  background: var(--forest);
  color: var(--paper) !important;
  padding: 0.6rem 1.15rem;
  border-radius: 2px;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav__cta:hover {
  background: var(--forest-deep);
  color: var(--gold-bright) !important;
}
@media (max-width: 760px) {
  .nav a:not(.nav__cta) { display: none; }
}

/* =========================================================
   Eyebrow — gold caps tag
   ========================================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--on-dark { color: var(--gold-bright); }
.eyebrow--on-dark::before { background: var(--gold-bright); }

/* =========================================================
   Hero — with real photo background
   ========================================================= */
.hero {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}

/* Photo layer */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-study.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

/* Forest-green tint overlay — keeps brand colour, makes text readable */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20, 53, 42, 0.94) 0%,
      rgba(20, 53, 42, 0.86) 35%,
      rgba(20, 53, 42, 0.65) 65%,
      rgba(20, 53, 42, 0.55) 100%
    );
}

/* Faint texture grid on top */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 96px 100%;
  pointer-events: none;
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}

/* ============== HEADLINE — stronger weight ============== */
.hero__headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 1.8rem;
  color: var(--cream);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.78);
  margin-top: 2rem;
  max-width: 38ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--forest-deep);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  padding: 0.4rem 0;
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.btn--dark {
  background: var(--forest);
  color: var(--paper);
}
.btn--dark:hover {
  background: var(--forest-deep);
  color: var(--gold-bright);
}

/* Hero photo placeholder */
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.hero__photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(208, 168, 90, 0.25);
  pointer-events: none;
}
.hero__photo-caption {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  position: relative;
  z-index: 1;
}
.hero__photo-caption small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.65rem;
  color: rgba(212, 168, 90, 0.55);
  letter-spacing: 0.15em;
}

/* =========================================================
   Section base
   ========================================================= */
.section {
  padding: var(--section-pad) 0;
}
.section--cream { background: var(--cream); color: var(--ink); }
.section--cream-deep { background: var(--cream-deep); color: var(--ink); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--ink { background: var(--ink); color: var(--paper); }

.section__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-top: 1.4rem;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section--forest .section__title em,
.section--ink .section__title em { color: var(--gold-bright); }
.section--forest .section__title,
.section--ink .section__title { color: var(--cream); }
.section__lede {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}
.section--forest .section__lede,
.section--ink .section__lede { color: rgba(244, 237, 224, 0.72); }

/* =========================================================
   Positioning band
   ========================================================= */
.positioning {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .positioning { grid-template-columns: 1fr; }
}
.positioning__prose {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
}
.positioning__prose strong {
  font-weight: 500;
  font-style: italic;
  color: var(--forest);
}
.stats {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.stat {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}
.stat:last-child { border-bottom: none; }
.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.4vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.55rem;
}

/* =========================================================
   Programmes grid — refined numerals
   ========================================================= */
.programmes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 720px) {
  .programmes { grid-template-columns: 1fr; }
}
.programme {
  position: relative;
  background: var(--cream);
  padding: clamp(2rem, 3.8vw, 3rem) clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.8rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
  min-height: 300px;
  overflow: hidden;
}
.programme:hover { background: var(--paper); }

/* Large outlined numeral in the corner — magazine-style */
.programme__numeral {
  position: absolute;
  top: clamp(1rem, 2.5vw, 1.6rem);
  right: clamp(1.4rem, 3vw, 2.2rem);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.6rem, 5.5vw, 4.8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: all 0.3s ease;
}
.programme:hover .programme__numeral {
  color: var(--gold-soft);
  -webkit-text-stroke: 1px var(--gold-soft);
}

.programme__label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.programme__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-top: 0.7rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  max-width: calc(100% - 4rem);
}
.programme__desc {
  font-size: 0.96rem;
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.55;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.programme__more {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.programme:hover .programme__more { color: var(--gold); }

/* Special programme card — bundle saving (dark) */
.programme--dark {
  background: var(--forest);
  color: var(--paper);
  cursor: default;
}
.programme--dark:hover { background: var(--forest); }
.programme--dark .programme__numeral {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-bright);
}
.programme--dark .programme__label { color: var(--gold-bright); }
.programme--dark .programme__title { color: var(--cream); }
.programme--dark .programme__desc { color: rgba(244, 237, 224, 0.72); }

/* =========================================================
   Locations
   ========================================================= */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.locations--two {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 860px) {
  .locations { grid-template-columns: 1fr; }
  .locations--two { grid-template-columns: 1fr; }
}
.location {
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.6rem, 2.5vw, 2.4rem);
  border-left: 1px solid var(--rule-dark);
}
.location:first-child { border-left: none; }
@media (max-width: 860px) {
  .location { border-left: none; border-top: 1px solid var(--rule-dark); }
  .location:first-child { border-top: none; }
}
.location__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.location__venue {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.5rem;
}
.location__desc {
  margin-top: 1.1rem;
  color: rgba(244, 237, 224, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================================
   Pull quote
   ========================================================= */
.quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.quote__text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.quote__text::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 4em;
  line-height: 0.4;
  vertical-align: -0.25em;
  color: var(--gold);
  margin-right: 0.05em;
}
.quote__attr {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(244, 237, 224, 0.7);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__tag {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 32ch;
}
.footer__title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; font-size: 0.95rem; }
.footer a {
  color: rgba(244, 237, 224, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover { color: var(--gold-bright); }
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   Inner page hero
   ========================================================= */
.page-hero {
  background: var(--forest);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 96px 100%;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-top: 1.6rem;
  color: var(--cream);
}
.page-hero__title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.page-hero__lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.78);
  margin-top: 1.6rem;
  max-width: 56ch;
}

/* Course meta row */
.meta-row {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(208, 168, 90, 0.25);
  border-bottom: 1px solid rgba(208, 168, 90, 0.25);
  flex-wrap: wrap;
}
.meta-item__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.meta-item__value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--cream);
  margin-top: 0.35rem;
}

/* =========================================================
   Pricing tier table
   ========================================================= */
.pricing {
  border-top: 2px solid var(--forest);
  margin-top: 2.5rem;
}
.pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 600px) {
  .pricing__row { grid-template-columns: 1fr auto; }
  .pricing__row .pricing__sub { grid-column: 1 / -1; font-size: 0.85rem; }
}
.pricing__qty {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pricing__qty em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  margin-right: 0.4rem;
}
.pricing__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.pricing__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  text-align: right;
  white-space: nowrap;
}

/* Membership tier card (alt style for headline tiers) */
.tier {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 1.8rem 2rem;
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.2s ease;
}
.tier:hover { border-color: var(--gold); background: var(--cream); }
.tier__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
}
.tier__name em { font-style: italic; color: var(--gold); font-weight: 400; }
.tier__detail {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.tier__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  text-align: right;
  white-space: nowrap;
}
.tier__price-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
@media (max-width: 600px) {
  .tier { grid-template-columns: 1fr; gap: 0.5rem; }
  .tier__price { text-align: left; }
}

/* Subjects grid */
.subjects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 2.5rem;
}
@media (max-width: 720px) {
  .subjects { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .subjects { grid-template-columns: 1fr; }
}
.subject {
  background: var(--paper);
  padding: 1.2rem 1.4rem;
}
.subject__level {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.subject__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 0.3rem;
  color: var(--ink);
}

/* Refund / highlight box */
.refund-box {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 3rem;
}
.refund-box__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.refund-box__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.65rem;
  margin-top: 0.6rem;
  color: var(--ink);
}
.refund-box__text {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}

/* FAQ */
.faqs { border-top: 1px solid var(--rule); margin-top: 2.5rem; }
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 1.6rem 0;
}
.faq__q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq__a {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}

/* CTA strip */
.cta-strip {
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.cta-strip__head {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto 2rem;
  letter-spacing: -0.015em;
}
.cta-strip__head em {
  font-style: italic;
  color: var(--gold-bright);
}

/* Body prose */
.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--forest); }
.prose em { font-style: italic; color: var(--forest); }

/* Timetable on dark sections */
.timetable {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.1rem 2rem;
  align-items: baseline;
  max-width: 680px;
}
.timetable__time {
  font-family: var(--serif);
  color: var(--gold-bright);
  font-size: 1.3rem;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.timetable__what {
  color: rgba(244, 237, 224, 0.85);
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(208, 168, 90, 0.2);
}
.timetable__what:last-child { border-bottom: none; }
.timetable__break {
  color: rgba(244, 237, 224, 0.55);
  font-style: italic;
}

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info { padding-top: 0.5rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.hidden-field { display: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   House rules — numbered rule blocks
   ========================================================= */
.rule {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.rule:last-child { border-bottom: none; }
.rule__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  letter-spacing: -0.02em;
}
.rule__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.rule__text {
  margin-top: 0.6rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
}
@media (max-width: 600px) {
  .rule { grid-template-columns: 1fr; gap: 0.6rem; }
  .rule__num { font-size: 1.8rem; }
}

/* =========================================================
   Trust figure — for sponsorship / partnership photos
   ========================================================= */
.trust-figure {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.trust-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--rule);
}
.trust-figure__caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   Photo band — full-bleed image for inner pages
   ========================================================= */
.photo-band {
  width: 100%;
  height: clamp(280px, 50vw, 560px);
  background-size: cover;
  background-position: center 35%;
  position: relative;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 53, 42, 0.05) 0%,
    rgba(20, 53, 42, 0.0) 30%,
    rgba(20, 53, 42, 0.0) 70%,
    rgba(20, 53, 42, 0.15) 100%
  );
}
.photo-band--membership {
  background-image: url('membership-study.jpg');
}
.photo-credit {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(244, 237, 224, 0.4);
  text-align: center;
  padding-top: 1rem;
}

/* Per-tier call-to-action (makes pricing boxes actionable) */
.tier__cta{display:inline-block;margin-top:.6rem;font-family:var(--sans);font-size:.8rem;font-weight:600;letter-spacing:.04em;color:var(--forest);text-decoration:underline;text-underline-offset:3px;cursor:pointer;white-space:nowrap;}
.tier__cta:hover{color:var(--gold);}

/* Plus Memberships card — the primary conversion ("money") button */
.programme--dark{cursor:pointer;}
.programme--dark:hover{background:#0f2b22;}
.programme--dark .programme__numeral{transition:all .3s ease;}
.programme--dark:hover .programme__numeral{color:var(--gold-soft);-webkit-text-stroke:1px var(--gold-bright);}
.programme__cta{
  margin-top:1.6rem;align-self:flex-start;
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--gold);color:var(--forest);
  font-family:var(--sans);font-size:.82rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.85rem 1.5rem;border-radius:999px;
  position:relative;z-index:1;transition:all .2s ease;
}
.programme--dark:hover .programme__cta{background:var(--gold-bright);transform:translateX(2px);}

/* Sticky mobile call-to-action (conversion: always-visible Reserve/Call) */
.sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:120;display:none;gap:.6rem;padding:.7rem .9rem;background:rgba(20,53,42,.97);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border-top:1px solid rgba(255,255,255,.14);}
.sticky-cta a{display:flex;align-items:center;justify-content:center;padding:.9rem .5rem;border-radius:11px;font-family:var(--sans);font-weight:700;font-size:.95rem;letter-spacing:.01em;text-decoration:none;}
.sticky-cta__primary{flex:1;background:var(--gold);color:var(--forest);}
.sticky-cta__call{flex:0 0 auto;padding-left:1.3rem;padding-right:1.3rem;background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);}
@media(max-width:760px){.sticky-cta{display:flex;}body{padding-bottom:78px;}}
