/* ==========================================================================
   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);
}
/* ── Header login button — plain style matching ABOUT / CONTACT ── */
.site-nav__login {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  background: none;
  color: var(--thin-dark) !important;
  border-radius: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid transparent !important;
  transition: color 0.2s, border-bottom-color 0.2s;
  white-space: nowrap;
}
.site-nav__login:hover {
  background: none !important;
  color: var(--thin-olive) !important;
  border-bottom-color: var(--thin-olive) !important;
  opacity: 1 !important;
}


.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 v2 — matches victorywellnessonline.com
   -------------------------------------------------------------------------- */
.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;
  align-items: start;
}

/* Col 1 brand */
.site-footer__col--brand { display: flex; flex-direction: column; align-items: flex-start; }

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

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

/* Socials */
.site-footer__socials { display: flex; gap: 10px; margin-bottom: 20px; }
.site-footer__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--thin-cream);
  transition: background 0.2s;
}
.site-footer__socials a:hover { background: rgba(255,255,255,0.25); }

/* LegitScript */
.site-footer__legitscript { margin-top: 4px; }
.site-footer__legitscript a { display: inline-flex; }

/* Col headers */
.site-footer__col h4 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600; font-size: 15px;
  text-transform: capitalize; letter-spacing: 0.5px;
  margin: 0 0 20px; color: #fff;
}

/* Customer Services links */
.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); }

/* Menu accordion */
.site-footer__menu { list-style: none; margin: 0; padding: 0; }
.site-footer__menu > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-footer__menu > li:last-child { border-bottom: none; }

.site-footer__accordion-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 0;
  background: none; border: none; outline: none;
  -webkit-appearance: none; appearance: none;
  box-shadow: none; border-radius: 0;
  color: var(--thin-cream); font-family: 'Quicksand', sans-serif;
  font-weight: 500; font-size: 14px; cursor: pointer;
  text-align: left; opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.site-footer__accordion-btn:hover { opacity: 1; color: var(--thin-lime); }
.site-footer__accordion-btn[aria-expanded="true"] { color: var(--thin-lime); opacity: 1; }

.site-footer__chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.site-footer__accordion-btn[aria-expanded="true"] .site-footer__chevron { transform: rotate(180deg); }

.site-footer__submenu { list-style: none; margin: 0; padding: 0 0 8px 12px; }
.site-footer__submenu[hidden] { display: none; }
.site-footer__submenu li a {
  font-size: 13px; padding: 7px 0; display: block;
  color: var(--thin-cream); opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.site-footer__submenu li a:hover { opacity: 1; color: var(--thin-lime); }

.site-footer__menu-link {
  display: block; padding: 12px 0;
  font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 14px;
  color: var(--thin-cream); opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.site-footer__menu-link:hover { opacity: 1; color: var(--thin-lime); }
.site-footer__menu-link--thin { color: var(--thin-lime) !important; opacity: 1; font-weight: 600; }

/* Footer bottom */
.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;
}

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

/* --------------------------------------------------------------------------
   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; }
  /* Footer mobile */
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__col--brand { align-items: center; text-align: center; }
  .site-footer__col h4 { text-align: center; }
  .site-footer__col ul li a { text-align: center; }
  .site-footer__legitscript { display: flex; justify-content: center; }
  .site-footer__socials { justify-content: center; }
  /* Login button full-width on mobile nav */
  .site-nav.is-open .site-nav__login {
    width: 100%; justify-content: center;
    padding: 12px 18px; font-size: 14px;
  }
  .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; }
}

/* ══ NEW HERO v2 (Figma 2026-05-20) ══ */
.thin-hero-v2 {
  position: relative;
  min-height: 560px;
  background: #cad959;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.thin-hero-v2__img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
}
.thin-hero-v2__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(-66deg, rgba(202,217,89,0) 46%, #cad959 46%);
  z-index: 1;
}
.thin-hero-v2__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.thin-hero-v2__card {
  max-width: 580px;
  background: linear-gradient(to bottom, #f4f6ef, rgba(244,246,239,0.85));
  border-radius: 10px;
  box-shadow: 10px 10px 10px -10px rgba(0,0,0,0.4);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.thin-hero-v2__h1 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: clamp(40px, 4.5vw, 63px); color: #35392e; letter-spacing: -0.6px; line-height: 1.2; text-align: center; margin: 0; }
.thin-hero-v2__subtitle { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: clamp(22px, 2.8vw, 36px); color: #697158; line-height: 1.3; text-align: center; margin: 0; }
.thin-hero-v2__tagline { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: clamp(14px, 1.5vw, 20px); color: #101112; letter-spacing: -0.5px; text-align: center; text-transform: capitalize; margin: 0; }

/* ══ PRODUCT CARDS v2 ══ */
.thin-products-v2 { background: #cad959; padding: 24px 0; }
.thin-products-v2__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; }
.thin-products-v2__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 20px; }
.thin-product-card-v2 { background: linear-gradient(101deg, #f4f6ef 34%, #e1e3de 60%); border-radius: 10px; padding: 22px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.thin-product-card-v2__img-wrap { background: #697158; border-radius: 10px; width: 100%; min-height: 220px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.thin-product-card-v2__img-wrap img { max-width: 90px; max-height: 180px; object-fit: contain; }
.thin-product-card-v2__name { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 32px; color: #35392e; letter-spacing: -1.5px; text-align: center; margin: 0; line-height: 1.1; }
.thin-product-card-v2__ingredient { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 22px; color: #35392e; letter-spacing: -1px; text-align: center; margin: 0; line-height: 1.2; }
.thin-product-card-v2__from { font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 18px; color: #101112; text-align: center; margin: 0; }
.thin-product-card-v2__price-wrap { display: flex; justify-content: center; width: 100%; cursor: pointer; }
.thin-product-card-v2__price-badge { background: #43483a; border-radius: 5px; padding: 10px 20px; display: flex; align-items: baseline; justify-content: center; width: 100%; max-width: 260px; transform: skewX(5deg); transition: background 0.2s; }
.thin-product-card-v2__price-badge:hover { background: #35392e; }
.thin-product-card-v2__price-badge .price-main { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 34px; color: #f4f6ef; line-height: 1.3; }
.thin-product-card-v2__price-badge .price-cents { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px; color: #f4f6ef; vertical-align: super; line-height: 1; }
.thin-products-v2__disclaimer { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 14px; color: #101112; text-align: center; margin-bottom: 20px; }
.thin-products-v2__cta { display: block; width: 100%; background: #d95959; border: none; border-radius: 5px; padding: 13px 24px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 22px; color: white; text-align: center; text-transform: capitalize; cursor: pointer; letter-spacing: 0.5px; }
.thin-products-v2__cta:hover { background: #c04040; }
.thin-product-card-v2__cta {
  display: block;
  width: 100%;
  background: #d95959;
  border: none;
  border-radius: 5px;
  padding: 10px 16px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.thin-product-card-v2__cta:hover { background: #c04040; }

/* ══════════════════════════════════════════════════════
   VW HOMEPAGE SECTIONS
   ══════════════════════════════════════════════════════ */

/* ── Trust Bar ── */
.vw-trust-bar { background: #35392e; padding: 8px 0; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.vw-trust-bar__item { display: flex; align-items: center; gap: 10px; color: #f4f6ef; font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 16px; white-space: nowrap; }
.vw-trust-bar__item svg { flex-shrink: 0; }

/* ── Lineup ── */
.vw-lineup { background: #e1e3de; padding: 24px 0; }
.vw-lineup__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 10px; overflow: hidden; min-height: 480px; }
.vw-lineup__image { background: #e1e3de; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.vw-lineup__image img { max-width: 100%; max-height: 440px; width: auto; height: auto; object-fit: contain; }
.vw-lineup__text { background: #35392e; display: flex; align-items: center; justify-content: center; padding: 48px 40px; box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.5); }
.vw-lineup__text p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 20px; color: #f4f6ef; text-align: center; line-height: 1.6; margin: 0; }

/* ── What Makes THIN Different ── */
.vw-different { background: #e1e3de; padding: 45px 0; }
.vw-different__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vw-different__text h2 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 30px; color: #222529; letter-spacing: -1.5px; margin-bottom: 16px; }
.vw-different__text h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 25px; color: #222529; letter-spacing: -1.25px; margin-bottom: 16px; }
.vw-different__text p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 18px; color: #101112; line-height: 1.6; margin-bottom: 24px; }
.vw-check-list { background: #f0f1ee; border-radius: 10px; padding: 15px; list-style: none; margin: 0; }
.vw-check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #35392e; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px; color: #697158; line-height: 1.4; }
.vw-check-list li:last-child { border-bottom: none; }
.vw-check-list li svg { flex-shrink: 0; margin-top: 2px; }
.vw-different__image img { width: 100%; border-radius: 10px; object-fit: cover; max-height: 600px; }

/* ── A Smart Alternative ── */
.vw-alternative { background: #e1e3de; padding: 0; }
.vw-alternative__inner-wrap { max-width: 1110px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; border-radius: 10px; overflow: hidden; }
.vw-alternative__image { overflow: hidden; max-height: 560px; }
.vw-alternative__image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; max-height: 560px; }
.vw-alternative__text { background: #35392e; padding: 56px; display: flex; align-items: center; }
.vw-alternative__text-inner { width: 100%; }
.vw-alternative__text h2 { font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 42px; color: #cad959; letter-spacing: -2.1px; line-height: 1.1; margin-bottom: 20px; text-transform: capitalize; }
.vw-alternative__text > .vw-alternative__text-inner > p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 20px; color: #f4f6ef; line-height: 1.6; margin-bottom: 16px; }
.vw-alternative__list { list-style: disc; padding-left: 24px; margin: 0; }
.vw-alternative__list li { font-family: 'Open Sans', sans-serif; font-weight: 400; font-size: 18px; color: #ffffff; line-height: 1.6; letter-spacing: -1px; margin-bottom: 12px; }

/* ── 3 Steps ── */
.vw-steps { background: #f4f6ef; padding: 50px 0; }
.vw-steps__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; }
.vw-steps__title { text-align: center; margin-bottom: 50px; }
.vw-steps__title h2 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: clamp(42px, 5.5vw, 70px); color: #101112; letter-spacing: -3.5px; line-height: 1.1; margin: 0; }
.vw-steps__title h2 span { display: block; }
.vw-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
.vw-step-card { background: #f0f1ee; border: 2px solid #cdcfcf; border-radius: 10px; padding: 30px; text-align: center; }
.vw-step-card__image { width: 100%; max-width: 243px; margin: 0 auto 22px; display: block; border-radius: 6px; object-fit: contain; }
.vw-step-card__label { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.vw-step-card__label img { width: 40px; height: 40px; display: inline; }
.vw-step-card__label h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 22px; color: #35392e; letter-spacing: -1.25px; margin: 0; }
.vw-step-card p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 14px; color: #101112; line-height: 1.7; letter-spacing: -0.5px; margin: 0; }
.vw-steps__cta { display: block; width: 100%; background: #d95959; border: none; border-radius: 5px; padding: 13px 24px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 22px; color: white; text-align: center; text-transform: capitalize; cursor: pointer; }
.vw-steps__cta:hover { background: #c04040; }

/* ── VW Special ── */
.vw-special { background: #f0f1ee; padding: 45px 0; }
.vw-special__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; }
.vw-special__text h2 { font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: clamp(28px, 3.5vw, 45px); color: #101112; line-height: 1.1; margin-bottom: 32px; }
.vw-special__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.vw-special__list li { display: flex; align-items: flex-start; gap: 12px; font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 18px; color: #101112; line-height: 1.5; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.vw-special__list li:last-child { border-bottom: none; }
.vw-special__list li svg { flex-shrink: 0; margin-top: 2px; }
.vw-special__image img { width: 100%; border-radius: 10px; object-fit: cover; }

/* ── Research ── */
.vw-research { background: #f4f6ef; padding: 45px 0; }
.vw-research__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.vw-research__image img { width: 330px; height: 330px; border-radius: 10px; object-fit: cover; }
.vw-research__text h2 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 34px; color: #101112; letter-spacing: -1.82px; text-align: center; margin-bottom: 20px; }
.vw-research__text > p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 17px; color: #101112; line-height: 1.6; margin-bottom: 16px; }
.vw-research__list { list-style: disc; padding-left: 24px; margin: 0; }
.vw-research__list li { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 17px; color: #101112; line-height: 1.6; margin-bottom: 6px; }

/* ── Safety ── */
.vw-safety { background: #f4f6ef; padding: 0 0 45px; }
.vw-safety__inner { max-width: 1110px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
.vw-safety__text { padding: 56px 56px 56px 0; }
.vw-safety__text h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 28px; color: #101112; letter-spacing: -1.47px; text-align: center; margin-bottom: 24px; }
.vw-safety__text strong { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 17px; color: #101112; display: block; margin-bottom: 12px; }
.vw-safety__text p { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 17px; color: #101112; line-height: 1.6; margin-bottom: 16px; }
.vw-safety__list { list-style: disc; padding-left: 24px; margin: 0; }
.vw-safety__list li { font-family: 'Quicksand', sans-serif; font-weight: 400; font-size: 17px; color: #101112; line-height: 1.7; margin-bottom: 4px; }
.vw-safety__image { padding-top: 56px; }
.vw-safety__image img { width: 300px; height: 300px; border-radius: 10px; object-fit: cover; }

/* ══════════════════════════════════════════════════════
   TABLET (max-width: 900px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vw-lineup__inner { min-height: auto; }
  .vw-different__inner { grid-template-columns: 1fr; }
  .vw-alternative__inner-wrap { grid-template-columns: 1fr; }
  .vw-alternative__image { max-height: 360px; }
  .vw-alternative__text { padding: 40px 32px; }
  .vw-steps__grid { grid-template-columns: repeat(2, 1fr); }
  .vw-special__inner { grid-template-columns: 1fr; }
  .vw-research__inner { grid-template-columns: 1fr; }
  .vw-research__image img { width: 100%; height: 260px; }
  .vw-safety__inner { grid-template-columns: 1fr; }
  .vw-safety__text { padding: 40px 0 0; }
  .vw-safety__image { padding-top: 0; }
  .vw-safety__image img { width: 100%; height: 220px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE (max-width: 768px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero: exact match to original site
     background-size: contain + background-position: top right (confirmed from DevTools)
     Gradient only covers bottom 25% — image shows clean with no tint */
  .thin-hero-v2 {
    min-height: 512px;
    align-items: flex-end;
    background-image: url('/thin/images/hero-mobile.webp');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    background-color: #cad959;
  }
  .thin-hero-v2__img { display: none; }
  .thin-hero-v2__gradient {
    background: linear-gradient(to top, #cad959 25%, transparent 50%);
  }
  .thin-hero-v2__inner { padding: 0; width: 100%; }
  .thin-hero-v2__card {
    max-width: 75%;
    border-radius: 10px;
    background: rgba(244,246,239,0.90);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    padding: 20px 20px 24px;
    gap: 10px;
    margin: 0 auto 20px;
  }
  .thin-hero-v2__h1 { font-size: 28px; color: #35392e; }
  .thin-hero-v2__subtitle { font-size: 18px; }
  .thin-hero-v2__tagline { font-size: 13px; }

  /* Product cards */
  .thin-products-v2__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 20px; }

  /* Trust bar — 2x2 grid matching original site */
  .vw-trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    padding: 12px 16px;
    justify-items: start;
  }
  .vw-trust-bar__item { font-size: 13px; white-space: normal; gap: 8px; }

  /* Lineup */
  .vw-lineup { padding: 0; }
  .vw-lineup__inner { grid-template-columns: 1fr; border-radius: 0; min-height: auto; }
  .vw-lineup__image { border-radius: 0; padding: 32px 24px; }
  .vw-lineup__image img { max-height: 300px; }
  .vw-lineup__text { border-radius: 0; padding: 32px 24px; }
  .vw-lineup__text p { font-size: 17px; }

  /* What Makes THIN Different */
  .vw-different { padding: 48px 0; }
  .vw-different__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .vw-different__text h2 { font-size: 24px; }
  .vw-different__text h3 { font-size: 20px; }
  .vw-different__image { order: -1; }
  .vw-check-list li { font-size: 16px; }

  /* A Smart Alternative */
  .vw-alternative { padding: 0; }
  .vw-alternative__inner-wrap { grid-template-columns: 1fr; border-radius: 0; min-height: auto; }
  .vw-alternative__image { max-height: 280px; border-radius: 0; }
  .vw-alternative__text { padding: 32px 20px; border-radius: 0; }
  .vw-alternative__text h2 { font-size: 28px; }
  .vw-alternative__text > .vw-alternative__text-inner > p { font-size: 16px; }
  .vw-alternative__list li { font-size: 15px; }

  /* 3 Steps — 2 cols */
  .vw-steps { padding: 48px 0; }
  .vw-steps__inner { padding: 0 16px; }
  .vw-steps__title h2 { font-size: 36px; letter-spacing: -2px; }
  .vw-steps__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
  .vw-step-card { padding: 16px; }
  .vw-step-card__image { max-height: 160px; margin-bottom: 12px; }
  .vw-step-card__label h3 { font-size: 18px; }
  .vw-step-card__label img { width: 32px; height: 32px; }

  /* VW Special */
  .vw-special { padding: 48px 0; }
  .vw-special__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .vw-special__text h2 { font-size: 26px; }
  .vw-special__list li { font-size: 15px; }
  .vw-special__image { order: -1; }
  .vw-special__image img { max-height: 240px; }

  /* Research */
  .vw-research { padding: 48px 0; }
  .vw-research__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
  .vw-research__image img { width: 100%; height: 200px; }
  .vw-research__text h2 { font-size: 24px; }

  /* Safety */
  .vw-safety { padding: 0 0 48px; }
  .vw-safety__inner { grid-template-columns: 1fr; gap: 0; padding: 0 20px; }
  .vw-safety__text { padding: 32px 0 0; }
  .vw-safety__image { padding-top: 20px; }
  .vw-safety__image img { width: 100%; height: 200px; }
}

/* ══════════════════════════════════════════════════════
   SMALL MOBILE (max-width: 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .thin-hero-v2 { min-height: 440px; }
  .thin-hero-v2__h1 { font-size: 24px; }
  .thin-hero-v2__subtitle { font-size: 16px; }
  .vw-trust-bar { padding: 10px 12px; gap: 10px 6px; }
  .vw-trust-bar__item { font-size: 12px; }
  .vw-steps__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 24px; }
  .vw-step-card__image { max-height: 200px; }
}


/* ── About page hero — background-image (fixes portrait img stretch) ── */
.about-hero__bg {
  background-image: url('/thin/images/pharmacist-with-patient.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 480px;
}
@media (max-width: 768px) {
  .about-hero__bg { min-height: 280px; }
}
/* ── VW brand overrides for intake modal (scoped — no effect on other tenants) ── */
.serena-intake-overlay .serena-intake-progress-fill { background: #cad959; }
.serena-intake-overlay .serena-intake-btn-primary { background: #d95959; }
.serena-intake-overlay .serena-intake-btn-primary:hover { background: #c04040; opacity: 1; }
.serena-intake-overlay .serena-intake-hiw-num { background: #35392e; }
.serena-intake-overlay .serena-intake-subtitle strong { color: #35392e; }
.serena-intake-overlay .serena-intake-tier-card--selected {
  border-color: #35392e; background: #f4f6ef; box-shadow: 0 0 0 1px #35392e;
}
.serena-intake-overlay .serena-intake-tier-dot--active { border-color: #35392e; }
.serena-intake-overlay .serena-intake-tier-dot--active::after { background: #35392e; }
.serena-intake-overlay .serena-intake-tier-badge { background: #35392e; }
.serena-intake-overlay .serena-intake-input:focus,
.serena-intake-overlay .serena-intake-select:focus {
  border-color: #35392e; box-shadow: 0 0 0 3px rgba(53,57,46,0.12);
}

/* ══ CONTACT PAGE ══ */
.contact-hero {
  background: var(--thin-lime);
  padding: 55px 24px 56px;
  text-align: center;
}
.contact-hero .breadcrumb {
  font-family: 'Quicksand', sans-serif; font-size: 12px; font-weight: 500;
  color: var(--thin-dark); opacity: 0.7;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.contact-hero h1 {
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 52px;
  color: var(--thin-dark); letter-spacing: -1.5px;
}

.contact-main { padding: 80px 24px 96px; }
.contact-main__grid {
  max-width: 1152px; margin: 0 auto;
  display: grid; grid-template-columns: 42% 1fr; gap: 64px;
  align-items: start;
}

.contact-info { text-align: center; }
.contact-info h2 {
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 40px;
  color: var(--thin-dark); letter-spacing: -1px; margin-bottom: 8px;
}
.contact-subhead {
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--thin-dark); margin-bottom: 12px;
}
.contact-info > p { font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.contact-info__image {
  width: 320px; height: 340px; object-fit: cover;
  border-radius: 10px; margin: 0 auto 32px;
}

.contact-details {
  max-width: 380px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 23px;
  text-align: center;
}
.detail-label {
  display: block;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--thin-olive); text-transform: uppercase; letter-spacing: 1.5px;
  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; margin-top: 4px;
  font-family: 'Open Sans', sans-serif; font-style: italic; font-size: 12px;
  color: var(--thin-text); opacity: 0.6;
}

.contact-socials {
  display: flex; gap: 12px; justify-content: center; margin-top: 28px;
}
.contact-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 20px;
  background: var(--thin-dark); color: #fff;
  transition: opacity 0.2s;
}
.contact-socials a:hover { opacity: 0.8; }

.contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 40px;
}
.form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; margin-bottom: 6px;
  font-family: 'Quicksand', sans-serif; font-weight: 500; font-size: 13px;
  color: var(--thin-dark);
}
.form-field label .req { color: var(--thin-cta); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%; height: 47px;
  background: #fafaf8; border: 1px solid var(--thin-border); border-radius: 6px;
  padding: 0 14px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--thin-text);
  outline: none; transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--thin-olive); }
.form-field textarea { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }

.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.radio-option {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--thin-text);
}
.radio-option input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--thin-dark); cursor: pointer;
}

.consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 24px; cursor: pointer;
}
.consent input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; margin-top: 2px;
  accent-color: var(--thin-dark); cursor: pointer;
}
.consent span {
  font-family: 'Open Sans', sans-serif; font-size: 12px;
  color: var(--thin-text); line-height: 1.5; opacity: 0.8;
}

.btn-submit {
  display: block; width: 100%;
  background: var(--thin-cta); color: #fff; border: none; cursor: pointer;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 18px 48px; border-radius: 6px;
  box-shadow: 0 4px 6px rgba(217,89,89,0.25);
  transform: skewX(-5deg);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { background: #c14f4f; box-shadow: 0 6px 10px rgba(217,89,89,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-submit span { display: inline-block; transform: skewX(5deg); }

.form-message {
  padding: 12px 16px; border-radius: 6px; margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; display: none;
}
.form-message--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message--error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }

/* Contact responsive */
@media (max-width: 960px) {
  .contact-main__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info h2 { font-size: 32px; }
}
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 38px; }
  .contact-form-wrap { padding: 24px; }
  .form-row--2col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .contact-hero h1 { font-size: 32px; }
  .contact-info h2 { font-size: 28px; }
  .contact-info__image { width: 100%; height: auto; }
}
