/* =========================================================
   Concrete Weavers — Design Tokens & Base
   ========================================================= */

:root {
  --gold: #d9a400;
  --gold-bright: #f2b705;
  --ink: #171716;
  --charcoal: #23231f;
  --slate: #55564f;
  --stone-50: #faf9f6;
  --stone-100: #f2f0ea;
  --stone-200: #e6e3da;
  --line: #dedad0;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(23,23,22,.06), 0 1px 1px rgba(23,23,22,.04);
  --shadow-md: 0 8px 24px rgba(23,23,22,.08);
  --shadow-lg: 0 24px 60px rgba(23,23,22,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; color: var(--slate); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); color: var(--ink); }
.section-head p { font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); background: var(--stone-100); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,246,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.logo .mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo .mark svg { width: 20px; height: 20px; }
.logo span { color: var(--slate); font-family: var(--font-body); font-weight: 500; font-size: 13px; display: block; letter-spacing: .04em; text-transform: uppercase; }
.logo .logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo .logo-mark {
  width: 46px; height: 46px;
  border-radius: 9px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.logo .logo-tagline {
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background .2s, color .2s;
  position: relative;
}
.nav-links a:hover { background: var(--stone-100); }
.nav-links a.active { color: var(--ink); font-weight: 700; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 3px; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }

@media (max-width: 960px) {
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; height: calc(100vh - 84px); height: calc(100dvh - 84px); background: var(--white); flex-direction: column; align-items: stretch; padding: 24px; gap: 6px; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 16px 18px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 120px 0 100px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(242,183,5,.18), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0px, rgba(255,255,255,.035) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: var(--white);
  letter-spacing: -.01em;
}
.hero h1 em { font-style: normal; color: var(--gold-bright); }
.hero-lede { font-size: 18px; color: rgba(255,255,255,.72); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.hero-stats { display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--white); }
.hero-stats .stat span { font-size: 13px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, #2b2a24, #17170f 60%);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .weave {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(242,183,5,.14) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 22px);
}
.hero-visual .illo {
  position: absolute;
  inset: 6% 8% 26%;
  width: 84%;
  height: 68%;
}
.hero-visual .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,23,22,0) 40%, rgba(23,23,22,.85) 92%);
  pointer-events: none;
}
.hero-visual .badge {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  z-index: 2;
  background: rgba(23,23,22,.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--white);
}
.hero-visual .badge b { display: block; font-family: var(--font-display); font-size: 20px; }
.hero-visual .badge span { font-size: 13px; color: rgba(255,255,255,.6); }

/* =========================================================
   Logo strip
   ========================================================= */
.logo-strip { padding: 48px 0; border-bottom: 1px solid var(--line); }
.logo-strip .label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--slate); text-align: center; margin-bottom: 28px; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; opacity: .7; }
.logo-row .pill { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--charcoal); padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; }

/* =========================================================
   Property / Benefit cards
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--stone-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; color: var(--ink); }
.card p { margin-bottom: 0; font-size: 15px; }

.dark-section { background: var(--ink); color: var(--white); }
.dark-section .section-head h2, .dark-section h3 { color: var(--white); }
.dark-section p { color: rgba(255,255,255,.65); }
.dark-section .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.dark-section .card:hover { background: rgba(255,255,255,.07); }
.dark-section .card .icon { background: var(--gold); color: var(--ink); }

/* =========================================================
   Product teaser / split sections
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split.reverse .visual { order: 2; }
@media (max-width: 900px) { .split.reverse .visual { order: 0; } }

.visual-panel {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.visual-panel.gold { background: linear-gradient(150deg, #ffe8a3, var(--gold-bright) 70%); }
.visual-panel.charcoal { background: linear-gradient(150deg, #3a3a33, var(--ink) 70%); }
.visual-panel .texture {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.06) 0 1px, transparent 1px 18px), repeating-linear-gradient(0deg, rgba(0,0,0,.06) 0 1px, transparent 1px 18px);
}
.visual-panel .illo {
  position: absolute;
  inset: 10%;
  width: 80%;
  height: 80%;
}
.visual-panel .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.visual-panel .tag {
  position: absolute; top: 18px; left: 18px;
  z-index: 2;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}

.check-list { margin: 24px 0; }
.check-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--charcoal); }
.check-list li:last-child { border-bottom: none; }
.check-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* =========================================================
   Products page cards
   ========================================================= */
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card .cover { aspect-ratio: 16/9; position: relative; }
.product-card .cover.civil { background: linear-gradient(135deg, #efe6c8, var(--gold-bright)); }
.product-card .cover.military { background: linear-gradient(135deg, #2c2c26, var(--ink)); }
.product-card .cover .texture { position:absolute; inset:0; background-image: repeating-linear-gradient(45deg, rgba(0,0,0,.08) 0 2px, transparent 2px 20px); }
.product-card .cover .illo { position: absolute; inset: 12%; width: 76%; height: 76%; }
.product-card .cover .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Real photography components
   ========================================================= */
.photo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21/6;
  border: 1px solid var(--line);
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .photo-banner { aspect-ratio: 4/5; } }

.feature-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.feature-banner img { width: 100%; height: auto; display: block; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--stone-50); }
.gallery-card .shot { aspect-ratio: 4/3; overflow: hidden; }
.gallery-card .shot.wide { aspect-ratio: 1.9/1; }
.gallery-card .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery-card:hover .shot img { transform: scale(1.05); }
.gallery-card .cap { padding: 20px 22px; }
.gallery-card .cap h4 { font-size: 16.5px; color: var(--ink); margin-bottom: 4px; }
.gallery-card .cap p { font-size: 14px; margin: 0; }
.product-card .body { padding: 28px; }
.product-card h3 { font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.product-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 4px; }
.product-card .tags span { font-size: 12px; background: var(--stone-100); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; color: var(--charcoal); }

/* Applications list */
.app-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.app-row:first-of-type { border-top: none; }
.app-row .num { font-family: var(--font-display); font-size: 28px; color: var(--gold); }
.app-row h4 { font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.app-row p { margin: 0; }

/* =========================================================
   Stats band
   ========================================================= */
.stats-band { background: var(--stone-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stats-grid b { display: block; font-family: var(--font-display); font-size: 34px; color: var(--ink); }
.stats-grid span { font-size: 13px; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; font-size: 15.5px; color: var(--slate); max-width: 68ch; }
.faq-search { margin-bottom: 32px; }
.faq-search input {
  width: 100%; padding: 16px 20px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 15px; font-family: var(--font-body); background: var(--stone-50);
}
.faq-search input:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.contact-card h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: 10px; }
.contact-card p { margin: 0; color: var(--ink); font-size: 15.5px; }
.contact-card a.link { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px; background: var(--stone-50); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,0,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--slate); margin-bottom: 22px; }
.consent input { margin-top: 3px; }
.form-note { font-size: 13px; color: var(--slate); margin-top: 12px; }

.map-panel {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/7; background: linear-gradient(135deg, var(--stone-200), var(--stone-100));
  position: relative; color: var(--slate); font-size: 14px;
  margin-top: 40px;
}
.map-panel .illo { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background:
    linear-gradient(100deg, rgba(15,15,13,.92) 20%, rgba(20,19,15,.72) 65%, rgba(20,19,15,.5) 100%),
    url('../assets/photos/cta_dusk.jpg') center 35%/cover no-repeat,
    var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 260px at 90% 0%, rgba(242,183,5,.22), transparent 65%); }
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 34px); position: relative; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.65); margin: 0; position: relative; max-width: 44ch; }
.cta-band .actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   Breadcrumb / page header (interior pages)
   ========================================================= */
.page-header {
  background: var(--stone-100);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { font-size: clamp(32px, 4.4vw, 50px); color: var(--ink); }
.page-header p { max-width: 60ch; font-size: 17px; }
.crumbs { font-size: 13px; color: var(--slate); margin-bottom: 20px; }
.crumbs a { color: var(--slate); text-decoration: underline; text-underline-offset: 2px; }
.crumbs span { color: var(--ink); font-weight: 600; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; font-family: var(--font-body); }
.footer-grid ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-grid ul li a:hover { color: var(--gold-bright); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand span { font-family: var(--font-display); font-size: 19px; color: var(--white); }
.footer-brand .logo-mark { width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0; display: block; object-fit: contain; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.social-row svg { width: 16px; height: 16px; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

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