/* ============================================================
   MONCRES BROGANCROFT LTD — Stylesheet
   Clean Corporate Minimalist B2B Design
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a2b4a;
  --charcoal:   #2c3547;
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --white:      #ffffff;
  --off-white:  #f9f7f4;
  --light-grey: #f2f0ed;
  --mid-grey:   #e5e2de;
  --text-grey:  #6b7280;
  --border:     #e0ddd9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --max-width: 1240px;
  --nav-height: 76px;
  --radius: 2px;
  --transition: 0.28s ease;

  --shadow-sm:  0 2px 12px rgba(15,31,61,.06);
  --shadow-md:  0 8px 32px rgba(15,31,61,.10);
  --shadow-lg:  0 20px 60px rgba(15,31,61,.13);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 0.4em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Layout ── */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section { padding: 96px 0; }

.section-header { margin-bottom: 56px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b8924a;
  transform: translateY(-1px);
}

/* ── Navbar ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
}

.nav__cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.76rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav__cta:hover { background: var(--gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--navy);
  transition: all var(--transition);
}
.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.footer__brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__contact-item {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gold Divider ── */
.gold-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__badge-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}

.hero__badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  color: var(--white);
}

.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
}

.hero__badge-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 56px;
}

.marquee-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About Strip ── */
.about-strip {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-strip__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 24px;
}

.about-strip__text {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--navy);
  display: block;
}

.stat-card__lbl {
  font-size: 0.8rem;
  color: var(--text-grey);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── Features ── */
.features {
  background: var(--off-white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card__text {
  font-size: 0.88rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ── Featured Products ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__img {
  background: var(--off-white);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--border);
}

.product-card__img svg {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 160px;
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-card__desc {
  font-size: 0.83rem;
  color: var(--text-grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
}

.product-card__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color var(--transition);
}

.product-card:hover .product-card__cta {
  color: var(--navy);
}

/* ── How It Works ── */
.how-it-works {
  background: var(--navy);
  color: var(--white);
}

.how-it-works .section-title { color: var(--white); }
.how-it-works .section-subtitle { color: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: rgba(201,169,110,0.3);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__num {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 24px;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--light-grey);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
  margin-top: 32px;
  font-style: italic;
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 50%;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__lead {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 0.97rem;
  line-height: 1.7;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-bar button {
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.filter-bar button:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.filter-bar button.filter--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--light-grey) 0%, var(--mid-grey) 50%, var(--light-grey) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius);
  height: 320px;
}

@keyframes skeleton-shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* ── Product Detail ── */
.product-hero {
  padding: 120px 0 80px;
  background: var(--off-white);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-hero__img {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero__img svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.product-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid var(--gold);
  padding: 5px 12px;
  border-radius: var(--radius);
}

.product-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.product-hero__price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.product-hero__price span {
  font-size: 0.9rem;
  color: var(--text-grey);
  font-family: var(--font-body);
}

.product-hero__desc {
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 0.97rem;
}

.product-specs {
  margin-bottom: 36px;
}

.product-specs li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.product-specs li span {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.product-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.related-section {
  background: var(--white);
}

/* ── About Page ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.06em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  background: var(--off-white);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.87rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--off-white);
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-card {
  background: var(--navy);
  padding: 40px 32px;
  border-radius: var(--radius);
  color: var(--white);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item--open {
  border-color: var(--navy);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--navy);
  text-align: left;
  border: none;
  gap: 16px;
}

.faq-question:hover { background: var(--off-white); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item--open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item--open .faq-answer { max-height: 400px; }

.faq-answer__inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ── Policy Pages ── */
.policy-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 0 120px;
}

.policy-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 8px;
}

.policy-content .policy-date {
  font-size: 0.82rem;
  color: var(--text-grey);
  margin-bottom: 48px;
  display: block;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
}

.policy-content p {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li {
  font-size: 0.93rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ── Success Page ── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  background: var(--off-white);
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 64px 56px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 520px;
}

.success-icon {
  width: 72px; height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
}

.success-card h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Industries Page ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.industry-card__icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.industry-card__text {
  font-size: 0.87rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ── Wholesale Services ── */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.service-item__icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-item__text {
  font-size: 0.87rem;
  color: var(--text-grey);
  line-height: 1.7;
}

/* ── Partners Page ── */
.partner-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  border: 2px solid var(--border);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.partner-card--featured {
  border-color: var(--gold);
  background: var(--off-white);
}

.partner-card__badge {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.partner-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.partner-card__desc {
  font-size: 0.87rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.partner-card__features li {
  font-size: 0.86rem;
  color: var(--charcoal);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features__grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid     { grid-template-columns: repeat(3, 1fr); }
  .steps-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before{ display: none; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .values-grid       { grid-template-columns: 1fr 1fr; }
  .partner-tiers     { grid-template-columns: 1fr 1fr; }
  .industry-grid     { grid-template-columns: 1fr 1fr; }
  .hero__inner       { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .hero::before      { display: none; }
  .hero              { background: var(--off-white); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav__menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: var(--shadow-md);
  }

  .nav__menu--open { max-height: 520px; }

  .nav__link { padding: 12px 8px; border-bottom: 1px solid var(--border); }
  .nav__cta  { margin: 12px 0 0; width: 100%; text-align: center; }
  .nav__toggle { display: flex; }

  .about-strip__inner    { grid-template-columns: 1fr; gap: 40px; }
  .features__grid        { grid-template-columns: 1fr; }
  .products-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid            { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .footer__grid          { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout        { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: 1fr; }
  .partner-tiers         { grid-template-columns: 1fr; }
  .industry-grid         { grid-template-columns: 1fr; }
  .services-list         { grid-template-columns: 1fr; }
  .product-hero__inner   { grid-template-columns: 1fr; }
  .form-row              { grid-template-columns: 1fr; }
  .contact-form          { padding: 28px 20px; }
  .hero__badge-group     { padding: 20px; }
  .stats-grid            { grid-template-columns: 1fr 1fr; }
  .footer__bottom        { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__title   { font-size: 2.2rem; }
  .success-card  { padding: 40px 24px; }
  .stats-grid    { grid-template-columns: 1fr; }
}
