/* =========================================
   THE ART OF SPEED
   Main Website Styles
   ========================================= */

:root {
  --black: #050505;
  --black-soft: #0a0b0b;
  --panel: #101112;
  --white: #f4f1ea;
  --grey: #a5a39e;
  --grey-dark: #6d6d69;
  --red: #ef343b;
  --red-bright: #ff4148;
  --border: #282a2b;
  --max-width: 1220px;
}


/* =========================================
   RESET
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}


/* =========================================
   GLOBAL
   ========================================= */

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 105px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--red);
}


/* =========================================
   BUTTONS
   ========================================= */

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.button-primary:hover {
  background: var(--red-bright);
}

.button-secondary {
  background: rgba(0, 0, 0, 0.3);
  border-color: #555;
  color: white;
}

.button-secondary:hover {
  border-color: white;
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;

  height: 96px;

  display: flex;
  align-items: center;
  gap: 32px;

  padding: 0 35px;

  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* Logo */

.logo {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  line-height: 0.82;
}

.logo-top {
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 3.5px;
}

.logo strong {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 51px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -1px;
  line-height: 0.8;
}

.logo small {
  margin-top: 8px;
  color: #92938f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


/* Navigation */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 12px;
  color: #d1cfca;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--red);
  transition: right 0.2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}


/* Phone */

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.header-phone span {
  color: var(--red);
  font-size: 8px;
  letter-spacing: 1.5px;
}


/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  min-height: 900px;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding-top: 96px;

 
  background-size: 100% auto;
  background-position: center 18%;
  background-repeat: no-repeat;
  background-color: #050505;
}


/* Cinematic overlay */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.99) 0%,
      rgba(5, 5, 5, 0.94) 24%,
      rgba(5, 5, 5, 0.77) 43%,
      rgba(5, 5, 5, 0.34) 62%,
      rgba(5, 5, 5, 0.10) 80%,
      rgba(5, 5, 5, 0.25) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 5, 5, 0.55) 0%,
      transparent 35%
    );
}


/* Hero content */

.hero-content {
  position: relative;
  z-index: 3;

  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;

  padding: 80px 0 55px;
}

.hero-eyebrow {
  color: #e9e6df;
}

.hero h1 {
  max-width: 730px;
  margin: 0;

  font-family: "Barlow Condensed", sans-serif;

  font-size: clamp(74px, 7.5vw, 118px);
  font-weight: 800;

  line-height: 0.78;
  letter-spacing: -2px;

  text-transform: uppercase;

  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  color: var(--red);
}

.hero-subtitle {
  margin: 30px 0 8px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-description {
  max-width: 610px;
  margin: 0 0 10px;

  color: #d1cec8;

  font-size: 14px;
  line-height: 1.75;
}

.hero-credentials {
  max-width: 670px;
  margin: 0 0 26px;

  color: #aaa8a2;

  font-size: 13px;
  line-height: 1.8;
}

.hero-credentials strong {
  color: white;
}


/* Hero specialties */

.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-specialties span {
  padding: 8px 11px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(5px);

  color: #d5d2cc;

  font-size: 9px;
  letter-spacing: 1px;

  text-transform: uppercase;
}


/* Hero buttons */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


/* Hero information */

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));

  max-width: 680px;

  margin-top: 45px;
  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-info div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-info small {
  color: var(--red);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.hero-info strong {
  color: #d4d1cb;
  font-size: 11px;
}


/* Hero quote */

.hero-quote {
  position: absolute;
  z-index: 4;

  top: 31%;
  right: 5%;

  width: 205px;

  margin: 0;
  padding-left: 18px;

  border-left: 2px solid var(--red);

  color: white;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.15;

  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.hero-quote cite {
  display: block;

  margin-top: 13px;

  color: #c6c2bc;

  font-family: "Inter", sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;

  letter-spacing: 2.5px;
  text-transform: uppercase;
}


/* =========================================
   ABOUT KARL
   ========================================= */

.about {
  background: #080909;
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;

  gap: 70px;

  align-items: center;
}

.about-photo {
  overflow: hidden;

  border: 1px solid var(--border);

  background: #0c0d0d;
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.about-content p {
  max-width: 720px;

  color: var(--grey);

  font-size: 14px;
  line-height: 1.8;
}

.coach-title {
  margin: 14px 0 24px;

  color: white;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1px;
  text-transform: uppercase;
}


/* Credentials */

.credentials {
  margin: 30px 0 28px;
  border-top: 1px solid var(--border);
}

.credential {
  display: grid;
  grid-template-columns: 52px 1fr;

  align-items: center;

  padding: 14px 0;

  border-bottom: 1px solid var(--border);
}

.credential span {
  color: var(--red);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.credential strong {
  font-size: 12px;
}

.text-link {
  display: inline-block;

  padding-bottom: 5px;

  border-bottom: 1px solid #555;

  font-size: 12px;
  font-weight: 700;
}


/* =========================================
   SECTION HEADINGS
   ========================================= */

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 42px;
}

.section-heading > p {
  margin: 0 0 5px;

  color: var(--grey);

  font-size: 13px;
  line-height: 1.8;
}


/* =========================================
   LEGACY PREVIEW
   ========================================= */

.legacy-preview {
  background: #0d0e0f;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.legacy-preview-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;

  gap: 16px;

  margin-bottom: 26px;
}

.legacy-card {
  position: relative;

  min-height: 430px;

  margin: 0;

  overflow: hidden;

  border: 1px solid var(--border);

  background: #090909;
}

.legacy-card img {
  height: 100%;
  object-fit: cover;

  transition: transform 0.45s ease;
}

.legacy-card:hover img {
  transform: scale(1.015);
}

.legacy-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9),
      transparent 55%
    );
}

.legacy-card figcaption {
  position: absolute;
  z-index: 2;

  left: 22px;
  right: 22px;
  bottom: 21px;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.legacy-card figcaption small {
  color: var(--red);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 2px;
}

.legacy-card figcaption strong {
  font-family: "Barlow Condensed", sans-serif;

  font-size: 28px;

  text-transform: uppercase;
}


/* =========================================
   TRAINING
   ========================================= */

.training {
  background: var(--black);
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 1px;

  border: 1px solid var(--border);

  background: var(--border);
}

.training-card {
  min-height: 165px;

  display: flex;
  flex-direction: column;

  padding: 24px;

  background: #090a0a;
}

.training-card > span {
  color: var(--red);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.training-card h3 {
  margin: 35px 0 10px;

  font-family: "Barlow Condensed", sans-serif;

  font-size: 25px;

  line-height: 1.05;

  text-transform: uppercase;
}

.training-card p {
  margin: 0;

  color: #80817e;

  font-size: 11px;
  line-height: 1.6;
}


/* =========================================
   PRICING
   ========================================= */

.pricing {
  background: #0a0b0b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin-top: 45px;
}

.price-card {
  position: relative;

  min-height: 400px;

  display: flex;
  flex-direction: column;

  padding: 30px;

  border: 1px solid var(--border);

  background: #101112;
}

.price-card.featured {
  border-color: var(--red);
}

.popular {
  position: absolute;

  top: -11px;
  right: 20px;

  padding: 6px 10px;

  background: var(--red);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.3px;
}

.price-card h3 {
  margin: 0;

  font-family: "Barlow Condensed", sans-serif;

  font-size: 24px;

  text-transform: uppercase;
}

.price {
  margin: 28px 0 12px;

  font-family: "Barlow Condensed", sans-serif;

  font-size: 54px;
  font-weight: 700;
}

.price small {
  color: #8c8c88;
  font-size: 19px;
}

.price-card p {
  color: #989894;

  font-size: 11px;
  line-height: 1.6;
}

.price-card p strong {
  color: white;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.payment-note {
  display: flex;

  gap: 20px;

  align-items: center;

  margin-top: 16px;
  padding: 20px;

  border: 1px solid var(--border);

  background: #090a0a;
}

.payment-note strong {
  color: var(--red);

  font-size: 8px;

  letter-spacing: 1.5px;
}

.payment-note span {
  color: #888884;

  font-size: 10px;
}


/* =========================================
   LOCATION
   ========================================= */

.location {
  background:
    linear-gradient(
      135deg,
      #080909,
      #111415
    );
}

.location-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  gap: 80px;

  align-items: center;
}

.location h3 {
  margin: 25px 0 10px;

  font-size: 16px;
}

.location p {
  max-width: 430px;

  color: var(--grey);

  font-size: 12px;
  line-height: 1.8;
}

.location .button {
  margin-top: 16px;
}


/* Schedule */

.schedule-card {
  padding: 38px;

  border: 1px solid var(--border);

  background: #090a0a;
}

.schedule-card h3 {
  font-family: "Barlow Condensed", sans-serif;

  font-size: 31px;

  text-transform: uppercase;
}

.times {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;

  color: #d7d5cf;

  font-size: 11px;
}

.schedule-card hr {
  height: 1px;

  margin: 28px 0;

  border: 0;

  background: #2d2e2e;
}

.schedule-card small {
  display: block;

  margin-top: 18px;

  color: #686864;

  font-size: 9px;
}


/* =========================================
   CONTACT
   ========================================= */

.contact {
  background: #050505;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  gap: 75px;

  align-items: start;
}

.contact-copy > p {
  max-width: 470px;

  color: var(--grey);

  font-size: 13px;
  line-height: 1.8;
}

.contact-phone {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-top: 35px;
  padding-top: 18px;

  border-top: 1px solid var(--border);
}

.contact-phone small {
  color: var(--grey-dark);

  font-size: 8px;

  letter-spacing: 1.5px;
}

.contact-phone a {
  font-family: "Barlow Condensed", sans-serif;

  font-size: 32px;
  font-weight: 700;
}


/* Contact form */

.contact-form {
  padding: 30px;

  border: 1px solid var(--border);

  background: #101314;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.contact-form label {
  display: grid;

  gap: 8px;

  margin-bottom: 13px;

  color: #a2a19d;

  font-size: 9px;

  letter-spacing: 0.4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 13px;

  border: 1px solid #303537;

  border-radius: 0;

  outline: none;

  background: #181b1c;

  color: white;

  font-size: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #606363;
}

.form-submit {
  width: 100%;
  border: 0;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
  padding: 40px 0;

  border-top: 1px solid #171717;

  background: #020202;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  gap: 35px;

  align-items: end;
}

.footer-logo {
  transform: scale(0.82);
  transform-origin: left bottom;
}

footer blockquote {
  margin: 0;

  color: #83837e;

  font-size: 10px;

  letter-spacing: 1.5px;

  text-align: center;
}

footer cite {
  display: block;

  margin-top: 8px;

  color: #5e5e5b;

  font-style: normal;
}

.footer-contact {
  display: flex;
  flex-direction: column;

  gap: 6px;

  color: #6e6f6c;

  font-size: 10px;

  text-align: right;
}

.footer-contact a {
  color: white;
  font-weight: 700;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

  .desktop-nav {
    display: none;
  }

  .header-phone {
    margin-left: auto;
  }

  .hero {
    min-height: 850px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.98) 0%,
        rgba(5, 5, 5, 0.90) 40%,
        rgba(5, 5, 5, 0.45) 72%,
        rgba(5, 5, 5, 0.20) 100%
      );
  }

  .hero-quote {
    display: none;
  }

  .about-grid {
    grid-template-columns: 320px 1fr;
    gap: 45px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .training-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    height: 82px;
    padding: 0 16px;
  }

  .logo {
    min-width: 180px;
  }

  .logo-top {
    font-size: 13px;
  }

  .logo strong {
    font-size: 39px;
  }

  .logo small {
    font-size: 5px;
  }

  .header-phone {
    font-size: 11px;
  }

  .header-phone span {
    display: none;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 75px 0;
  }

  .section-title {
    font-size: 59px;
  }


  /* Mobile hero */

  .hero {
    min-height: 820px;

    padding-top: 82px;

    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 5, 5, 0.96) 0%,
        rgba(5, 5, 5, 0.88) 45%,
        rgba(5, 5, 5, 0.50) 75%,
        rgba(5, 5, 5, 0.28) 100%
      ),
      linear-gradient(
        0deg,
        rgba(5, 5, 5, 0.62),
        transparent 40%
      );
  }

  .hero-content {
    width: calc(100% - 28px);

    padding: 70px 0 40px;
  }

  .hero h1 {
    font-size: 60px;
  }

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

  .hero-description {
    font-size: 12px;
  }

  .hero-credentials {
    font-size: 11px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-info {
    grid-template-columns: 1fr;
    gap: 15px;
  }


  /* About */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    max-width: 470px;
  }

  .about-photo img {
    height: auto;
  }


  /* Legacy */

  .legacy-preview-grid {
    grid-template-columns: 1fr;
  }

  .legacy-card {
    min-height: 350px;
  }


  /* Training */

  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-card {
    min-height: 155px;
  }


  /* Pricing */

  .pricing-grid {
    grid-template-columns: 1fr;
  }


  /* Location */

  .location-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .schedule-card {
    padding: 25px;
  }

  .times {
    grid-template-columns: 1fr;
  }


  /* Contact */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }


  /* Footer */

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

  footer blockquote {
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

/* =========================================
}
   FINAL CLEAN HERO
   Uses the original authentic photo
   ========================================= */

.hero {
  position: relative !important;
  min-height: 900px !important;
  overflow: hidden !important;
  padding-top: 96px !important;

  background-image: url("assets/karl-hero.jpg") !important;
  background-size: 100% auto !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-color: #050505 !important;
}

.hero::before {
  content: none !important;
  display: none !important;
}

.hero-photo {
  display: none !important;
}

.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.98) 0%,
      rgba(5, 5, 5, 0.92) 25%,
      rgba(5, 5, 5, 0.64) 44%,
      rgba(5, 5, 5, 0.20) 68%,
      rgba(5, 5, 5, 0.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 5, 5, 0.35) 0%,
      transparent 38%
    ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-quote {
  position: absolute !important;
  z-index: 4 !important;
  top: 31% !important;
  right: 5% !important;
  width: 205px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 850px !important;
    background-size: auto 100% !important;
    background-position: 62% center !important;
  }

  .hero-quote {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 820px !important;
    padding-top: 82px !important;
    background-size: auto 100% !important;
    background-position: 63% center !important;
  }
}/* SHOW FULL LEGACY PHOTOS */
.legacy-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}/* LEGACY PHOTOS — ORIGINAL FULL PROPORTIONS */
.legacy-card {
    height: auto !important;
    min-height: 0 !important;
}

.legacy-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: none !important;
}

.legacy-card:hover img {
    transform: none !important;
}/* FINAL LEGACY IMAGE FIX */

.legacy-preview-grid {
  align-items: start !important;
}

.legacy-card {
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.legacy-card img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: unset !important;
  object-position: unset !important;
}

.legacy-card::after {
  display: none !important;
}

.legacy-card figcaption {
  position: static !important;
  padding: 18px 22px 22px !important;
  background: #090909 !important;
}/* LEGACY 65 / 35 LAYOUT */
.legacy-preview-grid {
  grid-template-columns: 1.85fr 1fr !important;
  align-items: start !important;
}/* LEGACY 65 / 35 FIX */
.legacy-preview-grid {
  grid-template-columns: 1.85fr 1fr !important;
  align-items: start !important;
}.legacy-preview-grid {
  grid-template-columns: 3fr 2fr !important;
  align-items: start !important;
  gap: 18px !important;
}/* CLEAN LEGACY CARD PRESENTATION */

.legacy-preview-grid {
  grid-template-columns: 3fr 2fr !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.legacy-card {
  background: transparent !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
}

.legacy-card img {
  width: 100% !important;
  height: 430px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
}

.legacy-card figcaption {
  background: transparent !important;
}cat >> styles.css <<'EOF'

/* KARL FINAL COLOR PALETTE */

.hero-main-title,
.section-title {
  color: #2E8B57 !important;
}

.hero-main-title span,
.section-title span {
  color: #F4C430 !important;
}

.eyebrow,
.hero-eyebrow {
  color: #C9A646 !important;
}cat >> styles.css <<'EOF'

/* FINAL YELLOW GREEN GOLD PALETTE */

/* Logo */
.logo .logo-top,
.footer-logo .logo-top {
  color: #C9A646 !important;
}

.logo strong,
.footer-logo strong {
  color: #2E8B57 !important;
}

.logo small,
.footer-logo small {
  color: #F4C430 !important;
}

/* Main section headings */
.section-title,
.hero-main-title {
  color: #F4C430 !important;
}

/* Highlighted words inside headings */
.section-title span,
.hero-main-title span {
  color: #2E8B57 !important;
}

/* Small labels / eyebrow text */
.eyebrow,
.hero-eyebrow,
.payment-note strong,
.price-card .eyebrow {
  color: #C9A646 !important;
}

/* Keep supporting text readable */
.hero-subtitle,
.hero-description,
.hero-credentials,
.section p,
.price-card p,
.contact-copy p {
  color: #f4f1ea !important;
}

/* Main action buttons / featured accents */
.button-primary,
.price-card.featured .button {
  background: #2E8B57 !important;
  border-color: #2E8B57 !important;
  color: #ffffff !important;
}

.price-card.featured {
  border-color: #F4C430 !important;
}

EOF

/* GOLD SMALL LABELS */
.hero-info small {
  color: #C9A646 !important;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    background: transparent;
    border: 1px solid #C9A646;
    color: #F4C430;
    font-size: 28px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1001;
  }

  header nav {
    display: none !important;
  }

  header nav.mobile-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #080808;
    padding: 20px;
    gap: 18px;
    z-index: 1000;
  }

  header nav.mobile-open a {
    display: block;
    width: 100%;
  }
}
