/* =============================================
   LIV FREE ATELIER — Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300;1,400&display=swap');

:root {
  --linen: #FAF9F6;
  --coffee: #574C3F;
  --gold: #D4AF37;
  --taupe: #B9A590;
  --sage: #707957;
  --dark: #1A1612;
  --dark2: #231F1A;
  --dark3: #2C2520;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--linen);
  color: var(--coffee);
  line-height: 1.9;
  font-size: 16px;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.site-header {
  background: var(--dark);
  padding: 1.2rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--taupe);
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--linen); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--taupe);
  margin: 5px 0;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
  background: var(--dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 4vw;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.04) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--linen);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-image {
  display: block;
  max-width: 600px;
  margin: 0 auto 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.hero-image:hover {
  transform: scale(1.015);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.hero-sub-mechanism {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250,249,246,0.75);
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   SECTIONS
   ============================================= */

.section-dark {
  background: var(--dark);
  color: var(--linen);
  padding: 5rem 4vw;
}

.section-linen {
  background: var(--linen);
  color: var(--coffee);
  padding: 5rem 4vw;
}

.section-dark2 {
  background: var(--dark2);
  color: var(--linen);
  padding: 5rem 4vw;
}

.container { max-width: 900px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }

.section-title {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.8rem;
}

.section-heading {
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* =============================================
   PRODUCT GRID
   ============================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--dark3);
  border: 1px solid rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-img:hover {
  transform: scale(1.015);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.product-img-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--taupe);
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
}

.product-name {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 0.3rem;
}

.product-price {
  font-size: 0.85rem;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.product-tagline {
  font-size: 0.7rem;
  color: var(--taupe);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.product-sold-out {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(185,165,144,0.5);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.collection-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250,249,246,0.78);
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.collection-header {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 0.3rem;
}

.collection-header span {
  color: var(--taupe);
  font-weight: 300;
}

.collection-divider {
  border: none;
  border-top: 1px solid rgba(212,175,55,0.1);
  margin: 2rem 0;
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */

.product-detail {
  padding: 4rem 4vw;
}

.product-detail-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.product-image-area {
  background: var(--linen);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-image-area:hover {
  transform: scale(1.015);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image-area img {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 6rem;
}

.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  opacity: 1;
}

.product-info-area {
  padding: 1rem 0;
}

.product-detail-title {
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.product-detail-price {
  font-size: 1rem;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.75);
  z-index: 1000;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-container {
  background: var(--linen);
  max-width: 560px;
  width: 100%;
  position: relative;
  padding: 3rem 2.5rem 2.5rem;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--coffee);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.2s;
}

.modal-close:hover { opacity: 0.6; }

.modal-heading {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coffee);
  text-align: center;
  margin: 0.5rem 0 1rem;
}

.modal-intro {
  font-size: 0.9rem;
  color: var(--coffee);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
}

.bespoke-form .form-group {
  margin-bottom: 1.75rem;
}

.bespoke-form .form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-helper {
  font-size: 0.8rem;
  color: var(--taupe);
  font-style: italic;
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.form-radio-group, .form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-radio, .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--coffee);
  font-weight: 300;
  cursor: pointer;
  line-height: 1.5;
}

.form-radio input, .form-checkbox input {
  accent-color: var(--gold);
  margin-top: 0.2rem;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.conditional-field {
  display: none;
}

.conditional-field.active {
  display: block;
}

.session-link-btn {
  display: inline-block;
  background: var(--coffee);
  color: var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.session-link-btn:hover {
  opacity: 0.85;
}

.product-detail-sold-out {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.product-detail-tag {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.product-detail-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.product-detail-meta {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(87,76,63,0.2);
  border-bottom: 1px solid rgba(87,76,63,0.2);
}

.product-detail-meta strong {
  font-weight: 500;
  color: var(--coffee);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
  display: block;
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

.product-detail-meta strong:first-child {
  margin-top: 0;
}

.add-to-cart-btn {
  display: inline-block;
  padding: 0.85rem 3rem;
  background: var(--coffee);
  border: none;
  color: var(--linen);
  font-family: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.add-to-cart-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   FORMULATION CARDS
   ============================================= */

.formulation-card {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(87,76,63,0.15);
}

.formulation-card:last-of-type {
  border-bottom: none;
}

.formulation-name {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coffee);
  margin-bottom: 0.2rem;
}

.formulation-question {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.formulation-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.formulation-prompt {
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--coffee);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.formulation-ingredients {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.formulation-science {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--sage);
  font-style: italic;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(112,121,87,0.3);
  margin-top: 0.6rem;
}

/* =============================================
   PROTOCOL
   ============================================= */

.protocol-section {
  margin-top: 2.5rem;
}

.protocol-title {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.protocol-step {
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(212,175,55,0.3);
}

.protocol-step-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.protocol-step-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* =============================================
   BESPOKE INCLUDES & RESONANCE
   ============================================= */

.includes-list {
  margin: 1rem 0 1.5rem;
}

.includes-list li {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 2;
  padding-left: 1.2rem;
  position: relative;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.resonance-box {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
}

.resonance-box .section-title {
  text-align: left;
  margin-bottom: 0.6rem;
}

.resonance-intro {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--coffee);
  margin-bottom: 0.8rem;
}

.resonance-list {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 2;
  color: var(--coffee);
}

.resonance-list strong {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* =============================================
   FORMULATION SESSION CTA
   ============================================= */

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

.session-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.session-benefits {
  margin-bottom: 1.5rem;
}

.session-benefits p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 0.5rem;
}

.session-note {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.session-cta {
  display: inline-block;
  background: var(--coffee);
  color: var(--gold);
  padding: 0.85rem 2.5rem;
  font-family: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.session-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   NEWSLETTER
   ============================================= */

.newsletter-section {
  background: var(--dark);
  color: var(--linen);
  padding: 5rem 4vw;
  text-align: center;
}

.newsletter-heading {
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 1rem;
}

.newsletter-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.03em;
}

.newsletter-body strong {
  font-weight: 500;
  color: var(--linen);
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-right: none;
  color: var(--linen);
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--taupe);
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--dark);
  font-family: inherit;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.newsletter-btn:hover {
  opacity: 0.85;
}

/* EmailOctopus embed styling */
#eo-embed-wrap {
  display: flex;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

#eo-embed-wrap > div,
#eo-embed-wrap > form,
#eo-embed-wrap iframe {
  width: 100%;
}

/* Override EO form to match dark section */
#eo-embed-wrap [data-form],
#eo-embed-wrap form,
#eo-embed-wrap > div > div {
  background: transparent !important;
  background-color: transparent !important;
  padding: 0 !important;
  max-width: 420px !important;
  margin: 0 auto !important;
  border: none !important;
  box-shadow: none !important;
}

#eo-embed-wrap input[type="email"],
#eo-embed-wrap input[type="text"] {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  color: #FAF9F6 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  padding: 0.7rem 1rem !important;
}

#eo-embed-wrap input[type="email"]::placeholder,
#eo-embed-wrap input[type="text"]::placeholder {
  color: #B9A590 !important;
}

#eo-embed-wrap button[type="submit"],
#eo-embed-wrap input[type="submit"] {
  background: #D4AF37 !important;
  border: 1px solid #D4AF37 !important;
  color: #1A1612 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  padding: 0.7rem 1.5rem !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  height: auto !important;
  min-height: 0 !important;
}

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

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 3rem 4vw 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-brand:hover {
  opacity: 0.7;
}

.footer-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-text {
  font-size: 0.65rem;
  color: var(--taupe);
  font-weight: 300;
  line-height: 1.8;
}

.footer-col-title {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  font-size: 0.68rem;
  color: var(--taupe);
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--linen);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(185,165,144,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--taupe);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.footer-socials a:hover {
  color: var(--linen);
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.brand-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.1;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.founder-section {
  max-width: 700px;
  margin: 0 auto;
}

.founder-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.founder-photo {
  width: 280px;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: auto;
}

.founder-intro-text {
  padding-top: 0.3rem;
}

.founder-greeting {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.founder-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.founder-pullquote {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.04);
}

.founder-sign {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.founder-sign span {
  display: block;
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* =============================================
   CONNECT FORM
   ============================================= */

.connect-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(87,76,63,0.3);
  color: var(--coffee);
  padding: 0.7rem 0.8rem;
  font-family: inherit;
  font-size: 0.78rem;
  outline: none;
  transition: border-color 0.2s;
}

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

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

.form-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--coffee);
  border: none;
  color: var(--linen);
  font-family: inherit;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

/* =============================================
   LEGAL PAGES
   ============================================= */

.legal-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
}

.legal-content h2 {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 2.5rem 0 0.8rem;
}

.legal-content h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--gold);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.75rem;
}

.legal-content th {
  background: var(--coffee);
  color: var(--linen);
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.legal-content td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(185,165,144,0.3);
  vertical-align: top;
  font-weight: 300;
}

.legal-content tr:nth-child(even) {
  background: rgba(185,165,144,0.08);
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--taupe);
  margin: 2rem 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .founder-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-photo {
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 5vw;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem 5vw 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(212,175,55,0.1);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 70vh;
    padding: 4rem 5vw;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-dark,
  .section-linen,
  .section-dark2 {
    padding: 3rem 5vw;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0;
  }

  .newsletter-input {
    border-right: 1px solid rgba(212,175,55,0.3);
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .product-detail {
    padding: 2rem 5vw;
  }
}
