/* =============================================================
   GUPTA CREATIONS — MAIN STYLESHEET v2.0
   Design: Modern · Clean · Minimalist | Target: Gen Z / Gen Alpha
   ============================================================= */

/* ----- Google Fonts (loaded via HTML) ----- */


/* ----- CSS Variables ----- */
:root {
  --red:       #ec1e24;
  --red-dark:  #c91920;
  --orange:    #f79838;
  --black:     #0a0a0a;
  --gray-900:  #1c1c1c;
  --gray-700:  #444444;
  --gray-500:  #888888;
  --gray-400:  #aaaaaa;
  --gray-300:  #cccccc;
  --gray-200:  #e0e0e0;
  --gray-100:  #f0f0f0;
  --gray-50:   #f8f8f7;
  --white:     #ffffff;

  --font-head: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --container-narrow: 860px;
  --px: clamp(20px, 4vw, 60px);

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --fast:  0.18s var(--ease);
  --base:  0.28s var(--ease);
  --slow:  0.5s var(--ease);

  --section-y: clamp(64px, 8vw, 120px);
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 20px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ----- Utilities ----- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-red    { color: var(--red); }
.text-muted  { color: var(--gray-500); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ----- Typography ----- */
.display {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--black);
}
.heading-xl {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.heading-md {
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}
.heading-sm {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.label-red {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.body-lg { font-size: 18px; line-height: 1.7; color: var(--gray-700); }
.body    { font-size: 15px; line-height: 1.7; color: var(--gray-700); }
.body-sm { font-size: 13px; line-height: 1.6; color: var(--gray-500); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 100px;
  transition: background var(--base), color var(--base), border-color var(--base), transform var(--base), box-shadow var(--base);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover {
  background: var(--gray-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(236,30,36,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-arrow::after { content: '→'; font-size: 1em; }

/* ----- Tags / Badges ----- */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-700);
}
.tag-red {
  background: rgba(236,30,36,0.08);
  color: var(--red);
}
.tag-black {
  background: var(--black);
  color: var(--white);
}

/* ----- Divider ----- */
.divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

/* ----- Section ----- */
.section {
  padding-block: var(--section-y);
}
.section-sm {
  padding-block: clamp(40px, 5vw, 72px);
}
.section-header {
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-header.centered { text-align: center; }
.section-label {
  display: block;
  margin-bottom: 14px;
}

/* ----- Reveal Animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ========================================================
   PROMO BAR
======================================================== */
#gc-promo-bar {
  background: var(--black);
  color: var(--white);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
#gc-promo-bar.hidden { display: none; }
.promo-track {
  display: flex;
  white-space: nowrap;
  animation: promoRoll 40s linear infinite;
}
.promo-track:hover { animation-play-state: paused; }
.promo-msg {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 48px;
}
.promo-msg::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 48px;
}
.promo-dismiss {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 6px;
  z-index: 5;
  transition: color var(--fast);
  line-height: 1;
}
.promo-dismiss:hover { color: var(--white); }
@keyframes promoRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================================
   HEADER / NAV
======================================================== */
#gc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--base);
}
#gc-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.header-logo img {
  height: 36px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.header-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--fast), background var(--fast);
  position: relative;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--black); background: var(--gray-50); }
.header-nav a.active { color: var(--black); font-weight: 600; }
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 12px; right: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.header-phone {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color var(--fast);
}
.header-phone:hover { color: var(--black); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--base), opacity var(--base);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  top: 108px; /* below promo + header */
  background: var(--white);
  z-index: 99;
  padding: 32px var(--px) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--base);
  border-top: 1px solid var(--gray-200);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--fast), padding-left var(--fast);
}
.mobile-drawer a:hover { color: var(--red); padding-left: 8px; }
.mobile-drawer .btn-red { color: var(--white) !important; }
.mobile-drawer .btn { margin-top: 16px; align-self: flex-start; }

/* ========================================================
   FOOTER
======================================================== */
#gc-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 7vw, 96px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--base), color var(--base), background var(--base);
}
.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--fast);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ========================================================
   PAGE HERO (inner pages)
======================================================== */
.page-hero {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: clamp(48px, 6vw, 80px) 0;
}
.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.page-hero-breadcrumb {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { transition: color var(--fast); }
.page-hero-breadcrumb a:hover { color: var(--black); }
.page-hero-breadcrumb span { color: var(--gray-300); }

/* ========================================================
   HOME — HERO
======================================================== */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 108px);
  overflow: hidden;
}
.home-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--px) 80px clamp(20px, 5vw, 80px);
  background: var(--white);
}
.home-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.home-hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gray-300);
}
.home-hero-title {
  font-family: var(--font-head);
  font-size: clamp(56px, 6.5vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 28px;
}
.home-hero-title .accent { color: var(--red); }
.home-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 380px;
  margin-bottom: 40px;
}
.home-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.home-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.stat { }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
  font-weight: 500;
}
.home-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
}
.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}
.home-hero-image:hover img { transform: scale(1.03); }
.home-hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.home-hero-image-tag strong {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.home-hero-image-tag span {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========================================================
   HOME — COLLECTIONS TEASER
======================================================== */
.collections-grid-home {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 380px 380px;
  gap: 12px;
}
.coll-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
  cursor: pointer;
}
.coll-card-featured { grid-row: span 2; }
.coll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
}
.coll-card:hover img { transform: scale(1.05); }
.coll-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.1) 55%, transparent 100%);
}
.coll-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}
.coll-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.coll-card-name {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.coll-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--fast), gap var(--fast);
}
.coll-card:hover .coll-card-arrow { color: var(--white); gap: 10px; }

/* ========================================================
   HOME — BRAND STRIP
======================================================== */
.brand-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  padding: 0;
}
.brand-strip-inner {
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.brand-strip-inner::before,
.brand-strip-inner::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brand-strip-inner::before { left: 0;  background: linear-gradient(to right, var(--gray-50), transparent); }
.brand-strip-inner::after  { right: 0; background: linear-gradient(to left,  var(--gray-50), transparent); }
.brand-strip-track {
  display: flex;
  white-space: nowrap;
  animation: brandScroll 38s linear infinite;
}
.brand-strip-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-strip-item {
  display: inline-flex;
  align-items: center;
  padding: 0 36px;
  height: 64px;
  border-right: 1px solid var(--gray-200);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  transition: color var(--fast);
  cursor: default;
}
.brand-strip-item:hover { color: var(--black); }

/* ========================================================
   HOME — OFFER FEATURE
======================================================== */
.offer-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.offer-feature-text {
  padding: clamp(36px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.offer-feature-number {
  font-family: var(--font-head);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 4px;
}
.offer-feature-number sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 600;
  color: var(--red);
}
.offer-feature-image {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  min-height: 340px;
}
.offer-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================
   HOME — WEDDING BANNER
======================================================== */
.wedding-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.wedding-feature img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.wedding-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 50%, transparent 100%);
}
.wedding-feature-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wedding-feature-body .heading-xl { color: var(--white); }
.wedding-feature-body .body { color: rgba(255,255,255,0.65); max-width: 400px; }
.wedding-feature-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.wo-chip {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.wo-chip:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.wo-chip { cursor: pointer; font: inherit; }
.wo-chip.active { background: var(--white); color: var(--black); border-color: var(--white); }
.wedding-feature img { transition: opacity var(--base); }

/* ========================================================
   HOME — ABOUT STRIP
======================================================== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.about-strip-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--gray-100);
}
.about-strip-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--slow);
}
.about-strip:hover .about-strip-image img { transform: scale(1.03); }
.about-strip-text {
  padding: clamp(36px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray-50);
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--base), box-shadow var(--base);
}
.pillar:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pillar-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.pillar-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========================================================
   COLLECTIONS PAGE
======================================================== */
.collections-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-500);
  background: var(--white);
  cursor: pointer;
  transition: all var(--fast);
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.collections-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-full-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--base), transform var(--base);
}
.collection-full-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.collection-full-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
}
.collection-full-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--slow);
}
.collection-full-card:hover .collection-full-card-img img { transform: scale(1.06); }
.collection-full-card-body { padding: 20px; }
.collection-full-card-cat {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.collection-full-card-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.collection-full-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  transition: gap var(--fast), color var(--fast);
}
.card-arrow-link::after { content: '→'; }
.collection-full-card:hover .card-arrow-link { gap: 10px; color: var(--red); }

/* ========================================================
   BRANDS PAGE
======================================================== */
.brands-search-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
  max-width: 400px;
  transition: border-color var(--fast);
}
.brands-search-bar:focus-within { border-color: var(--black); }
.brands-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: transparent;
}
.brands-search-bar input::placeholder { color: var(--gray-400); }
.brands-search-bar span { padding: 0 16px 0 0; color: var(--gray-400); font-size: 14px; }
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.brand-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: border-color var(--base), box-shadow var(--base), transform var(--base);
  cursor: default;
}
.brand-card:hover {
  border-color: var(--black);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.brand-card-initial {
  width: 52px; height: 52px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 12px;
  border: 1px solid var(--gray-200);
  transition: background var(--base), color var(--base);
}
.brand-card:hover .brand-card-initial {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.brand-card-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}
.brand-card-cat {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ========================================================
   WEDDING PAGE
======================================================== */
.wedding-hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--black);
}
.wedding-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.wedding-hero-body {
  position: relative;
  z-index: 2;
  padding-block: 80px;
}
.wedding-hero-body .heading-xl { color: var(--white); }
.wedding-hero-body .body-lg { color: rgba(255,255,255,0.65); max-width: 520px; margin-top: 16px; }

.occasion-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.occasion-chip-dark {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  transition: background var(--fast), color var(--fast), border-color var(--fast);
  cursor: default;
}
.occasion-chip-dark.highlight {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.occasion-chip-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.wedding-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.wedding-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}
.wedding-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--slow);
}
.wedding-split:hover .wedding-split-img img { transform: scale(1.04); }
.wedding-split-text { display: flex; flex-direction: column; gap: 20px; }

/* ========================================================
   OFFERS PAGE
======================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--base), transform var(--base), border-color var(--base);
  background: var(--white);
}
.offer-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}
.offer-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.offer-card-body { padding: 32px; }
.offer-card-featured { border-color: var(--red); }
.offer-card-featured .offer-card-top { background: var(--red); }
.offer-pct {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 4px;
}
.offer-pct .prefix {
  font-size: 16px;
  font-weight: 600;
  vertical-align: middle;
  color: var(--gray-500);
  letter-spacing: 0;
  margin-right: 2px;
}
.offer-pct .suffix {
  font-size: 36px;
  color: var(--red);
}
.offer-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.offer-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; }
.offer-code-block {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color var(--fast);
}
.offer-code-block:hover { border-color: var(--red); }
.offer-code-lbl {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 10px 12px;
  border-right: 1.5px dashed var(--gray-200);
  background: var(--gray-50);
}
.offer-code {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--black);
  padding: 10px 16px;
  flex: 1;
}
.offer-expiry { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.offer-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
}
.offer-card-wide .offer-pct-block {
  background: var(--black);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card-wide .offer-pct { color: var(--white); font-size: 80px; }
.offer-card-wide .offer-card-body {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ========================================================
   ABOUT PAGE
======================================================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}
.about-hero-images .img-block {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.about-hero-images .img-block.tall { grid-row: span 2; }
.about-hero-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
}
.about-hero-images .img-block:hover img { transform: scale(1.04); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  transition: border-color var(--base);
}
.value-card:hover { border-color: var(--gray-400); }
.value-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }

/* ========================================================
   STORES PAGE
======================================================== */
.stores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.store-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--base), border-color var(--base), transform var(--base);
}
.store-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: var(--gray-300);
  transform: translateY(-4px);
}
.store-map-visual {
  height: 220px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-map-grid-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 31px, var(--gray-200) 32px),
    repeating-linear-gradient(90deg, transparent, transparent 31px, var(--gray-200) 32px);
}
.map-pin-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.map-pin {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(236,30,36,0.35);
}
.map-pin::after {
  content: '';
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-pin-label {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.store-card-body { padding: 28px; }
.store-number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.store-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.store-address { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 4px; }
.store-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 12px 0 20px;
  transition: color var(--fast);
}
.store-phone-link:hover { color: var(--red); }
.store-actions { display: flex; gap: 10px; }
.store-hours {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.store-hours strong { color: var(--black); font-weight: 600; }
.store-main-card { scroll-margin-top: 90px; }

/* ========================================================
   RESPONSIVE
======================================================== */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-image { min-height: 50vw; max-height: 60vh; }
  .home-hero-text { padding: 60px var(--px); }
  .collections-grid-home {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .coll-card-featured { grid-row: span 1; grid-column: span 2; min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .offer-card-wide { grid-template-columns: 1fr; }
  .offer-card-wide .offer-pct-block { padding: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { top: 108px; }
  :root { --section-y: clamp(48px, 8vw, 80px); }
  .collections-grid-home { grid-template-columns: 1fr; }
  .coll-card-featured { grid-column: span 1; min-height: 280px; }
  .coll-card:not(.coll-card-featured) { min-height: 220px; }
  .offer-feature { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { min-height: 280px; }
  .wedding-split { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .family-images > div:last-child { margin-top: 0 !important; }
  .stores-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .collections-full-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card-wide { grid-column: span 1; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .brands-full-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
}

@media (max-width: 480px) {
  .home-hero-stats { gap: 24px; }
  .collections-full-grid { grid-template-columns: 1fr; }
  .display { font-size: clamp(44px, 11vw, 72px); }
}
/* Footer Credit Inline */
.footer-credit-inline {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-align: center;
}
.footer-credit-inline a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--fast);
}
.footer-credit-inline a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Brand Card Logo */
.brand-card-logo {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 4px;
}
.brand-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}