:root {
  --max-width: 1120px;
  --radius: 6px;
  --brand-red: #c0302e;
  --brand-red-dark: #9a2422;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand img { height: 36px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5.5rem;
  isolation: isolate;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.lead { font-size: 1.15rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.slideshow { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: slideFade 24s infinite;
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 8s; }
.slide:nth-child(3) { animation-delay: 16s; }
.slideshow-overlay { position: absolute; inset: 0; z-index: 1; }
@keyframes slideFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  33%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slide { animation: none; }
  .slide:nth-child(1) { opacity: 1; }
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.section { padding: 5rem 0; }
.section-lead { max-width: 640px; margin-bottom: 2.5rem; }

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); }
.card h3 { margin-top: 0; }
.card p { margin: 0; }

.about-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: start;
}
.about-photo { position: sticky; top: 5rem; }
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.creds {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.creds li { padding-left: 1.5rem; position: relative; }
.creds li::before {
  content: "\2708";
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-30deg);
  color: var(--brand-red);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.contact-value { font-size: 1.05rem; font-weight: 700; }

.site-footer { padding: 2rem 0; font-size: 0.88rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-inner p { margin: 0; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo img { height: 30px; width: auto; }

img { max-width: 100%; }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-photo { position: static; max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 540px) {
  .container { padding: 0 1rem; }
  .nav { padding: 0.7rem 1rem; }
  .nav-links { gap: 0.9rem; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.04em; }
  .brand img { height: 30px; }
  .brand { font-size: 0.85rem; letter-spacing: 0.04em; gap: 0.5rem; }
  .hero { padding: 4.5rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
  .hero-actions { gap: 0.5rem; }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; text-align: center; padding: 0.8rem 0.9rem; font-size: 0.78rem; letter-spacing: 0.06em; }
  .footer-inner { justify-content: flex-start; }
  .footer-logo img { height: 26px; }
}
@media (max-width: 420px) {
  .brand span { display: none; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.74rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { flex: 1 1 auto; }
}

.variant-switcher {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0a0a0a;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #1f1f1f;
}
.variant-switcher .vs-label {
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-right: 0.5rem;
  font-weight: 600;
}
.variant-switcher a {
  color: #d6d9de;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #2a2a2a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.variant-switcher a:hover {
  color: #fff;
  border-color: #c0302e;
}
.variant-switcher a.is-active {
  background: #c0302e;
  border-color: #c0302e;
  color: #fff;
}
@media (max-width: 480px) {
  .variant-switcher .vs-label { display: none; }
  .variant-switcher a { padding: 0.3rem 0.65rem; font-size: 0.72rem; }
}
@media (max-width: 380px) {
  .variant-switcher { gap: 0.35rem; padding: 0.45rem 0.5rem; }
  .variant-switcher a { padding: 0.25rem 0.5rem; font-size: 0.68rem; letter-spacing: 0.04em; }
}

/* Variant switcher needs to push the sticky header down */
.variant-switcher + .site-header { top: 38px; }
