/* ==========================================================
   Society of Scholar Writers — styles.css
   Palette: Navy, Charcoal, Ivory, Muted Gold, Soft Slate
   Typography: Cormorant Garamond (display) + Source Serif 4
   ========================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&display=swap');

/* ── Custom Properties ── */
:root {
  --navy:        #0f2240;
  --navy-deep:   #091829;
  --navy-mid:    #1a3560;
  --charcoal:    #2c2c2c;
  --charcoal-lt: #4a4a4a;
  --ivory:       #faf8f4;
  --ivory-dark:  #f0ece4;
  --white:       #ffffff;
  --gold:        #a07830;
  --gold-light:  rgba(160,120,48,0.12);
  --gold-accent: #c49a3c;
  --slate:       #6b7280;
  --slate-lt:    #9ca3af;
  --border:      rgba(15,34,64,0.12);
  --border-gold: rgba(160,120,48,0.3);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;

  --header-h:    72px;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-xxl:   6rem;

  --radius:      3px;
  --radius-md:   6px;

  --shadow-sm:   0 2px 8px rgba(15,34,64,0.08);
  --shadow-md:   0 6px 24px rgba(15,34,64,0.12);
  --shadow-lg:   0 16px 48px rgba(15,34,64,0.16);

  --transition:  0.22s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }
a:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xxl) 0; }
.section-alt { background: var(--white); }

.section-header {
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-title { margin-bottom: var(--space-sm); }
.section-intro { color: var(--charcoal-lt); font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 3px;
}

.btn-full { width: 100%; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

/* Nav */
.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-lt);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--ivory-dark); }
.nav-link:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 2px;
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  font-weight: 600;
  margin-left: 0.4rem;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  align-items: center;
  transition: border-color var(--transition);
}
.menu-toggle:hover { border-color: var(--navy); }
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 2px;
}

.burger-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,53,96,0.5) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 80px
    );
}

.hero-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-accent), transparent);
}

.hero-ornament {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(160,120,48,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(160,120,48,0.1);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: var(--space-md);
}

.hero-heading {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero-actions .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.hero-actions .btn-primary:hover {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
}

.hero-actions .btn-secondary {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-sidebar {
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.sidebar-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.sidebar-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.about-content .section-title { margin-bottom: var(--space-md); }

.about-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.65;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.service-card:hover::before { opacity: 1; }

.card-icon {
  color: var(--navy);
  width: 36px;
  height: 36px;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.card-desc {
  font-size: 0.925rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: steps;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-gold), var(--gold), var(--border-gold));
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content { width: 100%; }

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

.contact-info .section-title { margin-bottom: var(--space-md); }

.contact-intro {
  color: var(--charcoal-lt);
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--ivory-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.contact-detail strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.contact-email {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-all;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Form */
.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-row { display: flex; gap: var(--space-md); }
.form-row.two-col > .form-group { flex: 1; min-width: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.required { color: var(--gold); margin-left: 2px; }
.optional { font-weight: 400; color: var(--slate); font-size: 0.82rem; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,34,64,0.1);
}

/* Error state */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185,28,28,0.08);
}

.field-error {
  font-size: 0.825rem;
  color: #b91c1c;
  font-weight: 500;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.field-error:not(:empty)::before {
  content: '⚠';
  flex-shrink: 0;
  font-size: 0.75rem;
}

.field-hint {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
}

/* File input */
input[type="file"] {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal-lt);
  cursor: pointer;
  padding: 0.5rem 0;
}
input[type="file"]:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* Checkbox */
.form-group--checkbox { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 0.4rem; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.15rem;
  cursor: pointer;
  accent-color: var(--navy);
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--charcoal-lt);
  line-height: 1.5;
}

/* Success state */
.form-success {
  background: #f0faf4;
  border: 1px solid #4caf50;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: #166534;
}
.form-success strong { display: block; margin-bottom: 0.4rem; font-size: 1rem; }
.form-success p { font-size: 0.9rem; margin: 0; }

/* Demo note */
.form-demo-note {
  font-size: 0.78rem;
  color: var(--slate-lt);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
  margin: 0;
  line-height: 1.5;
}
.form-demo-note code {
  font-family: 'Courier New', monospace;
  background: var(--ivory-dark);
  padding: 0.1em 0.35em;
  border-radius: 2px;
  font-size: 0.85em;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-copy { font-size: 0.8rem; margin: 0; }
.footer-credit { font-size: 0.8rem; margin: 0; }

.footer-credit a {
  color: var(--gold-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--white); }
.footer-credit a:focus-visible {
  outline: 2px solid var(--gold-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Tablet (max 960px)
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .steps-list::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .contact-info { max-width: 600px; }

  .about-grid { grid-template-columns: 60px 1fr; gap: var(--space-lg); }

  .trust-indicators { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Mobile (max 680px)
══════════════════════════════════════════════ */
@media (max-width: 680px) {
  :root { --space-xxl: 4rem; --space-xl: 2.5rem; }

  /* Header */
  .logo-text { display: none; }
  .menu-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
    display: none;
    z-index: 850;
  }
  .primary-nav.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--space-sm);
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }
  .nav-cta { margin-left: 0; margin-top: 0.4rem; text-align: center; }

  /* Sections */
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { display: none; }
  .trust-indicators { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; gap: var(--space-lg); }
  .step { flex-direction: row; text-align: left; align-items: flex-start; }
  .step-number { flex-shrink: 0; }

  .form-row.two-col { flex-direction: column; gap: var(--space-md); }
  .contact-form-wrap { padding: var(--space-md); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

/* ══════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════ */
@media print {
  .site-header, .menu-toggle, .hero-actions { display: none; }
  body { font-size: 12pt; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; }
}
