/* ============================================================
   Himalayan Region — Design System v2
   Modern editorial B2B aesthetic. All-original.
   Loaded ALONGSIDE style.css on redesigned pages.
   ============================================================ */

:root{
  --hr-ink: #1a1a1a;
  --hr-ink-soft: #4a4a4a;
  --hr-cream: #faf5ea;
  --hr-cream-2: #f4eee1;
  --hr-cream-3: #efe5cf;
  --hr-terracotta: #c04b1a;
  --hr-terracotta-soft: #e07a4a;
  --hr-amber: #f9a23b;
  --hr-forest: #0d3b26;
  --hr-forest-soft: #1f4d38;
  --hr-line: rgba(26,26,26,.10);
  --hr-line-strong: rgba(26,26,26,.18);
  --hr-shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --hr-shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --hr-shadow-lg: 0 20px 44px rgba(0,0,0,.14);
  --hr-radius: 10px;
  --hr-radius-sm: 6px;
  --hr-max: 1440px;
  --hr-max-narrow: 1180px;
  --hr-gutter: 32px;
  --hr-section-y: clamp(64px, 8vw, 112px);
  --hr-font-display: 'Fraunces', 'Playfair Display', ui-serif, Georgia, serif;
  --hr-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hr-font-mono: 'IBM Plex Mono', 'JetBrains Mono', monospace;
  --hr-ease: cubic-bezier(.22,.68,.31,1);
}

/* Reset + base */
.v2, .v2 *, .v2 *::before, .v2 *::after{ box-sizing: border-box; }
.v2{
  font-family: var(--hr-font-body);
  color: var(--hr-ink);
  background: var(--hr-cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.v2 img{ max-width: 100%; height: auto; display: block; }
.v2 a{ color: inherit; text-decoration: none; transition: color .2s var(--hr-ease); }
.v2 a:hover{ color: var(--hr-terracotta); }

.v2 h1, .v2 h2, .v2 h3, .v2 h4{
  font-family: var(--hr-font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--hr-ink);
  margin: 0 0 0.4em;
}
.v2 h1{ font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; letter-spacing: -0.02em; }
.v2 h2{ font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.v2 h3{ font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 600; }
.v2 h4{ font-size: 1rem; font-weight: 600; }
.v2 p{ margin: 0 0 1em; color: var(--hr-ink-soft); }
.v2 .lead{ font-size: 1.12rem; line-height: 1.6; color: var(--hr-ink); max-width: 60ch; }

.v2 .eyebrow{
  font-family: var(--hr-font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--hr-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.v2 .eyebrow::before{
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.v2 .eyebrow.-center{ margin-left: auto; margin-right: auto; }
.v2 .eyebrow.-light{ color: var(--hr-amber); }

/* Layout */
.v2 .wrap{ max-width: var(--hr-max); margin: 0 auto; padding: 0 var(--hr-gutter); }
.v2 .wrap-narrow{ max-width: var(--hr-max-narrow); margin: 0 auto; padding: 0 var(--hr-gutter); }
.v2 .wrap-full{ width: 100%; margin: 0 auto; padding: 0 var(--hr-gutter); }
.v2 section{ padding: var(--hr-section-y) 0; }
.v2 .center{ text-align: center; }
.v2 .grid-2{ display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.v2 .grid-3{ display: grid; grid-template-columns: 1fr; gap: 28px; }
.v2 .grid-4{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 780px){
  .v2 .grid-2{ grid-template-columns: 1fr 1fr; }
  .v2 .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .v2 .grid-4{ grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.v2 .btn{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hr-font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .28s var(--hr-ease);
  text-decoration: none;
  line-height: 1;
}
.v2 .btn.-primary{ background: var(--hr-terracotta); color: #fff; }
.v2 .btn.-primary:hover{ background: #a83e15; color: #fff; transform: translateY(-1px); box-shadow: var(--hr-shadow-md); }
.v2 .btn.-dark{ background: var(--hr-ink); color: var(--hr-cream); }
.v2 .btn.-dark:hover{ background: var(--hr-forest); color: var(--hr-cream); transform: translateY(-1px); }
.v2 .btn.-ghost{ background: transparent; color: var(--hr-ink); border-color: var(--hr-line-strong); }
.v2 .btn.-ghost:hover{ background: var(--hr-ink); color: var(--hr-cream); border-color: var(--hr-ink); }
.v2 .btn.-ghost-light{ background: transparent; color: var(--hr-cream); border-color: rgba(250,245,234,.4); }
.v2 .btn.-ghost-light:hover{ background: var(--hr-cream); color: var(--hr-ink); border-color: var(--hr-cream); }
.v2 .btn.-whatsapp{ background: #25D366; color: #fff; }
.v2 .btn.-whatsapp:hover{ background: #1eaf54; color: #fff; }

/* Header / Nav */
.v2-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,245,234,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hr-line);
}
.v2-nav{ display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.v2-nav__logo{ display: flex; align-items: center; gap: 12px; font-family: var(--hr-font-display); font-size: 1.15rem; font-weight: 500; letter-spacing: -0.01em; color: var(--hr-ink); }
.v2-nav__logo img{ height: 34px; width: auto; }
.v2-nav__links{ display: none; gap: 34px; align-items: center; }
.v2-nav__links a{ font-size: 0.9rem; font-weight: 500; color: var(--hr-ink); position: relative; }
.v2-nav__links a::after{ content: ""; position: absolute; bottom: -6px; left: 0; height: 1.5px; width: 0; background: var(--hr-terracotta); transition: width .3s var(--hr-ease); }
.v2-nav__links a:hover::after, .v2-nav__links a.-active::after{ width: 100%; }
.v2-nav__cta{ display: none; }
@media (min-width: 900px){
  .v2-nav__links{ display: flex; }
  .v2-nav__cta{ display: inline-flex; }
}
.v2-nav__menu{ display: inline-flex; }
@media (min-width: 900px){ .v2-nav__menu{ display: none; } }
.v2-nav__menu-btn{ background: none; border: 1.5px solid var(--hr-line-strong); border-radius: 999px; padding: 10px 16px; font-size: 0.85rem; cursor: pointer; color: var(--hr-ink); }

/* Hero */
.v2-hero{ position: relative; padding: clamp(80px, 12vw, 160px) 0 clamp(64px, 8vw, 120px); overflow: hidden; }
.v2-hero__inner{ display: grid; gap: clamp(32px, 5vw, 72px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px){ .v2-hero__inner{ grid-template-columns: 1.05fr 1.1fr; } }
.v2-hero__content{ position: relative; z-index: 2; }
.v2-hero__visual{ position: relative; aspect-ratio: 5/6; overflow: hidden; border-radius: var(--hr-radius); box-shadow: var(--hr-shadow-lg); }
.v2-hero__visual img{ width: 100%; height: 100%; object-fit: cover; }
.v2-hero__visual .badge{ position: absolute; bottom: 24px; left: 24px; background: var(--hr-cream); padding: 12px 18px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; color: var(--hr-ink); box-shadow: var(--hr-shadow-md); display: inline-flex; gap: 8px; align-items: center; }
.v2-hero__actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Hero carousel — auto-rotating slides */
.v2-carousel{ position: relative; }
.v2-carousel__slides{ display: grid; }
.v2-carousel__slide{ grid-column: 1; grid-row: 1; opacity: 0; visibility: hidden; transition: opacity .9s var(--hr-ease); pointer-events: none; }
.v2-carousel__slide.-active{ opacity: 1; visibility: visible; pointer-events: auto; }
.v2-carousel__dots{ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.v2-carousel__dot{ width: 34px; height: 3px; background: rgba(255,255,255,.45); border: none; cursor: pointer; padding: 0; border-radius: 2px; transition: background .3s var(--hr-ease); }
.v2-carousel__dot.-active{ background: var(--hr-cream); }
.v2-carousel__badges{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.v2-badge{ display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(192,75,26,.10); color: var(--hr-terracotta); border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.v2-badge.-forest{ background: rgba(13,59,38,.12); color: var(--hr-forest); }
.v2-badge.-amber{ background: rgba(249,162,59,.16); color: #b76e12; }

/* Certifications strip */
.v2-certs{ background: #fff; border-top: 1px solid var(--hr-line); border-bottom: 1px solid var(--hr-line); padding: 32px 0; }
.v2-certs__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px; align-items: center; text-align: center; }
@media (min-width: 780px){ .v2-certs__grid{ grid-template-columns: repeat(6, 1fr); } }
.v2-certs__item{ font-family: var(--hr-font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hr-ink-soft); display: flex; align-items: center; justify-content: center; gap: 8px; }
.v2-certs__item::before{ content: "✓"; color: var(--hr-terracotta); font-size: 1rem; font-weight: 700; }

/* Comparison table */
.v2-compare{ width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--hr-shadow-sm); font-size: 0.92rem; }
.v2-compare th, .v2-compare td{ padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--hr-line); }
.v2-compare thead th{ background: var(--hr-forest); color: var(--hr-cream); font-family: var(--hr-font-body); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; font-weight: 700; }
.v2-compare tbody tr:last-child td{ border-bottom: none; }
.v2-compare tbody th{ font-weight: 600; color: var(--hr-ink); background: var(--hr-cream-2); width: 30%; }
.v2-compare .-yes{ color: var(--hr-forest); font-weight: 700; }
.v2-compare .-no{ color: #a94b3b; opacity: 0.6; }
.v2-compare .-hero-col{ background: rgba(192,75,26,.06); border-left: 3px solid var(--hr-terracotta); }

/* Keyword pill row */
.v2-keywords{ display: flex; flex-wrap: wrap; gap: 10px; }
.v2-keywords span{ display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(13,59,38,.06); color: var(--hr-forest); border-radius: 999px; font-size: 0.82rem; font-weight: 600; }

/* Category badge row */
.v2-catrow{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 780px){ .v2-catrow{ grid-template-columns: repeat(4, 1fr); } }
.v2-catbadge{ background: #fff; padding: 20px 22px; border-radius: 12px; box-shadow: var(--hr-shadow-sm); display: flex; align-items: center; gap: 14px; transition: transform .3s var(--hr-ease); text-decoration: none; color: var(--hr-ink); }
.v2-catbadge:hover{ transform: translateY(-3px); color: var(--hr-ink); }
.v2-catbadge__icon{ width: 44px; height: 44px; background: var(--hr-cream-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--hr-terracotta); font-size: 1.3rem; font-weight: 700; font-family: var(--hr-font-display); }
.v2-catbadge__label{ display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hr-ink-soft); font-weight: 600; }
.v2-catbadge__title{ display: block; font-family: var(--hr-font-display); font-size: 1.05rem; font-weight: 500; margin-top: 2px; }

/* Marquee (thin trust bar) */
.v2-trustbar{ background: var(--hr-forest); color: var(--hr-cream); padding: 14px 0; overflow: hidden; }
.v2-trustbar__track{ display: flex; gap: 44px; white-space: nowrap; animation: hr-marquee 40s linear infinite; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.9; }
.v2-trustbar__track span{ display: inline-flex; gap: 12px; align-items: center; }
.v2-trustbar__track span::before{ content: "★"; color: var(--hr-amber); }
@keyframes hr-marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* Stats strip */
.v2-stats{ background: var(--hr-cream-2); padding: 48px 0; }
.v2-stats__grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px; text-align: center; }
@media (min-width: 780px){ .v2-stats__grid{ grid-template-columns: repeat(4, 1fr); } }
.v2-stat__num{ font-family: var(--hr-font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 500; color: var(--hr-terracotta); letter-spacing: -0.02em; line-height: 1; }
.v2-stat__label{ margin-top: 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--hr-ink-soft); }

/* Product card */
.v2-card{ background: #fff; border-radius: var(--hr-radius); overflow: hidden; box-shadow: var(--hr-shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--hr-ease), box-shadow .3s var(--hr-ease); }
.v2-card:hover{ transform: translateY(-4px); box-shadow: var(--hr-shadow-md); }
.v2-card__img{ aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, var(--hr-cream-2) 100%); position: relative; padding: 22px; display: flex; align-items: center; justify-content: center; }
.v2-card__img img{ max-width: 82%; max-height: 82%; width: auto; height: auto; object-fit: contain; transition: transform .6s var(--hr-ease); filter: drop-shadow(0 6px 14px rgba(0,0,0,.10)); }
.v2-card:hover .v2-card__img img{ transform: scale(1.06); }
.v2-card__img .-placeholder{ display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--hr-ink-soft); font-size: 0.85rem; font-style: italic; padding: 20px; text-align: center; }
.v2-card__badge{ position: absolute; top: 14px; left: 14px; background: var(--hr-cream); color: var(--hr-terracotta); font-size: 0.7rem; padding: 5px 11px; border-radius: 999px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.v2-card__body{ padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.v2-card__cat{ font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--hr-terracotta); font-weight: 700; margin-bottom: 8px; }
.v2-card__title{ font-family: var(--hr-font-display); font-size: 1.15rem; font-weight: 500; margin: 0 0 10px; color: var(--hr-ink); line-height: 1.3; }
.v2-card__meta{ display: inline-flex; align-items: center; gap: 6px; background: rgba(192,75,26,.10); color: var(--hr-terracotta); font-size: 0.72rem; padding: 4px 10px; border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; align-self: flex-start; }
.v2-card__desc{ font-size: 0.9rem; color: var(--hr-ink-soft); line-height: 1.55; margin: 0 0 16px; }
.v2-card__foot{ margin-top: auto; padding-top: 14px; border-top: 1px solid var(--hr-line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.v2-card__note{ font-size: 0.76rem; color: var(--hr-ink-soft); }
.v2-card__cta{ font-size: 0.86rem; font-weight: 600; color: var(--hr-ink); }
.v2-card__cta:hover{ color: var(--hr-terracotta); }

/* Buyer archetype card — narrower image so it doesn't dwarf title */
.v2-buyer-card{ background: #fff; border-radius: var(--hr-radius); overflow: hidden; box-shadow: var(--hr-shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--hr-ease), box-shadow .3s var(--hr-ease); }
.v2-buyer-card:hover{ transform: translateY(-4px); box-shadow: var(--hr-shadow-md); }
.v2-buyer-card__img{ aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--hr-cream-2); }
.v2-buyer-card__img img{ width: 100%; height: 100%; object-fit: cover; }
.v2-buyer-card__img .-placeholder{ display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--hr-ink-soft); font-size: 0.85rem; text-align: center; padding: 20px; }
.v2-buyer-card__img .-placeholder svg{ margin-bottom: 8px; opacity: 0.4; }
.v2-buyer-card__body{ padding: 24px 26px 26px; }

/* Category tile — bigger editorial hero for a category */
.v2-tile{ position: relative; aspect-ratio: 4/5; border-radius: var(--hr-radius); overflow: hidden; background: var(--hr-cream-3); }
.v2-tile img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--hr-ease); }
.v2-tile:hover img{ transform: scale(1.04); }
.v2-tile__overlay{ position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.75) 100%); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.v2-tile__overlay .eyebrow{ color: var(--hr-amber); }
.v2-tile__overlay h3{ color: #fff; margin: 0; font-size: 1.5rem; }
.v2-tile__link{ margin-top: 10px; font-size: 0.88rem; font-weight: 600; color: #fff; opacity: 0.9; }
.v2-tile__link:hover{ opacity: 1; color: var(--hr-amber); }

/* Split feature */
.v2-split{ display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 780px){ .v2-split{ grid-template-columns: 1fr 1fr; } }
.v2-split.-flip > *:first-child{ order: 2; }
@media (min-width: 780px){ .v2-split.-flip > *:first-child{ order: 0; } }
.v2-split__visual{ aspect-ratio: 4/5; overflow: hidden; border-radius: var(--hr-radius); background: var(--hr-cream-3); box-shadow: var(--hr-shadow-md); }
.v2-split__visual img{ width: 100%; height: 100%; object-fit: cover; }

/* Quote */
.v2-quote{ background: var(--hr-forest); color: var(--hr-cream); text-align: center; }
.v2-quote__body{ font-family: var(--hr-font-display); font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.4; font-style: italic; max-width: 42ch; margin: 0 auto 20px; color: var(--hr-cream); }
.v2-quote__attr{ font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hr-amber); font-weight: 600; }

/* Callout band */
.v2-callout{ background: var(--hr-cream-2); border-radius: var(--hr-radius); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
@media (min-width: 780px){ .v2-callout{ grid-template-columns: 1.4fr 1fr; } }
.v2-callout__actions{ display: flex; gap: 14px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 779px){ .v2-callout__actions{ justify-self: start; } }

/* Feature list (three-across bullets) */
.v2-featlist{ display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 780px){ .v2-featlist{ grid-template-columns: repeat(3, 1fr); } }
.v2-feat{ padding: 24px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius); background: #fff; }
.v2-feat__num{ font-family: var(--hr-font-display); font-size: 1.4rem; color: var(--hr-terracotta); margin-bottom: 8px; }
.v2-feat h4{ margin: 0 0 8px; }
.v2-feat p{ margin: 0; font-size: 0.92rem; }

/* Testimonial */
.v2-testi{ background: #fff; padding: 26px 28px; border-radius: var(--hr-radius); box-shadow: var(--hr-shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.v2-testi__quote{ font-size: 0.98rem; line-height: 1.55; color: var(--hr-ink); margin: 0; }
.v2-testi__who{ font-size: 0.82rem; color: var(--hr-ink-soft); font-weight: 600; letter-spacing: 0.02em; }

/* Footer */
.v2-footer{ background: var(--hr-ink); color: rgba(250,245,234,.7); padding: 72px 0 32px; margin-top: 0; }
.v2-footer a{ color: rgba(250,245,234,.85); }
.v2-footer a:hover{ color: var(--hr-amber); }
.v2-footer__grid{ display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(250,245,234,.12); }
@media (min-width: 780px){ .v2-footer__grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.v2-footer h4{ color: var(--hr-cream); font-family: var(--hr-font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin: 0 0 18px; }
.v2-footer__brand{ font-family: var(--hr-font-display); font-size: 1.6rem; color: var(--hr-cream); margin-bottom: 12px; letter-spacing: -0.01em; }
.v2-footer ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.v2-footer__legal{ padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: rgba(250,245,234,.5); }

/* Forms */
.v2-form{ display: grid; gap: 14px; }
.v2-form__row{ display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 620px){ .v2-form__row{ grid-template-columns: 1fr 1fr; } }
.v2-form label{ display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--hr-ink); letter-spacing: 0.02em; }
.v2-form input, .v2-form textarea, .v2-form select{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hr-line-strong);
  border-radius: 8px;
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  color: var(--hr-ink);
  background: #fff;
  transition: border-color .2s var(--hr-ease), box-shadow .2s var(--hr-ease);
}
.v2-form input:focus, .v2-form textarea:focus, .v2-form select:focus{
  outline: none; border-color: var(--hr-terracotta); box-shadow: 0 0 0 3px rgba(192,75,26,.14);
}
.v2-form textarea{ min-height: 130px; resize: vertical; }
.v2-checkgroup{ display: flex; flex-wrap: wrap; gap: 10px; }
.v2-checkgroup label{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--hr-line-strong);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; margin: 0;
  background: #fff; transition: all .2s var(--hr-ease);
}
.v2-checkgroup input:checked + span, .v2-checkgroup label:has(input:checked){ background: var(--hr-terracotta); color: #fff; border-color: var(--hr-terracotta); }
.v2-checkgroup input{ width: auto; }

/* Section variants */
.v2-sec-cream{ background: var(--hr-cream); }
.v2-sec-cream-2{ background: var(--hr-cream-2); }
.v2-sec-forest{ background: var(--hr-forest); color: var(--hr-cream); }
.v2-sec-forest h1, .v2-sec-forest h2, .v2-sec-forest h3{ color: var(--hr-cream); }
.v2-sec-forest p{ color: rgba(250,245,234,.8); }

/* Utilities */
.v2 .mt-24{ margin-top: 24px; } .v2 .mt-40{ margin-top: 40px; } .v2 .mt-60{ margin-top: 60px; }
.v2 .max-40{ max-width: 40rem; } .v2 .max-48{ max-width: 48rem; }
.v2 .divider{ height: 1px; background: var(--hr-line); border: 0; margin: 32px 0; }
.v2 .divider.-strong{ background: var(--hr-line-strong); }
.v2 .center-block{ margin-left: auto; margin-right: auto; }
.v2 .reveal{ opacity: 0; transform: translateY(14px); transition: opacity .8s var(--hr-ease), transform .8s var(--hr-ease); }
.v2 .reveal.-in{ opacity: 1; transform: none; }

/* Section-head helper */
.v2 .sec-head{ margin-bottom: clamp(28px, 4vw, 48px); max-width: 42rem; }
.v2 .sec-head.-center{ margin-left: auto; margin-right: auto; text-align: center; }

/* Small screens: nav mobile drawer (hidden on desktop, revealed by Menu button on mobile) */
.v2-mobile-drawer{ display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--hr-cream); border-bottom: 1px solid var(--hr-line); padding: 20px var(--hr-gutter); flex-direction: column; gap: 16px; z-index: 90; }
.v2-mobile-drawer.-open{ display: flex; }
.v2-mobile-drawer a{ font-size: 1rem; font-weight: 500; padding: 8px 0; }
@media (min-width: 900px){
  .v2-mobile-drawer, .v2-mobile-drawer.-open{ display: none !important; }
}


/* ==============================================================
   HOMEPAGE ORIGINAL SECTIONS (added for redesign-b2b)
   Manifesto (3-col beliefs) + Dual Marquee + Sticky Story
   ============================================================== */

/* --- 3-column manifesto / belief statement grid --- */
.v2-manifesto{
  background: var(--hr-ink, #14171a);
  color: var(--hr-cream, #f2ebdc);
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.v2-manifesto .wrap{
  max-width: var(--hr-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--hr-gutter, 24px);
}
.v2-manifesto__wordmark{
  font-family: var(--hr-font-display, 'Fraunces', Georgia, serif);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--hr-cream, #f2ebdc);
  text-align: center;
  margin: 0 0 clamp(56px, 8vw, 96px);
  white-space: nowrap;
  overflow: hidden;
}
.v2-manifesto__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 780px){
  .v2-manifesto__grid{ grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
}
.v2-manifesto__cell{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 22px;
  border-top: none;
}
.v2-manifesto__rule{
  width: 100%;
  height: 2px;
  background: var(--hr-terracotta, #b45739);
}
.v2-manifesto__text{
  font-family: var(--hr-font-display, 'Fraunces', Georgia, serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--hr-cream, #f2ebdc);
  margin: 0;
  text-transform: none;
}
.v2-manifesto__text em{
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--hr-font-body, 'Inter', sans-serif);
  font-size: 0.78em;
  display: block;
  margin-bottom: 6px;
  color: var(--hr-terracotta, #b45739);
}

/* --- Dual-lane opposite-direction marquee --- */
.v2-marquee-dual{
  background: var(--hr-cream, #f2ebdc);
  color: var(--hr-ink, #14171a);
  padding: clamp(24px, 3vw, 40px) 0;
  overflow: hidden;
  border-block: 1px solid var(--hr-line, rgba(20,23,26,0.08));
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 18px);
}
.v2-marquee-dual__lane{
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.v2-marquee-dual__track{
  display: inline-flex;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  font-family: var(--hr-font-display, 'Fraunces', Georgia, serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.4vw, 3rem);
  letter-spacing: -0.005em;
  line-height: 1.1;
  padding-inline: clamp(16px, 2vw, 32px);
  will-change: transform;
}
.v2-marquee-dual__track span{
  display: inline-block;
}
.v2-marquee-dual__lane.-l .v2-marquee-dual__track{
  animation: hr-marquee 42s linear infinite;
}
.v2-marquee-dual__lane.-r .v2-marquee-dual__track{
  animation: hr-marquee-r 46s linear infinite;
  color: var(--hr-terracotta, #b45739);
  font-style: italic;
  font-weight: 400;
}
@keyframes hr-marquee{
  from{ transform: translate3d(0,0,0); }
  to{ transform: translate3d(-50%,0,0); }
}
@keyframes hr-marquee-r{
  from{ transform: translate3d(-50%,0,0); }
  to{ transform: translate3d(0,0,0); }
}
@media (prefers-reduced-motion: reduce){
  .v2-marquee-dual__lane .v2-marquee-dual__track{ animation: none; }
}

/* --- Sticky scrollytelling story --- */
.v2-sticky-story{
  background: var(--hr-cream, #f2ebdc);
  color: var(--hr-ink, #14171a);
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
.v2-sticky-story .wrap{
  max-width: var(--hr-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--hr-gutter, 24px);
}
.v2-sticky-story__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px){
  .v2-sticky-story__grid{
    grid-template-columns: 5fr 6fr;
    gap: clamp(48px, 6vw, 96px);
  }
}
.v2-sticky-story__pin{
  position: static;
}
@media (min-width: 900px){
  .v2-sticky-story__pin{
    position: sticky;
    top: clamp(80px, 14vh, 140px);
    align-self: start;
  }
}
.v2-sticky-story__eyebrow{
  font-family: var(--hr-font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hr-terracotta, #b45739);
  font-weight: 600;
  margin: 0 0 20px;
}
.v2-sticky-story__title{
  font-family: var(--hr-font-display, 'Fraunces', Georgia, serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--hr-ink, #14171a);
  margin: 0 0 24px;
}
.v2-sticky-story__body{
  font-family: var(--hr-font-body, 'Inter', sans-serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--hr-ink-soft, #4a4f55);
  max-width: 44ch;
  margin: 0;
}
.v2-sticky-story__frames{
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vh, 56px);
}
.v2-sticky-story__frame{
  margin: 0;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--hr-cream-2, #eadfc9);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--hr-shadow-md, 0 20px 60px -20px rgba(20,23,26,0.25));
}
.v2-sticky-story__frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2-sticky-story__frame-caption{
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 12px;
  background: var(--hr-cream, #f2ebdc);
  color: var(--hr-ink, #14171a);
  font-family: var(--hr-font-body, 'Inter', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
}


/* --- Fix: quote paragraph losing centering to .v2 p specificity --- */
.v2-quote .v2-quote__body{ margin: 0 auto 20px !important; }
