/* ============================================================
   An Turas — shared stylesheet
   Palette: Irish moorland green + Atlantic dusk, warm sand accents,
   turf-fire copper for calls to action.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root{
  --ink: #1E3327;         /* deep moorland green — hero / footer bg */
  --ink-2: #274330;       /* lifted green for gradients */
  --ink-3: #34543D;       /* hairline on dark green */
  --parchment: #F1ECE0;   /* quartz-stone — body bg */
  --parchment-2: #E7DFCC; /* deeper parchment — card bg */
  --moor: #4F6144;        /* moorland green accent (on light bg) */
  --moor-dark: #3C4B34;
  --sand: #E9D4A4;        /* warm sand — headings/eyebrows on dark green */
  --amethyst: #6F5C82;    /* bedrock amethyst — small accents only */
  --hearth: #9C4A2A;      /* turf-fire copper — buttons / CTAs */
  --hearth-dark: #7E3B21;
  --quartz: #FBF9F4;      /* near-white, text on dark */
  --text: #262620;        /* body text on parchment */
  --muted: #6B6558;       /* secondary text on parchment */
  --muted-on-dark: #C3D0BE; /* secondary text on dark green */

  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Karla', ui-sans-serif, system-ui, sans-serif;

  --max: 1180px;
  --edge: clamp(1.25rem, 5vw, 4rem);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--parchment);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Headings / eyebrows / pull-quotes on dark (green) backgrounds —
   scoped directly to the dark containers so nothing silently
   defaults back to dark-on-dark. */
.hero h1, .hero h2, .hero h3, .hero h4,
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
footer.site-footer h1, footer.site-footer h2, footer.site-footer h3{
  color: var(--quartz);
}

h1{ font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; }
h2{ font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3{ font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 600; }

p{ margin: 0 0 1.1em; }
a{ color: inherit; }

.italic{ font-style: italic; font-weight: 400; }

img{ max-width: 100%; display: block; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.eyebrow{
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hearth);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.9em;
}
.hero .eyebrow, .section-dark .eyebrow, .page-hero .eyebrow, footer.site-footer .eyebrow{ color: var(--sand); }
.eyebrow::before{
  content: '';
  width: 1.6em;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ---------- horizon divider — the site's signature mark ---------- */
.horizon{
  position: relative;
  height: 64px;
  overflow: visible;
}
.horizon svg{ width: 100%; height: 100%; display: block; }

/* ---------- nav ---------- */
.site-nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(30, 51, 39, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--ink-3);
}
.site-nav .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--quartz);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55em;
  flex-shrink: 0;
  margin-right: 1.25rem;
}
.brand-name{
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}
.brand small{
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.32em;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.3rem);
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.82rem;
}
.nav-links > li{ position: relative; }
.nav-links a,
.nav-links .dropdown-toggle{
  text-decoration: none;
  color: var(--muted-on-dark);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4em 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active,
.nav-links .dropdown-toggle:hover, .nav-links .dropdown-toggle.active{
  color: var(--quartz);
  border-color: var(--hearth);
}
.dropdown-toggle{
  background: none;
  cursor: pointer;
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
}
.dropdown-toggle .caret{ font-size: 0.8em; }

/* ---------- dropdown (About) ---------- */
.has-dropdown .dropdown{
  position: absolute;
  top: 100%; left: 0;
  min-width: 190px;
  list-style: none;
  margin: 0.4rem 0 0; padding: 0.4rem 0;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown .dropdown.open{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown .dropdown a{
  display: block;
  padding: 0.55em 1.1em;
  border: none;
  color: var(--muted-on-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}
.has-dropdown .dropdown a:hover, .has-dropdown .dropdown a.active{
  color: var(--quartz);
  background: rgba(255,255,255,0.05);
  border: none;
}
/* Mobile nav: an always-visible, scrollable row of plain links (like the footer,
   which renders reliably). No button, no JavaScript, nothing that can hide. */
.mobile-nav{ display: none; }

@media (max-width: 1200px){
  /* hide the desktop tab row + dropdown; show the simple link strip instead */
  .site-nav .nav-links{ display: none; }
  .mobile-nav{
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.7rem var(--edge) 0.75rem;
    background: var(--ink-2);
    border-top: 1px solid var(--ink-3);
    scrollbar-width: none;
  }
  .mobile-nav::-webkit-scrollbar{ display: none; }
  .mobile-nav a{
    flex: 0 0 auto;
    color: var(--muted-on-dark);
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0.15em 0;
    border-bottom: 2px solid transparent;
  }
  .mobile-nav a.active{ color: var(--quartz); border-bottom-color: var(--hearth); }
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--hearth); color: var(--quartz); }
.btn-primary:hover{ background: var(--hearth-dark); }
.btn-ghost{
  background: transparent;
  border-color: var(--quartz);
  color: var(--quartz);
}
.btn-ghost:hover{ background: rgba(251,249,244,0.1); }

/* ---------- hero ---------- */
.hero{
  background: linear-gradient(180deg, rgba(22,38,28,0.55) 0%, rgba(22,38,28,0.92) 75%, #16261C 100%), url('hero-coast.jpg') center 35%/cover no-repeat;
  color: var(--quartz);
  padding: clamp(2.5rem, 6vw, 3rem) 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner{
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero p.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted-on-dark);
  max-width: 52ch;
}
.hero-cta{ display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.hero-dates{
  margin-top: 2.6rem;
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.hero-dates div{ border-left: 2px solid var(--hearth); padding-left: 0.9em; }
.hero-dates b{ display:block; font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--quartz); }
.hero-dates span{ color: var(--muted-on-dark); }

/* ---------- sections ---------- */
section{ padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-dark{ background: var(--ink); color: var(--quartz); }
.section-tint{ background: var(--parchment-2); }

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px){ .grid-2{ grid-template-columns: 1fr; } }

.lede-block{ max-width: 62ch; }
.lede-block p{ font-size: 1.08rem; }

blockquote.pull{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 1.4rem 0;
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--amethyst);
}
.section-dark blockquote.pull, .hero blockquote.pull{ color: var(--quartz); border-color: var(--sand); }
blockquote.pull cite{
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.7em;
}
.section-dark blockquote.pull cite, .hero blockquote.pull cite{ color: var(--muted-on-dark); }

/* ---------- cards ---------- */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px){ .cards{ grid-template-columns: 1fr; } }

.card{
  background: var(--quartz);
  border: 1px solid #DED4BC;
  border-radius: 4px;
  padding: 2rem 1.9rem;
}
.card .eyebrow{ margin-bottom: 0.7em; color: var(--moor); }
.card h3{ margin-bottom: 0.4em; }
.card p{ color: var(--muted); font-size: 0.98rem; margin-bottom: 0; }

/* ---------- facilitator profiles ---------- */
.facilitator{
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 4vw, 2.8rem) 0;
  border-top: 1px solid #DED4BC;
}
@media (max-width: 640px){ .facilitator{ grid-template-columns: 84px 1fr; } }

.avatar{
  width: 148px; height: 148px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img{ width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px){ .avatar{ width: 84px; height: 84px; } }
.avatar span{
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--quartz);
  font-weight: 500;
}
@media (max-width: 640px){ .avatar span{ font-size: 1.7rem; } }

.facilitator h3{ margin-bottom: 0.15em; }
.facilitator .role{
  font-size: 0.85rem;
  color: var(--hearth);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.9em;
  display: block;
}
.facilitator p{ color: var(--muted); font-size: 0.98rem; }

/* ---------- info list (logistics) ---------- */
.info-list{ list-style: none; margin: 0; padding: 0; }
.info-list li{
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid #DED4BC;
  font-size: 0.98rem;
}
.info-list li:last-child{ border-bottom: 1px solid #DED4BC; }
.info-list .k{
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  align-self: start;
}
@media (max-width: 560px){
  .info-list li{ grid-template-columns: 1fr; gap: 0.3rem; }
}

.price-table{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}
@media (max-width: 640px){ .price-table{ grid-template-columns: 1fr; } }
.price-card{
  background: var(--quartz);
  border: 1px solid #DED4BC;
  border-radius: 4px;
  padding: 1.8rem;
}
.price-card .amount{
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--hearth);
  font-weight: 500;
  display: block;
  margin: 0.2em 0 0.1em;
}
.price-card .amount sup{ font-size: 0.5em; font-weight: 700; top: -0.6em; }
.price-card .note{ font-size: 0.85rem; color: var(--muted); }
.price-note-box{
  background: rgba(79,97,68,0.08);
  border: 1px dashed var(--moor);
  border-radius: 4px;
  padding: 1.1rem 1.3rem;
  font-size: 0.92rem;
  color: var(--ink);
}

/* ---------- form ---------- */
.form-card{
  background: var(--quartz);
  border: 1px solid #DED4BC;
  border-radius: 6px;
  padding: clamp(1.75rem, 4vw, 2.6rem);
}
.field{ margin-bottom: 1.3rem; }
.field label{
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5em;
}
.field input, .field select, .field textarea{
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.8em 0.9em;
  border: 1px solid #CBBFA0;
  border-radius: 3px;
  background: var(--parchment);
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: 2px solid var(--moor);
  outline-offset: 1px;
}
.field textarea{ resize: vertical; min-height: 110px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px){ .field-row{ grid-template-columns: 1fr; } }
.check-row{ display: flex; align-items: flex-start; gap: 0.7em; font-size: 0.92rem; color: var(--muted); }
.check-row input{ width: auto; margin-top: 0.3em; }
.form-foot{ font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
.form-note{
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ---------- footer ---------- */
footer.site-footer{
  background: var(--ink);
  color: var(--muted-on-dark);
  padding: 3rem 0 2.4rem;
  font-size: 0.9rem;
}
footer.site-footer a{ color: var(--quartz); text-decoration: underline; text-underline-offset: 3px; }
.footer-grid{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid var(--ink-3);
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}
.footer-brand{ font-family: var(--serif); color: var(--quartz); font-size: 1.3rem; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- photos ---------- */
figure.photo{ margin: 0; }
figure.photo img{
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #DED4BC;
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
}
figure.photo figcaption{
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.8em;
}
/* images stay in view beside their text as you scroll (modern, like the Facilitator page) */
@media (min-width: 801px){
  .grid-2 > figure.photo{ position: sticky; top: 100px; }
}
.brand-knot{
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ---------- page hero (secondary pages, shorter) ---------- */
.page-hero{
  background: linear-gradient(180deg, var(--ink) 0%, #16261C 100%);
  color: var(--quartz);
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}
.page-hero--cove{
  background: linear-gradient(180deg, rgba(22,38,28,0.6) 0%, rgba(22,38,28,0.94) 80%, #16261C 100%), url('cove-cliff.jpg') center 40%/cover no-repeat;
}
.page-hero--arch{
  background: linear-gradient(180deg, rgba(22,38,28,0.6) 0%, rgba(22,38,28,0.94) 80%, #16261C 100%), url('rock-arch.jpg') center 45%/cover no-repeat;
}
.page-hero--beach{
  background: linear-gradient(180deg, rgba(22,38,28,0.55) 0%, rgba(22,38,28,0.94) 82%, #16261C 100%), url('beach-view.jpg') center 40%/cover no-repeat;
}
.page-hero--beach-arch{
  background: linear-gradient(180deg, rgba(22,38,28,0.5) 0%, rgba(22,38,28,0.92) 82%, #16261C 100%), url('beach-arch.jpg') center 45%/cover no-repeat;
}
.page-hero--strand{
  background: linear-gradient(180deg, rgba(22,38,28,0.55) 0%, rgba(22,38,28,0.93) 82%, #16261C 100%), url('strand.jpg') center 45%/cover no-repeat;
}
.page-hero--keem{
  background: linear-gradient(180deg, rgba(22,38,28,0.5) 0%, rgba(22,38,28,0.92) 82%, #16261C 100%), url('keem-aerial.jpg') center 40%/cover no-repeat;
}
.page-hero--road{
  background: linear-gradient(180deg, rgba(22,38,28,0.5) 0%, rgba(22,38,28,0.92) 82%, #16261C 100%), url('coast-road.jpg') center 55%/cover no-repeat;
}

/* ---------- long-form prose ---------- */
.prose{ max-width: 68ch; }
.prose p{ font-size: 1.06rem; margin-bottom: 1.15em; }
.prose p.lead-quote{
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.1em;
}

/* ---------- testimonials ---------- */
.quote-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 800px){ .quote-grid{ grid-template-columns: 1fr; } }
.quote-card{
  background: var(--quartz);
  border: 1px solid #DED4BC;
  border-radius: 6px;
  padding: 1.9rem 1.9rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.quote-card p{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.1rem;
}
.quote-card cite{
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hearth);
  margin-top: auto;
}
.knot-feature{
  width: 200px; height: 200px;
  margin: 0 auto 2.5rem;
}

/* ---------- testimonial photos ---------- */
.framed{ margin: 0; }
.framed img{
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid #DED4BC;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.framed figcaption{
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.7em;
  text-align: center;
}
/* testimonials: quotes with a photo column alongside */
.testi-layout{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 860px){ .testi-layout{ grid-template-columns: 1fr; } }
.testi-quotes{ display: flex; flex-direction: column; gap: 1.5rem; }
.testi-photos{ display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 861px){ .testi-photos{ position: sticky; top: 100px; } }

/* ---------- embedded map ---------- */
.map-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #DED4BC;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}
.map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- about: bio + facilitator ---------- */
.prose p.lead-in{
  font-size: clamp(1.16rem, 1.9vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.3em;
}
.lede-block p.credentials, p.credentials{
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hearth);
  margin: -0.2em 0 1.3rem;
}
.portrait{
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--ink-3);
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}
.portrait img{ width: 100%; display: block; }
@media (min-width: 801px){
  .portrait{ position: sticky; top: 100px; }
}

/* personal statement banner */
.statement{ text-align: center; }
.statement .eyebrow{ justify-content: center; }
.statement .words{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  color: var(--quartz);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  margin: 0.4rem 0 1.6rem;
}
.statement .words i{
  display: inline-block;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--sand);
  border-radius: 1px;
}
.statement .prose{ margin: 0 auto; text-align: left; }
.statement .prose p{ color: var(--muted-on-dark); }

/* extra hero backdrops */
.page-hero--clifftop{
  background: linear-gradient(180deg, rgba(22,38,28,0.5) 0%, rgba(22,38,28,0.92) 82%, #16261C 100%), url('clifftop.jpg') center 42%/cover no-repeat;
}
/* faint knot watermark for plain (image-less) heroes */
.page-hero.has-knotmark{ position: relative; overflow: hidden; }
.page-hero.has-knotmark > .wrap{ position: relative; z-index: 1; }
.page-hero.has-knotmark::after{
  content: '';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  background: url('celtic-knot.png') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.page-hero .lede{ color: var(--muted-on-dark); max-width: 58ch; font-size: 1.08rem; }
