/* ============================================================
   COMPONENTS.CSS — Reusable UI Components
   ============================================================ */

/* ===== HERO (Category page — bg-image variant) ===== */
.hero {
  height: clamp(400px, 50vh, 600px);
  display: flex; align-items: flex-end;
  position: relative;
  margin-top: var(--utility-nav-height);
  overflow: hidden;
}
.hero--bg-image {
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero--bg-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.6) 80%, var(--surface) 100%);
  z-index: 1;
}

/* Hero (Landing page — img-tag variant) */
.hero--img {
  height: 75vh; min-height: 560px;
  padding: 0 var(--gutter) 80px;
  margin-top: var(--utility-nav-height);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.92) 100%);
  z-index: 1;
}

/* Hero content (shared) */
.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 60px;
  max-width: var(--container-max); width: 100%;
}
.hero--img .hero__content { padding: 0; }

.hero__label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ritz-gold);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 400; line-height: 1.1;
  color: white; margin-bottom: 16px;
}
.hero__description,
.hero__subtitle {
  font-size: 18px; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7; margin-bottom: 32px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--ritz-gold), var(--ritz-gold-dark));
  color: var(--midnight-ocean);
  padding: 18px 36px; font-size: 15px; font-weight: 600;
  border-radius: 6px; transition: all .3s;
}
.hero__cta:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,98,0.4);
}
.hero__cta--outline {
  background: transparent; border: 2px solid var(--ritz-gold); color: var(--ritz-gold);
}
.hero__cta--outline:hover {
  background: var(--ritz-gold); color: var(--midnight-ocean);
}
.hero__proof { font-size: 13px; color: var(--text-muted); letter-spacing: 0.3px; }
.hero__proof span { margin: 0 8px; opacity: 0.4; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 24px var(--gutter);
  max-width: var(--container-max); margin: 0 auto;
  font-size: 14px; color: var(--light-text-muted);
}
.breadcrumbs a { color: var(--ritz-gold); transition: color .3s; }
.breadcrumbs a:hover { color: var(--ritz-gold-hover); }
.breadcrumbs span { margin: 0 12px; }

/* (Legacy BEM variant used in some category pages) */
.breadcrumbs__item { display: inline; margin-right: 8px; }
.breadcrumbs__item::after { content: ' / '; margin-left: 8px; color: var(--light-text-muted); }
.breadcrumbs__item:last-child::after { content: ''; }
.breadcrumbs__link { color: var(--ritz-gold); }
.breadcrumbs__link:hover { color: var(--ritz-gold-hover); }

/* ===== INTRO ===== */
.intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  max-width: var(--container-max); margin: 0 auto;
}
.intro__title {
  font-family: var(--serif); font-size: 44px; font-weight: 400;
  margin-bottom: 32px; line-height: 1.2; color: var(--light-text);
}
.intro__content p {
  font-size: 16px; color: var(--light-text-secondary); line-height: 1.8; margin-bottom: 20px;
}
.intro__image {
  width: 100%; border-radius: 8px; margin-top: 32px;
  aspect-ratio: 1 / 1; object-fit: cover;
}
.intro__content a { color: var(--ritz-gold); font-weight: 600; transition: color .3s; }
.intro__content a:hover { color: var(--ritz-gold-hover); }

/* ===== PRODUCT CARD (Category grid) ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px; margin: 60px 0;
}
.product-card {
  position: relative; border-radius: 16px;
  border: 1px solid var(--light-border);
  aspect-ratio: 4/3; overflow: hidden;
  background: #fff; transition: all .3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--ritz-gold); transform: translateY(-4px);
}
.product-card__image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.8) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: all .3s ease;
}
.product-card:hover .product-card__overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.95) 100%);
}
.product-card__name {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: white; margin-bottom: 8px;
}
.product-card__description {
  font-size: 13px; color: var(--text-secondary); line-height: 1.5;
}
.product-card__link { position: absolute; inset: 0; }

/* ===== BENEFIT CARD ===== */
.benefits { background: var(--light-bg); border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); }
.benefits__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px;
}
.benefit-card {
  text-align: center; padding: 32px 24px;
  background: var(--light-bg); border-radius: 12px;
  border: 1px solid var(--light-border); transition: all 0.3s;
}
.benefit-card:hover { border-color: var(--ritz-gold); box-shadow: 0 4px 20px rgba(201,169,98,0.1); }
.benefit-card__icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--ritz-gold), var(--ritz-gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 40px;
}
.benefit-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--light-text); margin-bottom: 12px;
}
.benefit-card__text,
.benefit-card__desc {
  font-size: 14px; color: var(--light-text-muted); line-height: 1.6;
}

/* ===== FAQ (Accessible Accordion) ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  text-align: center; margin-bottom: 40px; color: var(--light-text);
}
.faq-item {
  background: white; border: 1px solid var(--light-border);
  border-radius: 12px; padding: 24px 28px;
  margin-bottom: 12px; transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--ritz-gold); box-shadow: 0 4px 12px rgba(201,169,98,0.1); }

.faq-item__trigger {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--midnight-ocean);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: color 0.3s ease;
  margin: 0; padding: 0;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-item__trigger::after {
  content: '+'; font-size: 24px; color: var(--ritz-gold);
  transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px;
}
.faq-item__trigger:hover { color: var(--ritz-gold); }
.faq-item__trigger[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-item__body {
  font-size: 15px; color: var(--light-text-muted);
  line-height: 1.7; display: none; margin-top: 16px;
}
.faq-item__body[aria-hidden="false"] { display: block; }

/* Legacy h4/p FAQ styles removed — main.js converts h4 to
   accessible .faq-item__trigger buttons with ARIA attributes. */

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px var(--gutter); background: var(--midnight-ocean); text-align: center;
}
.cta-banner__inner { max-width: 700px; margin: 0 auto; }
.cta-banner__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: white; margin-bottom: 16px;
}
.cta-banner__desc {
  font-size: 16px; color: var(--text-secondary); margin-bottom: 32px;
}
.cta-banner__btn {
  display: inline-block;
  background: var(--ritz-gold); color: var(--midnight-ocean);
  padding: 18px 48px; font-size: 16px; font-weight: 600;
  border-radius: 6px; transition: all 0.3s;
}
.cta-banner__btn:hover {
  background: var(--ritz-gold-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.3);
}
.cta-banner__contact {
  margin-top: 24px; font-size: 15px; color: var(--text-muted);
}
.cta-banner__contact a { color: var(--ritz-gold); font-weight: 500; transition: color .3s; }
.cta-banner__contact a:hover { color: var(--ritz-gold-hover); }
.cta-banner--light {
  background: var(--light-bg);
}
.cta-banner--light .cta-banner__title { color: var(--midnight-ocean); }
.cta-banner--light .cta-banner__desc { color: var(--light-text-secondary); }
.cta-banner--light .cta-banner__contact { color: var(--light-text-secondary); }
.cta-banner--light .cta-banner__contact a { color: var(--ritz-gold-dark); }

/* ===== SUPPLY LIST ===== */
.supply-section { padding: 80px var(--gutter); background: var(--light-bg); }
.supply-section__inner { max-width: 1000px; margin: 0 auto; }
.supply-section__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--light-text); margin-bottom: 24px;
}
.supply-list { columns: 2; column-gap: 40px; }
.supply-list li {
  padding: 8px 0 8px 28px; font-size: 15px;
  color: var(--light-text-secondary); border-bottom: 1px solid var(--light-border);
  position: relative;
}
.supply-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--ritz-gold);
}

/* ===== SPECIFY GRID ===== */
.specify-section { padding: 80px var(--gutter); background: #fff; }
.specify-section__inner { max-width: 800px; margin: 0 auto; }
.specify-section__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--light-text); margin-bottom: 24px;
}
.specify-section__desc {
  font-size: 15px; color: var(--light-text-muted); line-height: 1.7; margin-bottom: 32px;
}
.specify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.specify-item {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: var(--light-text-secondary); line-height: 1.6;
  padding: 20px; background: var(--light-bg); border-radius: 8px;
}
.specify-item__label {
  font-size: 13px; font-weight: 700; color: var(--ritz-gold);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ===== RFQ LIST ===== */
.rfq-section { padding: 80px var(--gutter); background: var(--midnight-ocean); }
.rfq-section__inner { max-width: 1000px; margin: 0 auto; }
.rfq-section__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: white; margin-bottom: 24px;
}
.rfq-list { columns: 2; column-gap: 40px; }
.rfq-list li {
  padding: 12px 0; font-size: 15px; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.1); font-style: italic;
}

/* ===== RELATED CATEGORIES ===== */
.related-section { padding: 80px var(--gutter); background: #fff; }
.related-section__inner { max-width: var(--container-max); margin: 0 auto; }
.related-section__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--light-text); margin-bottom: 40px; text-align: center;
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.related-card {
  background: var(--light-bg); border: 1px solid var(--light-border);
  border-radius: 12px; padding: 32px; text-align: center;
  transition: all .3s ease; color: var(--light-text);
}
.related-card:hover {
  border-color: var(--ritz-gold); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.related-card__icon { font-size: 32px; margin-bottom: 12px; }
.related-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  margin-bottom: 8px; color: var(--light-text);
}
.related-card__desc { font-size: 14px; color: var(--light-text-muted); line-height: 1.5; }

/* ===== COLLECTION TITLE (centered product grid heading) ===== */
.collection-title {
  font-family: var(--serif); font-size: 42px; font-weight: 700;
  text-align: center; margin-bottom: 48px; color: white;
}

/* ===== DELIVERY / COMMISSIONING (narrow text block) ===== */
.delivery-section { padding: 60px var(--gutter); background: #fff; }
.delivery-section__inner { max-width: 1000px; margin: 0 auto; }
.delivery-section__title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--light-text); margin-bottom: 12px;
}
.delivery-section__text {
  font-size: 16px; color: var(--light-text-secondary); line-height: 1.8;
}

/* ===== SEO CONTENT (light bg text block) ===== */
.seo-content { background: var(--light-bg); color: var(--light-text); }
.seo-content__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  margin-bottom: 32px; color: var(--light-text);
}
.seo-content p {
  font-size: 16px; line-height: 1.8; margin-bottom: 20px;
  color: var(--light-text-secondary);
}

/* ============================================================
   LANDING PAGE — Intro, Audience, Categories, Featured,
   Gallery, Process, Supply Cards, Benefits, RFQ Checklist,
   FAQ wrapper, Geo, Related Links
   ============================================================ */

/* --- Intro (landing variant) --- */
.intro-section  { padding: 80px var(--gutter); }
.intro-container {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.intro__title   { font-family: var(--serif); font-size: 44px; font-weight: 400; line-height: 1.2; color: var(--light-text); }
.intro__content p { font-size: 16px; color: var(--light-text-secondary); line-height: 1.8; margin-bottom: 16px; }
.intro__content a { color: var(--ritz-gold-dark); font-weight: 600; }
.intro__content a:hover { color: var(--ritz-gold); }

/* --- Audience Strip --- */
.audience-strip {
  background: var(--light-bg-alt); padding: 16px var(--gutter);
  border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border);
}
.audience-strip__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
}
.audience-strip__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--ritz-gold-dark);
}
.audience-strip__role { font-size: 13px; color: var(--light-text-secondary); }
.audience-strip__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--light-text-muted);
}

/* --- Categories --- */
.categories-section { padding: 80px var(--gutter); }
.categories-container { max-width: var(--container-max); margin: 0 auto; }
.categories-header { text-align: center; margin-bottom: 48px; }
.categories-header__title {
  font-family: var(--serif); font-size: 40px; font-weight: 400;
  color: var(--light-text); margin-bottom: 16px;
}
.categories-header__desc {
  font-size: 16px; color: var(--light-text-muted);
  max-width: 600px; margin: 0 auto;
}
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-tile {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--light-bg); border: 1px solid var(--light-border);
  transition: all 0.3s;
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--ritz-gold); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.cat-tile__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.cat-tile__body { padding: 24px; }
.cat-tile__title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--light-text); margin-bottom: 8px;
}
.cat-tile__desc { font-size: 14px; color: var(--light-text-secondary); line-height: 1.6; margin-bottom: 16px; }
.cat-tile__ctas { display: flex; gap: 12px; position: relative; z-index: 2; }
.cat-tile__cta {
  font-size: 13px; font-weight: 600; padding: 10px 20px;
  border-radius: 6px; transition: all 0.3s; display: inline-block;
}
.cat-tile__cta--view {
  background: var(--midnight-ocean); color: white;
}
.cat-tile__cta--view:hover { background: #1a2a42; }
.cat-tile__cta--quote {
  border: 1px solid var(--ritz-gold); color: var(--ritz-gold-dark);
  background: transparent;
}
.cat-tile__cta--quote:hover { background: var(--ritz-gold); color: var(--midnight-ocean); }

/* --- Featured --- */
.featured-section { padding: 80px var(--gutter); background: var(--midnight-ocean); color: white; }
.featured-container { max-width: var(--container-max); margin: 0 auto; }
.featured-header { text-align: center; margin-bottom: 48px; }
.featured-header__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--ritz-gold); margin-bottom: 12px;
}
.featured-header__title {
  font-family: var(--serif); font-size: 40px; font-weight: 400;
  color: white; margin-bottom: 16px;
}
.featured-header__desc { font-size: 16px; color: var(--text-secondary); }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-card {
  position: relative; background: var(--surface-raised); border-radius: 12px;
  border: 1px solid var(--border-light); overflow: hidden; transition: all 0.3s;
}
.feat-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.feat-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.feat-card__body { padding: 20px; }
.feat-card__title {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: white; margin-bottom: 6px;
}
.feat-card__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.feat-card__ctas { display: flex; gap: 8px; position: relative; z-index: 2; }
.feat-card__cta {
  font-size: 12px; font-weight: 600; padding: 8px 16px;
  border-radius: 4px; transition: all 0.3s; display: inline-block;
}
.feat-card__cta--view { background: var(--ritz-gold); color: var(--midnight-ocean); }
.feat-card__cta--view:hover { background: var(--ritz-gold-hover); }
.feat-card__cta--quote {
  border: 1px solid var(--ritz-gold); color: var(--ritz-gold); background: transparent;
}
.feat-card__cta--quote:hover { background: var(--ritz-gold); color: var(--midnight-ocean); }

/* --- Gallery --- */
.gallery-section { padding: 80px var(--gutter); background: var(--light-bg); }
.gallery-container { max-width: var(--container-max); margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header__title { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--light-text); }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
}
.gallery-item img { width: 100%; height: 200px; object-fit: cover; display: block; }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 11px; color: white;
}

/* --- Process --- */
.process-section { padding: 80px var(--gutter); background: var(--midnight-ocean); }
.process-container { max-width: var(--container-max); margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 48px; }
.process-header__title { font-family: var(--serif); font-size: 36px; font-weight: 400; color: white; }
.process-header__desc { font-size: 16px; color: var(--text-secondary); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
}
.process-step { text-align: center; }
.process-step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ritz-gold); color: var(--midnight-ocean);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; margin: 0 auto 16px;
}
.process-step__title {
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: white; margin-bottom: 8px;
}
.process-step__desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* --- Supply Cards (landing variant) --- */
.supply-section--cards { padding: 60px var(--gutter); background: var(--light-bg); }
.supply-cards-container { max-width: var(--container-max); margin: 0 auto; }
.supply-cards-header { text-align: center; margin-bottom: 40px; }
.supply-cards-header__title { font-family: var(--serif); font-size: 36px; font-weight: 400; color: var(--light-text); }
.supply-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.supply-card {
  background: white; border-radius: 12px; padding: 32px;
  border: 1px solid var(--light-border);
}
.supply-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--light-text); margin-bottom: 20px;
}
.supply-card__list { list-style: none; }
.supply-card__list li {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid var(--light-bg-alt);
  font-size: 14px; color: var(--light-text-secondary);
}
.supply-card__list li:last-child { border-bottom: none; }
.supply-card__icon { width: 16px; height: 16px; flex-shrink: 0; }
.supply-card__icon--check { color: #2da44e; }
.supply-card__icon--x { color: #cf222e; }
.supply-card__icon--info { color: var(--ritz-gold); }

/* --- Benefits (landing variant) --- */
.benefits-section { padding: 80px var(--gutter); background: var(--midnight-ocean); }
.benefits-container { max-width: var(--container-max); margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 48px; }
.benefits-header__title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: white; margin-bottom: 12px;
}
.benefits-header__desc { font-size: 16px; color: var(--text-secondary); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* Benefit card — dark variant (landing pages) */
.benefit-card--dark {
  background: var(--surface-raised);
  border: 1px solid var(--border-light);
}
.benefit-card--dark:hover {
  border-color: var(--ritz-gold); box-shadow: 0 4px 20px rgba(201,169,98,0.15);
}
.benefit-card--dark .benefit-card__icon {
  width: auto; height: auto; background: none; border-radius: 0;
  margin-bottom: 16px; display: block;
}
.benefit-card--dark .benefit-card__title { color: white; }
.benefit-card--dark .benefit-card__desc  { color: var(--text-secondary); }

/* --- FAQ wrapper (landing variant) --- */
.faq-section { padding: 80px var(--gutter); background: var(--light-bg); }
.faq-section .faq-container { max-width: 800px; margin: 0 auto; }
.faq-section h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  text-align: center; margin-bottom: 40px; color: var(--light-text);
}

/* --- RFQ Checklist --- */
.rfq-checklist-section { padding: 60px var(--gutter); }
.rfq-checklist__inner { max-width: 800px; margin: 0 auto; text-align: center; }
.rfq-checklist__title {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--light-text); margin-bottom: 12px;
}
.rfq-checklist__desc { font-size: 16px; color: var(--light-text-secondary); margin-bottom: 32px; }
.rfq-checklist__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  text-align: left;
}
.rfq-checklist__item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--light-bg); border-radius: 8px;
  font-size: 15px; color: var(--light-text);
}
.rfq-checklist__icon { width: 20px; height: 20px; color: var(--ritz-gold); flex-shrink: 0; }

/* --- Geo --- */
.geo-section {
  padding: 40px var(--gutter); background: var(--light-bg); text-align: center;
}
.geo-section__inner { max-width: 720px; margin: 0 auto; }
.geo-section h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--light-text); margin-bottom: 8px;
}
.geo-section p { font-size: 15px; color: var(--light-text-secondary); line-height: 1.7; }

/* --- Related Links --- */
.related-links-section { padding: 40px var(--gutter); background: var(--light-bg-alt); text-align: center; }
.related-links-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.related-chip {
  display: inline-block; padding: 10px 20px;
  border: 1px solid var(--ritz-gold); border-radius: 6px;
  font-size: 14px; color: var(--ritz-gold-dark); font-weight: 500;
  transition: all 0.3s;
}
.related-chip:hover { background: var(--ritz-gold); color: var(--midnight-ocean); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* --- Product Hero (gallery + info side-by-side) --- */
.product-hero {
  padding: 120px var(--gutter) 60px;
  background: var(--midnight-ocean);
}
.product-hero__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

/* --- Product Gallery --- */
.product-gallery__main {
  width: 100%; border-radius: 12px;
  background: #fff; object-fit: contain;
  aspect-ratio: 4/3;
}
.product-gallery .thumbnail-strip {
  display: flex; gap: 12px; margin-top: 16px;
}
.product-gallery .thumbnail {
  width: 72px; height: 72px; border-radius: 8px;
  overflow: hidden; border: 2px solid var(--border-light);
  cursor: pointer; transition: border-color 0.3s;
}
.product-gallery .thumbnail:hover,
.product-gallery .thumbnail.active {
  border-color: var(--ritz-gold);
}
.product-gallery .thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
}

/* --- Product Info --- */
.product-info__brand {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ritz-gold); margin-bottom: 8px;
}
.product-info__title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; color: white; margin-bottom: 12px; line-height: 1.15;
}
.product-info__tagline {
  font-size: 16px; color: var(--text-secondary);
  margin-bottom: 24px; line-height: 1.6;
}
.product-info__desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px;
}
.product-info__desc:last-of-type { margin-bottom: 28px; }
.product-info__price {
  font-family: var(--serif); font-size: 20px; color: var(--ritz-gold);
  margin-bottom: 24px; font-weight: 500;
}

/* --- Product CTA Buttons --- */
.product-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.product-cta__btn {
  display: inline-block; padding: 16px 36px; font-size: 15px; font-weight: 600;
  border-radius: 6px; transition: all 0.3s; text-align: center;
}
.product-cta__btn--primary {
  background: linear-gradient(135deg, var(--ritz-gold), var(--ritz-gold-dark));
  color: var(--midnight-ocean);
}
.product-cta__btn--primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,98,0.4);
}
.product-cta__btn--secondary {
  background: transparent; border: 2px solid var(--ritz-gold); color: var(--ritz-gold);
}
.product-cta__btn--secondary:hover {
  background: var(--ritz-gold); color: var(--midnight-ocean);
}

/* --- Specs Grid --- */
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; max-width: var(--container-max); margin: 0 auto;
}
.spec-card {
  background: white; border: 1px solid var(--light-border);
  border-radius: 12px; padding: 28px 20px; text-align: center;
  transition: all 0.3s;
}
.spec-card:hover {
  border-color: var(--ritz-gold); box-shadow: 0 4px 16px rgba(201,169,98,0.1);
}
.spec-card__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--ritz-gold); margin-bottom: 10px;
}
.spec-card__value {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--light-text);
}

/* --- Product Content (2-col text) --- */
.product-content {
  max-width: var(--container-max); margin: 0 auto;
}
.product-content h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--light-text); margin-bottom: 24px;
}
.product-content p {
  font-size: 16px; color: var(--light-text-secondary);
  line-height: 1.8; margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .supply-list { columns: 1; }
  .rfq-list { columns: 1; }
  .categories-grid   { grid-template-columns: repeat(2, 1fr); }
  .featured-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
  .process-steps     { grid-template-columns: repeat(3, 1fr); }
  .supply-cards-grid { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-hero { padding: 100px var(--gutter) 40px; }
  .product-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .product-info__title { font-size: 28px; }
  .product-cta { flex-direction: column; }
  .product-cta__btn { text-align: center; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { height: clamp(320px, 45vh, 500px); }
  .hero--img { height: 65vh; min-height: 440px; padding: 0 var(--gutter) 60px; }
  .hero__title { font-size: clamp(28px, 5vw, 36px); }
  .hero__content { padding: 0 var(--gutter) 40px; }
  .hero__ctas { flex-direction: column; }
  .hero__cta { text-align: center; justify-content: center; }

  .intro { grid-template-columns: 1fr; gap: 24px; }
  .intro__title { font-size: 32px; }

  .products { grid-template-columns: 1fr; gap: 24px; }
  .specify-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 60px var(--gutter); }
  .cta-banner__title { font-size: 28px; }

  .faq__title { font-size: 28px; }

  /* Landing page */
  .intro-section { padding: 60px var(--gutter); }
  .intro-container { grid-template-columns: 1fr; gap: 24px; }
  .intro__title { font-size: 32px; }

  .categories-section { padding: 60px var(--gutter); }
  .categories-header__title { font-size: 28px; }
  .categories-grid { grid-template-columns: 1fr; }

  .featured-section { padding: 60px var(--gutter); }
  .featured-header__title { font-size: 28px; }
  .featured-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 150px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid { grid-template-columns: 1fr; }

  .faq-section { padding: 60px var(--gutter); }
  .faq-section h2 { font-size: 28px; }

  .rfq-checklist__grid { grid-template-columns: 1fr; }

  .collection-title { font-size: 32px; margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .products { grid-template-columns: 1fr; }
  .intro__title { font-size: 28px; }
  .seo-content__title { font-size: 28px; }
  .collection-title { font-size: 26px; }
  .faq__title { font-size: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
