:root {
  --navy: #082238;
  --pink: #ec919c;
  --yellow: #fecf32;
  --cream: #fbf2dc;
  --slate: #4e6173;
  --text-dark: #082238;
  --max-width: 1200px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.section-pad {
  padding: 72px 0;
}

/* header */

.site-header {
  background-color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo-link {
  flex-shrink: 0;
}

.site-logo {
  width: 160px;
  height: auto;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 0;
}

.site-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* hero */

.hero {
  position: relative;
  min-height: 88vh;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(8, 34, 56, 0.42),
    rgba(8, 34, 56, 0.64)
  );
  padding: 110px 0 70px;
}

.hero-title {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 1100px;
}

.hero-title .line {
  display: block;
  margin-bottom: 8px;
}

.hero-title .plain,
.hero-title .highlight {
  display: inline-block;
}

.hero-title .highlight {
  padding: 0.06em 0.18em 0.11em;
}

.hero-title .highlight.pink {
  background-color: var(--pink);
  color: var(--cream);
}

.hero-title .highlight.yellow {
  background-color: var(--yellow);
  color: var(--slate);
}

.hero-title .highlight.slate {
  background-color: var(--slate);
  color: var(--cream);
}

/* wipe reveal */

.reveal-wipe {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: wipeReveal 1.1s ease forwards;
}

.reveal-wipe > * {
  display: inline-block;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 1.1s; }
.delay-3 { animation-delay: 1.8s; }
.delay-4 { animation-delay: 2.5s; }
.delay-5 { animation-delay: 3.2s; }
.delay-6 { animation-delay: 3.9s; }

@keyframes wipeReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* home intro */

.home-dark {
  background-color: var(--navy);
  color: var(--cream);
}

.home-copy p {
  font-size: 1.12rem;
  margin: 0 0 20px;
}

.notice-stack {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.notice-card {
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.notice-yellow {
  background-color: rgba(254, 207, 50, 0.14);
  border-left: 5px solid var(--yellow);
  color: var(--cream);
}

.notice-pink {
  background-color: rgba(236, 145, 156, 0.14);
  border-left: 5px solid var(--pink);
  color: var(--cream);
}

/* general dark-page styles */

.franchise-page,
.contact-page {
  background-color: var(--navy);
  color: var(--cream);
}

.franchise-hero,
.contact-hero {
  background-color: var(--navy);
  padding-bottom: 24px;
}

.page-title {
  margin: 0 0 28px;
  color: var(--pink);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 900;
}

.page-title-center {
  text-align: center;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 22px;
}

.lead-yellow {
  color: var(--yellow);
}

.franchise-content {
  padding: 10px 0 72px;
}

.content-block {
  margin-bottom: 62px;
}

.section-heading {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 900;
}

.section-heading-yellow {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.sub-lead {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.franchise-page p,
.contact-page p {
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 0 22px;
}

/* features */

.features-section {
  background-color: var(--navy);
  color: var(--cream);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--cream);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 16px;
  padding: 16px 18px;
  background-color: rgba(251, 242, 220, 0.1);
  border-left: 6px solid var(--yellow);
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

/* price cards */

.price-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0 34px;
}

.price-card {
  background: rgba(251, 242, 220, 0.08);
  border: 1px solid rgba(254, 207, 50, 0.45);
  border-radius: 16px;
  padding: 22px 20px;
}

.price-label {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.price-card strong {
  display: block;
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1.1;
}

/* buttons */

.cta-wrap {
  text-align: center;
  padding-top: 10px;
}

.outline-button {
  display: inline-block;
  min-width: 140px;
  padding: 14px 28px;
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.outline-button:hover {
  background-color: var(--pink);
  color: var(--navy);
  transform: translateY(-1px);
}

/* founder */

.business-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.business-card {
  background: rgba(251, 242, 220, 0.08);
  border: 1px solid rgba(236, 145, 156, 0.35);
  border-radius: 16px;
  padding: 22px 20px;
}

.business-card h3 {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 1.45rem;
  line-height: 1.2;
}

.business-card p {
  margin: 0 0 10px;
}

.business-card a {
  color: var(--yellow);
  font-weight: 700;
  word-break: break-word;
}

.business-card a:hover {
  text-decoration: underline;
}

.address-box {
  background: rgba(254, 207, 50, 0.08);
  border-left: 5px solid var(--yellow);
  border-radius: 12px;
  padding: 20px;
  margin-top: 18px;
}

.address-box p:last-child,
.business-card p:last-child {
  margin-bottom: 0;
}

/* contact */

.contact-section {
  padding: 0 0 72px;
}

.form-shell {
  max-width: 980px;
  background-color: var(--navy);
  border: 1px solid rgba(251, 242, 220, 0.8);
  border-radius: 22px;
  padding: 56px 28px;
}

.join-form {
  max-width: 420px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 22px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 242, 220, 0.95);
  border-radius: 0;
  color: var(--cream);
  font-size: 1rem;
  padding: 10px 0 12px;
  outline: none;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(251, 242, 220, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--yellow);
}

.submit-button {
  display: inline-block;
  background-color: var(--pink);
  color: var(--navy);
  border: none;
  padding: 12px 42px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.form-disclaimer {
  margin-top: 52px;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
}

/* parallax slice */

.parallax-slice {
  height: 220px;
  background-image: linear-gradient(
      rgba(8, 34, 56, 0.15),
      rgba(8, 34, 56, 0.15)
    ),
    url("../images/bottom.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 10px;
}

/* footer */

.site-footer {
  background-color: #06192b;
  color: var(--cream);
  padding: 18px 0;
}

.footer-inner {
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* responsive */

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    gap: 10px 14px;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    min-height: 78vh;
  }

  .parallax-slice {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 54px 0;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .site-logo {
    width: 135px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    min-height: auto;
    padding: 80px 0 42px;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .hero-title .line {
    margin-bottom: 6px;
  }

  .reveal-wipe {
    white-space: normal;
  }

  .lead {
    font-size: 1.08rem;
  }

  .home-copy p,
  .franchise-page p,
  .contact-page p,
  .feature-list li {
    font-size: 1rem;
  }

  .content-block {
    margin-bottom: 48px;
  }

  .price-boxes {
    grid-template-columns: 1fr;
  }

  .form-shell {
    padding: 34px 18px;
    border-radius: 18px;
  }

  .join-form {
    max-width: 100%;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-disclaimer {
    font-size: 0.9rem;
  }

  .submit-button,
  .outline-button {
    width: 100%;
    max-width: 220px;
  }

  .site-nav a {
    font-size: 0.92rem;
  }

  .parallax-slice {
    height: 160px;
  }
}