/* ============================================================
   THE CONDOM WALA — Design System v2
   Palette: Wine-black base, rose accent, warm gold, blush highlights
   (warmer, more inviting than pure black — chosen for approachability)
   ============================================================ */

:root {
  /* Colors — light, minimal cream theme matched to the header (#FBEFEA) */
  --ink-900: #FBEFEA;   /* page background (cream) */
  --ink-800: #FFFFFF;   /* card background (white, for contrast against cream) */
  --ink-700: #F3E1D8;   /* subtle alt/hover background */
  --paper: #1E1216;     /* primary text (dark) */
  --paper-dim: #6B5A5F; /* secondary/muted text (dark) */
  --rose: #EC0F3F;
  --rose-dim: #B00B30;
  --gold: #B8862A;      /* deepened for readable text/icons on light bg */
  --gold-soft: #E8B84B; /* original lighter gold, for decorative/bg use only */
  --blush: #FFD9E0;
  --line: rgba(30, 18, 22, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --gap: clamp(1rem, 2vw, 2rem);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--ink-900);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}

.container { max-width: 1240px; margin-inline: auto; padding-inline: var(--gap); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gap);
  background: var(--ink-800);
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
}
.logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; color: var(--paper); }
.logo span { color: var(--rose); }
.logo-img { height: 34px; width: auto; display: block; }
.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink-900); border-radius: 8px; padding: 0.3rem 0.6rem; line-height: 0;
}

.main-nav ul { display: flex; gap: 2rem; list-style: none; font-size: 0.9rem; }
.main-nav a { position: relative; color: var(--paper); opacity: 0.82; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--rose); transition: width 0.25s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }
.main-nav a.is-active { color: var(--rose); opacity: 1; }
.main-nav a.is-active::after { width: 100%; }

.header-search input {
  background: rgba(18, 10, 13, 0.05); border: 1px solid rgba(18, 10, 13, 0.15); color: var(--paper);
  padding: 0.6rem 1rem; border-radius: 999px; font-size: 0.85rem; width: 200px;
}
.header-search input::placeholder { color: rgba(18, 10, 13, 0.45); }
.header-search input:focus { outline: none; border-color: var(--rose); }

.header-actions { display: flex; gap: 1.2rem; align-items: center; }
.site-header .btn-ghost { color: var(--paper); border-color: rgba(18, 10, 13, 0.2); }
.site-header .btn-ghost:hover { border-color: var(--rose); color: var(--rose); background: rgba(236, 15, 63, 0.06); }

.flash-message {
  max-width: 1240px; margin: 1rem auto 0; padding: 0.9rem 1.2rem; border-radius: 8px; font-size: 0.9rem;
}
.flash-success { background: rgba(232, 184, 75, 0.15); border: 1px solid var(--gold); color: #8A6118; }
.flash-error { background: rgba(236, 15, 63, 0.1); border: 1px solid var(--rose); color: var(--rose-dim); }

.btn {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.85rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  background: transparent; appearance: none; -webkit-appearance: none; font-weight: 500;
}
.btn-primary { background: linear-gradient(135deg, var(--rose), var(--rose-dim)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(236, 19, 69, 0.4); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--paper); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(251, 239, 234, 0.06); }
.btn-danger { background: transparent; border-color: rgba(236, 19, 69, 0.5); color: #ff8fa8; }
.btn-danger:hover { background: rgba(236, 19, 69, 0.12); border-color: var(--rose); color: #ffb3c4; }

/* ---------- Age Gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(15, 8, 11, 0.97); text-align: center; padding: 1.5rem; color: #FBEFEA;
}
.age-gate[hidden] { display: none; }
.age-gate-card { max-width: 420px; }
.age-gate-card h2 { font-size: 1.6rem; margin-bottom: 0.8rem; color: #FBEFEA; }
.age-gate-card p { opacity: 0.75; margin-bottom: 1.8rem; font-size: 0.92rem; color: #FBEFEA; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; }
.age-gate .btn-ghost { color: #FBEFEA; border-color: rgba(251,239,234,0.4); }
.age-gate .btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ---------- Hero — mood-lit background + CSS 3D tilt deck ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) var(--gap) clamp(4rem, 10vw, 7rem);
  background-color: var(--ink-900);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero:not(.hero--default-glow):not(.hero--slideshow) {
  background-image: linear-gradient(180deg, rgba(18,10,13,.55), rgba(18,10,13,.92)), var(--hero-img);
}
.hero--default-glow {
  background-image: radial-gradient(ellipse 900px 500px at 15% -10%, rgba(236, 15, 63, 0.35), transparent 60%),
              radial-gradient(ellipse 700px 500px at 95% 15%, rgba(232, 184, 75, 0.22), transparent 55%),
              radial-gradient(ellipse 800px 600px at 50% 120%, rgba(176, 100, 232, 0.18), transparent 55%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
  max-width: 1240px; margin-inline: auto;
}
.hero-grid > * { min-width: 0; }
.hero-grid--single { grid-template-columns: 1fr; max-width: 620px; text-align: left; margin-left: 0; margin-right: auto; padding-left: 22px; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); margin-block: 1rem 1.4rem; }
.hero-copy h1 em { font-style: italic; color: var(--rose); }
.hero-copy p { max-width: 42ch; font-size: 1.08rem; opacity: 0.85; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.trust-strip { display: flex; gap: 1.6rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--gold); }
.trust-strip li { list-style: none; display: flex; gap: 0.5rem; align-items: center; }
.trust-strip li::before { content: "♥"; color: var(--rose); font-size: 0.7rem; }

/* Hero WITH a banner/slideshow image always has a dark scrim over it —
   copy needs to stay light regardless of the site's light theme. */
.hero:not(.hero--default-glow) .hero-copy,
.hero:not(.hero--default-glow) .hero-copy h1,
.hero:not(.hero--default-glow) .hero-copy p,
.hero:not(.hero--default-glow) .trust-strip { color: #FBEFEA; }
.hero:not(.hero--default-glow) .trust-strip { color: var(--gold-soft); }
.hero:not(.hero--default-glow) .eyebrow { color: var(--gold-soft); }
.hero:not(.hero--default-glow) .btn-ghost { color: #FBEFEA; border-color: rgba(251,239,234,0.4); }
.hero:not(.hero--default-glow) .btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); background: rgba(251,239,234,0.08); }

/* ---------- Hero slideshow mode ---------- */
.hero--slideshow { background: none; }
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }


/* ---------- Brand Strip — animated marquee with brand colours ---------- */
.brand-strip { padding: 1.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; position: relative; }
.brand-strip::before, .brand-strip::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.brand-strip::before { left: 0; background: linear-gradient(90deg, var(--ink-900), transparent); }
.brand-strip::after { right: 0; background: linear-gradient(270deg, var(--ink-900), transparent); }
.brand-track { display: flex; gap: 1rem; width: max-content; animation: marquee 28s linear infinite; }
.brand-strip:hover .brand-track { animation-play-state: paused; }
.brand-chip {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--chip-color, var(--gold));
  background: color-mix(in srgb, var(--chip-color, var(--gold)) 14%, var(--ink-800));
  white-space: nowrap; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--chip-color, var(--paper)); flex-shrink: 0;
}
.brand-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--chip-color, var(--gold)); box-shadow: 0 0 8px var(--chip-color, var(--gold)); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Mobile/tablet search bar — sits between header and page content ---------- */
.hero-mobile-search { display: none; padding: 0.9rem var(--gap); border-bottom: 1px solid var(--line); }
.hero-mobile-search form {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--ink-800); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.3rem 0.4rem 0.3rem 1.1rem;
  max-width: 100%;
}
.hero-mobile-search input {
  flex: 1; min-width: 0; background: none; border: none; color: var(--paper); font-size: 0.9rem; padding: 0.6rem 0;
}
.hero-mobile-search input:focus { outline: none; }
.hero-mobile-search input::placeholder { color: var(--paper-dim); opacity: 0.6; }
.hero-mobile-search button {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--rose), var(--rose-dim)); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-mobile-search { display: block; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) var(--gap); }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: 0.6rem; }
.section-head p { opacity: 0.75; margin-top: 0.8rem; }

.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cat-grid > * { min-width: 0; }
@media (min-width: 700px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

/* Category card — now image-forward */
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--line); transition: transform 0.3s ease;
}
.category-card:hover { transform: translateY(-4px); }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,14,19,0.92) 10%, rgba(26,14,19,0.15) 60%, rgba(26,14,19,0.05));
}
.category-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; z-index: 1; color: #FBEFEA; }
.category-card-content .cat-index { font-family: var(--font-mono); font-size: 0.68rem; color: var(--gold-soft); }
.category-card-content h3 { font-size: 1.25rem; margin-top: 0.3rem; color: #FBEFEA; }
.category-card-content p { font-size: 0.8rem; opacity: 0.85; margin-top: 0.3rem; color: #FBEFEA; }

.cat-card {
  position: relative; border-radius: var(--radius); padding: 1.6rem; min-height: 190px;
  background: var(--ink-800); border: 1px solid var(--line); display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; transition: border-color 0.3s ease, transform 0.3s ease;
}
.cat-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.cat-card .cat-index { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); }
.cat-card h3 { font-size: 1.3rem; margin-top: 0.4rem; }

/* Product card — image thumbnail + info */
.product-card {
  display: flex; flex-direction: column; border-radius: var(--radius); background: var(--ink-800);
  border: 1px solid var(--line); overflow: hidden; transition: border-color 0.3s ease, transform 0.3s ease;
}
.product-card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: 0 16px 32px rgba(30,18,22,0.14); }
.product-card .product-card-img { aspect-ratio: 4/5; background: var(--ink-900); overflow: hidden; position: relative; }
.product-card .product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card .product-card-badge {
  position: absolute; top: 0.7rem; left: 0.7rem; background: var(--rose); color: #fff;
  font-family: var(--font-mono); font-size: 0.62rem; padding: 0.3rem 0.6rem; border-radius: 999px; letter-spacing: 0.04em;
}
.product-card .product-card-body { padding: 1.1rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card .cat-index { margin-bottom: 0.3rem; }
.product-card h3 { font-size: 1.05rem; line-height: 1.3; }
.product-card .product-card-price { margin-top: auto; padding-top: 0.6rem; font-family: var(--font-mono); font-size: 0.95rem; color: var(--gold); }
.product-card .product-card-price s { opacity: 0.5; font-size: 0.8rem; margin-left: 0.4rem; color: var(--paper); }

/* ---------- Brand Strip (listing page cards) ---------- */
.brand-strip-section { padding: 2rem var(--gap); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); opacity: 0.9; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testi-card { background: var(--ink-800); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.testi-card p { font-style: italic; opacity: 0.9; }
.testi-card footer { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); }

/* ---------- Instagram Feed ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.7rem; }
.ig-tile { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); position: relative; transition: transform 0.25s ease; }
.ig-tile:hover { transform: translateY(-4px); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-tile-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--ink-800), var(--ink-700)); }
.ig-tile-placeholder span { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); opacity: 0.8; text-align: center; padding: 0.5rem; }
.ig-fallback { text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-800); padding: 3.5rem var(--gap) 1.6rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; max-width: 1240px; margin-inline: auto; }
.footer-grid h4 { font-size: 0.85rem; margin-bottom: 0.9rem; color: var(--gold); }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.88rem; opacity: 0.8; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); opacity: 0.75; transition: all 0.2s ease; }
.footer-social a:hover { color: var(--rose); border-color: var(--rose); opacity: 1; transform: translateY(-2px); }
.footer-bottom {
  max-width: 1240px; margin: 2.6rem auto 0; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.75rem; opacity: 0.55; font-family: var(--font-mono);
}

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tab-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--ink-800); border-top: 1px solid var(--line);
  padding: 0.5rem var(--gap) calc(0.5rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 20px rgba(30,18,22,0.1);
}
.mobile-tab-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  color: var(--paper-dim); opacity: 0.7; font-size: 0.66rem; font-family: var(--font-mono);
  letter-spacing: 0.02em; padding: 0.3rem 0; transition: color 0.2s ease, opacity 0.2s ease;
}
.mobile-tab-bar a.is-active { color: var(--rose); opacity: 1; }
.mobile-tab-icon-wrap { position: relative; display: inline-flex; }
.mobile-tab-badge {
  position: absolute; top: -6px; right: -9px; background: var(--rose); color: #fff;
  font-size: 0.6rem; font-weight: 700; min-width: 15px; height: 15px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px; line-height: 1;
}

@media (max-width: 860px) {
  .mobile-tab-bar { display: flex; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- 404 Page ---------- */
.error-404 { text-align: center; padding-block: 5rem 6rem; }
.error-404-art { margin-bottom: 1.5rem; }
.error-404 h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 0.6rem; }
.error-404-copy { opacity: 0.75; margin-top: 1rem; max-width: 40ch; margin-inline: auto; }
.error-404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   Mobile Navigation — robust breakpoint, off-canvas panel
   ============================================================ */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: 1px solid rgba(18,10,13,0.2); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--paper); margin-inline: auto; transition: all 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-search-mobile, .header-account-mobile { display: none; }

.nav-scrim { display: none; position: fixed; inset: 0; z-index: 48; background: rgba(10,4,7,0.6); }
.nav-scrim.open { display: block; }

/* Mobile-first: off-canvas nav is the DEFAULT behaviour up to 1024px,
   which covers virtually every phone regardless of reported CSS width */
@media (max-width: 1024px) {
  .site-header { padding: 0.9rem 1rem; }
  .header-search { display: none; }
  .header-account-link { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed; top: 0; right: 0; width: min(80vw, 320px); height: 100vh;
    background: var(--ink-800); border-left: 1px solid var(--line); padding: 5.5rem 1.6rem 2rem;
    z-index: 55; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a {
    display: block; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem;
    color: var(--paper); opacity: 0.85;
  }
  .main-nav ul li a.is-active { color: var(--gold); opacity: 1; }
  .main-nav a::after { display: none; }

  .header-search-mobile { display: block; margin-top: 1.6rem; }
  .header-search-mobile input { width: 100%; background: var(--ink-900); border: 1px solid var(--line); color: var(--paper); padding: 0.7rem 1rem; border-radius: 999px; font-size: 0.85rem; }
  .header-account-mobile { display: block; margin-top: 1.2rem; font-size: 0.9rem; color: var(--gold); font-family: var(--font-mono); }

  .header-actions { gap: 0.6rem; }
  .header-actions .btn-primary { padding: 0.6rem 1rem; font-size: 0.7rem; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-inline: 1rem; }
  .hero:not(.hero--default-glow):not(.hero--slideshow) {
    background-position: left center;
    background-image: linear-gradient(180deg, rgba(18,10,13,.55), rgba(18,10,13,.92)), var(--hero-img-mobile, var(--hero-img));
  }
  .hero-slide { background-position: left center; }
  .testi-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .hero-copy h1 { font-size: 2.1rem; }
  .brand-chip { font-size: 0.9rem; padding: 0.55rem 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.contact-info-card {
  background: var(--ink-800); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.contact-info-card a { color: var(--gold); font-size: 0.95rem; word-break: break-word; }
.contact-info-card p:not(.eyebrow):not(.contact-info-note) { font-size: 0.95rem; margin-top: 0.2rem; }
.contact-info-note { font-size: 0.78rem; opacity: 0.6; margin-top: 0.4rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }

@media (max-width: 640px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
