/* ==========================================================================
   THIN Demo Site — Victory Wellness Oral Semaglutide Spray
   Complete stylesheet with design tokens, typography, components, and responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --thin-lime:     #cad959;  /* primary accent */
  --thin-olive:    #697158;  /* product card bg */
  --thin-charcoal: #43483a;  /* pricing pills, dark blocks */
  --thin-dark:     #35392e;  /* headings, dark sections */
  --thin-text:     #101112;  /* body */
  --thin-cream:    #f4f6ef;  /* light bg */
  --thin-stone:    #e1e3de;  /* page bg, gradient end */
  --thin-cta:      #d95959;  /* Get Started red */
  --thin-border:   #e4e6e0;  /* subtle borders */
}

/* --------------------------------------------------------------------------
   Font Imports
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--thin-text);
  background: #fff;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--thin-dark);
  margin: 0;
}

h1 {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
  line-height: 1.15;
}

h3 {
  font-weight: 600;
  font-size: 22px;
}

h4 {
  font-weight: 600;
  font-size: 16px;
}

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--thin-olive);
  display: block;
  margin-bottom: 12px;
}

.lead {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--thin-text);
  margin-bottom: 32px;
}

p {
  margin: 0 0 16px 0;
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.text-center {
  text-align: center;
}

.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--thin-border);
  height: 80px;
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: inline-flex;
  gap: 40px;
}

.site-nav a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--thin-dark);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.site-nav a:hover {
  color: var(--thin-olive);
  border-bottom-color: var(--thin-olive);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--thin-dark);
  display: block;
}

/* --------------------------------------------------------------------------
   Button System
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 48px;
  border-radius: 6px;
  border: none;
  transition: all 0.2s ease;
}

.btn--cta {
  background: var(--thin-cta);
  color: #fff;
  transform: skewX(-5deg);
  box-shadow: 0 4px 12px rgba(217, 89, 89, 0.25);
}

.btn--cta > span {
  display: inline-block;
  transform: skewX(5deg);
}

.btn--cta:hover {
  background: #c14f4f;
  transform: skewX(-5deg) translateY(-2px);
}

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

/* --------------------------------------------------------------------------
   Hero — Split Variant
   -------------------------------------------------------------------------- */
.hero.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.hero__text {
  background: var(--thin-lime);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__text h1 {
  margin: 0 0 24px 0;
}

.hero__image {
  background: var(--thin-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hero__image img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.hero__image--cover {
  padding: 0;
}

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

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--thin-dark);
  font-weight: 600;
}

.hero-trust li {
  position: relative;
  padding-left: 24px;
}

.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--thin-olive);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Hero — Simple Variant
   -------------------------------------------------------------------------- */
.hero.hero--simple {
  background: var(--thin-lime);
  padding: 56px 0;
  text-align: center;
}

.hero.hero--simple h1 {
  margin: 0;
}

.breadcrumb {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--thin-dark);
  opacity: 0.7;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
  background: var(--thin-lime);
  padding: 96px 0;
}

.pricing-sub {
  text-align: center;
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 48px;
  color: var(--thin-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(101deg, var(--thin-cream) 34%, var(--thin-stone) 60%);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-card__product {
  background: var(--thin-olive);
  border-radius: 10px;
  padding: 32px 24px;
  margin-bottom: 24px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__product img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.pricing-card__brand {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  font-size: 38px;
  color: var(--thin-dark);
  letter-spacing: -1.5px;
  margin: 0;
}

.pricing-card__sub {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--thin-dark);
  letter-spacing: -1px;
  margin: 4px 0;
}

.pricing-card__tag {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 20px;
  color: var(--thin-text);
  margin: 8px 0 20px;
}

.price-pill {
  background: var(--thin-charcoal);
  border-radius: 5px;
  padding: 14px 16px;
  transform: skewX(-5deg);
  margin: 0 auto;
  max-width: 275px;
}

.price-pill__inner {
  transform: skewX(5deg);
  color: var(--thin-cream);
  text-align: center;
}

.price-main {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 36px;
  display: inline;
}

.price-cents {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 22px;
  vertical-align: super;
  margin-left: 2px;
}

.price-each {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 11px;
  margin-left: 4px;
  vertical-align: middle;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 14px;
  color: var(--thin-text);
  margin: 32px 0 24px;
}

.pricing-cta {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Why THIN Section
   -------------------------------------------------------------------------- */
.why-thin {
  background: var(--thin-cream);
  padding: 96px 0;
}

.why-thin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-thin__image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* --------------------------------------------------------------------------
   Check List
   -------------------------------------------------------------------------- */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--thin-border);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--thin-olive);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li svg {
  flex-shrink: 0;
  color: var(--thin-olive);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   How It Works
   -------------------------------------------------------------------------- */
.how-it-works {
  background: #fff;
  padding: 96px 0;
}

.section-sub {
  font-size: 18px;
  color: var(--thin-text);
  opacity: 0.8;
  margin: 12px 0 56px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--thin-lime);
  color: var(--thin-dark);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--thin-text);
  opacity: 0.8;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Product Hero
   -------------------------------------------------------------------------- */
.product-hero {
  padding: 64px 0;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.gallery-main {
  background: var(--thin-cream);
  border-radius: 10px;
  padding: 48px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.gallery-thumb {
  width: 90px;
  height: 90px;
  background: var(--thin-cream);
  border-radius: 8px;
  padding: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.gallery-thumb.is-selected {
  border-color: var(--thin-olive);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__info h1 {
  margin: 12px 0;
}

.product-tagline {
  font-size: 18px;
  color: var(--thin-olive);
  margin-bottom: 24px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}

.price-value {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: var(--thin-dark);
}

.price-label {
  font-size: 14px;
  color: var(--thin-text);
  opacity: 0.7;
}

.tier-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.tier-card {
  border: 2px solid var(--thin-border);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.tier-card:hover {
  border-color: var(--thin-olive);
}

.tier-card.is-selected {
  border-color: var(--thin-olive);
  background: var(--thin-cream);
}

.tier-card__info strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--thin-dark);
}

.tier-card__info span {
  font-size: 13px;
  color: var(--thin-text);
  opacity: 0.7;
}

.tier-card__price {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--thin-dark);
}

.product-benefits {
  margin-top: 40px;
}

.product-benefits li {
  font-size: 16px;
  padding: 12px 0;
}

/* --------------------------------------------------------------------------
   Description Block
   -------------------------------------------------------------------------- */
.description {
  background: #fff;
  padding: 96px 0;
}

.description__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.description__inner h2 {
  margin-bottom: 32px;
}

.description__inner p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

/* --------------------------------------------------------------------------
   About Sections
   -------------------------------------------------------------------------- */
.about-hero .hero__image--cover {
  padding: 0;
}

.story {
  background: #fff;
  padding: 96px 0;
}

.story__inner {
  max-width: 760px;
  margin: 0 auto;
}

.story__inner p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.values {
  background: var(--thin-cream);
  padding: 96px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-accent {
  width: 40px;
  height: 4px;
  background: var(--thin-lime);
  border-radius: 2px;
  margin-bottom: 20px;
}

.value-card h3 {
  margin: 0 0 12px;
}

/* --------------------------------------------------------------------------
   Contact Sections
   -------------------------------------------------------------------------- */
.contact-main {
  padding: 80px 0;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-info {
  text-align: center;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-subhead {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--thin-dark);
  margin-bottom: 12px;
}

.contact-info__image {
  max-width: 320px;
  margin: 32px auto;
  border-radius: 10px;
}

.contact-details {
  max-width: 380px;
  margin: 32px auto 0;
  text-align: center;
}

.contact-detail {
  margin-bottom: 24px;
}

.detail-label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--thin-olive);
  margin-bottom: 4px;
}

.detail-value {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--thin-dark);
  line-height: 1.5;
}

.detail-note {
  display: block;
  font-size: 12px;
  color: var(--thin-text);
  opacity: 0.6;
  margin-top: 4px;
  font-style: italic;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  background: var(--thin-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact-socials a:hover {
  background: var(--thin-olive);
}

/* --------------------------------------------------------------------------
   Contact Form
   -------------------------------------------------------------------------- */
.contact-form-wrap {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-field {
  margin-bottom: 20px;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field label {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--thin-dark);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--thin-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: #fafaf8;
  transition: border-color 0.2s, background 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--thin-olive);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--thin-text);
  margin: 16px 0 24px;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--thin-dark);
  color: var(--thin-cream);
  padding: 64px 0 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
}

.site-footer__logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.site-footer__copy {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.6;
}

.site-footer__col h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
  color: #fff;
}

.site-footer__col ul li a {
  font-size: 14px;
  padding: 8px 0;
  display: block;
  color: var(--thin-cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.site-footer__col ul li a:hover {
  opacity: 1;
  color: var(--thin-lime);
}

.site-footer__col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Mobile Responsive (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 32px 24px;
    border-bottom: 1px solid var(--thin-border);
    gap: 24px;
    z-index: 99;
  }

  .hero.hero--split {
    grid-template-columns: 1fr;
  }

  .hero__text {
    padding: 64px 24px;
  }

  .hero__image {
    padding: 48px 24px;
    min-height: 380px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
  }

  .why-thin__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .about-hero {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .site-footer__col h4 {
    text-align: center;
  }

  .site-footer__col ul li a {
    text-align: center;
  }

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

/* --------------------------------------------------------------------------
   Tiny Screens (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 16px 32px;
    font-size: 14px;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}
