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

:root {
  --cream: #FAF6F0;
  --warm-white: #FDF9F4;
  --sage: #7D9E7A;
  --sage-light: #EDF3EC;
  --sage-dark: #4A6B47;
  --blush: #E8C5B8;
  --dusty-rose: #C4826A;
  --ink: #2C2420;
  --ink-mid: #5C4A40;
  --ink-light: #8C7A70;
  --gold: #B89060;
  --border: rgba(180,150,120,0.25);
  --border-strong: rgba(180,150,120,0.5);
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); }

/* NAV */
.site-nav-bar {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav-bar .logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
}
.site-nav-bar nav a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mid);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 400;
  transition: color 0.15s;
}
.site-nav-bar nav a:hover { color: var(--dusty-rose); }

/* TRUST BAR */
.trust-bar {
  background: var(--ink);
  width: 100%;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item {
  color: rgba(255,255,255,0.65);
  padding: 11px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}
.trust-item span { color: #fff; font-weight: 500; display: block; }

/* HERO */
.hero {
  background: #faf7f2;
  border-bottom: 1px solid var(--border);
  padding: 40px 20px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 10px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--dusty-rose); }
.hero-sub {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-mid);
  margin-bottom: 20px;
  display: block;
}
.hero-desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-proof {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 20px;
}
.hero-proof-stars { color: #C4826A; letter-spacing: 2px; }

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto 32px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sage-light);
  border: 1px solid rgba(125,158,122,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
}
.step-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.step-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--sage-dark);
  line-height: 1.55;
  padding-top: 5px;
}

/* REVIEWS */
.reviews-wrap {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 20px;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-heading {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
}
.reviews-heading span { color: #C4826A; letter-spacing: 2px; }
.carousel-track-wrap { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.review-slide { min-width: 100%; padding: 0 4px; box-sizing: border-box; }
.review-card {
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.review-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}
.review-quote::before { content: '\201C'; color: var(--dusty-rose); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.review-quote::after  { content: '\201D'; color: var(--dusty-rose); font-size: 28px; line-height: 0; vertical-align: -8px; margin-left: 2px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-author { font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--ink-mid); }
.review-stars { color: #C4826A; font-size: 13px; letter-spacing: 1px; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--dusty-rose); transform: scale(1.3); }

/* SECTION HEADER */
.section-header {
  text-align: center;
  padding: 40px 20px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}
.section-header p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 6px;
}
.divider { width: 40px; height: 1px; background: var(--gold); margin: 10px auto 0; }
.section-para {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* STORIES GRID */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 16px 52px;
  max-width: 900px;
  margin: 0 auto;
}

/* STORY CARD */
.story-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.story-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(44,36,32,0.09); }
.card-image { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px 12px;
  min-height: 120px;
}
.card-header-text { flex: 1; }
.card-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  background: var(--accent-bg);
  color: var(--accent-text);
  font-family: var(--sans);
}
.card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.card-subtitle {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-light);
  margin-top: 2px;
}
.card-body { padding: 0 18px 18px; flex: 1; display: flex; flex-direction: column; }
.card-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 16px;
}
.card-links { display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.btn-row-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  margin-top: 4px;
  text-align: center;
}
.btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* BUTTONS */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 16px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  min-height: 48px;
  transition: opacity 0.15s;
  cursor: pointer;
}
.btn:active { opacity: 0.75; }
.btn-shop { color: #fff; background: var(--accent); border: none; font-size: 14px; padding: 15px 16px; min-height: 52px; }
.btn-dl { border: 1.5px solid var(--accent); background: transparent; color: var(--accent); }
.btn-email { border: 1px solid var(--border-strong); background: transparent; color: var(--ink-mid); }

/* COLOR THEMES */
.theme-camellia { --accent:#C4826A; --accent-bg:#FDF0EB; --accent-text:#8B4A35; }
.theme-adelaide { --accent:#7D9E7A; --accent-bg:#EDF3EC; --accent-text:#4A6B47; }
.theme-audrey   { --accent:#7A8FA8; --accent-bg:#ECF1F6; --accent-text:#3D5470; }
.theme-lily     { --accent:#B89060; --accent-bg:#F5E8D2; --accent-text:#7A5A2A; }
.theme-orchid   { --accent:#9B7DB0; --accent-bg:#F2EDF7; --accent-text:#5E3D78; }
.theme-norah    { --accent:#6B8A9E; --accent-bg:#E8EFF4; --accent-text:#3A5566; }

/* TIPS */
.tips-wrap {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.tips { padding: 40px 16px 52px; text-align: center; }
.tips h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ink);
}
.tips > p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 20px;
}
.tip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tip-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 14px;
  text-align: left;
}
.tip-icon { font-size: 18px; margin-bottom: 8px; display: block; }
.tip-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
}
.tip-card p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px 20px;
  margin-top: 0;
}
.site-footer p { font-size: 12px; font-family: var(--sans); margin-bottom: 12px; }
.site-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 12px; margin: 0 10px; }
.site-footer a:hover { color: #fff; }

/* LOADING */
.page-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-light);
  font-style: italic;
}

@media (min-width: 600px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item span { display: inline; }
  .hero { padding: 52px 32px 0; }
  .hero h1 { font-size: clamp(44px, 7vw, 66px); }
  .hero-sub { font-size: clamp(17px, 2.5vw, 21px); }
  .steps { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .step { flex: 1; min-width: 160px; max-width: 210px; }
  .section-header { padding: 52px 32px 34px; }
  .section-header h2 { font-size: clamp(28px, 4vw, 40px); }
  .tips { max-width: 680px; margin: 0 auto; padding: 48px 24px 60px; }
  .tips h3 { font-size: 27px; }
}

@media (max-width: 599px) {
  .stories-grid { grid-template-columns: 1fr; }
  .tip-cards { grid-template-columns: 1fr; }
  .site-nav-bar nav { display: none; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 38px; }
  .btn-row { grid-template-columns: 1fr; }
}
