:root {
  --bone: #FAF4E6;
  --cream: #EBDEC4;
  --brass: #A07B4C;
  --walnut: #6B5641;
  --sepia: #3D2E24;

  --accent: #A07B4C;
  --accent-dark: #6B5641;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1240px;
  --section-pad-y: clamp(80px, 11vw, 140px);
  --section-pad-x: clamp(24px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--sepia);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

/* — Typography — */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
}

em, .italic { font-style: italic; font-weight: 400; }

/* — Layout helpers — */
.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--sepia); color: var(--bone); }
.container { max-width: var(--max-width); margin: 0 auto; }

/* — Botanical ornament — */
.orn-mark {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 18px;
}
.orn-mark::before, .orn-mark::after {
  content: ''; width: 32px; height: 0.5px; background: var(--brass); opacity: 0.55;
}
.orn-mark svg { width: 18px; height: 22px; color: var(--brass); opacity: 0.75; }

/* — Nav — */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 230, 0.88);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 0.5px solid rgba(61, 46, 36, 0.1);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--section-pad-x); gap: 24px;
}
.nav-mark {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--sepia);
  line-height: 1;
  letter-spacing: 3px;
}
.nav-logo { height: 44px; width: auto; display: block; }
.nav-mark-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--walnut);
  line-height: 1.3;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--walnut);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sepia); }
.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border: 0.5px solid var(--sepia);
  border-radius: 100px;
  color: var(--sepia);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sepia); color: var(--bone); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* — Buttons — */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1.8px;
  padding: 14px 32px;
  background: var(--sepia);
  color: var(--bone);
  border-radius: 100px;
  border: 0;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
}
.btn:hover { transform: translateY(-1px); background: var(--walnut); }

.btn-outline { background: transparent; color: var(--sepia); border: 0.5px solid var(--sepia); }
.btn-outline:hover { background: var(--sepia); color: var(--bone); }

.btn-brass { background: var(--brass); color: var(--bone); }
.btn-brass:hover { background: #8C6A40; }

.btn-light { background: var(--bone); color: var(--sepia); }
.btn-light:hover { background: var(--cream); }

/* — Hero — */
.hero {
  padding: clamp(80px, 13vw, 160px) var(--section-pad-x) clamp(100px, 16vw, 200px);
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.95;
  margin: 22px 0 32px;
  font-weight: 400;
  color: var(--sepia);
  letter-spacing: -0.5px;
}
.hero-intro {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: var(--walnut);
}

/* — Hero atmosphere image (optional) — */
.hero-img-wrap {
  max-width: 920px; margin: 60px auto 0;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cream); /* fallback while loading */
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* — Section heads — */
.sec-head { text-align: center; margin-bottom: clamp(56px, 7vw, 88px); }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.05;
  margin: 16px 0 18px;
  font-weight: 400;
  color: var(--sepia);
  letter-spacing: -0.3px;
}
.sec-head p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: var(--walnut);
  max-width: 560px;
  margin: 0 auto;
}

/* — The Method pillars — */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4.5vw, 64px);
  max-width: 1040px;
  margin: 0 auto;
}
.pillar { text-align: center; padding: 0 8px; }
.pillar-orn { color: var(--brass); opacity: 0.7; margin-bottom: 16px; }
.pillar-orn svg { width: 24px; height: 30px; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1;
  margin: 0;
  font-weight: 400;
  color: var(--sepia);
}
.pillar-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--walnut);
  margin: 8px 0 22px;
}
.pillar p {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.75;
  color: var(--walnut);
  margin: 0 auto;
  max-width: 280px;
}

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; gap: 56px; }
}

/* — Foundation Duo — */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 880px;
  margin: 0 auto;
}
.duo-card {
  background: var(--bone);
  border: 0.5px solid rgba(61, 46, 36, 0.14);
  border-radius: 16px;
  padding: clamp(36px, 4.5vw, 64px) clamp(24px, 3vw, 40px);
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
}
.duo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(61, 46, 36, 0.18);
}
.duo-card img {
  max-width: 220px;
  margin: 0 auto 28px;
}
.duo-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--sepia);
}
.duo-card .tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--walnut);
}

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

/* — Foundation Duo emphasis label — */
.foundation-tag {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* — Collection grid — */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(56px, 6vw, 88px) clamp(24px, 3vw, 40px);
  max-width: 1120px;
  margin: 0 auto;
}
.product {
  text-align: center;
  padding: 24px 16px 20px;
  border-radius: 16px;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
@media (hover: hover) {
  .product:hover {
    background: var(--bone);
    box-shadow: 0 26px 52px -24px rgba(61, 46, 36, 0.20);
    transform: translateY(-6px);
  }
}
.product img {
  max-width: 240px;
  margin: 0 auto 22px;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .product:hover img { transform: scale(1.04); }
}

@media (max-width: 900px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .collection-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) {
  .product:nth-child(19) { grid-column: 2; }
}
@media (min-width: 541px) and (max-width: 900px) {
  .product:nth-child(19) { grid-column: 1 / -1; justify-self: center; max-width: 50%; }
}
.product .name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 18px);
  margin: 0;
  line-height: 1.25;
  color: var(--sepia);
  display: inline-block;
  position: relative;
}
.product .name::after {
  content: '';
  display: block;
  width: 0;
  height: 0.5px;
  margin: 7px auto 0;
  background: var(--brass);
  transition: width 0.35s ease;
}
@media (hover: hover) {
  .product:hover .name::after { width: 40px; }
}
.product .desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(11.5px, 1.1vw, 13px);
  color: var(--walnut);
  margin: 8px 0 0;
  line-height: 1.4;
}
.product-meta {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 14px;
}
@media (hover: hover) {
  .product-meta { opacity: 0; transform: translateY(6px); transition: opacity 0.35s ease, transform 0.35s ease; }
  .product:hover .product-meta { opacity: 1; transform: translateY(0); }
}

/* — Pathways — */
.pathways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.path {
  padding: 32px 28px;
  background: var(--bone);
  border: 0.5px solid rgba(61, 46, 36, 0.14);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}
.path:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}
.path-no {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
}
.path h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 26px);
  margin: 10px 0 10px;
  font-weight: 400;
  color: var(--sepia);
}
.path p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--walnut);
  margin: 0;
}

/* — Editorial pull quote — */
.editorial {
  text-align: center;
  padding: var(--section-pad-y) var(--section-pad-x);
  max-width: 920px;
  margin: 0 auto;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.25;
  color: var(--sepia);
  margin: 28px 0 28px;
  letter-spacing: -0.2px;
}
.attribution {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2.2px;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
}

/* — Why Now — */
.why-now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 48px auto 0;
}
.why-item {
  text-align: center;
  padding: 24px 16px;
  border-top: 0.5px solid rgba(61, 46, 36, 0.18);
}
.why-item h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--sepia);
  font-weight: 400;
  margin: 0 0 8px;
}
.why-item p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--walnut);
  line-height: 1.65;
  margin: 0;
}

/* — CTA dark — */
.cta-section { text-align: center; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 64px);
  line-height: 1.05;
  color: var(--bone);
  margin: 16px 0 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.cta-section .eyebrow { color: var(--brass); }
.cta-section p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(250, 244, 230, 0.78);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section .orn-mark::before, .cta-section .orn-mark::after { background: var(--brass); opacity: 0.65; }
.cta-section .orn-mark svg { color: var(--brass); opacity: 0.95; }

/* — Footer — */
.footer {
  padding: 56px var(--section-pad-x) 40px;
  text-align: center;
  border-top: 0.5px solid rgba(61, 46, 36, 0.14);
}
.footer-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--walnut);
}
.footer-meta {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 2px;
  color: var(--brass);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.footer-links a {
  color: var(--walnut);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--sepia); }

/* — Selection — */
::selection { background: var(--brass); color: var(--bone); }
::-moz-selection { background: var(--brass); color: var(--bone); }

/* — Fade-up animation — */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
/* — Founder section — */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.founder-portrait img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 28px 64px -28px rgba(61, 46, 36, 0.35);
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  margin: 14px 0 28px;
  font-weight: 400;
  color: var(--sepia);
  letter-spacing: -0.3px;
}
.founder-bio {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.78;
  color: var(--walnut);
  margin: 0 0 18px;
}
.founder-bio em { font-style: italic; color: var(--walnut); }
.founder-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  color: var(--sepia);
  margin: 32px 0 18px;
  padding-left: 24px;
  border-left: 0.5px solid var(--brass);
}
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait img { max-width: 460px; margin: 0 auto; }
  .founder-quote { font-size: 20px; padding-left: 18px; }
}

/* — Section feature image (above section content) — */
.section-feature {
  max-width: 920px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.section-feature.tall { aspect-ratio: 3/2; }
.section-feature img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* — Full-width band image (section transitions) — */
.band-image {
  width: 100%;
  height: clamp(220px, 30vw, 380px);
  overflow: hidden;
}
.band-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* — Method section detail (small editorial moment) — */
.method-detail {
  max-width: 480px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.method-detail img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* — Partner CTA split layout — */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.cta-image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 28px 64px -28px rgba(0, 0, 0, 0.55);
}
.cta-text-block { text-align: left; }
.cta-text-block .eyebrow { color: var(--brass); }
.cta-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.05;
  color: var(--bone);
  margin: 14px 0 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.cta-text-block p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(250, 244, 230, 0.78);
  margin: 0 0 36px;
  line-height: 1.75;
  max-width: 440px;
}
@media (max-width: 820px) {
  .cta-grid { grid-template-columns: 1fr; }
  .cta-image img { max-width: 420px; margin: 0 auto; display: block; }
  .cta-text-block { text-align: center; }
  .cta-text-block h2 { text-align: center; }
  .cta-text-block p { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   PARTNER INQUIRY / ORDER FORM
   Visual mockup styled to match the site. Replace the <form>
   markup with the GoHighLevel embed when Dawn's form is ready.
   ============================================================ */
.ghl-embed { max-width: 760px; margin: 0 auto; }
.form-card {
  background: var(--bone);
  border: 0.5px solid rgba(61, 46, 36, 0.14);
  border-radius: 16px;
  padding: clamp(32px, 4.5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 28px 56px -28px rgba(61, 46, 36, 0.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--brass); font-weight: 500;
}
.field label .req { color: var(--walnut); opacity: 0.7; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--sepia);
  background: #FCF8EF; border: 0.5px solid rgba(61, 46, 36, 0.25);
  border-radius: 10px; padding: 13px 15px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(107, 86, 65, 0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(160, 123, 76, 0.12);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B5641' stroke-width='1.2' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.pillset { display: flex; flex-wrap: wrap; gap: 10px; }
.pillset input { position: absolute; opacity: 0; pointer-events: none; }
.pillset label {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500;
  padding: 11px 20px; border: 0.5px solid rgba(61, 46, 36, 0.3); border-radius: 100px;
  color: var(--walnut); cursor: pointer; transition: all 0.2s; background: transparent;
}
.pillset label:hover { border-color: var(--brass); color: var(--sepia); }
.pillset input:checked + label { background: var(--sepia); color: var(--bone); border-color: var(--sepia); }
.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 4px; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--brass); flex: 0 0 auto; }
.consent label {
  font-family: var(--font-body); font-size: 13px; line-height: 1.55; color: var(--walnut);
  text-transform: none; letter-spacing: 0;
}
.form-actions { margin-top: 30px; text-align: center; }
.form-note { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--walnut); margin-top: 18px; }
.form-success {
  display: none; text-align: center; max-width: 620px; margin: 0 auto;
  background: var(--bone); border: 0.5px solid rgba(61, 46, 36, 0.14);
  border-radius: 16px; padding: clamp(40px, 6vw, 72px);
}
.form-success .orn-mark { margin-bottom: 22px; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 44px); color: var(--sepia); margin-bottom: 14px; }
.form-success p { color: var(--walnut); font-size: 15px; max-width: 420px; margin: 0 auto; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* — Product hero (from product-daily-womens-essentials.html) — */
.product-hero { padding: clamp(48px, 7vw, 96px) var(--section-pad-x) clamp(56px, 8vw, 104px); }
.pp-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
  max-width: var(--max-width); margin: 0 auto;
}
.pp-image {
  background: var(--cream);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp-image::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}
.pp-image img { max-width: 300px; margin: 0 auto; position: relative; }

.pp-botanical { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--accent-dark); margin-bottom: 6px; }
.pp-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.6vw, 62px); line-height: 1.02; letter-spacing: -0.3px;
  color: var(--sepia); margin: 6px 0 12px;
}
.pp-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.3vw, 27px); color: var(--accent); margin-bottom: 26px;
}
.pp-desc { font-size: clamp(15px, 1.35vw, 16.5px); line-height: 1.8; color: var(--walnut); margin-bottom: 30px; max-width: 520px; }

.supports-label {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; color: var(--accent); margin-bottom: 16px;
}
.supports { list-style: none; margin: 0 0 32px; max-width: 520px; }
.supports li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  font-size: 15px; line-height: 1.6; color: var(--sepia);
}
.supports li::before {
  content: ''; position: absolute; left: 2px; top: 9px;
  width: 8px; height: 8px; background: var(--accent);
  transform: rotate(45deg); border-radius: 1px;
}

.pp-formula {
  font-size: 13.5px; line-height: 1.7; color: var(--walnut);
  border-left: 0.5px solid var(--accent); padding-left: 18px; margin: 0 0 26px; max-width: 520px;
}
.pp-formula strong { font-weight: 600; color: var(--sepia); }

.pp-use { font-size: 13.5px; line-height: 1.7; color: var(--walnut); margin-bottom: 20px; max-width: 520px; }
.pp-use strong { font-weight: 600; color: var(--sepia); }

.pp-disclaimer {
  font-family: var(--font-body); font-style: italic; font-size: 12px;
  color: var(--walnut); opacity: 0.85; max-width: 560px; line-height: 1.6;
}

@media (max-width: 820px) {
  .pp-grid { grid-template-columns: 1fr; }
  .pp-image { max-width: 460px; margin: 0 auto; }
}

/* — Nav back link (product pages) — */
.nav-back {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 1px;
  color: var(--walnut); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-back:hover { color: var(--sepia); }

/* — Inquiry section head (product pages) — */
.inquiry-head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.inquiry-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1.05; color: var(--sepia);
  margin: 14px 0 16px; letter-spacing: -0.3px;
}
.inquiry-head p { font-size: clamp(14px, 1.3vw, 16px); color: var(--walnut); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* — Product-page "inquiring about" line (Task 5) — */
.pp-inquiring {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.4px;
  color: var(--walnut); margin: 0 auto 22px; text-align: center;
}
.pp-inquiring strong { color: var(--sepia); font-weight: 600; }

/* — Contact page header spacing (Task 4) — */
.contact-head { max-width: 620px; margin: 0 auto clamp(32px,5vw,52px); }

/* — Product-page lifestyle band (below product hero) — */
.pp-lifestyle { margin: 0; }
.pp-lifestyle img { width: 100%; height: clamp(320px, 42vw, 560px); object-fit: cover; display: block; }

/* — Contact page banner — */
.contact-banner { margin: 0 0 clamp(28px, 4vw, 44px); }
.contact-banner img { width: 100%; height: clamp(200px, 30vw, 360px); object-fit: cover; display: block; border-radius: 16px; }

/* — Collection card links — */
.product-link { text-decoration: none; color: inherit; display: block; }

/* — Show banner + subscribe modal — */
.show-banner { background: var(--sepia); color: var(--bone); display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 10px 46px 10px 20px; position: relative; font-family: var(--font-body); font-size: 13.5px; letter-spacing: 0.3px; text-align: center; }
.show-banner a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; }
.show-banner strong { color: #E9C9A0; font-weight: 600; letter-spacing: 0.5px; }
.show-banner-btn { background: var(--bone); color: var(--sepia); border: 0; border-radius: 100px; padding: 7px 18px; font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.show-banner-btn:hover { background: var(--brass); color: var(--bone); transform: translateY(-1px); }
.show-banner-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: var(--bone); opacity: 0.65; font-size: 20px; line-height: 1; cursor: pointer; padding: 4px; }
.show-banner-close:hover { opacity: 1; }

.show-modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(61,46,36,0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.show-modal-overlay[hidden] { display: none; }
.show-modal { background: var(--bone); border-radius: 18px; max-width: 480px; width: 100%; max-height: 90vh; overflow: auto; padding: clamp(24px, 4vw, 40px); position: relative; box-shadow: 0 20px 60px rgba(61,46,36,0.3); }
.show-modal-close { position: absolute; right: 16px; top: 12px; background: transparent; border: 0; color: var(--walnut); font-size: 26px; line-height: 1; cursor: pointer; }
.show-modal-close:hover { color: var(--sepia); }
.show-modal-head { text-align: center; margin-bottom: 18px; }
.show-modal-head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 34px); color: var(--sepia); margin: 8px 0; }
.show-modal-head p { font-size: 14px; color: var(--walnut); }

@media (max-width: 560px) { .show-banner { font-size: 12.5px; padding: 10px 40px 10px 16px; gap: 10px; } }
