/* =========================================================
   AEGLE BRAND PARTNERSHIPS — design tokens
   ivory / forest / charcoal / stone are structural.
   amber / clay / sage are the wellness-platform accents —
   each platform gets exactly one, never used all at once.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --ivory: #F7F5F0;
  --ivory-deep: #EFEBE2;
  --forest: #14140F;
  --forest-mid: #33322A;
  --forest-soft: #4A4839;

  --charcoal: #14140F;
  --stone: #E7E3D8;
  --stone-line: #DAD5C6;

  --amber: #A8703C;
  --clay: #A8703C;
  --sage: #6B6B5C;

  --white: #FCFBF8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-label: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  --max: 1320px;
  --gutter: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 110px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--forest-mid);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--amber); }

h1, .h1{
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: .98;
  letter-spacing: -.01em;
  font-size: clamp(44px, 6.4vw, 96px);
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.008em;
  font-size: clamp(34px, 4.4vw, 62px);
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(22px, 2.4vw, 30px);
}
.lede{
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: #4b4b40;
  max-width: 46ch;
}
.italic{ font-style: italic; }

/* buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--forest); color: var(--white); }
.btn-primary:hover{ background: var(--forest-mid); }
.btn-ghost{ background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover{ background: var(--forest); color: var(--white); }
.btn-on-dark{ background: var(--amber); color: var(--forest); }
.btn-on-dark:hover{ background: var(--white); }
.btn-ghost-dark{ background: transparent; color: var(--ivory); border-color: rgba(245,241,231,.4); }
.btn-ghost-dark:hover{ border-color: var(--ivory); background: rgba(245,241,231,.08); }
.btn svg{ width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(245,241,231,.92);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-color: var(--stone-line);
}
.nav-mark{
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .01em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-img{ height: 22px; width: auto; display: block; }
.nav-mark span{
  font-family: var(--font-label);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-top: 7px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--forest);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }
.nav-cta{ display: flex; align-items: center; gap: 20px; }
.nav-cta .btn{ padding: 11px 22px; font-size: 13.5px; }
.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span{ width: 26px; height: 1.5px; background: var(--forest); transition: all .3s var(--ease); }
.nav-toggle span:nth-child(2){ width: 18px; }

.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ivory);
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,241,231,.14);
}
.mobile-menu .btn{ margin-top: 30px; }

@media (max-width: 920px){
  .nav-links{ display: none; }
  .nav-cta .btn.btn-ghost{ display: none; }
  .nav-toggle{ display: flex; }
}

/* =========================================================
   SECTION SCAFFOLDING
   ========================================================= */
section{ position: relative; }
.section{ padding: 128px 0; }
.section-tight{ padding: 88px 0; }
.section.on-dark{ background: var(--forest); color: var(--ivory); }
.section.on-stone{ background: var(--stone); }
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.section-head .lede{ margin-top: 20px; }
.section.on-dark .lede{ color: rgba(245,241,231,.68); }
.section-head-tail{ max-width: 360px; text-align: right; }
@media (max-width: 780px){
  .section{ padding: 84px 0; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .section-head-tail{ text-align: left; max-width: none; }
}

.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

.divider{ height: 1px; background: var(--stone-line); border: none; margin: 0; }
.divider.on-dark{ background: rgba(245,241,231,.16); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: 190px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 84% -10%, rgba(168,112,60,.12), transparent 60%),
    radial-gradient(ellipse 700px 500px at -6% 30%, rgba(51,50,42,.08), transparent 60%),
    var(--ivory);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
}
.hero h1{ margin: 26px 0 26px; }
.hero-ctas{ display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 40px; }
.hero-ctas .link-arrow{ font-size: 14.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--forest); padding-bottom: 3px; }
.hero-side p{ color: #55554a; max-width: 30ch; margin-left: auto; font-size: 15px; }
.hero-side{ text-align: right; }

@media (max-width: 920px){
  .hero{ padding-top: 150px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-side{ text-align: left; margin-top: 6px; }
  .hero-side p{ margin-left: 0; }
}

/* product shelf — the signature element */
.shelf-wrap{ margin-top: 90px; }
.shelf-label{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 26px; flex-wrap: wrap; gap: 10px;
}
.shelf{
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 30px 6px 34px;
  margin: 0 -6px;
  scroll-snap-type: x proximity;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.shelf.dragging{ cursor: grabbing; }
.shelf::-webkit-scrollbar{ height: 0; }

.product{
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-visual{
  position: relative;
  width: 100%;
  height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
}
.product-visual::after{
  content: '';
  position: absolute;
  bottom: 0; left: 12%; right: 12%;
  height: 10px;
  background: radial-gradient(ellipse, rgba(20,20,15,.14), transparent 70%);
  border-radius: 50%;
}
.product-tag{
  margin-top: 18px;
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest-mid);
  border: 1px solid var(--stone-line);
  border-radius: 999px;
  padding: 5px 12px;
}
.product-name{ margin-top: 12px; font-family: var(--font-display); font-size: 17px; }
.product-line{ font-size: 12px; color: #6b6b5e; margin-top: 3px; }

/* shape system: shot / bottle / stickpack / jar */
.shape{ position: relative; transition: transform .5s var(--ease); }
.product:hover .shape{ transform: translateY(-6px); }

.shape-shot{
  width: 46px; height: 92px;
  border-radius: 8px 8px 14px 14px;
  background: linear-gradient(160deg, var(--c1), var(--c2));
  box-shadow: inset -6px 0 12px rgba(0,0,0,.14), inset 4px 0 8px rgba(255,255,255,.25);
}
.shape-shot::before{
  content: '';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 12px; border-radius: 3px 3px 0 0;
  background: var(--forest);
}
.shape-bottle{
  width: 58px; height: 148px;
  border-radius: 10px 10px 20px 20px;
  background: linear-gradient(160deg, var(--c1), var(--c2));
  box-shadow: inset -7px 0 14px rgba(0,0,0,.14), inset 4px 0 9px rgba(255,255,255,.22);
}
.shape-bottle::before{
  content: '';
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 18px; border-radius: 4px 4px 0 0;
  background: var(--forest);
}
.shape-stick{
  width: 40px; height: 132px;
  border-radius: 6px;
  background: repeating-linear-gradient(180deg, var(--c1) 0 22px, var(--c2) 22px 44px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.shape-stick::before,.shape-stick::after{
  content: ''; position: absolute; top: 0; bottom: 0; width: 6px; background: rgba(255,255,255,.35);
}
.shape-stick::before{ left: 0; } .shape-stick::after{ right: 0; }
.shape-jar{
  width: 78px; height: 90px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--c1), var(--c2));
  box-shadow: inset -8px 0 16px rgba(0,0,0,.14), inset 5px 0 10px rgba(255,255,255,.2);
}
.shape-jar::before{
  content: '';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 16px; border-radius: 8px;
  background: var(--forest);
}
.shape-label{
  position: absolute; left: 50%; top: 42%; transform: translate(-50%,-50%);
  width: 68%; text-align: center;
  color: var(--white);
  font-family: var(--font-label);
  font-size: 8.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: .92;
}

/* palette variants used across concept products */
.tone-amber{ --c1: #D9AE68; --c2: #A87830; }
.tone-clay{ --c1: #CC9679; --c2: #9C5B3F; }
.tone-sage{ --c1: #92A183; --c2: #5E6E52; }
.tone-forest{ --c1: #4C6C56; --c2: #23392C; }
.tone-stone{ --c1: #E8E1CE; --c2: #C9BF9F; }
.tone-charcoal{ --c1: #4B4B42; --c2: #232320; }

/* =========================================================
   BIG IDEA
   ========================================================= */
.idea-lockup{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.idea-examples{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
}
.idea-example{
  background: var(--ivory);
  padding: 30px 26px;
  transition: background .35s ease;
}
.idea-example:hover{ background: var(--white); }
.idea-example .num{ font-family: var(--font-label); font-size: 11px; color: var(--amber); letter-spacing: .1em; }
.idea-example h4{ font-family: var(--font-display); font-size: 19px; margin-top: 14px; font-weight: 500; }
.idea-example p{ font-size: 13.5px; color: #6b6b5e; margin-top: 8px; line-height: 1.5; }
@media (max-width: 920px){
  .idea-lockup{ grid-template-columns: 1fr; gap: 40px; }
  .idea-examples{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .idea-examples{ grid-template-columns: 1fr; }
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.industry{
  border-top: 1px solid var(--stone-line);
  border-left: 1px solid var(--stone-line);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background .5s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.industry:nth-child(even){ border-right: 1px solid var(--stone-line); }
.industry:hover{ background: var(--white); }
.industry:nth-last-child(-n+2){ border-bottom: 1px solid var(--stone-line); }
.industry-top{ display: flex; justify-content: space-between; align-items: flex-start; }
.industry-index{ font-family: var(--font-label); font-size: 12px; color: var(--stone-line); }
.industry h3{ margin-top: 30px; }
.industry .concept{
  margin-top: 18px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--forest-mid);
  text-transform: uppercase;
}
.industry .link-arrow{
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .4s var(--ease);
}
.industry:hover .link-arrow{ opacity: 1; transform: translateX(0); }
@media (max-width: 780px){
  .industries{ grid-template-columns: 1fr; }
  .industry{ border-right: 1px solid var(--stone-line) !important; padding: 40px 28px; }
}

.link-arrow svg{ width: 14px; height: 14px; }

/* =========================================================
   PROCESS
   ========================================================= */
.process{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245,241,231,.2);
  border-bottom: 1px solid rgba(245,241,231,.2);
}
.process-step{
  padding: 40px 22px 34px;
  border-left: 1px solid rgba(245,241,231,.2);
}
.process-step:first-child{ border-left: none; }
.process-step .step-num{ font-family: var(--font-label); font-size: 11px; color: var(--amber); }
.process-step h4{ font-family: var(--font-display); font-size: 22px; margin-top: 22px; font-weight: 400; }
.process-step p{ font-size: 13px; color: rgba(245,241,231,.6); margin-top: 12px; line-height: 1.5; }
@media (max-width: 920px){
  .process{ grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(4){ border-left: none; }
}
@media (max-width: 560px){
  .process{ grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3),.process-step:nth-child(5){ border-left: none; }
}

/* =========================================================
   PLATFORMS
   ========================================================= */
.platforms{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
}
.platform{
  background: var(--ivory);
  padding: 34px 22px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .3s ease, transform .3s ease;
}
.platform:hover{ background: var(--white); }
.platform .dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--tone, var(--amber)); }
.platform h4{ font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-top: 22px; line-height: 1.2; }
@media (max-width: 1080px){ .platforms{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .platforms{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   SPOTLIGHT (The Wellness Stay)
   ========================================================= */
.spotlight{
  background: var(--forest);
  color: var(--ivory);
  padding: 130px 0;
  position: relative;
}
.spotlight-frame{
  border: 1px solid rgba(245,241,231,.22);
  padding: clamp(28px, 5vw, 64px);
  position: relative;
}
.spotlight-kicker{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-bottom: 46px;
}
.concept-badge{
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(245,241,231,.4);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--ivory);
}
.spotlight h2{ max-width: 16ch; }
.stay-moments{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.moment{
  padding: 0 20px 0 0;
  border-left: 1px solid rgba(245,241,231,.18);
  padding-left: 22px;
}
.moment:first-child{ border-left: none; padding-left: 0; }
.moment .time{ font-family: var(--font-label); font-size: 11px; color: var(--amber); letter-spacing: .08em; }
.moment h4{ font-family: var(--font-display); font-size: 18px; margin-top: 18px; font-weight: 500; }
.moment p{ font-size: 13px; color: rgba(245,241,231,.62); margin-top: 10px; line-height: 1.5; }
@media (max-width: 1000px){
  .stay-moments{ grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .moment{ border-left: none; padding-left: 0; padding-right: 26px; }
}

/* =========================================================
   WHY / CAPABILITIES
   ========================================================= */
.why-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.cap-list{ display: flex; flex-direction: column; }
.cap-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--stone-line);
  align-items: baseline;
}
.cap-list .cap-row:last-child{ border-bottom: 1px solid var(--stone-line); }
.cap-row .n{ font-family: var(--font-label); font-size: 12px; color: var(--forest-mid); }
.cap-row h4{ font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.cap-row p{ font-size: 13.5px; color: #6b6b5e; margin-top: 6px; }
@media (max-width: 860px){
  .why-grid{ grid-template-columns: 1fr; gap: 40px; }
  .cap-row{ grid-template-columns: 60px 1fr; }
}

/* =========================================================
   TRUST / LOGO MARQUEE
   ========================================================= */
.trust-copy{ max-width: 620px; margin: 0 auto 60px; text-align: center; }
.cert-row{
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 26px;
}
.cert{
  font-family: var(--font-label);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--stone-line);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--forest-mid);
}
.marquee{
  overflow: hidden;
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  padding: 34px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track{
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-x 34s linear infinite;
}
@keyframes scroll-x{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.marquee-track span{
  font-family: var(--font-display);
  font-size: 21px;
  color: #8f8a78;
  white-space: nowrap;
  letter-spacing: .01em;
}

/* =========================================================
   PROOF STRIP — credibility, immediately under the hero.
   Dark band right after the light hero for pace and contrast.
   ========================================================= */
.proof-strip{
  background: var(--forest);
  padding: 56px 0 48px;
}
.proof-strip-inner p{
  text-align: center;
  font-family: var(--font-display);
  font-size: 19px;
  color: rgba(247,245,240,.82);
  max-width: 56ch;
  margin: 0 auto;
}
.proof-strip-inner p b{ color: var(--ivory); font-weight: 500; }
.proof-marquee{
  overflow: hidden;
  margin-top: 36px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.proof-marquee-track{
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}
.proof-marquee:hover .proof-marquee-track{ animation-play-state: paused; }
.proof-marquee-track span{
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(247,245,240,.42);
  white-space: nowrap;
  transition: color .25s ease;
  cursor: default;
}
.proof-marquee-track span:hover{ color: var(--amber); }
.proof-strip .form-note{ color: rgba(247,245,240,.4); }

/* =========================================================
   CTA
   ========================================================= */
.cta-band{
  background: var(--forest);
  color: var(--ivory);
  padding: 150px 0;
  text-align: center;
}
.cta-band h2{ max-width: 20ch; margin: 0 auto; }
.cta-band .lede{ color: rgba(245,241,231,.66); margin: 26px auto 0; text-align: center; }
.cta-band .btn{ margin-top: 44px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: var(--charcoal);
  color: var(--ivory);
  padding: 90px 0 40px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 70px;
}
.footer-mark{ font-family: var(--font-display); font-size: 26px; }
.footer-mark span{
  display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,241,231,.5); margin-top: 10px;
}
.footer-blurb{ color: rgba(245,241,231,.55); font-size: 14px; margin-top: 22px; max-width: 32ch; line-height: 1.6; }
.footer-col h5{
  font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,241,231,.45); margin-bottom: 18px;
}
.footer-col a, .footer-col p{ display: block; font-size: 14.5px; color: rgba(245,241,231,.82); margin-bottom: 12px; }
.footer-col a:hover{ color: var(--amber); }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid rgba(245,241,231,.14);
  font-size: 12.5px; color: rgba(245,241,231,.4); flex-wrap: wrap; gap: 12px;
}
@media (max-width: 860px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* =========================================================
   PAGE HEADER (subpages)
   ========================================================= */
.page-hero{
  padding: 190px 0 100px;
  background:
    radial-gradient(ellipse 800px 460px at 88% 0%, rgba(168,112,60,.12), transparent 60%),
    var(--ivory);
}
.page-hero .eyebrow{ margin-bottom: 24px; }
.page-hero h1{ max-width: 16ch; }
.page-hero .lede{ margin-top: 26px; max-width: 56ch; }
.page-hero-stats{
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--stone-line);
  padding-top: 34px;
  gap: 20px;
}
.page-hero-stats .stat b{ font-family: var(--font-display); font-size: 30px; display: block; font-weight: 400; }
.page-hero-stats .stat span{ font-size: 12.5px; color: #6b6b5e; }
@media (max-width: 780px){ .page-hero-stats{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   FORM (Start a Partnership)
   ========================================================= */
.form-grid{ display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.form-side .contact-line{ margin-top: 36px; }
.form-side .contact-line h5{ font-family: var(--font-label); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-mid); margin-bottom: 8px; }
.form-side .contact-line p, .form-side .contact-line a{ font-family: var(--font-display); font-size: 19px; }

.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field{ margin-bottom: 26px; }
.field label{
  display: block; font-family: var(--font-label); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest-mid); margin-bottom: 10px;
}
.field input, .field select, .field textarea{
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--stone-line);
  background: transparent;
  padding: 12px 2px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--forest); outline: none; }
.field textarea{ resize: vertical; min-height: 110px; }
.field select{ appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C4232' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.form-note{ font-size: 13px; color: #7a7a6c; margin-top: 20px; }
@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 560px){
  .field-row{ grid-template-columns: 1fr; }
}

/* generic two/three col grids reused across subpages */
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--stone-line); border: 1px solid var(--stone-line); }
.grid-3 .card{ background: var(--ivory); padding: 40px 32px; }
@media (max-width: 860px){ .grid-2{ grid-template-columns: 1fr; gap: 36px; } .grid-3{ grid-template-columns: 1fr; } }

.tag-list{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag{
  font-family: var(--font-label); font-size: 11.5px; letter-spacing: .05em;
  border: 1px solid var(--stone-line); border-radius: 999px; padding: 8px 15px; color: var(--forest-mid);
}

.quote-block{
  border-left: 2px solid var(--amber);
  padding-left: 34px;
  margin: 0;
}
.quote-block p{ font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.4; }
.quote-block cite{ display: block; margin-top: 18px; font-family: var(--font-label); font-size: 12px; font-style: normal; color: var(--forest-mid); }

/* =========================================================
   REDESIGN v2 — honest photo slots.
   No fake CSS product renders. A clean, labeled frame for
   real photography to drop into — reads intentional now,
   not like a placeholder pretending to be finished.
   ========================================================= */
.photo-slot{
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(155deg, var(--forest-mid) 0%, var(--forest) 62%),
    linear-gradient(20deg, rgba(168,112,60,.28), transparent 55%);
  display: flex;
  align-items: flex-end;
}
.photo-slot img, .photo-slot video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-slot-label{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
.photo-slot-label .tag-pill{
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247,245,240,.9);
  border: 1px solid rgba(247,245,240,.28);
  border-radius: 999px;
  padding: 7px 14px;
}
.photo-slot-label .caption{
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ivory);
  text-align: right;
}
.photo-slot.hero-slot{ aspect-ratio: 4 / 5; max-width: 460px; margin-left: auto; }
.photo-slot.card-slot{ aspect-ratio: 5 / 4; }
.photo-slot.wide-slot{ aspect-ratio: 16 / 8; }

/* product-frame — for literal white-background product photography
   (the shelf shots), distinct from the moody dark lifestyle photos.
   contain, not cover, so nothing gets cropped. */
.photo-slot.product-frame{
  background: var(--white);
  border: 1px solid var(--stone-line);
  aspect-ratio: 3 / 2;
}
.photo-slot.product-frame img{ object-fit: contain; padding: 28px; box-sizing: border-box; }
@media (max-width: 920px){
  .photo-slot.hero-slot{ margin: 40px auto 0; max-width: 380px; }
}

/* concept marquee — replaces the small product shelf as the
   "browse concepts" mechanic; typographic, not literal mockups */
.concept-marquee{
  border-top: 1px solid var(--stone-line);
  border-bottom: 1px solid var(--stone-line);
  padding: 22px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.concept-marquee:hover .concept-marquee-track{ animation-play-state: paused; }
.concept-marquee-track{
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: scroll-x 40s linear infinite;
}
.concept-marquee-track span{
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  cursor: default;
  transition: color .2s ease, transform .2s ease;
}
.concept-marquee-track span:hover{
  color: var(--amber);
  transform: scale(1.06);
}
.concept-marquee-track span::after{
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

/* editorial idea list — replaces the 8-cell grid */
.idea-feature-list{ display: flex; flex-direction: column; }
.idea-feature{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid var(--stone-line);
  align-items: start;
}
.idea-feature-list .idea-feature:last-child{ border-bottom: 1px solid var(--stone-line); }
.idea-feature .num{ font-family: var(--font-display); font-size: 34px; color: var(--stone-line); font-weight: 400; }
.idea-feature h4{ font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.idea-feature p{ font-size: 15px; color: #6b6b5e; margin-top: 8px; max-width: 46ch; line-height: 1.55; }
@media (max-width: 640px){
  .idea-feature{ grid-template-columns: 50px 1fr; }
}

/* featured industries — 3 large cards instead of 7 equal tiles */
.industry-feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
}
.industry-feature{
  background: var(--ivory);
  padding: 26px 26px 34px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: background .4s ease, transform .4s var(--ease);
}
.industry-feature:hover{ background: var(--white); transform: translateY(-4px); }
.industry-feature h3{ margin-top: 0; }
.industry-feature .concept{
  margin-top: 14px;
  font-size: 14px;
  color: #6b6b5e;
  font-family: var(--font-body);
  line-height: 1.5;
}
.industry-feature .link-arrow{
  margin-top: 30px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
@media (max-width: 860px){ .industry-feature-grid{ grid-template-columns: 1fr; } }

.industry-also{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #6b6b5e;
}
.industry-also a{
  border-bottom: 1px solid var(--stone-line);
  padding-bottom: 2px;
  color: var(--forest);
  font-weight: 500;
  transition: border-color .3s ease;
}
.industry-also a:hover{ border-color: var(--forest); }

/* platform pill cloud — replaces the dense 10-cell grid */
.platform-cloud{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.platform-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--stone-line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 16px;
  transition: border-color .3s ease, transform .3s var(--ease), background .3s ease;
}
.platform-pill:hover{ border-color: var(--forest); transform: translateY(-2px); background: var(--white); }
.platform-pill .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--tone, var(--amber)); flex-shrink: 0; }

/* tighter capability rows with more air */
.cap-list.airy .cap-row{ padding: 32px 0; }
.cap-list.airy .cap-row p{ max-width: 44ch; }

/* mini photo slot — small visual anchor on the industry cards */
.photo-slot.mini-slot{
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 6px;
}
