/* ============================================================
   Luxury Home Hacks — Master Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Brand Tokens (Custom Properties) --- */
:root {
  /* Colors */
  --obsidian:    #0a0a0a;
  --platinum:    #c0c0c0;
  --graphite:    #6b6b6b;
  --deep-teal:   #1a6b6a;
  --bone:        #f5f0eb;
  --white:       #ffffff;
  --error:       #b33a3a;
  --success:     #2d7a4f;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing scale (8px base) */
  --sp-xs:   0.25rem;   /* 4  */
  --sp-sm:   0.5rem;    /* 8  */
  --sp-md:   1rem;      /* 16 */
  --sp-lg:   1.5rem;    /* 24 */
  --sp-xl:   2rem;      /* 32 */
  --sp-2xl:  3rem;      /* 48 */
  --sp-3xl:  4rem;      /* 64 */
  --sp-4xl:  6rem;      /* 96 */

  /* Layout */
  --max-width: 1200px;
  --nav-height: 96px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--obsidian);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
video.hero__video { max-width: none; height: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.section {
  padding: var(--sp-4xl) 0;
}
.section--dark {
  background: var(--obsidian);
  color: var(--bone);
}
.section--bone {
  background: var(--bone);
}
.section--teal {
  background: var(--deep-teal);
  color: var(--bone);
}

/* Founders Grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3xl);
  max-width: 900px;
  margin: 0 auto;
}
.founder-card {
  text-align: center;
}
.founder-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-size: 0.875rem;
  margin-bottom: var(--sp-xl);
  overflow: hidden;
}
.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-card h3 {
  margin-bottom: var(--sp-xs);
}
.founder-card__title {
  color: var(--deep-teal);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-lg);
}
.founder-card__bio {
  color: var(--platinum);
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: left;
}
.text-center { text-align: center; }
.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.875rem 2rem;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn--primary {
  background: var(--deep-teal);
  color: var(--white);
}
.btn--primary:hover {
  background: #155857;
}
.btn--outline {
  border: 1px solid var(--bone);
  color: var(--bone);
  background: transparent;
}
.btn--outline:hover {
  background: var(--bone);
  color: var(--obsidian);
}
.btn--outline-dark {
  border: 1px solid var(--obsidian);
  color: var(--obsidian);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--obsidian);
  color: var(--bone);
}
.btn--bone {
  background: var(--bone);
  color: var(--obsidian);
}
.btn--bone:hover {
  background: #ebe5de;
}
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--obsidian);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.nav--transparent {
  background: transparent;
}
.nav--transparent.scrolled,
.nav.scrolled {
  background: var(--obsidian);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.nav__logo-img {
  height: 80px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bone);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--deep-teal);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deep-teal);
  transition: width var(--duration) var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__cta {
  margin-left: var(--sp-md);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  z-index: 1001;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--bone);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--obsidian);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--sp-3xl) var(--sp-2xl);
    gap: var(--sp-lg);
    transition: right var(--duration) var(--ease);
  }
  .nav__links.open {
    right: 0;
  }
  .nav__links a { font-size: 0.875rem; }
  .nav__cta { margin-left: 0; margin-top: var(--sp-md); }
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
}
.nav__overlay.open {
  display: block;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  color: var(--bone);
  padding: var(--sp-4xl) var(--sp-lg);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

/* Reduced motion: pause video, show poster */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero { background: var(--obsidian) url('../images/hero-poster.jpg') center/cover no-repeat; }
}

/* Mobile: show poster image instead of video to save bandwidth */
@media (max-width: 768px) {
  .hero__video { display: none; }
  .hero { background: var(--obsidian) url('../images/hero-poster.jpg') center/cover no-repeat; }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__eyebrow {
  display: block;
  margin-bottom: var(--sp-lg);
}
.hero h1 {
  margin-bottom: var(--sp-lg);
}
.hero__sub {
  font-size: 1.125rem;
  color: var(--platinum);
  margin-bottom: var(--sp-2xl);
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-height) + var(--sp-3xl)) 0 var(--sp-3xl);
  background: var(--obsidian);
  color: var(--bone);
  text-align: center;
}
.page-hero h1 {
  margin-bottom: var(--sp-md);
}
.page-hero p {
  color: var(--platinum);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* --- Proof Strip --- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  text-align: center;
  padding: var(--sp-3xl) 0;
}
.proof-strip__item h3 {
  margin-bottom: var(--sp-sm);
}
.proof-strip__item p {
  color: var(--graphite);
  font-size: 0.9375rem;
}
.proof-strip__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-md);
  color: var(--deep-teal);
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-xl);
}
.card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 0.875rem;
  overflow: hidden;
  position: relative;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card__img img {
  transform: scale(1.05);
}
.card__body {
  padding: var(--sp-lg);
}
.card__body h4 {
  margin-bottom: var(--sp-xs);
}
.card__body p {
  color: var(--graphite);
  font-size: 0.875rem;
}
.card__link {
  display: inline-block;
  margin-top: var(--sp-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deep-teal);
  transition: color var(--duration) var(--ease);
}
.card__link:hover {
  color: #155857;
}

/* --- Steps / How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
  text-align: center;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--deep-teal);
  color: var(--deep-teal);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--sp-lg);
}
.step h4 {
  margin-bottom: var(--sp-sm);
}
.step p {
  color: var(--graphite);
  font-size: 0.9375rem;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-xl);
}
.pricing-card {
  border: 1px solid #e0dcd7;
  padding: var(--sp-2xl);
  text-align: center;
  position: relative;
  transition: border-color var(--duration) var(--ease);
}
.pricing-card:hover {
  border-color: var(--deep-teal);
}
.pricing-card--featured {
  border-color: var(--deep-teal);
  background: var(--bone);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-teal);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.375rem 1rem;
}
.pricing-card h3 {
  margin-bottom: var(--sp-sm);
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: var(--sp-lg);
  color: var(--deep-teal);
}
.pricing-card__price span {
  font-size: 1rem;
  color: var(--graphite);
  font-family: var(--font-body);
}
.pricing-card ul {
  text-align: left;
  margin-bottom: var(--sp-xl);
}
.pricing-card li {
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid #e0dcd7;
  font-size: 0.9375rem;
  color: var(--graphite);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--deep-teal);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-xl);
}
.testimonial {
  padding: var(--sp-xl);
  border-left: 2px solid var(--deep-teal);
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}
.testimonial__author {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}

/* --- Newsletter / Opt-in --- */
.optin {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.optin h2 {
  margin-bottom: var(--sp-md);
}
.optin p {
  color: var(--platinum);
  margin-bottom: var(--sp-xl);
}
.optin__form {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  justify-content: center;
}
.optin__form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: var(--bone);
  font-size: 0.875rem;
}
.optin__form input::placeholder {
  color: var(--graphite);
}

/* --- Instagram Grid --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-grid__item {
  aspect-ratio: 1;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 0.75rem;
  overflow: hidden;
  position: relative;
}
.insta-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.3);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.insta-grid__item:hover::after {
  opacity: 1;
}

/* --- Footer --- */
.footer {
  background: var(--obsidian);
  color: var(--bone);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-3xl);
}
.footer__logo-img {
  height: 100px;
  width: auto;
  margin-bottom: var(--sp-sm);
}
.footer__brand p {
  color: var(--graphite);
  font-size: 0.875rem;
  margin-top: var(--sp-md);
  max-width: 280px;
}
.footer h5 {
  margin-bottom: var(--sp-md);
  color: var(--platinum);
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--graphite);
  padding: var(--sp-xs) 0;
  transition: color var(--duration) var(--ease);
}
.footer__col a:hover {
  color: var(--bone);
}
.footer__social {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--graphite);
  color: var(--graphite);
  font-size: 0.75rem;
  transition: all var(--duration) var(--ease);
}
.footer__social a:hover {
  border-color: var(--bone);
  color: var(--bone);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}
.footer__bottom p {
  font-size: 0.75rem;
  color: var(--graphite);
}
.footer__bottom a {
  font-size: 0.75rem;
  color: var(--graphite);
  transition: color var(--duration) var(--ease);
}
.footer__bottom a:hover {
  color: var(--bone);
}
.footer__legal-links {
  display: flex;
  gap: var(--sp-lg);
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--sp-lg);
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-sm);
  color: var(--graphite);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e0dcd7;
  font-size: 0.9375rem;
  transition: border-color var(--duration) var(--ease);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--deep-teal);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
  justify-content: center;
}
.filter-bar button {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1.25rem;
  border: 1px solid #e0dcd7;
  transition: all var(--duration) var(--ease);
}
.filter-bar button:hover,
.filter-bar button.active {
  background: var(--obsidian);
  color: var(--bone);
  border-color: var(--obsidian);
}

/* --- Product Card (Shop) --- */
.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--duration) var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__img {
  aspect-ratio: 1;
  background: var(--bone);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 0.875rem;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__img--placeholder::before {
  content: '';
  display: block;
  width: 48px;
  height: 48px;
  background: var(--platinum);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.4;
}
.product-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.product-card:hover .product-card__hover {
  opacity: 1;
}
.product-card__body {
  padding: var(--sp-lg);
}
.product-card__body h4 {
  font-size: 1rem;
  margin-bottom: var(--sp-xs);
}
.product-card__tagline {
  font-size: 0.8125rem;
  color: var(--graphite);
  font-style: italic;
  margin-bottom: var(--sp-sm);
}
.product-card__price {
  font-weight: 600;
  font-size: 0.9375rem;
}

/* --- Accordion (FAQ) --- */
.accordion {
  max-width: 720px;
  margin: 0 auto;
}
.accordion__item {
  border-bottom: 1px solid #e0dcd7;
}
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-lg) 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.accordion__trigger::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--deep-teal);
  transition: transform var(--duration) var(--ease);
}
.accordion__trigger.open::after {
  content: '−';
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion__content__inner {
  padding-bottom: var(--sp-lg);
  color: var(--graphite);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Tabs (Legal) --- */
.tabs {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
  border-bottom: 1px solid #e0dcd7;
}
.tabs button {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  color: var(--graphite);
}
.tabs button:hover,
.tabs button.active {
  color: var(--obsidian);
  border-bottom-color: var(--deep-teal);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tab-panel h3 {
  margin-bottom: var(--sp-md);
  margin-top: var(--sp-xl);
}
.tab-panel h3:first-child {
  margin-top: 0;
}
.tab-panel p,
.tab-panel li {
  color: var(--graphite);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.tab-panel ul {
  margin: var(--sp-md) 0;
  padding-left: var(--sp-lg);
}
.tab-panel li {
  padding: var(--sp-xs) 0;
  list-style: disc;
}

/* --- Lookbook Grid --- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--sp-md);
}
.lookbook-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bone);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
}
.lookbook-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-xl) var(--sp-lg);
  background: linear-gradient(transparent, rgba(10,10,10,.8));
  color: var(--bone);
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
}
.lookbook-item:hover .lookbook-item__overlay {
  transform: translateY(0);
}

/* --- Before / After --- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}
.before-after__panel {
  aspect-ratio: 16/10;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  position: relative;
}
.before-after__label {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--obsidian);
  color: var(--bone);
  padding: 0.375rem 0.75rem;
}

/* --- Calendly Placeholder --- */
.calendly-placeholder {
  border: 2px dashed #e0dcd7;
  padding: var(--sp-3xl);
  text-align: center;
  color: var(--graphite);
}
.calendly-placeholder p {
  font-size: 0.875rem;
}

/* --- Two-column layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.split--reverse {
  direction: rtl;
}
.split--reverse > * {
  direction: ltr;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-2xl);
}
.section-header h2 {
  margin-bottom: var(--sp-md);
}
.section-header p {
  color: var(--graphite);
  font-size: 1.0625rem;
}

/* ============================================================
   Responsive
   ============================================================ */

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

@media (max-width: 768px) {
  .section { padding: var(--sp-3xl) 0; }
  .founders-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .founder-card__photo {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .steps {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .split--reverse { direction: ltr; }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .before-after {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer__legal-links {
    justify-content: center;
  }
  .lookbook-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-md); }
  .hero { padding: var(--sp-3xl) var(--sp-md); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
