/* ==========================================================================
   Bandaru Rice Company — tokens live in :root
   HTML + CSS + Bootstrap 5
   ========================================================================== */
:root {
  --brc-gold: #d8a444;
  --brc-gold-soft: #e8c36e;
  --brc-gold-deep: #b8862a;
  --brc-gold-wash: rgba(216, 164, 68, 0.16);

  --brc-teal: #004c5d;
  --brc-teal-deep: #003844;
  --brc-teal-mid: #0a6274;
  --brc-teal-soft: #e6f2f4;

  --brc-ink: #004c5d;
  --brc-ink-soft: #003844;
  --brc-forest: #004c5d;
  --brc-forest-deep: #003844;
  --brc-forest-mid: #0a6274;

  --brc-bandaru: #004c5d;
  --brc-kubera: #004c5d;
  --brc-kubera-deep: #003844;

  --brc-ivory: #f7f4ec;
  --brc-parchment: #f1e6c8;
  --brc-white: #ffffff;
  --brc-sand: #e2d0a4;
  --brc-mist: #eef6f7;

  --brc-text: #12343c;
  --brc-muted: #5a6f74;
  --brc-line: rgba(0, 76, 93, 0.1);
  --brc-line-strong: rgba(0, 76, 93, 0.18);

  --brc-success: #0a6274;
  --brc-danger: #8b2e2e;

  --font-display: "Crimson Text", Georgia, "Times New Roman", serif;
  --font-slab: "Roboto Slab", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;

  --header-h: 84px;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 76, 93, 0.12);
  --shadow-soft: 0 10px 30px rgba(0, 76, 93, 0.07);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--brc-text);
  --bs-body-bg: var(--brc-ivory);
  --bs-primary: #004c5d;
  --bs-primary-rgb: 0, 76, 93;
  --bs-link-color: #d8a444;
  --bs-border-color: rgba(0, 76, 93, 0.14);
  --bs-border-radius: 12px;
}

body {
  font-family: var(--font-body);
  color: var(--brc-text);
  background: var(--brc-ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

.row>[class*="col-"] {
  min-width: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brc-gold);
  background-color: #004c5d;
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 1.4;
}

.eyebrow::before {
  display: none;
}

h1,
h2,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
  color: var(--brc-ink);
}

h3 {
  font-family: var(--font-slab);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  color: var(--brc-ink);
}

h1 {
  font-size: clamp(40px, 6vw, 74px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: clamp(24px, 2.4vw, 30px);
}

.lede {
  font-size: 1.125rem;
  color: var(--brc-muted);

}

em {
  font-style: italic;
  color: var(--brc-gold);
}

h1 em,
h2 em {
  color: var(--brc-gold);
  font-style: italic;
  font-weight: 600;
}

.page-hero h1 em,
.section-ink h2 em,
.moq-banner h2 em,
.cta-band h2 em {
  color: var(--brc-gold-soft);
}

/* Buttons — extend Bootstrap */
.btn {
  min-height: 40px;
  padding-inline: 1.55rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brc-gold-soft), var(--brc-gold));
  color: var(--brc-ink);
  border: 0;
  box-shadow: 0 10px 24px rgba(143, 111, 50, 0.22);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-gold:hover::after {
  animation: btnShine .7s var(--ease);
}

@keyframes btnShine {
  from {
    left: -40%;
  }

  to {
    left: 130%;
  }
}

.btn-gold:hover,
.btn-gold:focus {
  color: var(--brc-ink);
  background: linear-gradient(180deg, #e8c36e, #d8a444);
}

.btn-ink {
  background: var(--brc-teal);
  color: #fff;
  border: 0;
}

.btn-ink:hover,
.btn-ink:focus {
  color: #fff;
  background: var(--brc-teal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--brc-ink);
  border: 1px solid var(--brc-line-strong);
}

.btn-ghost:hover {
  background: var(--brc-white);
  color: var(--brc-ink);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-sm {
  min-height: 35px;
  font-size: 12px;
  padding-inline: 1.1rem;
}

/* Top bar + Bootstrap navbar */
.topbar {
  background: var(--brc-teal);
  color: #f4ead0;
  font-size: 13px;
}

.topbar a {
  color: #f4ead0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar a:hover {
  color: var(--brc-gold-soft);
}

.topbar a i {
  color: var(--brc-gold);
  font-size: 12px;
}

.topbar strong {
  color: var(--brc-gold-soft);
  font-weight: 600;
}

.topbar .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brc-gold);
  display: inline-block;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  min-height: var(--header-h);
  box-shadow: none;
}

.site-navbar.is-stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid var(--brc-line);
}

.navbar {
  padding: 0px !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand-light img {
  height: 64px;
  max-width: 240px;
}

.navbar-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--brc-ink);
}

.navbar-brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brc-muted);
}

.site-navbar .nav-link {
  color: var(--brc-text) !important;
  font-weight: 600;
  font-size: 16px;
  padding: 0.55rem 0.75rem !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--brc-forest) !important;
}

.dropdown-menu {
  border: 1px solid var(--brc-line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  background: var(--brc-white);
}

.dropdown-item {
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1px;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: var(--brc-mist);
  color: var(--brc-forest);
}

@media (min-width: 992px) {
  .site-navbar .nav-item.dropdown {
    position: relative;
  }

  .site-navbar .nav-item.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .site-navbar .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    margin-top: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-navbar .nav-item.dropdown:hover>.dropdown-menu,
  .site-navbar .nav-item.dropdown:focus-within>.dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: flex-end;
}

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 56px);
  max-width: 18ch;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background: var(--brc-teal-deep, #003844);
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-hero__media--focus-top img {
  object-position: center 18%;
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 42, 52, 0.78) 0%, rgba(0, 56, 68, 0.42) 48%, rgba(0, 76, 93, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 76, 93, 0.12) 0%, rgba(0, 56, 68, 0.62) 68%, rgba(0, 42, 52, 0.92) 100%);
}

.hero__content,
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
}

.hero h1 {
  color: #fff;
}

.hero .lede,
.page-hero .lede {
  color: rgba(255, 255, 255, 0.78);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-ink .eyebrow,
.section-forest .eyebrow,
.cta-band .eyebrow,
.moq-banner .eyebrow {
  background-color: #fff;
  color: var(--brc-gold-deep);
  font-weight: 600;
}

.hero-card {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 28px;
}

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  color: var(--brc-gold-soft);
}

.hero-card span {
  display: block;
  margin-top: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 50px 0;
}

.section-mist {
  background: var(--brc-mist);
}

.section-ink {
  background: var(--brc-teal);
  color: #e8f3f5;
}

.section-ink h2,
.section-ink h3 {
  color: #fff;
}

.section-forest {
  background: var(--brc-teal-deep);
  color: #e8f3f5;
}

.section-forest h2 {
  color: #fff;
}

.section-head {

  margin-bottom: 40px;
}

.pillar,
.product-card,
.blog-card,
.info-card {
  background: var(--brc-white);
  border: 1px solid var(--brc-line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  height: 100%;
}

.pillar:hover,
.product-card:hover,
.blog-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-card img {
  transition: transform .7s var(--ease);
}

.blog-card:hover img {
  transform: scale(1.06);
}

.pillar {
  padding: 28px 24px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brc-gold-wash);
  color: var(--brc-gold-deep);
  margin-bottom: 18px;
}

.pillar p,
.info-card p,
.product-card p,
.blog-card p {
  color: var(--brc-muted);
}

.brand-card {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.brand-card:hover img {
  transform: scale(1.06);
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

.brand-card__body {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.brand-card h3 {
  color: #fff;
  font-size: 42px;
}

.brand-card p {
  color: rgba(255, 255, 255, 0.8);
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brc-gold-soft);
}

.brand-panel .kicker {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: var(--brc-gold-deep);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  line-height: 1.4;
}

.product-card,
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card__media,
.blog-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.blog-card img {
  aspect-ratio: 16 / 10;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--brc-parchment);
}

.product-card__media--pack,
.grain-card--pack .grain-card__media,
.detail-stage--pack,
.detail-stage--packset,
.split-visual--pack,
.brand-panel--pack {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .9), transparent 55%),
    linear-gradient(180deg, #f8f4ec 0%, #efe4c8 100%);
}

.product-card__media--pack img,
.grain-card--pack .grain-card__media img,
.detail-stage--pack .detail-img.main,
.detail-img--pack,
.split-visual--pack img {
  object-fit: contain;
  padding: 18px 16px 8px;
  background: transparent;
}

.detail-stage--packset {
  border-radius: 24px;
  overflow: hidden;
  /* background: #0b0b0b; */
  border: 1px solid var(--brc-line);
  box-shadow: var(--shadow-soft);
}

.detail-stage--packset .detail-img.main {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 18px 20px;
  margin-bottom: 0 !important;
  /* background: #0b0b0b; */
  border-radius: 0;
  min-height: 600px;
}

.detail-img--grain {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #004c5d;
  border: 1px solid rgba(0, 76, 93, 0.35);
}

.brand-panel--pack img {
  object-fit: contain;
  object-position: center 42%;
  padding: 36px 24px 120px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .55), transparent 52%),
    linear-gradient(180deg, #f3ecda 0%, #e5d4a8 100%);
}

.brand-panel--kubera.brand-panel--pack img {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .4), transparent 52%),
    linear-gradient(180deg, #1a1218 0%, #3a2432 100%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.badge-soft {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--brc-white);
  color: var(--brc-bandaru);
}

.badge-kubera {
  color: var(--brc-kubera);
}

.product-card__body,
.blog-card__body,
.info-card {
  padding: 22px;
}

.product-card__meta,
.kicker-soft {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brc-gold-deep);
}

.split-visual {
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--brc-forest);
}

.stat {
  padding-top: 16px;
  border-top: 1px solid var(--brc-line-strong);
}

.stat span {
  font-size: 13px;
  color: var(--brc-muted);
}

.process-item {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: transform .4s var(--ease), background .35s ease, border-color .35s ease;
}

.process-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(216, 164, 68, .35);
}

.process-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--brc-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.process-item p {
  color: rgba(255, 255, 255, 0.68);
}

.moq-card,
.form-card {
  background: var(--brc-white);
  border: 1px solid var(--brc-line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.form-card .row>[class*="col-"] {
  min-width: 0;
}

.form-control,
.form-select,
.form-card textarea {
  width: 100%;
  max-width: 100%;
}

.trader-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.trader-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--brc-line);
  border-radius: 16px;
  background: var(--brc-white);
}

.trader-steps b {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brc-gold-wash);
  color: var(--brc-gold-deep);
  font-family: var(--font-slab);
  font-size: 14px;
}

.trader-layout {
  overflow: hidden;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(0, 76, 93, 0.90), rgba(0, 56, 68, 0.82)),
    url("../images/paddy-fields.jpg") center/cover;
  color: #fff;
  padding: 72px 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  background: var(--brc-teal);
  color: #fff;
  padding: 50px 0 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brc-gold-soft);
}

.site-footer .brand-light strong {
  color: #fff;
}

.site-footer .brand-light small {
  color: rgba(255, 255, 255, 0.6);
}

.footer-moq {
  color: var(--brc-gold-soft);
  font-size: 13px;
}

.footer-legal {
  margin: 0;
  font-size: 13px;
  color: #fff;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.footer-social a:hover {
  background: var(--brc-gold);
  border-color: var(--brc-gold);
  color: var(--brc-teal);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--brc-gold);
  font-size: 12px;
  width: 12px;
  transition: transform .2s ease;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  width: 18px;
  margin-top: 3px;
  color: var(--brc-gold);
  text-align: center;
  flex-shrink: 0;
}

.footer-action {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-address-heading {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.footer-action small,
.footer-contact small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brc-gold-soft);
}

.footer-action:hover {
  color: #fff;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 0;
  font-size: 13px;
}

.footer-credit a {
  color: var(--brc-gold-soft);
  font-weight: 600;
}

.footer-credit a:hover {
  color: #fff;
}

.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  text-decoration: none;
}

.float-wa:hover {
  color: #fff;
}

/* Forms */
.form-control,
.form-select {
  border-radius: 10px;
  height: 40px;
  max-height: 40px;
  padding: 0.45rem 0.9rem 0.45rem 2.5rem;
  border-color: var(--brc-line-strong);
  background: var(--brc-white);
  font-size: 0.95rem;
}

textarea.form-control {
  height: auto;
  max-height: none;
  min-height: 110px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brc-gold);
  box-shadow: 0 0 0 4px var(--brc-gold-wash);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.input-icon {
  position: relative;
}

.input-icon>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brc-teal);
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.input-icon--textarea>i {
  top: 16px;
  transform: none;
}

.input-icon .form-select {
  padding-left: 2.5rem;
}

.brc-form .invalid-feedback {
  display: none;
}

.brc-form.was-validated .form-control:invalid~.invalid-feedback,
.brc-form.was-validated .form-select:invalid~.invalid-feedback,
.brc-form.was-validated .input-icon:has(:invalid)+.invalid-feedback {
  display: block;
}

/* Product tabs */
.product-tabs .nav-link {
  border-radius: 999px;
  border: 1px solid var(--brc-line-strong);
  background: var(--brc-white);
  color: var(--brc-teal);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
}

.product-tabs .nav-link:hover {
  border-color: var(--brc-gold);
  color: var(--brc-gold-deep);
}

.product-tabs .nav-link.active {
  background: var(--brc-teal);
  border-color: var(--brc-teal);
  color: #fff;
}

.product-tabs-page .tab-pane {
  padding-top: 0.5rem;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1080;
}

.cookie-consent__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--brc-teal);
  color: #e8f3f5;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.cookie-consent__inner a {
  color: var(--brc-gold-soft);
  text-decoration: underline;
}

.cookie-consent[hidden] {
  display: none !important;
}

.contact-aside {
  background: var(--brc-teal);
  color: #e8f3f5;
  border-radius: 28px;
  padding: 36px;
  height: 100%;
}

.contact-aside h2 {
  color: #fff;
}

.contact-aside a {
  color: var(--brc-gold-soft);
}

.contact-aside .kicker-soft {
  color: var(--brc-gold-soft);
}

.contact-actions li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.contact-actions i {
  width: 18px;
  margin-top: 4px;
  color: var(--brc-gold);
  text-align: center;
  flex-shrink: 0;
}

.contact-actions small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brc-gold-soft);
}

.contact-actions a:hover {
  color: var(--brc-gold-soft);
}

.note {
  background: var(--brc-gold-wash);
  border: 1px solid rgba(216, 164, 68, 0.28);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14px;
}

/* Accordion — default (legacy) */
.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--brc-line-strong);
}

.accordion-button {
  background: transparent;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brc-ink);
  box-shadow: none !important;
  padding: 1.25rem 0;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--brc-ink);
}

.accordion-button::after {
  margin-left: 1rem;
}

.accordion-body {
  padding: 0 0 1.25rem;
  color: var(--brc-muted);
}

/* FAQ page */
.faq-aside__links {
  display: grid;
  gap: 10px;
}

.faq-aside__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--brc-line);
  border-radius: 12px;
  background: var(--brc-white);
  color: var(--brc-ink);
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-aside__links a:hover {
  border-color: var(--brc-gold);
  background: var(--brc-gold-wash);
  color: var(--brc-ink);
}

.faq-aside__links i {
  width: 18px;
  color: var(--brc-teal);
  text-align: center;
}

.faq-panel.form-card {
  padding: 28px 28px 32px;
}

.faq-group-label {
  margin: 1.35rem 0 0.65rem;
  padding: 0 0.15rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brc-gold-deep);
}

.faq-group-label:first-child {
  margin-top: 0;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--brc-line);
  border-radius: 14px;
  background: var(--brc-ivory);
  overflow: hidden;
  box-shadow: none;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  border-radius: 14px;
}

.faq-accordion .faq-q-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brc-teal);
  font-size: 15px;
}

.faq-accordion .accordion-button span {
  flex: 1;
  min-width: 0;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--brc-gold-wash);
  background-image: none !important;
  display: grid;
  place-items: center;
  content: "+";
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: var(--brc-gold-deep);
  transform: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brc-teal);
  background: var(--brc-white);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background: var(--brc-teal);
  color: #fff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent;
}

.faq-accordion .accordion-collapse {
  border-top: 1px solid var(--brc-line);
  background: var(--brc-white);
}

.faq-accordion .accordion-body {
  padding: 1rem 1.1rem 1.15rem 2.65rem;
  color: var(--brc-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-body a {
  color: var(--brc-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-accordion .accordion-body a:hover {
  color: var(--brc-gold-deep);
}

@media (max-width: 991.98px) {
  .faq-panel.form-card {
    padding: 22px 18px 26px;
  }

  .faq-accordion .accordion-body {
    padding-left: 1.1rem;
  }
}

.founder-photo {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  min-height: 520px;
}

.founder-facts {
  list-style: none;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--brc-line);
  border-radius: 18px;
  background: var(--brc-ivory);
  display: grid;
  gap: 12px;
}

.founder-facts li {
  margin: 0;
  color: var(--brc-muted);
  font-size: 15px;
  line-height: 1.5;
}

.founder-facts strong {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brc-gold-deep);
  margin-bottom: 2px;
}

/* .founder-hero .page-hero__content {
  max-width: 760px;
} */

.founder-photo-wrap {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(204, 163, 84, 0.12), rgba(18, 80, 80, 0.06));
  border: 1px solid rgba(18, 80, 80, 0.08);
  box-shadow: 0 26px 55px rgba(16, 26, 32, 0.08);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(204, 163, 84, 0.12);
  filter: blur(10px);
  z-index: 0;
}

.founder-photo {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  min-height: 520px;
}

.founder-highlights {
  margin-top: 28px;
}

.icon-card {
  height: 100%;
  padding: 28px 22px 24px;
  border: 1px solid var(--brc-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(18, 28, 32, 0.04);
  text-align: center;
}

.icon-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(204, 163, 84, 0.16), rgba(18, 80, 80, 0.12));
  color: var(--brc-teal);
  font-size: 1.8rem;
}

.icon-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.icon-card p {
  margin-bottom: 0;
  color: var(--brc-muted);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: var(--brc-ink);
  font-size: 1.02rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list i {
  margin-top: 4px;
  color: var(--brc-gold-deep);
  font-size: 1.05rem;
}

.story-panel {
  padding: 30px 28px;
  border: 1px solid rgba(18, 80, 80, 0.12);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(18, 80, 80, 0.06), rgba(204, 163, 84, 0.08));
  box-shadow: 0 18px 45px rgba(18, 28, 32, 0.06);
}

.story-panel__top {
  margin-bottom: 18px;
}

.story-panel__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--brc-line);
  color: var(--brc-teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-panel h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.story-panel p {
  color: var(--brc-muted);
}

.founder-cta {
  background: linear-gradient(180deg, rgba(18, 80, 80, 0.02), rgba(204, 163, 84, 0.04));
}

.quote {
  border-left: 2px solid var(--brc-gold);
  padding-left: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.35;
  color: var(--brc-ink);
}

@media (max-width: 767.98px) {
  .founder-photo {
    min-height: 420px;
  }

  .icon-card {
    padding: 22px 18px;
  }

  .story-panel {
    padding: 22px 18px;
  }


}

.timeline-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-row strong {
  color: var(--brc-gold);
}

.spec-table th {
  color: var(--brc-muted);
  font-weight: 500;
  width: 42%;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brc-mist);
  font-size: 13px;
}

.prose {
  max-width: 78ch;
}

.prose p,
.prose li {
  color: var(--brc-muted);
}

.detail-img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}

.detail-img.main {
  aspect-ratio: 4 / 3;
}

.reveal.is-in,
.wow.animated {
  visibility: visible;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .wow,
  .trust-strip article.animated i,
  .hero-product__bag,
  .hero-product--packset .hero-product__bag,
  .carousel-item.is-ready .hero-product--packset .hero-product__bag,
  .carousel-item.is-ready .hero-product--packset::before,
  .carousel-item.is-ready .hero-product,
  .carousel-item.is-ready .hero-copy .eyebrow,
  .carousel-item.is-ready .hero-copy h1,
  .carousel-item.is-ready .hero-copy .lede,
  .carousel-item.is-ready .hero-copy__actions,
  .carousel-item.is-ready .hero-pills {
    visibility: visible !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (max-width: 767.98px) {

  .hero,
  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item,
  .hero-slide {
    min-height: auto;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .topbar .meta {
    display: none !important;
  }

  .founder-photo {
    min-height: 360px;
  }
}

/* ==========================================================================
   Home hero slider
   ========================================================================== */
.hero-slider {
  position: relative;
  min-height: calc(100vh - 38px);
  background:
    radial-gradient(ellipse 55% 70% at 88% 42%, rgba(216, 164, 68, .24), transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 90%, rgba(0, 76, 93, .08), transparent 55%),
    linear-gradient(180deg, #f8f6ef 0%, var(--brc-ivory) 100%);
  overflow: hidden;
}

.hero-slider__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/paddy-fields.jpg");
  background-size: cover;
  background-position: center;
  opacity: .05;
}

.hero-slider .carousel,
.hero-slider .carousel-inner {
  min-height: calc(100vh - 38px);
}

.hero-slider .carousel-inner {
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel {
  --bs-carousel-transition-duration: 0.8s;
}

.hero-slider .carousel-fade .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: calc(100vh - 38px);
  float: none;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transform: none !important;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .carousel-fade .carousel-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider .carousel-fade .carousel-item-next.carousel-item-start,
.hero-slider .carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slider .carousel-fade .active.carousel-item-start,
.hero-slider .carousel-fade .active.carousel-item-prev {
  opacity: 0 !important;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease-in-out !important;
}

.hero-slide {
  min-height: calc(100vh - 38px);
  display: flex;
  align-items: center;
  padding: 10px 0 40px;
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(35px, 4.6vw, 58px);

}

.hero-copy h1 em {
  font-style: italic;
  color: var(--brc-gold-deep);
}

.hero-copy .lede {
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-copy .lede strong {
  color: var(--brc-forest);
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pills span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--brc-line-strong);
  background: rgba(255, 253, 248, .7);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brc-muted);
}

.hero-product {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  transition: transform .18s linear;
}

.hero-product__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 164, 68, .38), rgba(216, 164, 68, 0) 68%);
  filter: blur(8px);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-product__glow--wine {
  background: radial-gradient(circle, rgba(0, 76, 93, .28), rgba(0, 76, 93, 0) 68%);
}

.hero-product__ring {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(216, 164, 68, .35);
  box-shadow: inset 0 0 0 10px rgba(255, 253, 248, .25);
  animation: ringSpin 28s linear infinite;
}

.hero-product__ring::before,
.hero-product__ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(216, 164, 68, .4);
}

.hero-product__ring::before {
  inset: 18px;
}

.hero-product__ring::after {
  inset: -22px;
  opacity: .45;
}

.hero-product__bag {
  position: relative;
  z-index: 3;
  width: min(360px, 78%);
  height: 460px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  animation: bagFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 40px rgba(0, 76, 93, .22));
}

.hero-product--packset .hero-product__bag {
  width: min(560px, 96%);
  height: auto;
  max-height: 480px;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .28));
  animation: none;
}

.carousel-item.is-ready .hero-product--packset .hero-product__bag {
  animation:
    packsetIn 0.85s var(--ease) both,
    packsetFloat 5.8s ease-in-out 0.85s infinite;
}

.hero-product--packset .hero-product__glow,
.hero-product--packset .hero-product__ring {
  display: none;
}

.hero-product--packset .hero-product__bag-side {
  display: none;
}

.hero-product--packset::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 164, 68, 0.22), transparent 68%);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
}

.carousel-item.is-ready .hero-product--packset::before {
  animation: packsetGlow 5.8s ease-in-out 0.85s infinite;
}

.carousel-item.is-ready .hero-product--packset .hero-product__badge {
  animation: badgeIn 0.9s var(--ease) 0.35s both;
}

.hero-product__badge {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 4;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid var(--brc-line);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brc-forest);
  animation: badgeIn .9s var(--ease) both;
}

.hero-product__bag-side {
  position: absolute;
  z-index: 2;
  width: min(150px, 34%);
  height: 200px;
  object-fit: contain;
  top: 6%;
  left: 2%;
  filter: drop-shadow(0 16px 28px rgba(0, 76, 93, .2));
  animation: grainFloat 6s ease-in-out infinite;
}

.hero-product__grain {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fffdf8;
  box-shadow: var(--shadow-soft);
}

.hero-product__grain--a {
  top: 8%;
  left: 8%;
  animation: grainFloat 6s ease-in-out infinite;
}

.hero-product__grain--b {
  right: 6%;
  top: 18%;
  width: 72px;
  height: 72px;
  animation: grainFloat 7s ease-in-out infinite reverse;
}

.carousel-item.is-ready .hero-copy .eyebrow,
.carousel-item.is-ready .hero-copy h1,
.carousel-item.is-ready .hero-copy .lede,
.carousel-item.is-ready .hero-copy__actions,
.carousel-item.is-ready .hero-pills {
  animation: copyIn .7s var(--ease) both;
}

.carousel-item.is-ready .hero-copy h1 {
  animation-delay: .06s;
}

.carousel-item.is-ready .hero-copy .lede {
  animation-delay: .12s;
}

.carousel-item.is-ready .hero-copy__actions {
  animation-delay: .18s;
}

.carousel-item.is-ready .hero-pills {
  animation-delay: .24s;
}

.carousel-item.is-ready .hero-product {
  animation: productIn .75s var(--ease) both;
}

@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes productIn {
  from {
    opacity: 0;
    transform: translateX(48px) scale(.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes bagFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes packsetIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.92);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .12));
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .28));
  }
}

@keyframes packsetFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

@keyframes packsetGlow {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

@keyframes grainFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(6deg);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: .75;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 52px;
  height: 52px;
  border: 1px solid var(--brc-line-strong);
  background: rgba(255, 253, 248, .88);
  border-radius: 50%;
  color: var(--brc-ink);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform .35s var(--ease), background .3s ease, box-shadow .3s ease;
}

.hero-nav:hover {
  background: var(--brc-gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%) scale(1.06);
}

.hero-nav--prev {
  left: 22px;
}

.hero-nav--next {
  right: 22px;
}

.hero-indicators {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 52px;
  transform: translateX(-50%);
  margin: 0 !important;
  z-index: 6;
  width: min(640px, 92%);
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.hero-indicators [data-bs-target] {
  width: 36px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: rgba(0, 76, 93, .18);
  opacity: 1;
}

.hero-indicators .active {
  background: var(--brc-gold);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 5;
  transform: translateX(-50%);
  color: var(--brc-muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  display: none;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: linear-gradient(180deg, var(--brc-gold), transparent);
  animation: cue 1.6s ease infinite;
}

@keyframes cue {

  0%,
  100% {
    opacity: .2;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -36px;
  padding-bottom: 10px;
}

.trust-strip article {
  transition: background .35s ease, transform .35s var(--ease);
}

.trust-strip article:hover {
  background: #fffdf8;
  transform: translateY(-3px);
}

.navbar-brand strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.trust-strip__grid {
  background: var(--brc-white);
  border: 1px solid var(--brc-line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip article {
  padding: 28px 24px;
  height: 100%;
  border-right: 1px solid var(--brc-line);
}

.trust-strip .col-lg-3:last-child article {
  border-right: 0;
}

.trust-strip i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brc-gold-wash);
  color: var(--brc-gold-deep);
  font-size: 18px;
  margin-bottom: 14px;
  font-style: normal;
  line-height: 1;
}

.trust-strip i::before {
  display: block;
}

.trust-strip article.animated i {
  animation: trustPop 0.6s ease both;
}

@keyframes trustPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.trust-strip h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.trust-strip p {
  margin: 0;
  color: var(--brc-muted);
  font-size: 14px;
}

.brand-panel {
  position: relative;
  display: block;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.brand-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s var(--ease);
}

.brand-panel:hover img {
  transform: scale(1.07);
}

.brand-panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, .05) 20%, rgba(10, 8, 6, .82) 100%);
}

.brand-panel--bandaru .brand-panel__shade {
  background: linear-gradient(180deg, rgba(0, 76, 93, .08) 15%, rgba(0, 76, 93, .88) 100%);
}

.brand-panel--kubera .brand-panel__shade {
  background: linear-gradient(180deg, rgba(0, 56, 68, .10) 15%, rgba(0, 56, 68, .90) 100%);
}

.brand-panel__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 40px 36px;
}

.brand-panel h3 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  margin: 8px 0 12px;
}

.brand-panel p {
  color: rgba(255, 255, 255, .78);
  max-width: 36ch;
}

.brand-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--brc-gold-soft);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

.grain-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--brc-white);
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--brc-line);
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s ease;
}

.grain-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  color: inherit;
}

.grain-card--featured {
  border-color: rgba(216, 164, 68, .55);
  box-shadow: 0 18px 40px rgba(216, 164, 68, .18);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--brc-ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brc-gold);
}

.grain-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.grain-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.grain-card:hover .grain-card__media img {
  transform: scale(1.08);
}

.grain-card__media b {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.grain-card__body {
  padding: 22px 22px 24px;
}

.grain-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.grain-card p {
  color: var(--brc-muted);
  margin-bottom: 14px;
}

.grain-card span {
  color: var(--brc-gold-deep);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.story-stack {
  position: relative;
  min-height: 520px;
}

.story-stack__main {
  width: 82%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
}

.story-stack__inset {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 48%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid var(--brc-ivory);
  box-shadow: var(--shadow);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.process-track .wow:nth-child(2) {
  animation-delay: .08s;
}

.process-track .wow:nth-child(3) {
  animation-delay: .16s;
}

.process-track .wow:nth-child(4) {
  animation-delay: .24s;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brc-gold), transparent);
}

.moq-banner {
  position: relative;
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}

.moq-banner__media {
  position: absolute;
  inset: 0;
}

.moq-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moq-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 76, 93, .90) 0%, rgba(0, 56, 68, .78) 48%, rgba(0, 76, 93, .50) 100%);
}

.moq-banner .container {
  position: relative;
  z-index: 2;
}

.moq-banner h2 {
  color: #fff;
}

.moq-banner__giant {
  font-family: var(--font-display);
  font-size: clamp(92px, 16vw, 180px);
  line-height: .8;
  color: var(--brc-gold-soft);
  margin: 8px 0 10px;
}

.moq-banner__list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.moq-banner__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: rgba(255, 255, 255, .82);
}

.moq-banner__list i {
  color: var(--brc-gold-soft);
}

.serve-card {
  background: var(--brc-white);
  border: 1px solid var(--brc-line);
  border-radius: 24px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease);
}

.serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 164, 68, .35);
  box-shadow: var(--shadow);
}

.serve-card i {
  font-size: 26px;
  color: var(--brc-gold-deep);
  display: block;
  margin-bottom: 16px;
}

.serve-card p {
  color: var(--brc-muted);
  margin: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filters button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--brc-line-strong);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brc-ink);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.gallery-filters button:hover {
  background: var(--brc-white);
}

.gallery-filters button.is-on {
  background: var(--brc-teal);
  color: #fff;
  border-color: var(--brc-teal);
}

.gallery-col.is-off {
  display: none !important;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  background: var(--brc-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: left;
  cursor: pointer;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}

.gallery-card--pack {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .92), transparent 55%),
    linear-gradient(180deg, #f8f4ec 0%, #efe4c8 100%);
}

.gallery-card--pack img {
  object-fit: contain;
  object-position: center 42%;
  padding: 14px 12px 46px;
}

.gallery-card--portrait img {
  object-position: center top;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card--pack:hover img {
  transform: scale(1.03);
}

.gallery-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 76, 93, .86));
  color: #fff;
  font-family: var(--font-slab);
  font-size: 15px;
}

.gallery-lite {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0, 38, 46, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 88px;
}

.gallery-lite[hidden] {
  display: none !important;
}

.gallery-lite figure {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.gallery-lite img {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-lite img.is-pack {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .92), transparent 55%),
    linear-gradient(180deg, #f8f4ec 0%, #efe4c8 100%);
  padding: 18px 24px;
}

.gallery-lite figcaption {
  color: #f4ead0;
  margin-top: 14px;
  font-family: var(--font-slab);
  font-size: 16px;
}

.gallery-lite__close,
.gallery-lite__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.gallery-lite__close {
  top: 18px;
  right: 18px;
}

.gallery-lite__nav--prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lite__nav--next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lite__close:hover,
.gallery-lite__nav:hover {
  background: var(--brc-gold);
  color: var(--brc-ink);
}

body.is-lite-open {
  overflow: hidden;
}

.tour {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}

.tour-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
}

.tour-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.tour-visual b {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--brc-gold);
  color: var(--brc-ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.tour-stop {
  width: 100%;
  padding: 0;
  border: 1px solid var(--brc-line);
  background: var(--brc-white);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.tour-stop:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 164, 68, .45);
}

.tour-stop.is-on {
  border-color: var(--brc-gold);
  box-shadow: var(--shadow-soft);
}

.tour-stop img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.tour-stop span {
  display: block;
  padding: 10px 12px 12px;
  font-size: 13px;
  color: var(--brc-ink);
  line-height: 1.35;
}

.tour-stop b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--brc-gold-deep);
  margin-bottom: 2px;
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 72px;
  }

  .topbar .container {
    justify-content: flex-start;
  }

  .navbar-brand img {
    height: 48px;
    max-width: 168px;
  }

  .site-navbar {
    min-height: 72px;
  }

  .site-navbar .container {
    max-width: 100%;
  }

  #mainNav {
    padding: 8px 0 20px;
  }

  .site-navbar .nav-link {
    padding: 0.7rem 0 !important;
  }

  .site-navbar .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
    margin: 0;
  }

  .site-navbar .btn {
    width: 100%;
    margin-top: 8px;
  }

  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .fadeInLeft,
  .fadeInRight {
    animation-name: fadeInUp !important;
  }

  .hero-slider,
  .hero-slider .carousel,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-fade .carousel-item,
  .hero-slide {
    min-height: 0;
  }

  .hero-slide {
    padding: 40px 0 80px;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 7vw, 46px);
  }

  .hero-nav {
    display: none;
  }

  .hero-product {
    min-height: 420px;
    overflow: hidden;
    max-width: 100%;
  }

  .hero-product__glow,
  .hero-product__ring {
    width: min(300px, 78vw);
    height: min(300px, 78vw);
  }

  .hero-product__bag {
    height: 340px;
    width: min(280px, 70%);
  }

  .hero-product--packset .hero-product__bag {
    width: min(420px, 94%);
    height: auto;
    max-height: 320px;
  }

  .hero-indicators {
    bottom: 16px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .process-track::before {
    display: none;
  }

  .story-stack {
    min-height: 0;
  }

  .story-stack__main {
    width: 100%;
    height: 380px;
  }

  .story-stack__inset {
    width: 42%;
    height: 180px;
    bottom: -16px;
  }

  .brand-panel {
    min-height: 420px;
  }

  .tour {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tour-visual,
  .tour-visual img {
    min-height: 360px;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    font-size: 12px;
  }

  .hero__content,
  .page-hero__content {
    position: relative;
    z-index: 2;
    padding: 20px 10px 20px;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .hero-slide {
    padding: 28px 0 64px;
  }

  .hero-copy .lede {
    font-size: 1rem;
  }

  .hero-copy__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy__actions .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-product {
    min-height: 340px;
  }

  .hero-product__glow,
  .hero-product__ring {
    width: min(240px, 72vw);
    height: min(240px, 72vw);
  }

  .hero-product__ring::after {
    inset: -10px;
  }

  .hero-product__bag {
    height: 260px;
    width: min(220px, 68%);
    border-radius: 20px;
  }

  .hero-product__bag-side {
    width: min(110px, 30%);
    height: 150px;
  }

  .hero-product__grain {
    width: 58px;
    height: 58px;
  }

  .hero-product__grain--b {
    width: 48px;
    height: 48px;
  }

  .hero-product__badge {
    right: 4%;
    bottom: 6%;
    padding: 8px 10px;
    font-size: 10px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-strip article {
    padding: 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--brc-line);
  }

  .trust-strip .col-6:nth-child(odd) article {
    border-right: 1px solid var(--brc-line);
  }

  .trust-strip .col-6:nth-child(n + 3) article {
    border-bottom: 0;
  }

  .trust-strip h3 {
    font-size: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .brand-panel {
    min-height: 360px;
  }

  .brand-panel__body {
    padding: 24px 20px;
  }

  .story-stack__main {
    height: 280px;
    border-radius: 22px;
  }

  .story-stack__inset {
    height: 140px;
    border-width: 5px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .moq-banner {
    padding: 64px 0;
  }

  .moq-banner__giant {
    font-size: clamp(72px, 22vw, 120px);
  }

  .cta-band {
    padding: 48px 0;
  }

  .site-footer {
    padding: 30px 0 3px;
  }

  .footer-base {
    text-align: center;
    padding: 16px 0 8px;
  }

  .footer-base .d-flex {
    justify-content: center;
  }

  .float-wa {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
  }

  .gallery-card {
    aspect-ratio: 1 / 1;
  }

  .gallery-card--pack img {
    padding: 10px 8px 42px;
  }

  .gallery-lite {
    padding: 64px 16px 24px;
  }

  .gallery-lite img {
    max-height: 62vh;
  }

  .tour-visual,
  .tour-visual img {
    min-height: 280px;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .split-visual,
  .split-visual img {
    min-height: 260px;
  }
}