:root {
  --bg: #F5F3EF;
  --surface: #EDEBE7;
  --border: #D8D5CF;
  --ink: #141210;
  --mid: #6A6560;
  --dim: #746F68;
  --gold: #C8A04A;
  --max: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.eyebrow {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dim);
  font-weight: 600;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  padding: 1.1rem clamp(1.5rem, 3.5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  font-family: 'Abril Fatface', serif;
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  flex: 0 0 auto;
}
.nav-links {
  display: flex;
  gap: clamp(0.85rem, 1.8vw, 1.65rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
  transition: color .25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: .7rem 1.2rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.nav-language {
  color: var(--dim);
  padding: .2rem 0;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1;
  background: transparent;
  border: 0;
  text-decoration: none;
  transition: color .25s ease;
}
.nav-language:hover { color: var(--ink); }
.accessibility-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
}
.contrast-toggle {
  min-height: 46px;
  border: 1px solid rgba(200, 160, 74, 0.85);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 0.72rem 0.95rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 18, 16, 0.10);
}
.contrast-toggle[aria-pressed="true"] {
  border-color: var(--ink);
  outline: 2px solid rgba(200, 160, 74, 0.72);
  outline-offset: 3px;
}
html.high-contrast {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --border: #000000;
  --ink: #000000;
  --mid: #000000;
  --dim: #000000;
  --gold: #000000;
  color-scheme: light;
}
html.high-contrast body,
html.high-contrast .nav,
html.high-contrast .nav-drawer,
html.high-contrast .content-card,
html.high-contrast .blog-card,
html.high-contrast .product-card,
html.high-contrast .community-login,
html.high-contrast footer {
  background: #FFFFFF;
  color: #000000;
}
html.high-contrast .nav-cta,
html.high-contrast .page-cta,
html.high-contrast .product-button,
html.high-contrast .community-login button,
html.high-contrast .youtube-facade {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}
html.high-contrast .contrast-toggle {
  background: #FFFFFF;
  color: #000000;
  border-color: #000000;
}
html.high-contrast a:not(.nav-cta):not(.page-cta):not(.product-button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-drawer {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem 2rem;
  flex-direction: column;
  gap: 1rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav-drawer a:last-child { border-bottom: none; }

.page-hero {
  padding: clamp(8rem, 16vw, 12rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(245,243,239,1) 0%, rgba(245,243,239,0.9) 58%, rgba(245,243,239,0.55) 100%),
    url("assets/programme.webp") center / cover;
}
.page-hero-inner,
.page-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.page-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 10ch;
  margin: 1.25rem 0 1.5rem;
}
.page-intro {
  max-width: 62ch;
  color: var(--mid);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  margin: 0;
}
.page-rule {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0 0;
}

.community-hero {
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.community-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.community-hero .page-title {
  max-width: 9ch;
}
.community-hero .community-video,
.community-hero .community-video video,
.community-hero .community-video-placeholder {
  min-height: clamp(17rem, 34vw, 28rem);
}

.page-section {
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.page-feature {
  margin: 0 0 clamp(3rem, 6vw, 5rem);
}
.page-feature-image {
  width: min(100%, 980px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.page-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.page-feature-caption {
  max-width: 720px;
  margin-top: 0.85rem;
  color: var(--dim);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.content-card {
  background: var(--bg);
  min-height: 320px;
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.content-card-label,
.content-card-status {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--border);
  padding: 0.35rem 0.55rem;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.content-card-status { color: var(--ink); border-color: var(--gold); }
.content-card h2,
.content-card h3 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 1rem;
}
.content-card p {
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}
.page-note {
  max-width: 760px;
  margin: 3rem 0 0;
  color: var(--mid);
  font-style: italic;
  line-height: 1.75;
}
.page-cta-row {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink);
  color: var(--bg);
  padding: 1rem 1.4rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.page-secondary {
  color: var(--dim);
  font-size: 0.85rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.blog-card {
  min-height: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.blog-card-body {
  padding: clamp(1.2rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-card h2 {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  line-height: 1.06;
  font-size: clamp(1.8rem, 2.8vw, 2.45rem);
  margin: 0;
}
.blog-card p {
  color: var(--mid);
  margin: 0;
  line-height: 1.65;
}
.blog-card-link {
  margin-top: auto;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
}

.post-hero {
  padding: clamp(7rem, 13vw, 10rem) var(--gutter) clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.post-hero-inner,
.post-body-inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.96;
  font-weight: 400;
  margin: 1rem 0 1.5rem;
}
.post-excerpt {
  max-width: 60ch;
  color: var(--mid);
  font-size: 1.15rem;
  line-height: 1.65;
}
.post-image {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  border: 1px solid var(--border);
  overflow: hidden;
}
.post-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-body {
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}
.post-copy {
  color: var(--ink);
  font-size: clamp(1.06rem, 2vw, 1.22rem);
  line-height: 1.85;
}
.post-copy p { margin: 0 0 1.35rem; }
.post-copy h2,
.post-copy h3 {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin: 2.2rem 0 0.85rem;
}
.post-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.post-copy h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.post-copy ul,
.post-copy ol {
  margin: 0 0 1.35rem 1.25rem;
  padding: 0;
}
.post-copy blockquote {
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-style: italic;
}
.post-copy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.post-copy .align-left,
.post-media.align-left {
  max-width: min(46%, 340px);
  float: left;
  margin: 0.35rem 1.4rem 1rem 0;
}
.post-copy .align-right,
.post-media.align-right {
  max-width: min(46%, 340px);
  float: right;
  margin: 0.35rem 0 1rem 1.4rem;
}
.post-copy .align-center,
.post-media.align-center {
  max-width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
}
.post-copy figure {
  margin: 2rem 0;
}
.post-copy figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  background: var(--surface);
}
.post-copy figcaption {
  margin-top: 0.65rem;
  color: var(--dim);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.55;
}
.post-copy::after {
  content: "";
  display: block;
  clear: both;
}
.privacy-copy {
  max-width: 850px;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.privacy-copy article {
  border-top: 1px solid var(--border);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}
.privacy-copy h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 0.8rem;
}
.privacy-copy p {
  color: var(--mid);
  margin: 0;
  line-height: 1.75;
}
.post-media {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--border);
  background: var(--surface);
}
.post-media iframe,
.post-media video,
.post-media img,
.post-media .youtube-facade {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  object-fit: cover;
}
.youtube-facade {
  min-height: 14rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #12110f;
  color: var(--bg);
  cursor: pointer;
  text-align: left;
  appearance: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: background .2s ease, transform .2s ease;
}
.youtube-facade:hover,
.youtube-facade:focus-visible {
  background: #1d1a16;
}
.youtube-facade:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.youtube-facade-kicker {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 243, 239, 0.68);
}
.youtube-facade-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
  max-width: 12ch;
}
.youtube-facade-action {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.youtube-play {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(245, 243, 239, 0.55);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}
.youtube-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  width: 0;
  height: 0;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.62rem solid var(--bg);
}
.post-media figcaption {
  padding: 0.85rem 1rem;
  color: var(--dim);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.55;
}
.post-media-link,
.community-media-link {
  min-height: 14rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  color: var(--ink);
}
.post-media-link span,
.community-media-link span {
  color: var(--dim);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.post-media-link strong,
.community-media-link strong {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 400;
}
.post-media-link em,
.community-media-link em {
  color: var(--mid);
  font-size: 0.86rem;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.shop-toolbar span {
  max-width: 55ch;
  color: var(--mid);
  margin: 0;
}
.shop-toolbar a,
.product-button {
  text-decoration: none;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.product-card {
  border: 1px solid var(--border);
  background: #fffdf8;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--surface);
}
.product-info {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}
.product-info h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.04;
  font-weight: 400;
  margin: 0;
}
.product-info p {
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Abril Fatface', serif;
  font-size: 1.5rem;
}
.product-button {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 0.9rem;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.community-video {
  position: relative;
  min-height: clamp(18rem, 48vw, 34rem);
  border: 1px solid var(--border);
  background: #111;
  overflow: hidden;
}
.community-video video {
  width: 100%;
  height: 100%;
  min-height: clamp(18rem, 48vw, 34rem);
  display: block;
  object-fit: cover;
  background: #111;
}
.community-video-placeholder {
  min-height: clamp(18rem, 48vw, 34rem);
  display: grid;
  place-content: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.58)),
    url("assets/social.webp") center / cover;
  color: var(--bg);
}
.community-video-placeholder .eyebrow,
.community-video-placeholder p {
  color: var(--bg);
}
.community-video-placeholder p {
  max-width: 36rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
  margin: 0.75rem auto 0;
}
.community-video-frame {
  margin: 0;
}
.community-video-frame iframe,
.community-video-frame video,
.community-video-frame img,
.community-video-frame .youtube-facade {
  width: 100%;
  min-height: clamp(18rem, 48vw, 34rem);
  aspect-ratio: 16 / 10;
  border: 0;
  object-fit: cover;
  display: block;
}
.community-media-section {
  margin: clamp(4rem, 8vw, 6rem) 0;
}
.community-section-head {
  max-width: 720px;
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.community-section-head h2 {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 400;
  margin: 0.9rem 0 1rem;
}
.community-section-head p {
  color: var(--mid);
  margin: 0;
  line-height: 1.7;
}
.community-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.community-media-item {
  min-width: 0;
}
.community-media-card {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}
.community-media-card iframe,
.community-media-card video,
.community-media-card img,
.community-media-card .youtube-facade {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border: 0;
  object-fit: cover;
}
.community-video-frame .youtube-facade,
.community-media-card .youtube-facade {
  display: flex;
}
.community-media-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--dim);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.55;
}
.community-story,
.tribe-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--border);
}
.community-story-copy h2,
.tribe-newsletter h2 {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}
.community-story-copy p,
.tribe-newsletter p {
  color: var(--mid);
  max-width: 56ch;
}
.community-story-photo {
  margin: 0;
}
.community-story-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.community-login {
  border: 1px solid var(--border);
  background: #fffdf8;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.community-login label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.community-login input {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.9rem;
  font: inherit;
  color: var(--ink);
}
.community-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1rem;
}
.community-consent input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0.22rem 0 0;
  accent-color: var(--ink);
}
.community-consent label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--mid);
}
.community-consent a,
.privacy-copy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
.community-login button {
  width: 100%;
  margin-top: 1rem;
  border: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 0.95rem 1rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
}
.community-login-status {
  min-height: 1.4em;
  color: var(--mid);
  font-size: 0.88rem;
  margin: 0.85rem 0 0;
}
.community-video video[hidden],
.community-video-placeholder[hidden] { display: none; }

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--gutter);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Abril Fatface', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
  align-items: center;
}
.footer-links a,
.footer-copy {
  font-size: 0.62rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-social a {
  display: inline-grid;
  place-items: center;
  padding: 0.25rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  color: var(--accent, var(--ink));
  transform: translateY(-1px);
}
.footer-social svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.footer-copy { font-size: 0.7rem; }

@media (max-width: 1020px) {
  .nav-links,
  .nav-cta,
  .nav-language { display: none; }
  .accessibility-float { right: 1rem; bottom: 1rem; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 28px; }
  .content-grid,
  .blog-grid,
  .community-media-grid,
  .product-grid,
  .community-story,
  .tribe-newsletter,
  .community-hero .page-hero-inner { grid-template-columns: 1fr; }
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .content-card { min-height: 0; }
}

@media (max-width: 620px) {
  .nav-brand { font-size: 1.85rem; }
  .page-hero {
    padding-top: 7.5rem;
    background:
      linear-gradient(90deg, rgba(245,243,239,0.98), rgba(245,243,239,0.88)),
      url("assets/programme.webp") center / cover;
  }
  .page-title { max-width: 9ch; }
  .community-hero .community-video,
  .community-hero .community-video video,
  .community-hero .community-video-placeholder {
    min-height: clamp(14rem, 58vw, 20rem);
  }
  .post-copy .align-left,
  .post-copy .align-right,
  .post-media.align-left,
  .post-media.align-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  .page-feature-image img { aspect-ratio: 4 / 3; }
  .page-cta { width: 100%; justify-content: center; text-align: center; }
}
