:root {
  /* ── Premium palette ── */
  --bg:      #f8f7f5;
  --bg-alt:  #f3f1ee;
  --surface: #ffffff;
  --text:    #18151f;
  --muted:   #6a6072;
  --subtle:  #9890a0;

  --border:       #e6e0ec;
  --border-strong:#d4cedd;

  --shadow-xs: 0 2px 8px rgba(24, 21, 31, 0.05);
  --shadow-sm: 0 8px 28px rgba(24, 21, 31, 0.07);
  --shadow:    0 20px 50px rgba(24, 21, 31, 0.09);
  --shadow-lg: 0 36px 72px rgba(24, 21, 31, 0.12);

  --bg-rgb:   248, 247, 245;
  --muted-rgb: 106, 96, 114;

  /* Brand */
  --brand:   #bc1834;   /* Rich crimson          */
  --brand-2: #b08730;   /* Deep antique gold      */
  --leaf:    #1b6a52;   /* Deep emerald           */
  --warm:    #c8784e;   /* Terracotta             */

  --brand-rgb:   188, 24, 52;
  --brand-2-rgb: 176, 135, 48;
  --leaf-rgb:    27, 106, 82;
  --warm-rgb:    200, 120, 78;

  --brand-soft: rgba(var(--brand-rgb), 0.07);
  --leaf-soft:  rgba(var(--leaf-rgb), 0.10);
  --ring:       rgba(var(--brand-rgb), 0.20);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Alegreya Sans", "Noto Sans", system-ui, sans-serif;

  --radius:    20px;
  --radius-sm: 12px;
  --maxw:      1160px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.muted a { color: inherit; }

/* ── Hover effects (pointer devices only) ── */
@media (hover: hover) and (pointer: fine) {
  a[href]:not(.btn):not(.nav-link):not(.brand):not(.skip-link):hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
  }
  .link:hover,
  .footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

/* ── Focus ── */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid rgba(var(--brand-rgb), 0.55);
  outline-offset: 3px;
}

/* Photo buttons handle their own focus style */
.photo:focus-visible {
  outline: 2px solid rgba(var(--brand-rgb), 0.50);
  outline-offset: 3px;
}

/* ── Global transitions ── */
.btn, .nav-link, input, select, textarea, .card {
  transition: transform 160ms ease, box-shadow 160ms ease,
              border-color 160ms ease, background-color 160ms ease;
}

/* ── Layout ── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.muted   { color: var(--muted); }
.subtle  { color: var(--subtle); }
.small   { font-size: 0.9rem; }

/* ── Reveal animation ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 100ms; }
  .reveal-delay-2 { transition-delay: 200ms; }
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.skip-link:focus { left: 12px; z-index: 1000; }

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--bg-rgb), 0.94);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 979px) {
  .site-header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.brand-logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px;
  box-shadow: var(--shadow-xs);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 980px) {
  .nav-wrap { gap: 20px; padding: 14px 0; }
  .brand { flex: unset; }
  .brand-logo { width: 44px; height: 44px; border-radius: 11px; padding: 5px; }
  .brand-name { font-size: 1.08rem; }
}

.nav-toggle {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-weight: 650;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  color: var(--text);
}

@media (hover: hover) and (pointer: fine) {
  .nav-toggle:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-xs);
  }
}

.site-nav {
  display: none;
  width: 100%;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 2px;
}

.site-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 9px 13px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.1px;
  color: var(--muted);
  transition: color 140ms ease, background 140ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--text);
    background: rgba(var(--brand-rgb), 0.05);
  }
}

.nav-link.is-active {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.07);
  border-color: rgba(var(--brand-rgb), 0.14);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 980px) {
  .nav-toggle  { display: none; }
  .site-nav    { display: flex; width: auto; margin-left: auto; padding: 0; }
  .nav-links   { display: flex; gap: 2px; align-items: center; }
  .nav-actions { justify-content: flex-end; }
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.35px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  border-color: rgba(var(--brand-rgb), 0.7);
  box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.22),
              0 1px 3px rgba(var(--brand-rgb), 0.15);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #a8152d;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.28),
                0 2px 6px rgba(var(--brand-rgb), 0.18);
  }
}

.btn:active { transform: translateY(0) !important; }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-xs);
}

@media (hover: hover) and (pointer: fine) {
  .btn-secondary:hover {
    border-color: rgba(var(--brand-rgb), 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
  }
}

.link {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.93rem;
}

/* ── Flash messages ── */
.flash-wrap { padding: 10px 0; }
.flash {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
}
.flash-error {
  border-color: rgba(var(--brand-rgb), 0.22);
  background: rgba(var(--brand-rgb), 0.06);
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.site-main { padding-bottom: 60px; }

.section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 24px);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Cards ── */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: rgba(var(--brand-rgb), 0.16);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
  }
}

.card:has(input:focus-visible, select:focus-visible, textarea:focus-visible),
.card:has(summary:focus-visible) {
  border-color: rgba(var(--brand-rgb), 0.22);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.07);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
}

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin: 0;
}

.h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 10px;
}

.h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 0.73rem;
  text-transform: uppercase;
  color: var(--brand);
  letter-spacing: 1.2px;
  margin: 0 0 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(ellipse 70% 50% at 5% -10%, rgba(var(--brand-2-rgb), 0.09), transparent),
    radial-gradient(ellipse 60% 40% at 95% 10%, rgba(var(--brand-rgb), 0.06), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.04;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

/* Hero card */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card-top {
  padding: 24px;
  background: linear-gradient(160deg,
    rgba(var(--brand-2-rgb), 0.10) 0%,
    rgba(var(--leaf-rgb), 0.08) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-logo {
  width: min(320px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 8px 20px rgba(24, 21, 31, 0.15));
}

.hero-card-body { padding: 24px; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.checklist li::before {
  content: "✓";
  color: var(--leaf);
  font-weight: 900;
  flex-shrink: 0;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }
}

/* ── Hero card photo ── */
.hero-card-photo {
  padding: 0;
  overflow: hidden;
}

.hero-card-photo .hero-card-bg {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.82) saturate(1.05);
}

/* ════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════ */
.page-hero {
  padding: clamp(52px, 7vw, 80px) 0 28px;
  border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════════
   TYPOGRAPHY UTILITIES
════════════════════════════════════════ */
.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.card-program .link {
  display: inline-block;
  margin-top: 12px;
}

/* ════════════════════════════════════════
   SCHEDULE TABLE
════════════════════════════════════════ */
.schedule { display: grid; gap: 0; }

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-row:last-child { border-bottom: none; }

.schedule-time {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.schedule-label {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 420px) {
  .schedule-row { grid-template-columns: 1fr; gap: 4px; }
  .schedule-time { color: var(--muted); }
}

/* ════════════════════════════════════════
   CTA BLOCK
════════════════════════════════════════ */
.cta-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--brand-rgb), 0.14);
  background: linear-gradient(135deg,
    rgba(var(--brand-rgb), 0.05) 0%,
    rgba(var(--brand-2-rgb), 0.08) 100%);
  box-shadow: var(--shadow-sm);
}

.cta-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .cta-block {
    flex-direction: row;
    align-items: center;
    padding: 40px 44px;
  }
}

/* ════════════════════════════════════════
   ACCORDION
════════════════════════════════════════ */
.accordion { display: grid; gap: 8px; margin-top: 12px; }

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  background: var(--surface);
  transition: border-color 140ms ease;
}

.accordion-item:hover { border-color: var(--border-strong); }

.accordion-item summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  font-size: 0.97rem;
}

.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--brand);
  flex-shrink: 0;
  line-height: 1;
}

.accordion-item[open] summary::after { content: "−"; }

.accordion-body { padding-top: 10px; }

/* ════════════════════════════════════════
   GALLERY — masonry columns
════════════════════════════════════════ */
.gallery-grid {
  columns: 1;
  column-gap: 16px;
}

@media (min-width: 600px) { .gallery-grid { columns: 2; } }
@media (min-width: 980px) { .gallery-grid { columns: 3; } }

.photo {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: left;
  background: var(--bg-alt);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  touch-action: manipulation;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.photo:focus-visible {
  outline: 2px solid rgba(var(--brand-rgb), 0.5);
  outline-offset: 3px;
}

.photo-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 14, 24, 0.75) 0%,
    rgba(18, 14, 24, 0.12) 48%,
    transparent 68%
  );
  opacity: 0;
  transition: opacity 340ms ease;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  pointer-events: none;
}

.photo-caption {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(6px);
  transition: transform 340ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .photo-real:hover .photo-img    { transform: scale(1.05); }
  .photo-real:hover .photo-overlay { opacity: 1; }
  .photo-real:hover .photo-caption { transform: translateY(0); }
}

.photo-inner {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
}

.photo-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 700;
  font-size: 0.82rem;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 7, 16, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.lightbox.is-open { opacity: 1; pointer-events: all; }

.lightbox-inner {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.65);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  color: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

/* ── Campus photo strip (about page) ── */
.campus-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) { .campus-strip { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 900px) { .campus-strip { grid-template-columns: 2fr 1fr 1fr; } }

.campus-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.campus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
  transition: transform 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (pointer: fine) {
  .campus-photo:hover img { transform: scale(1.04); }
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.quote-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg,
    rgba(var(--leaf-rgb), 0.4),
    rgba(var(--brand-2-rgb), 0.25));
  flex: 0 0 auto;
}

.quote-name {
  font-weight: 700;
  font-size: 0.93rem;
}

/* ════════════════════════════════════════
   MAP
════════════════════════════════════════ */
.card-map { padding: 0; overflow: hidden; }
.map-frame { width: 100%; aspect-ratio: 16 / 11; border: 0; display: block; }

/* ════════════════════════════════════════
   FORMS
════════════════════════════════════════ */
.form { margin-top: 16px; display: grid; gap: 14px; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea { resize: vertical; }

input::placeholder, textarea::placeholder {
  color: rgba(var(--muted-rgb), 0.55);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(var(--brand-rgb), 0.40);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.07);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.08);
}

.field-error, .form-error {
  margin-top: 7px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.86rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 9px;
  font-size: 0.96rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1px;
}

.footer-title {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--subtle);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.93rem;
}

.footer-links a:hover { color: var(--text); }

.footer-links li:not(:has(a)) {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-cta { margin-top: 16px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--subtle);
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 0.2px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
