/*
Theme Name: Aye Center – Child
Theme URI: https://ayecenter.com
Description: Eigenes Unter-Theme ("Child-Theme") von Twenty Twenty-Five fuer die Aye-Center-Landingpages (Phase 0). Enthaelt das komplette Design-System (Farben, Schriften, Layout) und die eigenen Seitenvorlagen fuer Start, Ueber mich, Kontakt, Impressum und Datenschutz. Bewusst als Child-Theme angelegt, damit Updates des Haupt-Themes "Twenty Twenty-Five" nichts ueberschreiben.
Author: Aye Center
Template: twentytwentyfive
Version: 1.0.0
Text Domain: ayecenter-child
*/

/* ============================================================================
   WAS IST DIESE DATEI?
   ----------------------------------------------------------------------------
   Das ist die zentrale Stil-Datei ("Stylesheet"). Sie legt fest, WIE die
   Seiten aussehen: Farben, Schriftarten, Abstaende, Anordnung der Bloecke.
   Der Inhalt (die Texte) steht in den Seitenvorlagen im Ordner /templates
   und in den geteilten Bausteinen im Ordner /parts.

   Aufbau dieser Datei:
   1. Selbst gehostete Schriften (Fraunces + Public Sans) einbinden
   2. Farb- und Grundeinstellungen ("Design-System")
   3. Kopfbereich mit Navigation
   4. Startseite (Hero, Grundlagen, Wobei ich helfen kann, Werdegang, Kurse, Abschluss)
   5. Seite "Ueber mich"
   6. Textseiten (Kontakt, Impressum, Datenschutz) inkl. Kontaktformular
   7. Fussbereich
   8. Mobil-Ansicht (Anpassungen fuer schmale Bildschirme / Handy)
   ========================================================================== */


/* ============================================================================
   1. SCHRIFTEN – selbst gehostet
   ----------------------------------------------------------------------------
   Die Schriftdateien liegen im Ordner /assets/fonts und werden vom eigenen
   Server geladen. Dadurch werden KEINE Daten der Besucher an Google
   uebertragen (wichtig fuer den Datenschutz in Deutschland).
   "font-display: swap" = Text sofort mit Ersatzschrift zeigen, dann auf die
   richtige Schrift wechseln, sobald sie geladen ist (keine leere Flaeche).
   ========================================================================== */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fraunces-v38-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-v38-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/fraunces-v38-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/public-sans-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/public-sans-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/public-sans-v21-latin-600.woff2') format('woff2');
}


/* ============================================================================
   2. DESIGN-SYSTEM – Farben und Grundeinstellungen
   ----------------------------------------------------------------------------
   Die Farbwerte stehen genau so in der Uebergabe (uebergabe-phase0.md) und
   in den Entwurfsdateien. Sie werden hier einmal zentral definiert und
   ueberall wiederverwendet (Aenderung an einer Stelle wirkt ueberall).
   ========================================================================== */
:root {
  --ink: #16332E;          /* dunkles Tannengruen – Haupttextfarbe */
  --ink-soft: #2B4A43;     /* etwas helleres Gruen – Fliesstext */
  --sand: #EDE6D6;         /* helles Sandbeige */
  --sand-deep: #E2D9C4;    /* kraeftigeres Sandbeige – Flaechen/Buttons-Hintergrund */
  --gold: #B08D57;         /* Goldbraun – Akzente, Zahlen, Linien */
  --clay: #A65C4B;         /* Terrakotta – Hinweis "Kommt bald" */
  --paper: #FAF8F3;        /* fast weisser Papierton – Seitenhintergrund */
  --text-on-dark: #EFE9DC; /* heller Text auf dunklem Hintergrund */
}

/* Grund-Reset: alle Innen-/Aussenabstaende auf 0, damit wir sie bewusst setzen. */
.ac * { box-sizing: border-box; margin: 0; padding: 0; }

/* Grundeinstellung fuer den Seiteninhalt (alles innerhalb von .ac). */
.ac {
  font-family: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ueberschriften immer in der Serifen-Schrift "Fraunces". */
.ac h1, .ac h2, .ac h3, .ac .display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Links erben die Textfarbe und haben keine Unterstreichung (Design-Vorgabe). */
.ac a { color: inherit; text-decoration: none; }

/* Bilder passen sich der verfuegbaren Breite an. */
.ac img { max-width: 100%; height: auto; display: block; }

/* .wrap = zentrierter Inhaltsbereich mit maximaler Breite und Seitenrand. */
.ac .wrap { max-width: 1120px; margin: 0 auto; padding: 0 40px; }


/* ============================================================================
   3. KOPFBEREICH MIT NAVIGATION
   ----------------------------------------------------------------------------
   Der Kopfbereich wird aus /parts/site-header.php erzeugt. Die Menuepunkte
   kommen aus einem echten WordPress-Menue (Design > Menues), nicht fest
   verdrahtet – so kann das Menue spaeter ohne Programmierung geaendert werden.
   ========================================================================== */
.ac .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid rgba(22,51,46,0.12);
}
.ac .site-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}
.ac .site-logo span { color: var(--gold); }

.ac .site-nav ul {
  display: flex;
  gap: 36px;
  font-size: 15px;
  list-style: none;
  align-items: center;
}
.ac .site-nav a { opacity: 0.8; }
.ac .site-nav a:hover { opacity: 1; }
/* Der Menuepunkt der gerade geoeffneten Seite wird hervorgehoben. */
.ac .site-nav .current-menu-item > a,
.ac .site-nav .current_page_item > a {
  opacity: 1;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}


/* ============================================================================
   Schaltflaechen ("Buttons") – ueberall gleich
   ========================================================================== */
.ac .btn {
  display: inline-block;
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.ac .btn:hover { opacity: 0.92; }
.ac .btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 14px 29px;
  border-radius: 2px;
  font-size: 15px;
}
.ac .btn-outline:hover { background: rgba(22,51,46,0.05); }
/* Heller Umriss-Button auf dunklem Hintergrund (Werdegang-Abschnitt). */
.ac .btn-outline.on-dark { border-color: var(--text-on-dark); color: var(--text-on-dark); }
.ac .btn-outline.on-dark:hover { background: rgba(239,233,220,0.10); }

/* Kleiner gemeinsamer Baustein: Ueberschrift mit kurzem Goldstrich davor. */
.ac .eyebrow-line { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.ac .eyebrow-line .rule { width: 40px; height: 2px; background: var(--gold); flex: none; }
.ac .eyebrow-line span { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }

/* Kennzahlen (11+, 1.500+, 15) – auf Start- und Ueber-mich-Seite gleich. */
.ac .credentials { display: flex; gap: 40px; }
.ac .credential .num { font-family: 'Fraunces', Georgia, serif; font-size: 30px; color: var(--gold); }
.ac .credential .label { font-size: 13px; color: var(--ink-soft); max-width: 16ch; }


/* ============================================================================
   4. STARTSEITE
   ----------------------------------------------------------------------------
   1:1 aus design-referenz/aye-center-mockup.html uebernommen.
   ========================================================================== */

/* --- Hero: zweispaltig, links Text, rechts Foto mit Bildunterschrift --- */
.ac .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 96px 0 88px;
  align-items: center;
}
.ac .hero-chip {
  display: inline-block;
  background: var(--sand-deep);
  color: var(--ink);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 16px;
  margin-bottom: 22px;
}
.ac .hero p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}
.ac .hero .cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ac .hero .credentials {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(22,51,46,0.16);
}

/* Das Hero-Foto wird als Hintergrundbild gesetzt. Die genaue Bild-Adresse
   kommt aus der Seitenvorlage (Variable --ac-hero-img), damit diese
   Stil-Datei ohne feste Pfade auskommt. */
.ac .hero-portrait {
  position: relative;
  aspect-ratio: 4 / 3.3;
  border-radius: 2px;
  overflow: hidden;
  background-image: var(--ac-hero-img);
  background-size: cover;
  background-position: center 28%;
  background-color: var(--sand-deep);
}
.ac .hero-portrait .portrait-caption {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  text-align: center;
}
.ac .hero-portrait .portrait-caption h1 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(255,255,255,0.75), 0 2px 20px rgba(255,255,255,0.7), 0 0 30px rgba(255,255,255,0.5);
}

/* --- Abschnitt "Die Grundlagen" --- */
.ac .basics { padding: 92px 0; background: var(--paper); }
.ac .basics h2 { font-size: 32px; margin-bottom: 24px; }
.ac .basics > .wrap > p.intro {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 78ch;
  margin-bottom: 56px;
}
.ac .basics-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.ac .basics-grid h3 { font-size: 22px; margin-bottom: 18px; }
.ac .basics-grid p { font-size: 16px; color: var(--ink-soft); margin-bottom: 16px; }
.ac .consequence-box { background: #EFF3F6; padding: 28px 30px; }
.ac .consequence-box p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 14px; }
.ac .consequence-box p:last-child { margin-bottom: 0; }
.ac .consequence-box strong { color: var(--ink); }
.ac .basics-bridge {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(22,51,46,0.14);
}
.ac .basics-bridge p { font-size: 16.5px; color: var(--ink-soft); max-width: 82ch; margin-bottom: 14px; }

/* --- Abschnitt "Wobei ich helfen kann" --- */
.ac .helps { padding: 88px 0; background: var(--paper); border-top: 1px solid rgba(22,51,46,0.14); }
.ac .helps h2 { font-size: 32px; margin-bottom: 8px; }
.ac .helps h2 sup { font-size: 14px; color: var(--gold); font-weight: 600; }
.ac .helps-grid { display: flex; flex-direction: column; max-width: 62ch; margin-top: 32px; }
.ac .helps-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(22,51,46,0.14);
}
.ac .helps-item .mark { color: var(--gold); font-family: 'Fraunces', Georgia, serif; font-size: 20px; line-height: 1.4; flex: none; }
.ac .helps-item p { font-size: 16px; color: var(--ink); margin: 0; }

/* --- Abschnitt "Mein Werdegang" (dunkler Streifen) --- */
.ac .about-strip { background: var(--ink); color: var(--text-on-dark); padding: 80px 0; margin-top: 40px; }
.ac .about-strip .wrap { display: grid; grid-template-columns: 0.6fr 1fr; gap: 64px; }
.ac .about-strip h2 { color: var(--text-on-dark); font-size: 32px; margin-bottom: 8px; }
.ac .about-strip .kicker { color: var(--gold); font-size: 14px; margin-bottom: 18px; display: block; }
.ac .about-strip p { color: rgba(239,233,220,0.82); font-size: 16.5px; max-width: 62ch; margin-bottom: 18px; }

/* --- Abschnitt "Woran ich gerade arbeite" (Kursvorschau) --- */
.ac .courses { padding: 96px 0; }
.ac .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(22,51,46,0.14);
  padding-bottom: 28px;
  gap: 20px;
}
.ac .section-head h2 { font-size: 34px; }
.ac .section-head .badge {
  font-size: 13px;
  background: var(--sand-deep);
  padding: 8px 14px;
  border-radius: 2px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ac .course-list { display: flex; flex-direction: column; }
.ac .course-row {
  display: grid;
  grid-template-columns: 40px 1fr 140px;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(22,51,46,0.1);
}
.ac .course-row.no-border { border-bottom: none; }
.ac .course-row .idx { font-family: 'Fraunces', Georgia, serif; color: var(--gold); font-size: 15px; padding-top: 3px; }
.ac .course-row h3 { font-size: 19px; margin-bottom: 6px; }
.ac .course-row h3.muted { color: var(--ink-soft); font-size: 16px; }
.ac .course-row p { font-size: 14.5px; color: var(--ink-soft); max-width: 62ch; }
.ac .course-row .status { text-align: right; font-size: 13px; color: var(--ink-soft); padding-top: 4px; }
.ac .course-row .status.soon { color: var(--clay); font-style: italic; }

/* --- Abschluss-Aufruf ("Call to action") --- */
.ac .closing { background: var(--sand-deep); padding: 88px 0; text-align: center; }
.ac .closing h2 { font-size: 34px; max-width: 22ch; margin: 0 auto 20px; }
.ac .closing p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 34px; }


/* ============================================================================
   5. SEITE "UEBER MICH"
   ----------------------------------------------------------------------------
   1:1 aus design-referenz/aye-center-ueber-mich.html uebernommen.
   ========================================================================== */
.ac .page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  padding: 88px 0 72px;
  align-items: center;
}
.ac .page-hero h1 { font-size: 44px; line-height: 1.15; margin-bottom: 20px; }
.ac .page-hero p.lead { font-size: 17px; color: var(--ink-soft); max-width: 46ch; }

/* Portraitfoto rechts (Bild-Adresse kommt wieder aus der Seitenvorlage). */
.ac .page-portrait {
  aspect-ratio: 4 / 4.6;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background-image: var(--ac-portrait-img);
  background-size: cover;
  background-position: center 20%;
  background-color: var(--sand-deep);
}

/* --- Fliesstext-Bereich mit "klebender" Seitenspalte links --- */
.ac .story { padding: 20px 0 80px; }
.ac .story .wrap { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 64px; align-items: start; }
.ac .story-nav { position: sticky; top: 40px; }
.ac .story-nav .kicker { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 10px; display: block; }
.ac .story-nav h2 { font-size: 24px; margin-bottom: 16px; }
.ac .story-nav p { font-size: 15px; color: var(--ink-soft); }
.ac .story-body p { font-size: 17px; color: var(--ink-soft); margin-bottom: 22px; max-width: 68ch; }
.ac .story-body h3 { font-size: 20px; margin: 36px 0 14px; color: var(--ink); }
.ac .pull {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  max-width: 56ch;
}

/* --- Dunkler Abschnitt "Meine Wissensquellen" --- */
.ac .influences { background: var(--ink); color: var(--text-on-dark); padding: 64px 0; }
.ac .influences .kicker { color: var(--gold); font-size: 13px; letter-spacing: 0.03em; margin-bottom: 14px; display: block; }
.ac .influences h2 { color: var(--text-on-dark); font-size: 26px; margin-bottom: 20px; max-width: 40ch; }
.ac .influences-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 40px; margin-top: 8px; }
.ac .influences-list div {
  font-size: 15px;
  color: rgba(239,233,220,0.85);
  border-top: 1px solid rgba(239,233,220,0.25);
  padding-top: 12px;
}
.ac .influences-list strong {
  display: block;
  color: var(--text-on-dark);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  margin-bottom: 4px;
}

/* --- Kennzahlen-Streifen auf "Ueber mich" --- */
.ac .credentials-strip { padding: 56px 0; }
.ac .credentials-strip .wrap {
  display: flex;
  gap: 56px;
  border-top: 1px solid rgba(22,51,46,0.14);
  padding-top: 32px;
  flex-wrap: wrap;
}


/* ============================================================================
   6. TEXTSEITEN (Kontakt, Impressum, Datenschutz)
   ----------------------------------------------------------------------------
   Diese drei Seiten benutzen dieselbe schlichte Vorlage
   (/templates/template-textseite.php). Der eigentliche Text steht als
   normaler Seiteninhalt in WordPress und kann dort ohne Programmierung
   bearbeitet werden.
   ========================================================================== */
.ac .textpage { padding: 72px 0 88px; }
.ac .textpage .wrap { max-width: 760px; }
.ac .textpage .eyebrow-line { margin-bottom: 18px; }
.ac .textpage h1 { font-size: 40px; line-height: 1.15; margin-bottom: 28px; }
.ac .textpage h2 { font-size: 22px; margin: 40px 0 14px; }
.ac .textpage h3 { font-size: 18px; margin: 28px 0 10px; }
.ac .textpage p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 16px; }
.ac .textpage ul, .ac .textpage ol { color: var(--ink-soft); font-size: 16.5px; margin: 0 0 16px 22px; }
.ac .textpage li { margin-bottom: 8px; }
.ac .textpage a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.ac .textpage strong { color: var(--ink); }
/* Hinweis-Kasten fuer Platzhalter-Angaben, die spaeter ergaenzt werden. */
.ac .platzhalter-hinweis {
  background: #EFF3F6;
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 20px 0;
}

/* --- Kontaktformular --- */
.ac .kontakt-intro { font-size: 17px; color: var(--ink-soft); max-width: 60ch; margin-bottom: 8px; }
.ac .kontakt-direkt { font-size: 16px; color: var(--ink-soft); margin-bottom: 32px; }
.ac .kontakt-direkt a { color: var(--ink); text-decoration: underline; }

.ac .kontakt-form { max-width: 560px; margin-top: 8px; }
.ac .kontakt-form .feld { margin-bottom: 20px; }
.ac .kontakt-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.ac .kontakt-form input[type="text"],
.ac .kontakt-form input[type="email"],
.ac .kontakt-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(22,51,46,0.30);
  border-radius: 2px;
  padding: 12px 14px;
}
.ac .kontakt-form input:focus,
.ac .kontakt-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.ac .kontakt-form textarea { min-height: 160px; resize: vertical; }
.ac .kontakt-form .rechen-frage { font-weight: 600; color: var(--ink); }
.ac .kontakt-form .datenschutz-zeile { font-size: 13.5px; color: var(--ink-soft); }
.ac .kontakt-form .datenschutz-zeile a { color: var(--ink); text-decoration: underline; }
/* Honigtopf-Feld ("Honeypot"): fuer echte Besucher unsichtbar, nur Bots
   fuellen es aus. Wird per CSS komplett ausgeblendet. */
.ac .kontakt-form .hp-feld {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
/* Erfolg-/Fehlermeldung nach dem Absenden. */
.ac .form-meldung { padding: 16px 20px; border-radius: 2px; font-size: 15px; margin-bottom: 28px; }
.ac .form-meldung.ok { background: #E7F0EA; border-left: 3px solid #3f7d5c; color: #1f4733; }
.ac .form-meldung.fehler { background: #F7ECEA; border-left: 3px solid var(--clay); color: #7c3a2e; }


/* ============================================================================
   7. FUSSBEREICH
   ----------------------------------------------------------------------------
   Wird aus /parts/site-footer.php erzeugt. Die Links (Impressum, Datenschutz,
   Kontakt) sind fest, weil sie rechtlich immer erreichbar sein muessen.
   ========================================================================== */
.ac .site-footer { padding: 56px 0 40px; border-top: 1px solid rgba(22,51,46,0.12); margin-top: 0; }
.ac .site-footer .wrap.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.ac .site-footer .brand { font-family: 'Fraunces', Georgia, serif; font-size: 16px; }
.ac .site-footer .legal { display: flex; gap: 24px; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }
.ac .site-footer .legal a:hover { color: var(--ink); }
.ac .site-footer .footnote {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 70ch;
}


/* ============================================================================
   8. MOBIL-ANSICHT (schmale Bildschirme / Handy)
   ----------------------------------------------------------------------------
   Ab hier werden die zweispaltigen Bereiche untereinander gestapelt und
   Schriftgroessen etwas reduziert, damit alles gut lesbar bleibt.
   Das Desktop-Design darueber bleibt 1:1 wie in den Entwuerfen.
   ========================================================================== */

/* Tablet und kleiner */
@media (max-width: 980px) {
  .ac .wrap { padding: 0 28px; }

  .ac .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .ac .basics-grid { grid-template-columns: 1fr; gap: 28px; }
  .ac .about-strip .wrap { grid-template-columns: 1fr; gap: 28px; }
  .ac .about-strip { padding: 56px 0; }
  .ac .basics { padding: 56px 0; }
  .ac .helps { padding: 56px 0; }
  .ac .courses { padding: 56px 0; }
  .ac .closing { padding: 56px 0; }

  .ac .page-hero { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .ac .page-hero h1 { font-size: 32px; }
  .ac .story .wrap { grid-template-columns: 1fr; gap: 32px; }
  .ac .story-nav { position: static; }
  .ac .influences-list { grid-template-columns: 1fr; }

  .ac .section-head { flex-direction: column; align-items: flex-start; }
}

/* Handy */
@media (max-width: 620px) {
  .ac .wrap { padding: 0 20px; }

  .ac .site-header { flex-direction: column; gap: 14px; padding: 20px 0; }
  .ac .site-nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }

  .ac .hero p.lead { font-size: 16px; }
  .ac .hero .cta-row { gap: 14px; }
  .ac .hero .cta-row .btn, .ac .hero .cta-row .btn-outline { width: 100%; text-align: center; }
  .ac .credentials { flex-direction: column; gap: 22px; }
  .ac .hero-portrait .portrait-caption h1 { font-size: 24px; }

  .ac .basics h2, .ac .helps h2 { font-size: 26px; }
  .ac .section-head h2 { font-size: 26px; }
  .ac .course-row { grid-template-columns: 28px 1fr; }
  .ac .course-row .status { grid-column: 2; text-align: left; padding-top: 0; }

  .ac .page-hero h1 { font-size: 28px; }
  .ac .pull { font-size: 20px; padding-left: 18px; }
  .ac .closing h2 { font-size: 26px; }

  .ac .textpage { padding: 48px 0 64px; }
  .ac .textpage h1 { font-size: 30px; }

  .ac .site-footer .wrap.foot-top { flex-direction: column; align-items: flex-start; }
}
