/*!
 * HRL Projects — site styles
 * Consolidated design tokens, component classes, responsive rules, motion.
 * Author: Duniya Ads (duniyaads.com)
 */

/* ── design tokens ─────────────────────────────────────────────────────── */
:root {
  /* brand */
  --color-bg: #f6f4f2;
  --color-surface: #ede9e5;
  --color-text: #1a1917;
  --color-accent: #0f766e;
  --color-accent-100: #d6efec;
  --color-accent-200: #a7e0d8;
  --color-accent-300: #6fc9bd;
  --color-accent-400: #3fab9d;
  --color-accent-500: #1d8577;
  --color-accent-600: #0f766e;
  --color-accent-700: #0a544d;
  --color-accent-800: #073d38;
  --color-accent-900: #052b27;
  --color-purple: #5b2b7a;
  --color-purple-700: #3f1d55;
  --color-gold: #b78b2e;
  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;
  --color-divider: color-mix(in srgb, #1a1917 16%, transparent);

  /* type */
  --font-heading: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Spectral", Georgia, "Times New Roman", serif;

  /* space */
  --space-1: 4.6px;
  --space-2: 9.2px;
  --space-3: 13.8px;
  --space-4: 18.4px;
  --space-6: 27.6px;
  --space-8: 36.8px;

  /* radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  /* elevation */
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 22%, transparent);
}

/* ── reset & base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
  text-wrap: pretty;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
figcaption {
  font-size: 11px; margin-top: var(--space-1);
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}
a { color: var(--color-accent); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-700); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
p { margin: 0 0 var(--space-3); }
.text-muted { color: color-mix(in srgb, var(--color-text) 55%, transparent); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: -40px; left: 8px; z-index: 100;
  padding: 8px 14px; background: var(--color-text); color: var(--color-bg);
  border-radius: var(--radius-md); text-decoration: none; font-size: 14px;
}
.skip-link:focus { top: 8px; color: var(--color-bg); }

/* ── layout helpers ────────────────────────────────────────────────────── */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}
.page-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(1100px 620px at 82% -10%, var(--color-accent-100) 0%, transparent 60%),
    radial-gradient(900px 560px at -5% 12%, var(--color-neutral-100) 0%, transparent 55%),
    var(--color-bg);
}
main { flex: 1; }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { display: block; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary { color: var(--color-accent); border-color: var(--color-accent); box-shadow: var(--shadow-sm); min-height: 44px; padding: 0 22px; }
.btn-primary:hover { background: color-mix(in srgb, var(--color-accent) 12%, transparent); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--color-accent); }
.btn-primary:active { background: color-mix(in srgb, var(--color-accent) 22%, transparent); transform: translateY(0); }
.btn-primary--solid { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary--solid:hover { background: var(--color-accent-700); color: #fff; border-color: var(--color-accent-700); }
.btn-secondary { border-color: var(--color-divider); min-height: 44px; padding: 0 22px; }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent); padding-inline: var(--space-1); }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-icon { width: 40px; height: 40px; padding: 0; }
.btn-block { width: 100%; margin-top: var(--space-2); }

/* ── forms ─────────────────────────────────────────────────────────────── */
.field > label {
  display: block; font-size: 12px; margin-bottom: 5px;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.input {
  width: 100%; min-height: 44px; padding: 10px 12px; font: inherit;
  font-size: 15px; color: var(--color-text); caret-color: var(--color-accent);
  background: var(--color-bg);
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
  transition: border-color .18s ease;
}
.input:hover { border-color: color-mix(in srgb, var(--color-text) 45%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline: 2px solid var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 130px; resize: vertical; }

/* ── cards / tags ──────────────────────────────────────────────────────── */
.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md);
  background: transparent; border: 1px solid var(--color-divider);
}
.card-kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.card-title { font-family: var(--font-heading); font-weight: 600; font-size: 17px; line-height: 1.2; }
.card-body { margin: 0; font-size: 13px; opacity: 0.8; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: color-mix(in srgb, var(--color-text) 50%, transparent); }

.tag {
  display: inline-flex; align-items: center; font-size: 11px;
  letter-spacing: 0.02em; padding: 4px 10px;
  border-radius: calc(var(--radius-md) * 0.75);
}
.tag-outline { border: 1px solid var(--color-accent); color: var(--color-accent); }

/* ── tables ────────────────────────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid var(--color-divider);
}
.table td { padding: var(--space-2); border-bottom: 1px solid var(--color-divider); }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }
.hrl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hrl-scroll .table { min-width: 620px; }

/* ── nav — bigger logo ─────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  border-bottom: 1px solid var(--color-divider);
}
.site-nav {
  max-width: 1240px; margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex; align-items: center; gap: clamp(14px, 3vw, 34px);
}
.site-nav__brand {
  display: flex; align-items: center; gap: 14px;
  margin-right: auto; text-decoration: none; color: var(--color-text);
}
.site-nav__brand-logo {
  width: clamp(64px, 8vw, 96px); height: auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.site-nav__brand-name {
  display: flex; flex-direction: column; line-height: 1.05;
}
.site-nav__brand-name strong {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -.01em;
  color: var(--color-purple);
}
.site-nav__brand-name small {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-accent-700); margin-top: 5px;
  font-feature-settings: 'tnum' 1;
}
.site-nav__desktop {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 26px);
}
.site-nav__desktop a {
  text-decoration: none; font-family: var(--font-body);
  font-size: 15px; color: var(--color-text); transition: color .18s ease;
  padding: 6px 2px;
}
.site-nav__desktop a:hover,
.site-nav__desktop a[aria-current="page"] { color: var(--color-accent); }
.site-nav__burger { display: none; }
.site-nav__mobile {
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
  padding: 8px clamp(16px, 4vw, 48px) 16px;
  display: none;
  flex-direction: column; gap: 2px;
}
.site-nav__mobile[data-open="true"] { display: flex; }
.site-nav__mobile a {
  text-decoration: none; padding: 13px 4px;
  font-size: 16px; color: var(--color-text);
  border-bottom: 1px solid var(--color-divider);
}
.site-nav__mobile a:last-of-type { border-bottom: 0; }
.site-nav__mobile a[aria-current="page"] { color: var(--color-accent); }
.site-nav__mobile .btn { margin-top: 12px; }

/* Top call strip — customer-care always visible */
.top-strip {
  background: var(--color-purple);
  color: #fff; font-size: 13px;
}
.top-strip__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 6px clamp(16px, 4vw, 48px);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.top-strip a { color: #fff; text-decoration: none; opacity: .95; }
.top-strip a:hover { opacity: 1; text-decoration: underline; }
.top-strip span { display: inline-flex; align-items: center; gap: 6px; }

/* ── footer ────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--color-divider);
  background: color-mix(in srgb, var(--color-neutral-100) 60%, var(--color-bg));
}
.site-footer__grid {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.site-footer__brand {
  display: flex; align-items: center; gap: 12px;
}
.site-footer__brand img {
  width: clamp(64px, 6vw, 84px); height: auto;
  border-radius: 50%; background: #fff;
}
.site-footer__brand span {
  font-family: var(--font-heading); font-weight: 700; font-size: 20px;
  color: var(--color-purple);
}
.site-footer p { font-size: 14px; line-height: 1.65; max-width: 36ch; color: color-mix(in srgb, var(--color-text) 68%, transparent); margin: 16px 0 0; }
.site-footer__title {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-accent-700); margin-bottom: 14px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { text-decoration: none; color: var(--color-text); font-size: 14px; transition: color .18s ease; }
.site-footer__links a:hover { color: var(--color-accent); }
.site-footer__copy { border-top: 1px solid var(--color-divider); }
.site-footer__copy > div {
  max-width: 1240px; margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 48px);
  font-size: 12.5px; color: color-mix(in srgb, var(--color-text) 55%, transparent);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.site-footer__copy a { color: inherit; text-decoration: none; }
.site-footer__copy a:hover { color: var(--color-accent); }

/* ── hero / sections ───────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 48px); }
.section { padding-block: clamp(44px, 6vw, 88px); }
.section-sm { padding-block: clamp(28px, 4vw, 56px); }
.eyebrow {
  display: inline-block; font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-accent-700);
}
.eyebrow--pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--color-accent); border-radius: 999px;
  padding: 6px 14px;
}
.display {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(38px, 6vw, 80px); line-height: 1.05; letter-spacing: -.015em;
  margin: 22px 0 0;
}
.display--sm {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.06; letter-spacing: -.015em;
  margin: 16px 0 0;
}
.h-section {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px); letter-spacing: -.01em;
  margin: 12px 0 0;
}
.lead {
  font-size: clamp(15.5px, 1.6vw, 17px); line-height: 1.65; max-width: 55ch;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
  margin: 22px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 88px) clamp(32px, 4vw, 64px);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-block: clamp(40px, 6vw, 88px) clamp(40px, 5vw, 72px);
}
.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* ── Home hero: slider ─────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  aspect-ratio: 5 / 6;
  width: min(480px, 92vw);
  margin-inline: auto;
}
.hero-slider__track {
  position: relative;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hero-slide[data-active="true"] { opacity: 1; z-index: 1; }
.hero-slide__media {
  overflow: hidden; position: relative;
  background: linear-gradient(180deg, #f4f0ec, var(--color-surface));
}
.hero-slide__media picture, .hero-slide__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-slide__caption {
  padding: 18px 22px 22px;
  background: #fff;
  border-top: 1px solid var(--color-divider);
}
.hero-slide__caption .eyebrow { font-size: 10.5px; margin: 0 0 6px; }
.hero-slide__caption h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(19px, 2.2vw, 24px);
  margin: 0 0 4px;
  color: var(--color-purple-700);
}
.hero-slide__caption p {
  font-size: 13.5px; line-height: 1.55; margin: 0;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.hero-slider__dots {
  position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 5;
}
.hero-slider__dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.35);
  cursor: pointer; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.hero-slider__dots button[aria-current="true"] {
  background: #fff;
  transform: scale(1.15);
}
.hero-slider__nav {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.28); color: #fff;
  display: grid; place-items: center;
  cursor: pointer; z-index: 5;
  transition: background .18s ease;
}
.hero-slider__nav:hover { background: rgba(0,0,0,.5); }
.hero-slider__nav--prev { left: 12px; }
.hero-slider__nav--next { right: 12px; }
.hero-slider__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.94);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-purple-700); z-index: 4;
  font-family: var(--font-heading); font-weight: 600;
}

/* ── card grids ────────────────────────────────────────────────────────── */
.hrl-cards { display: grid; gap: 22px; margin-top: 40px; }
.hrl-cards--2 { grid-template-columns: repeat(2, 1fr); }
.hrl-cards--3 { grid-template-columns: repeat(3, 1fr); }
.hrl-cards--4 { grid-template-columns: repeat(4, 1fr); }
.hrl-cards--5 { grid-template-columns: repeat(5, 1fr); }

.hrl-cols { display: grid; gap: clamp(24px, 4vw, 48px); }
.hrl-cols--2 { grid-template-columns: repeat(2, 1fr); }
.hrl-cols--3 { grid-template-columns: repeat(3, 1fr); }
.hrl-cols--4 { grid-template-columns: repeat(4, 1fr); }

.division-card {
  text-decoration: none; color: var(--color-text);
  display: flex; flex-direction: column; gap: 14px;
  padding: 24px;
  border: 1px solid var(--color-divider);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.division-card__icon {
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 12px;
  border: 1px solid var(--color-accent); color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
}
.division-card__badge {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-accent-700); font-feature-settings: 'tnum' 1;
}
.division-card__cta {
  color: var(--color-accent); font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}

.why-card > span {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid var(--color-accent); color: var(--color-accent);
}
.why-card h3 {
  font-family: var(--font-heading); font-weight: 600; font-size: 20px;
  margin: 16px 0 8px;
}
.why-card p {
  font-size: 14.5px; line-height: 1.6;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  margin: 0;
}

/* Product bag card */
.product-card {
  border: 1px solid var(--color-divider);
  border-radius: 14px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__media {
  aspect-ratio: 4/5;
  background: #f4f0eb;
  overflow: hidden;
}
.product-card__media img,
.product-card__media picture,
.product-card__media picture img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 12px;
}
.product-card__body { padding: 18px 20px 22px; }
.product-card__body h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 21px; margin: 12px 0 8px;
}
.product-card__body p {
  font-size: 14.5px; line-height: 1.6;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  margin: 0;
}
.product-card__meta {
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
  margin: 14px 0 0; font-feature-settings: 'tnum' 1;
}

/* Bottle shelf */
.hrl-shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 2vw, 22px);
  align-items: end;
  margin-top: clamp(28px, 4vw, 48px);
}
.hrl-bottle {
  margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.hrl-bottle:hover { transform: translateY(-6px); }
.hrl-bottle__stage {
  height: clamp(140px, 20vw, 240px);
  display: flex; align-items: flex-end; justify-content: center;
  width: 100%;
}
.hrl-bottle__stage img {
  height: 100%; width: auto; max-width: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.18));
}
.hrl-bottle figcaption { text-align: center; }
.hrl-bottle figcaption strong {
  display: block; font-family: var(--font-heading); font-weight: 600; font-size: 18px;
}
.hrl-bottle figcaption small {
  font-size: 12px; letter-spacing: .07em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 58%, transparent);
}
/* "All together" full row image */
.bishrl-together {
  margin-top: clamp(36px, 5vw, 64px);
  border: 1px solid var(--color-divider);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.bishrl-together figure { margin: 0; padding: 0; }
.bishrl-together img { width: 100%; height: auto; display: block; }
.bishrl-together__caption {
  padding: 18px 24px;
  border-top: 1px solid var(--color-divider);
  font-size: 13.5px; text-align: center;
  color: color-mix(in srgb, var(--color-text) 68%, transparent);
  letter-spacing: .05em; text-transform: uppercase;
}

/* Section heading with brand logo inline */
.h-with-brand {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.h-with-brand img {
  width: clamp(56px, 6vw, 78px); height: auto;
  border-radius: 8px; background: #fff;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
}

/* ── dark stats stripe with monogram wash ──────────────────────────────── */
.stats-band {
  position: relative; overflow: hidden;
  background: #1a1815; color: var(--color-bg);
}
.stats-band__monogram {
  position: absolute; right: 4%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading); font-weight: 400;
  font-size: min(38vw, 420px); line-height: 1;
  color: color-mix(in srgb, var(--color-accent) 22%, transparent);
  pointer-events: none; font-feature-settings: 'tnum' 1;
}
.stats-band__inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  padding: clamp(44px, 6vw, 84px) clamp(16px, 4vw, 48px);
}
.stats-band__eyebrow {
  display: block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--color-accent-300);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 32px;
}
.stats-grid__num {
  font-family: var(--font-heading); font-weight: 400;
  font-size: clamp(34px, 4vw, 56px); line-height: 1;
  color: var(--color-bg); font-feature-settings: 'tnum' 1;
}
.stats-grid__num--accent { color: var(--color-accent-300); }
.stats-grid__lbl {
  font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-bg) 72%, transparent);
  margin-top: 10px;
}
.stats-band .h-section, .stats-band h2 { color: var(--color-bg); font-weight: 400; }

/* ── partners marquee ──────────────────────────────────────────────────── */
.hrl-marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.hrl-marquee {
  display: flex; width: max-content;
  animation: hrl-marquee 34s linear infinite;
}
.hrl-marquee-mask:hover .hrl-marquee { animation-play-state: paused; }
.hrl-marquee span.pill {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 10px; padding: 12px 22px;
  border: 1px solid var(--color-divider); border-radius: 999px;
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  color: color-mix(in srgb, var(--color-text) 72%, transparent);
  white-space: nowrap;
}
.hrl-marquee span.pill::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: var(--color-accent);
}

/* ── testimonials ──────────────────────────────────────────────────────── */
.testimonial-band {
  background: color-mix(in srgb, var(--color-neutral-100) 55%, var(--color-bg));
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.testimonial-card {
  background: #fff;
}
.testimonial-card__mark {
  font-family: var(--font-heading);
  font-size: 44px; line-height: .6; color: var(--color-accent);
}
.testimonial-card p {
  font-size: 15px; line-height: 1.7;
  color: color-mix(in srgb, var(--color-text) 82%, transparent);
  margin: 8px 0 0;
}
.testimonial-card figcaption {
  margin-top: 16px; font-size: 13px; color: inherit;
}
.testimonial-card figcaption strong {
  display: block; font-family: var(--font-heading); font-weight: 600; font-size: 15px;
}
.testimonial-card figcaption small {
  color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.hrl-faq details { border-bottom: 1px solid var(--color-divider); }
.hrl-faq details:first-child { border-top: 1px solid var(--color-divider); }
.hrl-faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 2px;
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(16.5px, 1.8vw, 19px); color: var(--color-text);
}
.hrl-faq summary:hover { color: var(--color-accent); }
.hrl-faq summary::-webkit-details-marker { display: none; }
.hrl-faq .hrl-chev {
  flex: none; color: var(--color-accent);
  transition: transform .25s ease;
}
.hrl-faq details[open] .hrl-chev { transform: rotate(180deg); }
.hrl-faq .hrl-ans {
  padding: 0 2px 22px; font-size: 15px; line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
  max-width: 72ch;
}

/* ── WhatsApp floating action ──────────────────────────────────────────── */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.wa-fab__text {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: 9px 16px;
  font-family: var(--font-body); font-size: 13.5px; color: var(--color-text);
  white-space: nowrap;
}
.wa-fab__icon-wrap {
  position: relative; display: grid; place-items: center;
  width: 58px; height: 58px;
}
.wa-fab__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; animation: hrl-pulse 2.4s ease-out infinite;
}
.wa-fab__icon {
  position: relative; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .45);
  animation: hrl-float 4.5s ease-in-out infinite;
}

/* ── reveal on scroll ──────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ── preloader ─────────────────────────────────────────────────────────── */
#hrl-preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--color-bg);
  transition: opacity .5s ease, visibility .5s ease;
}
#hrl-preloader[data-done] {
  opacity: 0; visibility: hidden; pointer-events: none;
}
#hrl-preloader .hrl-pre-wrap {
  position: relative; display: grid; place-items: center;
  width: clamp(160px, 26vw, 220px); aspect-ratio: 1;
}
#hrl-preloader .hrl-pre-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  border-top-color: var(--color-accent);
  animation: hrl-ring 1.1s linear infinite;
}
#hrl-preloader img {
  width: 74%; height: auto;
  border-radius: 50%;
  animation: hrl-logo-in .6s ease both;
}
#hrl-preloader .hrl-pre-label {
  position: absolute; bottom: -38px;
  font-family: var(--font-body); font-size: 11.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
}

/* ── animations ────────────────────────────────────────────────────────── */
@keyframes hrl-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes hrl-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hrl-pulse { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.9); opacity: 0; } 100% { opacity: 0; } }
@keyframes hrl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hrl-ring { to { transform: rotate(360deg); } }
@keyframes hrl-logo-in { from { opacity: 0; transform: scale(.88); } to { opacity: 1; transform: scale(1); } }

.animate-rise { animation: hrl-rise .6s ease both; }

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hrl-cards--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .site-nav__desktop { display: none; }
  .site-nav__burger { display: inline-flex; }
  .hero-grid,
  .contact-grid,
  .contact-map-grid,
  .founder-grid { grid-template-columns: 1fr; }
  .hrl-cards--3, .hrl-cards--4 { grid-template-columns: repeat(2, 1fr); }
  .hrl-cards--5 { grid-template-columns: repeat(2, 1fr); }
  .hrl-cols--2, .hrl-cols--3, .hrl-cols--4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hrl-shelf { grid-template-columns: repeat(3, 1fr); }
  .hero-slider { aspect-ratio: 4/5; }
}

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .site-nav { padding: 10px clamp(14px, 4vw, 20px); gap: 10px; }
  .site-nav__brand-logo { width: 58px; }
  .site-nav__brand-name small { display: none; }
  .site-nav__brand-name strong { font-size: 19px; }
  .top-strip { font-size: 12px; }
  .top-strip__inner { padding: 6px 12px; gap: 8px; }
  .hrl-cards--3, .hrl-cards--4, .hrl-cards--2, .hrl-cards--5 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__copy > div { justify-content: center; text-align: center; }
  .wa-fab__text { display: none; }
  .hrl-shelf { grid-template-columns: repeat(2, 1fr); }
  .product-card:hover, .division-card:hover, .hrl-bottle:hover { transform: none; }
  .hero-slide__caption { padding: 14px 16px 18px; }
  .hero-slider__nav { width: 34px; height: 34px; }
  .hero-slider__dots { bottom: 82px; }
  .h-with-brand { gap: 10px; }
  .h-with-brand img { width: 52px; }
  .hero-slider__badge { font-size: 9.5px; padding: 5px 10px; }
}

@media (max-width: 380px) {
  .hero-cta-row .btn { width: 100%; }
  .hrl-shelf { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .division-card:hover, .product-card:hover, .hrl-bottle:hover { transform: none; }
  .hero-slide { transition: none; }
}

/* print — pared-down */
@media print {
  .site-header, .site-footer, .wa-fab, #hrl-preloader, .top-strip, .hero-slider__nav, .hero-slider__dots { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
