/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* === DESIGN TOKENS === */
:root {
  --night:       #1b2852;
  --night-mid:   #253466;
  --sage:        #7196a4;
  --sage-mid:    #a3bcc6;
  --sage-light:  #c5d4da;
  --sage-pale:   #e8eff2;
  --cream:       #F6F3EC;
  --white:       #FFFFFF;
  --ink:         #1b2852;
  --stone:       #6a7e8b;
  --gold:        #C19A5B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-pad:    5.5rem 1.5rem;
  --section-pad-sm: 3.5rem 1.5rem;
  --radius:         3px;
  --radius-card:    10px;
  --shadow:         0 8px 32px rgba(27,40,82,0.10);
  --shadow-hover:   0 16px 48px rgba(27,40,82,0.15);
  --transition:     0.28s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

/* === TYPOGRAPHY SCALE === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-style: italic; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
p { line-height: 1.8; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background: var(--night);
  color: var(--sage-light);
  padding: 0.52rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ann-left {
  flex: 1;
  color: var(--sage-light);
}
.ann-center {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.ann-bg-logo {
  height: 34px;
  width: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--cream);
  padding: 3px;
  flex-shrink: 0;
  display: block;
}
.ann-separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.ann-right {
  flex: 1;
  text-align: right;
}
.ann-right a { color: var(--sage-light); transition: color var(--transition); }
.ann-right a:hover { color: var(--white); }
.announcement-bar a { text-decoration: none; }

/* === NAVIGATION === */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246,243,236,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sage-light);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night);
}
.logo-img {
  height: 68px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: invert(1);
  mix-blend-mode: screen;
  margin-bottom: 0.85rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav-links a:hover { color: var(--night); }
.nav-shop-btn {
  background: var(--night);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  font-size: 0.76rem !important;
  letter-spacing: 0.12em !important;
  transition: background var(--transition) !important;
}
.nav-shop-btn:hover { background: var(--sage) !important; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--night);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 0.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--sage-light);
}
.mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: 1px solid var(--sage-pale);
}
.mobile-menu a:hover { color: var(--night); }
.mobile-menu.open { display: flex; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/13.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.75;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(27,40,82,0.72) 0%, rgba(27,40,82,0.45) 50%, rgba(27,40,82,0.1) 100%);
}
.hero-mist {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 130% 90% at 40% 110%, rgba(113,150,164,0.18) 0%, transparent 65%);
  animation: mist 9s ease-in-out infinite;
}
@keyframes mist {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06) translateX(12px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--sage-mid); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 450px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  border-radius: var(--radius);
}
.btn-primary  { background: var(--white);  color: var(--night); }
.btn-primary:hover { background: var(--sage-light); }
.btn-dark     { background: var(--night);  color: var(--white); }
.btn-dark:hover { background: var(--sage); }
.btn-sage     { background: var(--sage);   color: var(--white); }
.btn-sage:hover { background: var(--night); }
.btn-outline  { background: transparent;   color: var(--night); border: 1.5px solid var(--night); }
.btn-outline:hover { background: var(--night); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-full { width: 100%; text-align: center; }

/* === TICKER === */
.ticker {
  background: var(--sage);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.85rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}
.ticker-item::after { content: '✦'; opacity: 0.45; font-size: 0.55rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTION LAYOUT === */
.section    { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.container  { max-width: 1200px; margin: 0 auto; }
.section-dark  { background: var(--night); }
.section-dark h2, .section-dark h3, .section-dark p { color: rgba(255,255,255,0.85); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-sage  { background: var(--sage-pale); }
.section-cream { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--night); margin-bottom: 0.5rem; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sage-pale);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 0.55s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.26); }
.product-card-body {
  padding: 1.25rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.35rem;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--night);
  line-height: 1.2;
  flex: 1;
  margin-bottom: 0.6rem;
}
.product-card-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--night);
  margin-bottom: 1.1rem;
}
.product-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.72rem 1rem;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
}
.product-card-btn:hover { background: var(--sage); }

/* === SCROLLING REVIEWS === */
.reviews-scroll {
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}
.reviews-track {
  display: inline-flex;
  gap: 1.5rem;
  padding: 0 1.5rem;
  animation: review-scroll 48s linear infinite;
  will-change: transform;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes review-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-scroll-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border-top: 3px solid var(--sage);
  box-shadow: var(--shadow);
}
.review-scroll-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--night);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.review-scroll-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.65rem; }
.review-scroll-body {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.review-scroll-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--night); }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sage-light); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--night);
}
.faq-btn .faq-icon { font-size: 1.4rem; color: var(--sage); flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq-btn.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; color: var(--stone); font-size: 0.92rem; line-height: 1.85; }
.faq-answer.open { display: block; }
.faq-answer ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.5rem; }
.faq-answer li { margin-bottom: 0.3rem; }
.faq-answer strong { color: var(--night); }

/* === FOUNDER TEASER === */
.founder-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}
.founder-img {
  min-height: 500px;
  background-size: cover;
  background-position: center top;
}
.founder-body {
  background: var(--night);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-body h2 { color: var(--white); font-style: italic; margin-bottom: 1.25rem; }
.founder-body p  { color: rgba(255,255,255,0.68); margin-bottom: 2rem; }

/* === EMAIL SIGNUP === */
.signup-section { background: var(--white); border-top: 1px solid var(--sage-light); border-bottom: 1px solid var(--sage-light); padding: var(--section-pad-sm); text-align: center; }
.signup-section h2 { color: var(--night); font-style: italic; margin-bottom: 0.5rem; }
.signup-section p  { color: var(--stone); margin-bottom: 2rem; font-size: 0.95rem; }
.email-form {
  display: flex;
  max-width: 430px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--sage-light);
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--night);
  outline: none;
}
.email-form input:focus { border-color: var(--sage); }
.email-form input::placeholder { color: var(--stone); }
.email-form button {
  padding: 0.85rem 1.5rem;
  background: var(--night);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.email-form button:hover { background: rgba(27,40,82,0.75); }

/* === FOOTER === */
footer {
  background: var(--night);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-payments { display: flex; gap: 0.4rem; align-items: center; }
.payment-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* === PRODUCT PAGE === */
.product-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.product-gallery { position: sticky; top: 84px; }
.product-main-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--sage-pale);
  margin-bottom: 0.85rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.product-thumbs { display: flex; gap: 0.7rem; }
.product-thumb {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--sage-pale);
  transition: border-color var(--transition);
}
.product-thumb.active { border-color: var(--sage); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .eyebrow { margin-bottom: 0.4rem; }
.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  color: var(--night);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--night);
  margin-bottom: 1.25rem;
}
.product-desc {
  color: var(--stone);
  font-size: 0.96rem;
  line-height: 1.82;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--sage-light);
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--sage-pale);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-weight: 500;
}
.badge-icon { font-size: 0.85rem; }
.product-buy-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
.product-buy-btn:hover { background: var(--sage); }
.product-note { font-size: 0.8rem; color: var(--stone); text-align: center; }

/* Accordion */
.accordion { margin-top: 1.75rem; }
.accordion-item { border-bottom: 1px solid var(--sage-light); }
.accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night);
}
.accordion-icon { font-size: 1.2rem; color: var(--sage); flex-shrink: 0; transition: transform var(--transition); }
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 1.25rem; color: var(--stone); font-size: 0.92rem; line-height: 1.85; }
.accordion-body.open { display: block; }
.accordion-body ol { list-style: decimal; padding-left: 1.5rem; margin-top: 0.5rem; }
.accordion-body ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.5rem; }
.accordion-body li { margin-bottom: 0.5rem; }
.accordion-body p { margin-bottom: 0.75rem; }
.accordion-body strong { color: var(--night); }

/* === PAGE HERO (sub-pages) === */
.page-hero {
  background: var(--night);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 120%, rgba(113,150,164,0.15) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }

/* === ABOUT / FOUNDER === */
.prose-section {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-pad);
}
.prose-section h2 { color: var(--night); margin-bottom: 1.25rem; }
.prose-section p  { color: var(--stone); margin-bottom: 1.25rem; }
.prose-section strong { color: var(--night); }
.prose-img {
  width: 100%;
  border-radius: var(--radius-card);
  margin: 2rem 0;
  overflow: hidden;
}
.prose-img img { width: 100%; height: auto; display: block; object-fit: cover; }
.founder-sig {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--night);
  margin-top: 1.5rem;
}
.founder-sig span { display: block; font-size: 0.8rem; font-style: normal; font-family: var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-top: 0.3rem; }

/* === CONTACT === */
.contact-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: var(--section-pad);
  text-align: center;
}
.contact-wrap h2 { color: var(--night); margin-bottom: 0.75rem; }
.contact-wrap > p { color: var(--stone); margin-bottom: 2rem; }
.contact-email { font-size: 1.1rem; color: var(--sage); font-weight: 500; margin-bottom: 2.5rem; display: inline-block; text-decoration: underline; text-underline-offset: 3px; }
.contact-form { text-align: left; display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--night); }
.form-input, .form-textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sage-light);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.94rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--sage); }
.form-textarea { resize: vertical; min-height: 140px; }

/* === ABOUT VALUES GRID === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { font-family: var(--font-display); color: var(--night); margin-bottom: 0.5rem; font-size: 1.2rem; }
.value-card p { font-size: 0.88rem; color: var(--stone); line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .founder-teaser { grid-template-columns: 1fr; }
  .founder-img { min-height: 320px; }
  .founder-body { padding: 2.5rem 2rem; }
  .product-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-gallery { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  :root { --section-pad: 4rem 1.5rem; --section-pad-sm: 2.5rem 1.5rem; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ann-left, .ann-right, .ann-separator { display: none; }
  .announcement-bar { justify-content: center; padding: 0.5rem 1rem; }
}
@media (max-width: 768px) {
  .ann-left { display: none; }
  .announcement-bar { justify-content: space-between; }
}

/* === UTILS === */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
