/* =========================================================
   BLACK TAMPA PHOTOGRAPHERS — Shared Design System
   Edit colors, fonts, sizes in :root only.
   ========================================================= */

:root {
  /* ⬇⬇⬇ COLORS (pulled from logo) ⬇⬇⬇ */
  --navy: #0f1e2d;
  --navy-2: #142436;
  --navy-3: #1a2d42;
  --gold: #c3a55a;
  --gold-2: #d2b469;
  --gold-soft: #e8d8a8;
  --cream: #f6f5f1;
  --cream-2: #ede9df;
  --rule: #d6cfb8;
  --muted: #6b6557;
  --ink-soft: #2a3645;

  /* ⬇⬇⬇ FONTS ⬇⬇⬇ */
  --display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --body: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --rad: 4px;
  --rad-lg: 8px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Typography ------------------------------------------------ */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  line-height: 1.05;
  color: var(--navy);
}
h1 {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.025em;
}
h2 { font-size: clamp(32px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: 20px; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-soft); }
.ital { font-style: italic; color: var(--gold); font-weight: 400; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(72px, 9vw, 128px) 0; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-size: 19px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-tag {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a:not(.btn) {
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  padding: 8px 0; color: var(--navy);
  transition: color .2s var(--ease);
}
.nav-links a.btn { padding: 12px 28px; }
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a:not(.btn).active { color: var(--gold); }

.has-drop { position: relative; }
.has-drop > button {
  background: none; border: 0; padding: 8px 0;
  font: inherit; font-size: 14px; font-weight: 500; letter-spacing: .02em;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 6px;
}
.has-drop > button::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s var(--ease);
}
.has-drop[aria-expanded="true"] > button::after { transform: rotate(-135deg) translateY(0); }

.drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 280px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--rad-lg);
  padding: 12px;
  box-shadow: 0 24px 48px -16px rgba(15,30,45,.18);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s var(--ease);
}
.has-drop::before {
  content: ''; position: absolute;
  top: 100%; right: 0; height: 12px; width: 100%;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop[aria-expanded="true"] .drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 12px; border-radius: var(--rad);
  font-size: 14px;
}
.drop a:hover { background: var(--cream-2); color: var(--gold); }
.drop a small {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: .1em;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--navy); color: var(--cream);
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--navy);
  border-radius: 999px;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }
.btn--outline { background: transparent; color: var(--navy); }
.nav-links .btn { padding: 14px 32px; font-size: 11px; }
.btn--outline:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn--lg { padding: 16px 28px; font-size: 13px; }

.burger {
  display: none;
  background: none; border: 0; padding: 8px;
  flex-direction: column; gap: 5px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--navy); transition: all .25s var(--ease);
}

/* ========== HERO ========== */
.hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(48px, 7vw, 88px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  position: relative;
}
.hero-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hero-stat .num {
  font-family: var(--display); font-size: 40px; line-height: 1;
  display: block; margin-bottom: 4px; color: var(--navy);
}
.hero-stat .lbl {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}

/* Breadcrumbs for sub-pages */
.crumbs {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.crumbs a { color: var(--muted); transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 8px; }

.chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 32px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  transition: all .2s var(--ease);
}
.chip:hover { background: var(--navy); color: var(--cream); }
.chip::before { content: '→'; font-family: var(--mono); font-size: 11px; }

/* ========== RECOMMENDATION BANNER ========== */
.recommend {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.recommend::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(195,165,90,.18) 0%, transparent 60%);
  pointer-events: none;
}
.recommend-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.recommend-mark {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: var(--display); font-size: 14px; font-weight: 600;
  text-align: center; line-height: 1; letter-spacing: .02em;
  flex-shrink: 0;
}
.recommend-mark strong {
  font-size: 28px; font-style: italic; font-weight: 500; display: block;
}
.recommend-mark span {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .15em; text-transform: uppercase;
  margin-top: 4px;
}
.recommend-text {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--cream); margin: 0;
}
.recommend-text a {
  color: var(--gold); font-style: italic;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: all .2s var(--ease);
}
.recommend-text a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }
.recommend-eyebrow {
  display: block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}

/* ========== #1 SPOTLIGHT ========== */
.spotlight-section { padding-top: clamp(72px, 9vw, 128px); }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--navy); color: var(--cream);
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid var(--navy);
}
.spotlight-img {
  position: relative;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-3);
}
.spotlight-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,30,45,.6));
}
.rank-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--gold); color: var(--navy);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600;
}
.rank-badge::before { content: '★'; font-size: 13px; line-height: 1; }
.spotlight-body {
  padding: clamp(32px, 4.5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.spotlight-body .eyebrow { color: var(--gold); }
.spotlight-body h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 16px; margin-bottom: 8px;
  color: var(--cream);
}
.spotlight-body h2 .ital { color: var(--gold); }
.spotlight-tag {
  font-family: var(--mono); font-size: 12px;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: 24px;
}
.spotlight-body p { color: rgba(246,245,241,.85); font-size: 16px; }
.spotlight-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0 28px;
}
.spec {
  font-size: 12px; padding: 6px 12px;
  border: 1px solid rgba(246,245,241,.25);
  border-radius: 999px;
}
.spotlight-cta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
}
.spotlight-cta .btn { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.spotlight-cta .btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }
.spotlight-cta .btn--outline {
  background: transparent; color: var(--cream); border-color: rgba(246,245,241,.35);
}
.spotlight-cta .btn--outline:hover {
  background: var(--cream); color: var(--navy); border-color: var(--cream);
}

/* ========== RANKED LIST ========== */
.ranked { display: grid; gap: 24px; }
.ranked-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  background: var(--cream-2);
  border: 1px solid var(--rule);
  border-radius: var(--rad-lg);
  transition: all .25s var(--ease);
}
.ranked-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -20px rgba(15,30,45,.15);
  border-color: var(--gold);
}
.rank-num {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 96px);
  font-style: italic;
  color: var(--gold);
  line-height: 0.85;
  font-weight: 300;
}
.ranked-name {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 6px;
  line-height: 1.05;
}
.ranked-specs {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ranked-card p {
  font-size: 16px; max-width: 60ch; color: var(--ink-soft);
}
.ranked-meta {
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-end;
}
.ranked-meta a {
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: color .2s var(--ease);
}
.ranked-meta a:hover { color: var(--gold); }

/* ========== NICHE GRID ========== */
.niche-section { background: var(--cream-2); }
.niche-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 56px;
}
.niche-head h2 { max-width: 700px; }

.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.niche-card {
  display: block;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--rad-lg);
  transition: all .25s var(--ease);
  position: relative;
}
.niche-card:hover {
  background: var(--navy); color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-3px);
}
.niche-card:hover .niche-arrow,
.niche-card:hover .niche-leader,
.niche-card:hover h3 { color: var(--gold); }
.niche-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; color: var(--muted);
  margin-bottom: 16px;
}
.niche-card:hover .niche-num { color: rgba(246,245,241,.6); }
.niche-card h3 {
  font-size: 28px; margin-bottom: 12px;
  transition: color .2s var(--ease);
}
.niche-leader {
  display: block;
  font-family: var(--mono); font-size: 12px;
  color: var(--gold); letter-spacing: .05em;
  margin-bottom: 8px;
  font-weight: 600;
  transition: color .2s var(--ease);
}
.niche-card p {
  font-size: 14px; line-height: 1.5;
  margin: 0; color: var(--ink-soft);
}
.niche-card:hover p { color: rgba(246,245,241,.85); }
.niche-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 18px;
  transition: all .25s var(--ease);
  color: var(--navy);
}

.niche-card--featured {
  background: var(--navy); color: var(--cream); border-color: var(--navy);
}
.niche-card--featured h3 { color: var(--cream); }
.niche-card--featured p { color: rgba(246,245,241,.85); }
.niche-card--featured .niche-num { color: rgba(246,245,241,.6); }
.niche-card--featured .niche-arrow { color: var(--gold); }
.niche-card--featured:hover { background: var(--navy-3); }

/* ========== METHODOLOGY ========== */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.method-grid h2 { position: sticky; top: 100px; }
.method-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 32px;
}
.method-list li {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.method-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.method-list h4 {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.method-list h3 { font-size: 26px; margin-bottom: 12px; }
.method-list p { font-size: 16px; margin: 0; color: var(--ink-soft); }

/* ========== FAQ ========== */
.faq-section { background: var(--cream-2); }
.faq { max-width: 880px; margin: 0 auto; display: grid; gap: 0; }
.faq details {
  border-top: 1px solid var(--rule); padding: 28px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--display); font-size: 32px;
  color: var(--gold); line-height: 0.5;
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 20px 0 0; color: var(--ink-soft); max-width: 70ch;
}

/* ========== GET LISTED CTA ========== */
.cta-section {
  background: var(--navy); color: var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.cta-section h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 72px);
}
.cta-section h2 .ital { color: var(--gold); }
.cta-section p { color: rgba(246,245,241,.8); }
.cta-section .btn { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.cta-section .btn:hover { background: var(--gold-2); border-color: var(--gold-2); color: var(--navy); }
.cta-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.cta-list li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 15px; color: rgba(246,245,241,.9);
}
.cta-list li::before { content: '◆'; color: var(--gold); font-size: 10px; }

/* ========== FOOTER ========== */
footer {
  background: var(--navy-2);
  color: rgba(246,245,241,.7);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer h5 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream); margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer a { font-size: 14px; transition: color .2s var(--ease); }
footer a:hover { color: var(--gold); }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.foot-brand img { width: 44px; height: 44px; }
.foot-brand span {
  font-family: var(--display); font-size: 22px; color: var(--cream);
}
.foot-legal {
  padding-top: 32px;
  border-top: 1px solid rgba(246,245,241,.15);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: .05em;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.form {
  background: var(--cream-2);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--rad-lg);
  border: 1px solid var(--rule);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--rad);
  font: inherit; font-size: 15px;
  color: var(--navy);
  transition: border-color .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-msg { margin-top: 16px; font-size: 14px; color: var(--gold); }

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .nav-inner { gap: 16px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 16px; }
  .nav-links {
    position: fixed; inset: 73px 0 0;
    flex-direction: column;
    background: var(--cream);
    padding: 32px var(--gutter);
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    align-items: stretch;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .has-drop { width: 100%; }
  .has-drop > button { border-bottom: 0; }
  .nav-links > li { border-bottom: 1px solid var(--rule); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a,
  .has-drop > button {
    padding: 18px 0; border-bottom: 0;
    font-size: 18px; width: 100%; text-align: left;
  }
  .drop {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent;
    padding: 0 0 12px 16px; display: none;
  }
  .has-drop[aria-expanded="true"] .drop { display: block; }
  .nav-links .btn { margin-top: 24px; text-align: center; justify-content: center; }
  .burger { display: inline-flex; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .recommend-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-img { min-height: 320px; }
  .ranked-card { grid-template-columns: 60px 1fr; }
  .rank-num { font-size: 56px; }
  .ranked-meta { grid-column: 1 / -1; align-items: flex-start; }
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
  .method-grid h2 { position: static; }
  .cta-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
