/*
Theme Name: Reeds Schools
Theme URI: https://reedsschools.com
Author: Reeds Schools
Author URI: https://reedsschools.com
Description: Official theme for Reeds Schools, Agungi Lekki — a British + Nigerian integrated prep school. Dark-navy & gold design language with the Reeds purple, green and pink brand palette. Elementor-ready: includes "Elementor Canvas" and "Full Width (Elementor)" page templates, a cross-fading hero carousel homepage, and a two-column mega-dropdown navigation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reeds-schools
Tags: education, school, elementor, custom-logo, custom-menu, featured-images, one-column, two-columns, wide-blocks
*/

/* ============ Design tokens ============ */
:root {
  --navy-deep: oklch(0.985 0.005 250);
  --navy-surface: oklch(0.965 0.008 250);
  --navy-elevated: oklch(0.935 0.012 250);
  --gold: oklch(0.62 0.14 75);
  --gold-soft: oklch(0.78 0.1 80);

  --reeds-purple: #3d028b;
  --reeds-purple-soft: #855298;
  --reeds-purple-tint: #f3edf8;
  --reeds-green: #54be16;
  --reeds-green-soft: #8fd95a;
  --reeds-green-tint: #f1f9e6;
  --reeds-pink: #e8a8c8;
  --reeds-pink-tint: #fbeef4;

  --background: var(--navy-deep);
  --foreground: oklch(0.2 0.03 255);
  --card: var(--navy-surface);
  --muted-foreground: oklch(0.42 0.02 255);
  --border: oklch(0.2 0.03 255 / 12%);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 0.5rem;
  --shadow-gold: 0 10px 40px -10px color-mix(in oklab, var(--gold) 40%, transparent);
  --container: 80rem;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
}
p { margin: 0 0 1em; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.section-pad { padding-block: 5rem; }
@media (min-width: 768px) { .section-pad { padding-block: 7rem; } }

.mono-label {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.gold-text { color: var(--gold); }
.italic { font-style: italic; }

/* Section label chip */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid color-mix(in oklab, var(--gold) 30%, transparent);
  background: color-mix(in oklab, var(--gold) 5%, transparent);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.section-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.9rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter .2s, background .2s, color .2s;
  text-decoration: none !important;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { filter: brightness(1.1); }
.btn-green { background: var(--reeds-green); color: #fff; }
.btn-green:hover { filter: brightness(1.08); }
.btn-outline { border-color: var(--border); background: transparent; color: var(--foreground); }
.btn-outline:hover { background: var(--navy-elevated); }
.btn-outline-gold { border-color: color-mix(in oklab, var(--gold) 40%, transparent); background: color-mix(in oklab, var(--gold) 5%, transparent); color: var(--gold); }
.btn-outline-gold:hover { background: color-mix(in oklab, var(--gold) 10%, transparent); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.topbar {
  display: none;
  border-bottom: 1px solid #f0f0f0;
  background: #f9fafb;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #6b7280;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.topbar a { color: var(--gold); }
.topbar .sep { color: #d1d5db; }
@media (min-width: 1024px) { .topbar { display: block; } }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand img { height: 64px; width: auto; }
@media (min-width: 640px) { .brand img { height: 80px; } }
@media (min-width: 1024px) { .brand img { height: 96px; } }
.brand .custom-logo { height: 80px; width: auto; }

.primary-nav { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav ul.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }
.primary-nav .menu > li { position: relative; }
.primary-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #374151;
  text-decoration: none;
}
@media (min-width: 1280px) { .primary-nav .menu > li > a { font-size: 12px; padding-inline: 0.85rem; } }
.primary-nav .menu > li > a:hover,
.primary-nav .menu > li.current-menu-item > a,
.primary-nav .menu > li.current-menu-ancestor > a { color: var(--gold); }
.nav-caret { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); display: inline-block; }

/* Mega dropdown */
.primary-nav .menu > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 25px 60px -12px rgba(0,0,0,0.25);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 120;
}
.primary-nav .menu > li.menu-item-has-children:hover > .sub-menu,
.primary-nav .menu > li.menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu > li.menu-item-has-children.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 4px);
}
.primary-nav .sub-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #111827;
  text-decoration: none;
  transition: background .15s;
}
.primary-nav .sub-menu li a:hover { background: #f9fafb; }
.primary-nav .sub-menu .menu-item-title { display: block; font-family: var(--font-serif); font-size: 14px; font-weight: 600; }
.primary-nav .sub-menu .menu-item-desc { display: block; font-size: 12px; color: #6b7280; font-family: var(--font-sans); text-transform: none; letter-spacing: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-apply { display: none; }
@media (min-width: 1024px) { .nav-apply { display: inline-flex; padding: 0.65rem 1.25rem; font-size: 12px; } }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu { display: none; border-top: 1px solid #e5e7eb; background: #fff; max-height: 80vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu .container { padding-block: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu > .container > ul > li > a,
.mobile-menu .mm-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.7rem 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #374151;
  border: 0;
  background: none;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  text-decoration: none;
}
.mobile-menu .sub-menu { display: none; padding: 0.25rem 0 0.75rem 0.75rem; }
.mobile-menu li.open > .sub-menu { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 640px) { .mobile-menu li.open > .sub-menu { grid-template-columns: 1fr 1fr; } }
.mobile-menu .sub-menu a { display: block; padding: 0.5rem 0.5rem; font-size: 0.9rem; color: #4b5563; }
.mobile-menu .mm-apply { margin-top: 0.75rem; justify-content: center; }

/* ============ Hero carousel (front page) ============ */
.hero { position: relative; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1800ms ease-in-out, transform 6000ms ease-out;
  will-change: opacity, transform;
}
.hero-slides img.active { opacity: 1; transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, color-mix(in oklab, var(--navy-deep) 80%, transparent), transparent, color-mix(in oklab, var(--navy-deep) 80%, transparent)),
    linear-gradient(to bottom, color-mix(in oklab, var(--navy-deep) 70%, transparent), color-mix(in oklab, var(--navy-deep) 75%, transparent), var(--navy-deep));
}
.hero-inner { position: relative; text-align: center; padding: 5rem 1.5rem 6rem; max-width: var(--container); margin-inline: auto; }
@media (min-width: 768px) { .hero-inner { padding: 7rem 1.5rem 8rem; } }
.hero h1 {
  margin: 2rem auto 0;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  max-width: 64rem;
  text-shadow: 0 2px 18px rgba(255,255,255,0.35);
}
.hero p.lead { margin: 2rem auto 0; max-width: 42rem; font-size: 1.125rem; color: color-mix(in oklab, var(--foreground) 88%, transparent); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

.hero-stats {
  margin-top: 4rem;
  display: grid;
  border: 1px solid var(--border);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stats .stat { background: color-mix(in oklab, var(--navy-surface) 88%, transparent); padding: 1.5rem; text-align: center; }
.hero-stats .stat .value { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; color: var(--gold); }
.hero-stats .stat .label { margin-top: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; border-top: 1px solid var(--border); }
@media (min-width: 768px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .photo-strip { grid-template-columns: repeat(6, 1fr); } }
.photo-strip .ph { position: relative; aspect-ratio: 1; overflow: hidden; margin: 0; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.photo-strip .ph:hover img { transform: scale(1.1); }

/* Split sections */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } .split.split-5 { grid-template-columns: 2fr 3fr; } }
.tint-purple { background: var(--reeds-purple-tint); }
.tint-green { background: var(--reeds-green-tint); }
.tint-pink { background: var(--reeds-pink-tint); }
.tint-surface { background: var(--navy-surface); }
.bordered-top { border-top: 1px solid var(--border); }

/* Cards */
.card-grid { display: grid; gap: 1rem; margin-top: 3rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.level-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}
.level-card:hover { border-color: color-mix(in oklab, var(--gold) 40%, transparent); }
.level-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.level-card .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s; }
.level-card:hover .thumb img { transform: scale(1.08); }
.level-card .body { padding: 1.25rem; }
.level-card h3 { font-size: 1.125rem; margin: 0; }
.level-card .ages { margin-top: 0.35rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }

/* Proprietress */
.proprietress-img { width: 100%; border-radius: 1rem; border: 1px solid var(--border); object-fit: cover; aspect-ratio: 4/5; }

/* Stat mini boxes */
.mini-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.mini-box { border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 1.5rem; }
.mini-box .k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }
.mini-box .v { margin-top: 0.25rem; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); }

/* CTA band */
.cta-band { background: var(--reeds-purple); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 36rem; margin-inline: auto; }

/* Pull quote */
.pull-quote { text-align: center; max-width: 56rem; margin-inline: auto; }
.pull-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; line-height: 1.35; margin: 0; }
.pull-quote .who { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ============ Page hero (inner pages) ============ */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, color-mix(in oklab, var(--navy-deep) 80%, transparent), color-mix(in oklab, var(--navy-deep) 85%, transparent), var(--navy-deep));
}
.page-hero .inner { position: relative; padding: 5rem 1.5rem 4.5rem; max-width: var(--container); margin-inline: auto; }
@media (min-width: 768px) { .page-hero .inner { padding: 7rem 1.5rem 6rem; } }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); max-width: 56rem; margin: 1.25rem 0 0; }
.page-hero .subtitle { margin-top: 1.25rem; max-width: 42rem; font-size: 1.1rem; color: color-mix(in oklab, var(--foreground) 80%, transparent); }

/* ============ Content ============ */
.entry-content { max-width: 48rem; margin-inline: auto; font-size: 1.05rem; }
.entry-content > * { margin-bottom: 1.25em; }
.entry-content h2 { font-size: 2rem; margin-top: 2em; }
.entry-content h3 { font-size: 1.5rem; margin-top: 1.8em; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  margin-inline: 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}
.entry-content table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.entry-content th, .entry-content td { border: 1px solid var(--border); padding: 0.65rem 0.9rem; text-align: left; }
.entry-content th { background: var(--navy-surface); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.entry-content img { border-radius: 10px; }
.alignwide { max-width: 72rem; }
.alignfull { max-width: none; }
.wp-block-image figcaption { font-size: 0.85rem; color: var(--muted-foreground); text-align: center; margin-top: 0.5rem; }

/* Forms (WPForms / Contact Form 7 / generic) */
.entry-content form, .wpcf7-form, .wpforms-form { display: grid; gap: 1rem; }
.entry-content label, .wpforms-field-label, .wpcf7-form label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); display: block; margin-bottom: 0.35rem; }
.entry-content input[type="text"], .entry-content input[type="email"], .entry-content input[type="tel"],
.entry-content input[type="number"], .entry-content input[type="date"], .entry-content select, .entry-content textarea,
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form select, .wpcf7-form textarea,
.wpforms-form input[type="text"], .wpforms-form input[type="email"], .wpforms-form input[type="tel"], .wpforms-form select, .wpforms-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--foreground);
}
.entry-content input:focus, .entry-content textarea:focus, .entry-content select:focus,
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpforms-form input:focus, .wpforms-form textarea:focus {
  outline: 2px solid color-mix(in oklab, var(--gold) 60%, transparent);
  outline-offset: 1px;
}
.entry-content input[type="submit"], .wpcf7-form .wpcf7-submit, .wpforms-form .wpforms-submit {
  display: inline-flex; justify-content: center;
  border: 0; border-radius: var(--radius);
  background: var(--gold); color: #fff;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer; box-shadow: var(--shadow-gold);
}
.entry-content input[type="submit"]:hover, .wpcf7-form .wpcf7-submit:hover, .wpforms-form .wpforms-submit:hover { filter: brightness(1.1); }

/* ============ Blog / archive cards ============ */
.post-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-surface); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 1.25rem; }
.post-card h2, .post-card h3 { font-size: 1.2rem; margin: 0 0 0.5rem; }
.post-card .meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-foreground); }
.post-card p { color: var(--muted-foreground); font-size: 0.95rem; margin: 0.5rem 0 0; }
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.pagination .page-numbers { border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 0.9rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--foreground); }
.pagination .page-numbers.current { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--border); background: color-mix(in oklab, var(--navy-surface) 60%, transparent); }
.footer-grid { display: grid; gap: 2.5rem; padding-block: 4rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.9rem; }
.site-footer a { color: color-mix(in oklab, var(--foreground) 75%, transparent); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 48px; width: auto; }
.footer-brand .name { font-family: var(--font-serif); font-weight: 700; margin-top: 0.5rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: var(--muted-foreground); max-width: 22rem; }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom .container { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; justify-content: space-between; padding-block: 1.25rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .footer-bottom .container { flex-direction: row; } }

/* ============ Comments ============ */
.comments-area { max-width: 48rem; margin: 3rem auto 0; border-top: 1px solid var(--border); padding-top: 2rem; }
.comment-list { list-style: none; padding: 0; }
.comment-body { border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1rem; background: #fff; }
.comment-meta { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 0.5rem; }

/* 404 */
.not-found { text-align: center; padding: 7rem 1.5rem; }
.not-found h1 { font-size: 5rem; color: var(--gold); margin: 0; }

/* Accessibility */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  width: auto; height: auto; clip: auto;
  background: var(--gold); color: #fff; padding: 0.6rem 1rem; border-radius: 6px;
}

/* ============ Elementor templates ============ */
.reeds-fullwidth { display: block; }
.reeds-fullwidth > .elementor { width: 100%; }
body.reeds-canvas { background: #fff; }
.elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--container); }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-serif); }
.elementor-button { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }
