:root {
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --paper: #f5f1e9;
  --paper-strong: #fffaf1;
  --line: rgba(17, 17, 17, 0.16);
  --muted: #6d675f;
  --red: #c8202f;
  --red-dark: #8f1420;
  --gold: #caa15a;
  --steel: #2f4858;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: KrossText, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--ink-soft);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 12px 28px;
  background: rgba(10, 10, 10, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: KrossDisplay, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.footer-brand span {
  display: block;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid transparent;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: 86svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 56px 0 72px;
  color: var(--white);
}

.hero-mark {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 22px;
}

.eyebrow {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2 {
  font-family: KrossDisplay, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 72px;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-subtitle {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-controls {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.hero-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.hero-controls img {
  width: 22px;
  height: 22px;
}

.section {
  padding: 82px 24px;
}

.content-grid,
.split-section,
.subhero {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.content-grid {
  display: grid;
  gap: 34px;
}

.two-column,
.split-section,
.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.band-light {
  background: var(--paper-strong);
}

.band-dark {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: var(--white);
}

.band-dark .split-copy,
.band-dark .content-grid {
  width: min(var(--max), 100%);
}

.band-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.band-map {
  background: #e8e2d7;
}

.section-intro {
  max-width: 760px;
}

.section-intro p {
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-list article,
.reason-grid article,
.faq-fallback details {
  min-height: 170px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-list h3 {
  color: var(--red-dark);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-grid img:nth-child(1),
.image-grid img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.image-grid img:nth-child(4),
.image-grid img:nth-child(8) {
  grid-column: span 2;
}

.asset-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.asset-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--white);
}

.portrait-panel {
  margin: 0;
  background: var(--red);
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.portrait-light {
  background: var(--paper-strong);
}

.map-layout {
  grid-template-columns: 0.72fr 1fr;
}

.address-card {
  display: block;
  margin-top: 18px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.map-embed,
.schedule-embed,
.form-embed {
  width: 100%;
  border: 0;
  background: var(--white);
}

.map-embed {
  height: 430px;
}

.small-map {
  height: 300px;
  margin-top: 18px;
}

.widget-frame {
  width: 100%;
  min-height: 100px;
}

.wide-widget {
  min-height: 260px;
}

.pricing-widget {
  min-height: 420px;
}

.embed-shell {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.schedule-shell {
  padding: 10px;
}

.schedule-embed {
  min-height: 820px;
}

.form-shell {
  padding: 10px;
}

.form-embed {
  min-height: 760px;
}

.subhero {
  padding: 82px 24px 70px;
}

.subhero img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: var(--white);
}

.subhero.compact img {
  height: 330px;
  object-fit: contain;
  padding: 28px;
}

.trial-hero img {
  object-fit: contain;
  padding: 18px;
}

.split-copy {
  min-width: 0;
}

.split-copy p {
  font-size: 18px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reason-grid article p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.faq-fallback {
  display: grid;
  gap: 10px;
}

.faq-fallback details {
  min-height: 0;
}

.faq-fallback summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-fallback p {
  margin: 12px 0 0;
}

.notice-heading {
  max-width: 920px;
  margin: 0;
  color: var(--red-dark);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.site-footer {
  padding: 44px 24px 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-inner nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.address-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  text-align: right;
}

.footer-social {
  width: min(var(--max), 100%);
  min-height: 70px;
  margin: 24px auto 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  .two-column,
  .split-section,
  .subhero,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner nav {
    justify-self: start;
  }

  .footer-actions {
    justify-items: start;
  }

  .address-link {
    text-align: left;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 150px;
    font-size: 15px;
  }

  .hero,
  .hero-content {
    min-height: 82svh;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 42px 0 56px;
  }

  .hero-mark {
    width: 92px;
    height: 92px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .section {
    padding: 58px 16px;
  }

  .subhero {
    padding: 58px 16px 48px;
  }

  .subhero img {
    height: 300px;
  }

  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 138px;
  }

  .image-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .asset-strip {
    grid-template-columns: 1fr;
  }

  .asset-strip img {
    height: 220px;
  }

  .portrait-panel,
  .portrait-panel img {
    min-height: 420px;
  }

  .map-embed {
    height: 360px;
  }

  .schedule-embed {
    min-height: 760px;
  }

  .form-embed {
    min-height: 820px;
  }
}
