:root {
  --ink: #141210;
  --ink-2: #1f1b17;
  --ink-3: #2b2722;
  --bone: #f3ece1;
  --bone-2: #e6dccb;
  --bone-3: #d4c8b2;
  --red: #b7322b;
  --red-deep: #7d1f1a;
  --rust: #c86a3a;
  --amber: #f2a33a;
  --concrete: #857c70;
  --line: rgba(243, 236, 225, 0.14);
  --line-strong: rgba(243, 236, 225, 0.28);
  --max: 1400px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(0.6, 0.1, 0.15, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(20, 18, 16, 0.92), rgba(20, 18, 16, 0.92)),
    url("/assets/redleg-logo.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, min(70vmin, 720px);
  background-attachment: fixed, fixed;
  color: var(--bone);
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(
      1200px 600px at 80% -10%,
      rgba(183, 50, 43, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 110%,
      rgba(200, 106, 58, 0.12),
      transparent 60%
    );
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--red);
  color: var(--bone);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
}

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

/* ----------------------- NAV ----------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(20, 18, 16, 0.92),
    rgba(20, 18, 16, 0.75)
  );
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bone);
}

.brand__logo {
  display: block;
  height: 88px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 14px rgba(183, 50, 43, 0.35));
}

.brand__mark {
  color: var(--red);
  display: inline-flex;
}

.brand__word {
  display: none;
}

.brand__line-1 {
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--bone);
}

.brand__line-2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-top: 2px;
}

.nav__links {
  justify-self: center;
  display: flex;
  gap: 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.nav__links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--bone-2);
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--bone);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  padding: 0.55rem 1rem 0.55rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.nav__phone::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--red);
}
.nav__phone:hover {
  background: rgba(183, 50, 43, 0.12);
  border-color: var(--red);
}
.nav__phone-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.nav__phone-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .nav__inner {
    grid-template-columns: auto auto;
    row-gap: 0.75rem;
  }
  .nav__links {
    grid-column: 1 / -1;
    justify-self: start;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
  .brand__line-2 {
    display: none;
  }
  .brand__logo {
    height: 68px;
  }
  .foot__logo {
    height: 68px;
  }
  .foot__brand {
    flex-wrap: wrap;
  }
}

/* ----------------------- HERO ----------------------- */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) var(--pad-x) clamp(3rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse at 50% 30%,
    black 40%,
    transparent 80%
  );
}

.hero__grid {
  position: relative;
  z-index: 2;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.tag--outline {
  border: 1px solid var(--bone-3);
  color: var(--bone-2);
}
.tag--solid {
  background: var(--red);
  color: var(--bone);
}

.hero__headline {
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 1.75rem;
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}

.hero__logo {
  display: block;
  width: clamp(240px, 38vw, 520px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 28px rgba(196, 30, 58, 0.25));
  animation: rise 0.9s var(--ease) backwards;
}

.hero__tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero__word:nth-child(1) { animation-delay: 0.05s; }
.hero__word:nth-child(2) { animation-delay: 0.12s; }
.hero__word:nth-child(3) { animation-delay: 0.22s; color: var(--red); }
.hero__word:nth-child(4) { animation-delay: 0.3s; }
.hero__word:nth-child(5) { animation-delay: 0.4s; }
.hero__word:nth-child(6) { animation-delay: 0.48s; }

.hero__word--outline {
  color: transparent;
  -webkit-text-stroke: 1.25px var(--bone);
  text-stroke: 1.25px var(--bone);
}

.hero__word:nth-child(3).hero__word--outline {
  -webkit-text-stroke: 1.25px var(--red);
  text-stroke: 1.25px var(--red);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__sub {
  max-width: 48ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--bone-2);
  margin: 0 0 2rem;
  animation: rise 1s 0.55s var(--ease) backwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  animation: rise 1s 0.65s var(--ease) backwards;
}

.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.05rem 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(183, 50, 43, 0.6);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  border: 1px solid var(--bone-3);
}
.btn--ghost:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.btn__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(242, 163, 58, 0.7);
  animation: pulse 1.8s infinite;
  display: inline-block;
  margin-right: 0.25rem;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242, 163, 58, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(242, 163, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 163, 58, 0); }
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 1.5rem;
  animation: rise 1s 0.8s var(--ease) backwards;
}

.hero__stats > div {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}
.hero__stats > div:last-child {
  border-right: none;
}

.hero__stats dt {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--bone-3);
  font-weight: 600;
}

.hero__stats dd {
  margin: 0.35rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1;
  color: var(--bone);
}
.hero__stats dd span {
  color: var(--red);
  font-size: 0.6em;
  margin-left: 0.1em;
}

/* Ticker panel */
.hero__panel {
  position: relative;
  z-index: 2;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 1.5rem;
  align-self: start;
  position: sticky;
  top: 6rem;
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}

.panel__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--bone-2);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}
.panel__dot {
  width: 9px;
  height: 9px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(242, 163, 58, 0.7);
  animation: pulse 1.8s infinite;
}

.panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Barlow", sans-serif;
}
.panel__list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.92rem;
}
.panel__list li:last-child {
  border-bottom: none;
}
.panel__list span {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  color: var(--red);
  font-size: 1.05rem;
}
.panel__list em {
  font-style: normal;
  color: var(--bone-2);
}

.panel__foot {
  margin: 1rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--concrete);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    position: static;
  }
}

/* ----------------------- MARQUEE ----------------------- */
.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--red);
  color: var(--bone);
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.1em;
  animation: scroll 28s linear infinite;
}
.marquee__track i {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--ink);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.marquee__track span {
  flex-shrink: 0;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------------- SECTIONS ----------------------- */
.section-head {
  max-width: 720px;
  margin: 0 0 clamp(2rem, 5vw, 4rem);
}
.section-head--center {
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.section-head--tight {
  margin-bottom: 0;
}

.section-head__kicker {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--red);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-head__title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 0 0 1rem;
  color: var(--bone);
}
.section-head__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
  text-stroke: 1.5px var(--bone);
}

.section-head__lede {
  color: var(--bone-3);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 60ch;
  margin: 0;
}
.section-head--center .section-head__lede {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------- SERVICES ----------------------- */
.services {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  background: var(--ink);
}

.service {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--line-strong);
  align-items: start;
  position: relative;
}
.service:last-of-type {
  border-bottom: 1px solid var(--line-strong);
}
.service--flip {
  grid-template-columns: auto 1fr 1.4fr;
}
.service--flip .service__body {
  order: 3;
}
.service--flip .service__visual {
  order: 2;
}

.service__index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 6rem;
}
.service__index span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.service__rule {
  width: 60px;
  height: 3px;
  background: var(--bone);
  margin-top: 1rem;
  display: block;
}

.service__body {
  color: var(--bone-2);
}

.service__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--bone);
  margin: 0 0 1rem;
}

.service__copy {
  max-width: 52ch;
  margin: 0 0 1.5rem;
  color: var(--bone-2);
  font-size: 1.05rem;
}

.service__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem 1.5rem;
  font-family: "Barlow", sans-serif;
}
.service__bullets li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--bone);
  font-size: 0.98rem;
}
.service__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.service__who {
  background: var(--ink-2);
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
}
.service__who-label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--bone-3);
  margin-bottom: 0.6rem;
}
.service__who ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}
.service__who li {
  font-family: "Barlow", sans-serif;
  font-size: 0.85rem;
  background: rgba(243, 236, 225, 0.06);
  border: 1px solid var(--line-strong);
  padding: 0.3rem 0.65rem;
  color: var(--bone);
}

.service__visual {
  color: var(--bone-3);
  border: 1px solid var(--line-strong);
  background: linear-gradient(
    180deg,
    rgba(183, 50, 43, 0.06),
    rgba(243, 236, 225, 0.02)
  );
  padding: 1.5rem;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service:hover .service__visual {
  transform: translateY(-4px);
  border-color: var(--red);
  color: var(--bone);
}

@media (max-width: 1000px) {
  .service,
  .service--flip {
    grid-template-columns: 1fr;
  }
  .service__visual {
    order: 4;
    max-width: none;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .service__index {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .service__rule {
    margin-top: 0;
  }
}

/* ----------------------- WHY ----------------------- */
.why {
  position: relative;
  z-index: 3;
  background: var(--bone);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    135deg,
    var(--red) 0 16px,
    var(--ink) 16px 32px
  );
}

.why__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.why .section-head__title {
  color: var(--ink);
}
.why .section-head__title em {
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
}
.why .section-head__lede {
  color: var(--ink-3);
}
.why .section-head__kicker {
  color: var(--red);
}

.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bone-3);
  border: 1px solid var(--bone-3);
}
.why__list li {
  background: var(--bone);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.3s var(--ease);
}
.why__list li:hover {
  background: var(--bone-2);
}

.why__num {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.why__list h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  line-height: 1.05;
  margin: 0 0 0.65rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.why__list p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-3);
  line-height: 1.55;
}

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

/* ----------------------- SCHEDULE ----------------------- */
.schedule {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}

.schedule__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
}

.schedule__calendar {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  min-height: 620px;
  overflow: hidden;
}
.schedule__calendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  z-index: 2;
}
.schedule__calendar iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  position: relative;
  z-index: 1;
  background: var(--bone);
  display: block;
}
.schedule__fallback {
  position: absolute;
  inset: 4px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 2.5rem;
  background: var(--ink-2);
  z-index: 0;
  gap: 0.5rem;
}
.schedule__fallback h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  margin: 0;
  color: var(--bone);
}
.schedule__fallback p {
  color: var(--bone-3);
  max-width: 40ch;
}
.schedule__fallback a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
}

.schedule__form {
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.schedule__form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.schedule__form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  margin: 0;
  color: var(--bone);
}

.schedule__form-sub {
  margin: 0 0 0.5rem;
  color: var(--bone-3);
  font-size: 0.95rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--bone-3);
}
.field input,
.field select,
.field textarea {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  padding: 0.85rem 0.95rem;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #0e0c0b;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d4c8b2' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.schedule__form-note {
  margin: 0.25rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--concrete);
}

@media (max-width: 1000px) {
  .schedule__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .schedule__calendar { min-height: 500px; }
  .schedule__calendar iframe { min-height: 500px; }
}

/* ----------------------- CTA ----------------------- */
.cta {
  position: relative;
  z-index: 3;
  background: var(--red);
  color: var(--bone);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0) 48%,
      rgba(0, 0, 0, 0.08) 50%,
      rgba(0, 0, 0, 0) 52%
    ),
    linear-gradient(45deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 52%);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}

.cta__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
}

.cta__text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.cta__text p {
  max-width: 46ch;
  margin: 0;
  color: rgba(243, 236, 225, 0.9);
  font-size: 1.05rem;
}

.cta__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta__phone {
  display: inline-flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--bone);
  padding: 1.25rem 1.75rem;
  border: 2px solid var(--ink);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cta__phone:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--ink-2);
}
.cta__phone-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--amber);
}
.cta__phone-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

.cta__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(243, 236, 225, 0.85);
}

@media (max-width: 800px) {
  .cta__inner { grid-template-columns: 1fr; }
}

/* ----------------------- FOOTER ----------------------- */
.foot {
  position: relative;
  z-index: 3;
  background: var(--ink);
  color: var(--bone-3);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 2rem;
  border-top: 1px solid var(--line);
}

.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--red);
}

.foot__logo {
  display: block;
  height: 84px;
  width: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.foot__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--bone);
  margin: 0;
  line-height: 1.1;
}

.foot__tag {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--bone-3);
  margin: 0.35rem 0 0;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.foot__cols h4 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--bone-2);
  margin: 0 0 0.85rem;
}
.foot__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
}
.foot__cols a {
  transition: color 0.2s var(--ease);
}
.foot__cols a:hover {
  color: var(--red);
}

.foot__fine {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--concrete);
}

@media (max-width: 800px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ----------------------- THANK YOU PAGE ----------------------- */
.thanks {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
  text-align: center;
  position: relative;
  z-index: 3;
}
.thanks__inner {
  max-width: 620px;
}
.thanks h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--bone);
  letter-spacing: 0.01em;
}
.thanks h1 em {
  font-style: normal;
  color: var(--red);
}
.thanks p {
  color: var(--bone-2);
  margin: 0 0 2rem;
  font-size: 1.1rem;
}

/* ----------------------- PRINT / REDUCE MOTION ----------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__word { opacity: 1; transform: none; }
}
