/* Silver State Dispatch LLC — design system */
:root {
  --bg-deep: #070b14;
  --bg: #0c1220;
  --bg-elevated: #121a2e;
  --bg-card: #161f35;
  --border: rgba(232, 236, 244, 0.08);
  --border-strong: rgba(232, 236, 244, 0.14);
  --text: #e8ecf4;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --silver: #c5cdd9;
  --gold: #c9a227;
  --gold-bright: #e4bc3a;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.15);
  --success: #22c55e;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  --nav-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus {
  top: 1rem;
}

/* Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.brand-badge {
  display: block;
  height: 44px;
  width: auto;
  aspect-ratio: 400 / 266;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
}
.brand-badge-footer {
  height: 48px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.2;
  min-width: 0;
}
.brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.brand-footer {
  align-items: center;
}
.brand-footer .brand-name {
  font-size: 0.95rem;
}
.brand-footer .brand-tag {
  font-size: 0.68rem;
}
.brand-footer-tag {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
@media (min-width: 900px) {
  .brand-badge {
    height: 48px;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .brand-tag {
    font-size: 0.68rem;
  }
}
@media (max-width: 380px) {
  .brand-name {
    font-size: 0.8rem;
  }
  .brand-tag {
    font-size: 0.58rem;
  }
  .brand-badge {
    height: 38px;
  }
  .brand {
    gap: 0.45rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--gold-bright);
}

.mobile-phone {
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 600;
}
.mobile-phone a {
  color: var(--gold-bright);
}
.mobile-phone span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--bg-deep);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 39, 0.45);
}
.btn-outline-gold:hover {
  background: rgba(201, 162, 39, 0.1);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 99;
  background: rgba(7, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 2rem 1.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-panel.is-open {
  transform: translateX(0);
}
.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-panel li {
  border-bottom: 1px solid var(--border);
}
.mobile-panel a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}
.mobile-panel .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.hide-mobile {
  display: none;
}
@media (min-width: 900px) {
  .hide-mobile {
    display: inline-flex;
  }
  .nav-links {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-panel {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(232, 236, 244, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(232, 236, 244, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}
.hero-glow {
  position: absolute;
  width: 70vw;
  max-width: 900px;
  height: 60vh;
  top: 10%;
  right: -15%;
  background: radial-gradient(
    ellipse,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 65%
  );
}
.hero-glow-gold {
  position: absolute;
  width: 50vw;
  height: 40vh;
  bottom: 5%;
  left: -10%;
  background: radial-gradient(
    ellipse,
    rgba(201, 162, 39, 0.1) 0%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 640px;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
}
.stat span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
  .hero-visual {
    display: block;
    position: relative;
  }
  .hero-card-stack {
    position: relative;
    height: 420px;
  }
  .hero-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
  }
  .hero-card:nth-child(1) {
    top: 0;
    right: 0;
    width: 88%;
    animation-delay: 0s;
  }
  .hero-card:nth-child(2) {
    top: 38%;
    left: 0;
    width: 78%;
    animation-delay: -2s;
  }
  .hero-card:nth-child(3) {
    bottom: 0;
    right: 8%;
    width: 72%;
    animation-delay: -4s;
  }
  @keyframes float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.hero-card-value.positive {
  color: var(--success);
}
.hero-card-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Sections */
section {
  padding: 5.5rem 0;
}
.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.service-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* SilverRoute feature */
.silverroute {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(18, 26, 46, 0.6) 50%,
    var(--bg-deep) 100%
  );
}
.silverroute-wrap {
  display: grid;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius-lg) + 4px);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.silverroute-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(201, 162, 39, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
@media (min-width: 900px) {
  .silverroute-wrap {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem;
  }
}

.tool-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.silverroute h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 1rem;
}
.silverroute h2 span {
  color: var(--gold-bright);
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-muted);
}
.feature-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold);
}

.calc-preview {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  font-size: 0.9rem;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.calc-row:last-child {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}
.calc-row:last-child .calc-val {
  color: var(--success);
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.calc-label {
  color: var(--text-dim);
}
.calc-val {
  font-variant-numeric: tabular-nums;
}

/* Offers / pricing */
.offers-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.offer-card.featured {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.15), var(--shadow);
}
.offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-deep);
  border-radius: 999px;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.offer-price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.offer-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
}
.offer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  flex: 1;
}
.offer-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  font-size: 0.9rem;
}
.offer-features li {
  display: flex;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
}
.offer-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.offer-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Process */
.process-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.process-step {
  position: relative;
  padding-top: 3rem;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: rgba(201, 162, 39, 0.25);
  line-height: 1;
}
.process-step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* About / trust */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-early-partner {
  color: var(--text-muted);
  font-size: 0.95rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1rem;
}

.about-founder {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center 15%;
}

.about-founder-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-founder-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}

.about-founder-role {
  margin: 0.25rem 0 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.about-founder-bio {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-founder-contact {
  margin: 0;
  font-size: 0.9rem;
}

.about-founder-contact a {
  color: var(--gold-bright);
  font-weight: 600;
}

.about-founder-contact a:hover {
  color: var(--text);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-pill {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}
.faq-item button svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: var(--gold);
}
.faq-item.is-open button svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.faq-item.is-open .faq-answer {
  max-height: 280px;
}

/* Contact */
.contact-section {
  padding-bottom: 6rem;
}
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-info a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info a:hover {
  color: var(--text);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1rem;
}
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  color: #86efac;
  margin-bottom: 1rem;
}
.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}
.footer-grid h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li {
  margin-bottom: 0.5rem;
}
.footer-grid a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-grid a:hover {
  color: var(--text);
}
.footer-contact {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--gold-bright);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--text);
}
.footer-contact-name {
  color: var(--text-dim);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom-meta a {
  color: var(--gold-bright);
  font-weight: 600;
}
.footer-bottom-meta a:hover {
  color: var(--text);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-card {
    animation: none;
  }
}
