/* ==========================================================================
   Gigi's Boutique demo site design system
   Palette: near-black ink, warm white, Gigi's pink (#fba6e9) elevated,
   gold script accent from her logo. Zero em dashes in client copy.
   ========================================================================== */

:root {
  --ink: #17141a;
  --ink-soft: #4a444f;
  --paper: #fdfbf8;
  --paper-warm: #f7f1ea;
  --pink: #fba6e9;
  --pink-tint: #fdeef9;
  --pink-deep: #c22a78;
  --pink-hover: #a02062;
  --gold: #a98b4f;
  --line: #e8e0d8;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(23, 20, 26, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pink-deep); }
a:hover { color: var(--pink-hover); }

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

h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.8vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 0.9rem;
}
.eyebrow .heart { width: 14px; height: 14px; }

.heart { fill: var(--pink); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* JS visibility helpers */
.no-js .js-only { display: none !important; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.announce {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
}
.announce strong { color: var(--pink); font-weight: 700; }

.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2rem);
  max-width: 1240px; margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.brand-name .heart-char { color: var(--pink-deep); }

.nav-links {
  display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { border-bottom-color: var(--pink); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.bag-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--ink); color: #fff;
  border: none; border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font: 700 0.9rem var(--font-body);
  cursor: pointer;
}
.bag-btn:hover { background: #000; }
.bag-count {
  background: var(--pink); color: var(--ink);
  border-radius: 999px; min-width: 1.35em; height: 1.35em;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; padding: 0 0.3em;
}

/* Mobile nav (checkbox hack, works without JS) */
.nav-toggle-box { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 1rem clamp(1rem, 4vw, 2rem) 1.4rem;
    gap: 0.9rem;
    box-shadow: var(--shadow);
  }
  .nav-toggle-box:checked ~ .nav-links { display: flex; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: 1.15rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1240px; margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero .hero-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--pink);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero p.lead { color: #d9d3dd; font-size: 1.12rem; max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

.hero-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-imgs figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-imgs img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4.4; object-position: top center; }
.hero-imgs figure:nth-child(2) { transform: translateY(1.6rem); }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-imgs figure:nth-child(2) { transform: translateY(0.8rem); }
}

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  font: 700 0.98rem var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
  text-align: center;
}
.btn-pink { background: var(--pink); color: var(--ink); }
.btn-pink:hover { background: #f98fe2; color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: var(--pink); color: var(--pink); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-wide { width: 100%; }

/* ==========================================================================
   Trust band
   ========================================================================== */

.trust-band { background: var(--pink-tint); border-bottom: 1px solid var(--line); }
.trust-band ul {
  list-style: none; margin: 0 auto; padding: 0.9rem clamp(1rem, 4vw, 2rem);
  max-width: 1240px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2.4rem;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.02em;
}
.trust-band li { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-band .heart { width: 12px; height: 12px; flex: none; }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: clamp(2.6rem, 7vw, 4.6rem) 0; }
.section-warm { background: var(--paper-warm); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink h2 { color: #fff; }
.section-head { max-width: 620px; margin-bottom: 2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ==========================================================================
   Product cards
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.product-media { position: relative; display: block; }
.product-media img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center;
}
.product-tag {
  position: absolute; top: 0.7rem; left: 0.7rem;
  background: var(--ink); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; padding: 0.25rem 0.7rem;
}
.product-tag.tag-pink { background: var(--pink); color: var(--ink); }

.product-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin: 0; }
.product-name a { color: var(--ink); text-decoration: none; }
.product-name a:hover { color: var(--pink-deep); }
.product-meta { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.product-price { font-weight: 800; font-size: 1.05rem; margin: 0.1rem 0 0.6rem; }
.product-price .dm { font-size: 0.92rem; font-weight: 700; color: var(--pink-deep); }
.product-actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.add-btn {
  background: var(--ink); color: #fff; border: none; border-radius: 999px;
  padding: 0.65rem 1rem; font: 700 0.9rem var(--font-body); cursor: pointer;
}
.add-btn:hover { background: #000; }
.add-btn.added { background: var(--pink-deep); }
.dm-link {
  display: inline-block; text-align: center;
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.5rem 1rem; font: 700 0.88rem var(--font-body);
  color: var(--ink); text-decoration: none;
}
.dm-link:hover { background: var(--ink); color: #fff; }

/* Filter pills */
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 1.8rem; padding: 0; list-style: none; }
.filter-pills button, .filter-pills a {
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  border-radius: 999px; padding: 0.45rem 1.1rem;
  font: 700 0.88rem var(--font-body); cursor: pointer; text-decoration: none; display: inline-block;
}
.filter-pills button[aria-pressed="true"], .filter-pills a[aria-current="page"], .filter-pills button:hover, .filter-pills a:hover {
  background: var(--ink); color: #fff;
}

/* Category tiles */
.cat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: block; text-decoration: none; min-height: 300px;
  background: var(--ink);
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; object-position: top center; position: absolute; inset: 0; opacity: 0.82; transition: opacity 0.2s ease, transform 0.3s ease; }
.cat-tile:hover img { opacity: 0.65; transform: scale(1.03); }
.cat-tile .cat-label {
  position: absolute; left: 1.2rem; bottom: 1.1rem; z-index: 1;
  color: #fff; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.cat-tile .cat-label small { display: block; font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink); }

/* ==========================================================================
   Story / split sections
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
.split figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.quote-block {
  border-left: 4px solid var(--pink);
  padding: 0.3rem 0 0.3rem 1.2rem;
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic;
  color: var(--ink-soft); margin: 1.4rem 0;
}

/* IG strip */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }
.ig-grid a { display: block; border-radius: 10px; overflow: hidden; position: relative; }
.ig-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top center; transition: transform 0.25s ease; }
.ig-grid a:hover img { transform: scale(1.06); }
@media (max-width: 820px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* Newsletter */
.newsletter-box {
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
}
.newsletter-box h2 { color: #fff; margin-bottom: 0.3em; }
.newsletter-box p { color: #cfc8d4; margin-bottom: 0; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  border-radius: 999px; border: 1px solid #55505b;
  background: #241f29; color: #fff;
  padding: 0.8rem 1.2rem; font: 400 1rem var(--font-body);
}
.newsletter-form input::placeholder { color: #948d9b; }
@media (max-width: 820px) { .newsletter-box { grid-template-columns: 1fr; } }

.form-note { font-size: 0.82rem; color: #948d9b; margin-top: 0.6rem; }
.demo-flash {
  margin-top: 0.8rem; border-radius: 10px;
  background: var(--pink-tint); color: var(--ink);
  border: 1px solid var(--pink);
  padding: 0.7rem 1rem; font-size: 0.92rem; font-weight: 700;
}
.section-ink .demo-flash, .newsletter-box .demo-flash { background: #2c2632; color: var(--pink); border-color: var(--pink-deep); }

/* Visit block */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.info-list .heart { width: 14px; height: 14px; margin-top: 0.4rem; flex: none; }
.info-list strong { display: block; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.map-frame { border: 0; width: 100%; height: 380px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero { background: var(--ink); color: #fff; padding: clamp(2.2rem, 6vw, 3.8rem) 0; }
.page-hero h1 { color: #fff; margin-bottom: 0.2em; }
.page-hero p { color: #d9d3dd; max-width: 40em; margin-bottom: 0; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 1rem; color: #a79fae; }
.breadcrumbs a { color: var(--pink); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ==========================================================================
   PDP
   ========================================================================== */

.pdp { display: grid; grid-template-columns: minmax(0, 460px) 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: start; }
@media (max-width: 820px) { .pdp { grid-template-columns: 1fr; } }
.pdp-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pdp-media img { width: 100%; object-fit: cover; }
.pdp-price { font-size: 1.6rem; font-weight: 800; margin: 0.2rem 0 1rem; }
.pdp-facts { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: 0.55rem; font-size: 0.97rem; }
.pdp-facts li { display: flex; gap: 0.6rem; align-items: baseline; }
.pdp-facts strong { min-width: 7.5em; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.pdp-actions { display: flex; flex-direction: column; gap: 0.7rem; max-width: 380px; margin-top: 1.4rem; }
.pdp-note { font-size: 0.9rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1.6rem; }
.pdp-note a { font-weight: 700; }

/* ==========================================================================
   Content pages (policy, size guide)
   ========================================================================== */

.prose { max-width: 720px; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.45rem; }

.callout {
  background: var(--pink-tint); border: 1px solid var(--pink);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.6rem 0;
}
.callout p:last-child { margin-bottom: 0; }

table.size-table { border-collapse: collapse; width: 100%; max-width: 640px; margin: 1rem 0 2rem; font-size: 0.95rem; }
.size-table caption { text-align: left; font-weight: 700; padding-bottom: 0.5rem; font-family: var(--font-display); font-size: 1.1rem; }
.size-table th, .size-table td { border: 1px solid var(--line); padding: 0.55rem 0.9rem; text-align: left; }
.size-table thead th { background: var(--ink); color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.size-table tbody tr:nth-child(even) { background: #fff; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   Contact form
   ========================================================================== */

.contact-form { display: grid; gap: 1rem; max-width: 520px; }
.contact-form label { font-weight: 700; font-size: 0.9rem; display: grid; gap: 0.35rem; }
.contact-form input, .contact-form textarea {
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 0.75rem 1rem; font: 400 1rem var(--font-body);
  background: #fff; color: var(--ink); width: 100%;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--pink); border-color: var(--pink); }

/* ==========================================================================
   Bag drawer + demo checkout
   ========================================================================== */

.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(23,20,26,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 150;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.bag-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 160;
  width: min(420px, 100vw);
  background: var(--paper);
  box-shadow: -12px 0 40px rgba(0,0,0,0.25);
  transform: translateX(105%); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
}
.bag-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.25rem; margin: 0; }
.drawer-close { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 0.2rem 0.5rem; }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.1rem 1.3rem; }
.bag-empty { text-align: center; color: var(--ink-soft); padding: 2.5rem 0; }

.bag-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.bag-item img { width: 64px; height: 80px; object-fit: cover; object-position: top center; border-radius: 8px; }
.bag-item-name { font-weight: 700; font-size: 0.95rem; margin: 0; }
.bag-item-size { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.bag-item-price { font-weight: 800; font-size: 0.95rem; }
.qty-row { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.3rem; }
.qty-row button {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--ink);
  background: none; cursor: pointer; font-weight: 700; line-height: 1;
}
.qty-row button:hover { background: var(--ink); color: #fff; }
.bag-remove { background: none; border: 0; color: var(--pink-deep); font-size: 0.8rem; font-weight: 700; cursor: pointer; padding: 0; margin-top: 0.25rem; text-decoration: underline; }

.drawer-foot { border-top: 1px solid var(--line); padding: 1.1rem 1.3rem; display: grid; gap: 0.6rem; }
.subtotal-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.05rem; }
.postage-note { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* Demo checkout step */
.checkout-panel { padding: 1.3rem; display: none; flex-direction: column; gap: 1rem; overflow-y: auto; }
.bag-drawer.checkout-mode .drawer-body, .bag-drawer.checkout-mode .drawer-foot { display: none; }
.bag-drawer.checkout-mode .checkout-panel { display: flex; }
.demo-badge {
  display: inline-block; align-self: flex-start;
  background: var(--pink); color: var(--ink);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; padding: 0.3rem 0.9rem;
}
.checkout-summary { border: 1px solid var(--line); border-radius: 10px; padding: 1rem; font-size: 0.95rem; background: #fff; }
.checkout-summary div { display: flex; justify-content: space-between; padding: 0.2rem 0; }
.checkout-summary .total { font-weight: 800; border-top: 1px solid var(--line); margin-top: 0.4rem; padding-top: 0.6rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink); color: #b5adbc; margin-top: clamp(2.5rem, 7vw, 4rem); }
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(2.2rem, 6vw, 3.6rem) clamp(1rem, 4vw, 2rem) 1.4rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: 0.06em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; font-size: 0.95rem; }
.site-footer a { color: #d9d3dd; text-decoration: none; }
.site-footer a:hover { color: var(--pink); }
.footer-brand img { width: 90px; height: 90px; border-radius: 12px; margin-bottom: 0.8rem; object-fit: cover; }
.footer-brand p { font-size: 0.95rem; }

.footer-legal {
  border-top: 1px solid #332d39;
  max-width: 1240px; margin: 0 auto;
  padding: 1.1rem clamp(1rem, 4vw, 2rem) 1.6rem;
  font-size: 0.8rem; color: #8a8291;
}
.footer-legal p { margin: 0.2rem 0; }

/* Utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
