/* ══════════════════════════════════════════════════
   AML TRANSFORMATION & ADVISORY — STYLE.CSS
   Dan Margetts | danmargetts.com / aml.danmargetts.com
   Palette: near-black · white · light grey · crimson
   Fonts: DM Sans (primary) · Cormorant Garamond (quotes)
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #0d0d0d;
  --charcoal: #1a1a1a;
  --steel:    #333333;
  --muted:    #6a6a6a;
  --rule:     #dedede;
  --light:    #f4f4f4;
  --white:    #ffffff;
  --red:      #c82536;
  --red-lt:   #e0303f;
  --red-dk:   #a0192a;
  --red-text: #e04858;  /* brighter red for small text on dark backgrounds */
  --sans:     'DM Sans', system-ui, sans-serif;
  --serif:    'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-color: rgba(255,255,255,0.07); }

.nav-logo-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}
.nav-sub {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-text);
}

/* ── INLINE CONTENT LINKS ──────────────────────────── */
.content-link {
  color: var(--steel);
  text-decoration: underline;
  text-decoration-color: rgba(200,37,54,0.35);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.content-link:hover { color: var(--red); text-decoration-color: var(--red); }

.dark-link {
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-decoration-color: rgba(200,37,54,0.4);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.dark-link:hover { color: var(--white); text-decoration-color: var(--red-text); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active {
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
}
.nav-cta {
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  color: var(--white) !important;
  background: var(--red);
  padding: 0.5rem 1.3rem !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-lt) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
nav.menu-open .nav-hamburger .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-hamburger .bar:nth-child(2) { opacity: 0; }
nav.menu-open .nav-hamburger .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SECTION BASE ──────────────────────────────────── */
section { padding: 7rem 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.section-label-light { color: rgba(200,37,54,0.7); }

.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.14;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title strong { font-weight: 600; }
.section-title-light { color: var(--white); }

.divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-bottom: 2.5rem;
}
.divider-dim { background: rgba(200,37,54,0.45); }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--red-lt); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--red); }

.btn-outline-dark {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline-dark:hover { color: var(--red); border-color: var(--red); }

/* ── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
}

.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 8% 8% 10%;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 70%, rgba(200,37,54,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 3.8vw, 3.7rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-headline strong { font-weight: 600; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.68);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

#hero .btn-primary {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
  align-self: flex-start;
}

.hero-right {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10% 8% 8% 8%;
  border-left: 1px solid rgba(255,255,255,0.04);
}

.hero-photo-aml {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 18%;
  display: block;
  border: 3px solid var(--red);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-stats-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-stat-value {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-stat-value sup { font-size: 0.55em; color: var(--red); vertical-align: super; }
.hero-stat-label {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.58);
  line-height: 1.45;
}

.hero-article {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-article-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.6rem;
}
.hero-article-link {
  font-size: 0.87rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  display: inline;
  transition: color 0.2s, border-color 0.2s;
}
.hero-article-link:hover { color: var(--white); border-color: var(--red); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 28%;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  animation: breathe 2.5s ease-in-out infinite;
}

/* ── WHAT I DO ─────────────────────────────────────── */
#what { background: var(--white); }

.what-intro {
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.what-intro p {
  font-weight: 300;
  color: var(--steel);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}
.what-intro p:last-child { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--light);
  padding: 2.5rem 2rem 2.5rem;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rule);
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--red); }

.service-num {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
}
.service-card p a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,37,54,0.3);
  transition: border-color 0.2s;
}
.service-card p a:hover { border-color: var(--red); }

.exp-achievements a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(51,51,51,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.exp-achievements a:hover { color: var(--red); border-color: var(--red); }

/* ── CREDENTIALS BAND ──────────────────────────────── */
.cred-band {
  background: var(--ink);
  padding: 2.2rem 5%;
}
.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cred-heading {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.cred-list {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  list-style: none;
}
.cred-list li {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  padding: 0 1.4rem 0 0;
  margin: 0.25rem 0;
  position: relative;
}
.cred-list li + li::before {
  content: '·';
  position: absolute;
  left: -0.8rem;
  color: rgba(255,255,255,0.15);
}

/* ── EXPERIENCE ────────────────────────────────────── */
#experience { background: var(--light); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.exp-card {
  background: var(--white);
  padding: 2.5rem 2rem;
}

.exp-years {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}
.exp-institution {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.exp-role {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  min-height: 4.2rem;
}
.exp-achievements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.exp-achievements li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}
.exp-achievements li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.exp-earlier {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}
.exp-earlier-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.exp-earlier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.exp-earlier-item {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.exp-earlier-item strong {
  display: block;
  font-weight: 500;
  color: var(--steel);
  font-size: 0.87rem;
  margin-bottom: 0.35rem;
}

/* ── COACHING CONNECTION ───────────────────────────── */
#approach { background: var(--charcoal); }

.approach-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 6rem;
  align-items: start;
}
.approach-title {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 2.9vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
}
.approach-title strong { font-weight: 600; }
.approach-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}
.approach-body p:last-child { margin-bottom: 0; }

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}
.approach-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 18%;
  display: block;
  border: 3px solid var(--red);
}
.approach-quote {
  border-left: 2px solid var(--red);
  padding-left: 1.8rem;
}
.approach-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.75vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.approach-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-style: normal;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.06em;
  margin-top: 1rem;
}
.approach-cta-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.section-label-light { color: var(--red-text); }

/* ── THINKING ──────────────────────────────────────── */
#thinking { background: var(--white); }

.thinking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}
.thinking-card {
  background: var(--light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.thinking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.thinking-date {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.thinking-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.thinking-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 1.5rem;
}
.thinking-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

/* ── CONTACT ───────────────────────────────────────── */
#contact { background: var(--ink); }

.contact-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 6rem;
  align-items: start;
}
.contact-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-title strong { font-weight: 600; }
.contact-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.82;
  margin-bottom: 2.5rem;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.contact-right { padding-top: 0.5rem; }
.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; }
.contact-item-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.45rem;
}
.contact-item-value {
  font-size: 0.93rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}
a.contact-item-value:hover { color: var(--white); }
.contact-note {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 1.8rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-name {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.38);
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.55; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-earlier-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 9rem 7% 5rem; min-height: 72vh; justify-content: flex-end; }
  .hero-right { padding: 4rem 7% 5rem; border-left: none; border-top: 1px solid rgba(255,255,255,0.04); }
  .hero-photo-aml { display: none; }
  .hero-stats { gap: 2rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-earlier-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .thinking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .cred-inner { flex-direction: column; gap: 1rem; }
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(14px);
    padding: 0.25rem 5% 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 0;
    z-index: 99;
  }
  nav.menu-open .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  nav.menu-open .nav-links li:last-child { border-bottom: none; padding-top: 0.5rem; }
  nav.menu-open .nav-links a { display: block; padding: 0.85rem 0; }
}

@media (max-width: 560px) {
  section { padding: 4.5rem 5%; }
  .hero-left { padding: 8rem 6% 4rem; }
  .hero-right { padding: 3rem 6% 4rem; }
  .exp-earlier-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
