/* ============================================================
   REUNION SITE — CORE STYLESHEET

   Design tokens
   -------------
   Color:
     --navy        #0B1E3D   primary dark / hero, header
     --navy-deep   #071527   deepest shade, footer
     --cream       #F8F4EB   primary light background
     --cream-dim   #EFE8D8   secondary light surface
     --crimson     #9E1B32   primary accent / CTAs
     --crimson-deep#6E1220   hover / pressed state
     --gold        #BFA054   quiet accent (tier badges, rules)
     --ink         #1C1C1C   body text on light
     --slate       #5B6472   secondary text on light

   Type:
     Display  — "Fraunces" (editorial serif, used with restraint)
     Body/UI  — "Inter"     (clean, highly legible sans)

   Signature element:
     A large outline roman numeral "X" — ten years — appears as
     a watermark in the hero and recurs as a small quiet mark at
     section dividers throughout the site.
   ============================================================ */

:root {
  --navy: #0b1e3d;
  --navy-deep: #071527;
  --cream: #f8f4eb;
  --cream-dim: #efe8d8;
  --crimson: #9e1b32;
  --crimson-deep: #6e1220;
  --gold: #bfa054;
  --ink: #1c1c1c;
  --slate: #5b6472;
  --line: rgba(11, 30, 61, 0.12);
  --line-on-navy: rgba(248, 244, 235, 0.18);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(11, 30, 61, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 30, 61, 0.14);

  --nav-height: 76px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.1; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Visible focus states everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--crimson);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
}
.eyebrow.on-navy { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--crimson);
  color: var(--cream);
}
.btn-primary:hover { background: var(--crimson-deep); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-on-navy);
}
.btn-outline-light:hover { background: rgba(248, 244, 235, 0.1); border-color: var(--cream); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover { background: var(--navy-deep); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(11, 30, 61, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line-on-navy);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: var(--cream);
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--crimson);
  transition: right 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta { display: none; }
@media (min-width: 901px) {
  .nav-cta { display: inline-flex; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px 40px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .nav-links a { display: block; font-size: 1.15rem; }
  .nav-cta { display: inline-flex !important; margin-top: 6px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 96px 0 110px;
}

.hero-numeral {
  position: absolute;
  top: -8%;
  right: -4%;
  font-family: var(--font-display);
  font-size: min(46vw, 640px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(248, 244, 235, 0.14);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-school {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500;
  color: var(--cream);
  margin-top: 14px;
}

.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 1.02rem;
  color: rgba(248, 244, 235, 0.88);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-tagline {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(248, 244, 235, 0.85);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Section scaffolding ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-cream-dim { background: var(--cream-dim); }
.section-navy { background: var(--navy); color: var(--cream); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 12px;
  font-weight: 600;
}
.section-head p {
  margin-top: 16px;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.6;
}
.section-navy .section-head p { color: rgba(248, 244, 235, 0.78); }

.section-head-center {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

/* small quiet signature mark used between/within sections */
.numeral-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  opacity: 0.9;
}

/* ---------- Welcome ---------- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.welcome-copy p {
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 16px;
}
.welcome-figure {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 235, 0.6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  overflow: hidden;
  position: relative;
}
.welcome-figure::before {
  content: "X";
  position: absolute;
  font-family: var(--font-display);
  font-size: 22rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 244, 235, 0.12);
  right: -10%;
}
.welcome-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .welcome-figure { order: -1; }
}

/* ---------- Weekend timeline (Home) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.timeline-day {
  position: relative;
  z-index: 1;
}
.timeline-marker {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--cream-dim);
  margin-bottom: 18px;
}
.timeline-day-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}
.timeline-day-date {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 2px;
}
.timeline-events {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-event-link {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.timeline-event-link:hover {
  border-color: var(--crimson);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 36px; }
  .timeline::before { display: none; }
}

/* ---------- Cards: generic ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Class Gift ---------- */
.gift-panel {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.gift-panel-copy p {
  margin-top: 14px;
  color: rgba(248, 244, 235, 0.82);
  line-height: 1.7;
}
.gift-stats {
  background: rgba(248, 244, 235, 0.06);
  border: 1px solid var(--line-on-navy);
  border-radius: var(--radius-md);
  padding: 28px;
}
.gift-amounts {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.gift-raised { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.gift-goal { font-size: 0.9rem; color: rgba(248, 244, 235, 0.7); }
.progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(248, 244, 235, 0.14);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 999px;
}
.gift-stats .btn { margin-top: 22px; }

@media (max-width: 860px) {
  .gift-panel { grid-template-columns: 1fr; padding: 32px 24px; }
}

.tiers-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tier-card {
  padding: 26px 22px;
  text-align: left;
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--crimson);
  margin-top: 6px;
}
.tier-name {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}
.tier-benefit {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .tiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ---------- Apparel ---------- */
.apparel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.apparel-card { overflow: hidden; }
.apparel-image {
  aspect-ratio: 1 / 1;
  background: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apparel-image img { width: 100%; height: 100%; object-fit: cover; }
.apparel-body { padding: 22px; }
.apparel-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.apparel-desc { margin-top: 8px; color: var(--slate); font-size: 0.92rem; line-height: 1.55; }
.apparel-price { margin-top: 14px; font-weight: 600; color: var(--crimson); font-size: 1.05rem; }
.apparel-body .btn { margin-top: 18px; }

@media (max-width: 900px) {
  .apparel-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .apparel-grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA band ---------- */
.final-cta {
  background: linear-gradient(120deg, var(--crimson-deep), var(--crimson) 55%, var(--navy));
  color: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
}
.final-cta p {
  margin-top: 16px;
  color: rgba(248, 244, 235, 0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(248, 244, 235, 0.82);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); }
.footer-sub { margin-top: 10px; font-size: 0.9rem; line-height: 1.7; color: rgba(248, 244, 235, 0.65); }
.footer-heading {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-on-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-navy);
  font-size: 0.82rem;
  color: rgba(248, 244, 235, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-top: 10px;
}
.page-hero p {
  margin-top: 14px;
  max-width: 620px;
  color: rgba(248, 244, 235, 0.8);
  font-size: 1.02rem;
  line-height: 1.6;
}
.page-hero .hero-numeral { font-size: min(30vw, 380px); top: -20%; }

/* ---------- Events page ---------- */
.day-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 56px 0 24px;
}
.day-heading:first-child { margin-top: 0; }
.day-heading h2 {
  font-size: 1.9rem;
  color: var(--navy);
}
.day-heading .day-date { color: var(--slate); font-size: 0.95rem; }

.event-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}
.event-card-main h3 {
  font-size: 1.35rem;
  color: var(--navy);
}
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--crimson);
  font-weight: 600;
}
.event-desc {
  margin-top: 12px;
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.96rem;
}
@media (max-width: 640px) {
  .event-card { grid-template-columns: 1fr; }
  .event-card .btn { width: 100%; justify-content: center; }
}

/* ---------- Class Gift page ---------- */
.gift-hero-panel {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

/* ---------- About / Our Class ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-card { padding: 26px; text-align: center; }
.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--crimson);
}
.stat-card .stat-label {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}
@media (max-width: 700px) {
  .stat-row { grid-template-columns: 1fr; }
}

.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--crimson);
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--crimson);
  display: flex; align-items: center; justify-content: center;
  color: var(--crimson);
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 4px 24px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-card { padding: 32px; }
.contact-row { margin-bottom: 22px; }
.contact-row .label {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.contact-row a, .contact-row span.value {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--crimson);
  outline: none;
}
.form-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--slate);
  background: var(--cream-dim);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Utility spacing ---------- */
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
