/* ============================================================
   Jesus Andrade Construções — Design System
   Charcoal / Off-white / Gold-ochre, editorial + premium feel
   ============================================================ */

:root {
  --charcoal: #17171a;
  --charcoal-soft: #232326;
  --ink: #0f0f11;
  --white: #ffffff;
  --offwhite: #f8f6f2;
  --warm-gray: #eee9e1;
  --warm-gray-dark: #d8d1c4;
  --gold: #c69a3c;
  --gold-light: #ddb862;
  --gold-dark: #9c7526;
  --text: #232224;
  --text-muted: #6a6864;
  --text-on-dark: #f3f1ec;
  --text-on-dark-muted: #b9b6ae;
  --border-light: #e6e1d8;
  --shadow-sm: 0 2px 10px rgba(15, 15, 17, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 15, 17, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 15, 17, 0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --container: 1200px;
  --font-head: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  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; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; color: var(--text-muted); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark {
  background: var(--charcoal);
  color: var(--text-on-dark);
}
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: currentColor;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand img { height: 118px; width: 118px; object-fit: contain; border-radius: 50%; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-text strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); letter-spacing: 0.01em; }
.nav-brand-text span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: var(--transition); }

.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-panel-top img { height: 84px; width: 84px; border-radius: 50%; }
.mobile-close { background: none; border: none; color: var(--white); font-size: 1.8rem; line-height: 1; padding: 6px; }
.mobile-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-links a {
  color: var(--text-on-dark);
  font-family: var(--font-head);
  font-size: 1.7rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-panel .btn { margin-top: 28px; }
.mobile-panel-contact { margin-top: auto; color: var(--text-on-dark-muted); font-size: 0.9rem; }
.mobile-panel-contact a { display: block; margin-top: 8px; color: var(--gold-light); font-weight: 600; }

body.nav-open { overflow: hidden; }

@media (max-width: 960px) {
  .nav-links, .nav-phone-desktop { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .nav-brand img { height: 76px; width: 76px; }
  .nav-brand-text { display: none; }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--charcoal);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 78px; }
}
.mobile-cta-bar a { flex: 1; text-align: center; }
.mobile-cta-bar .btn { width: 100%; padding: 14px 10px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,0.55) 0%, rgba(15,15,17,0.72) 55%, rgba(15,15,17,0.92) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 140px 0 100px; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero-sub { color: var(--text-on-dark-muted); font-size: 1.15rem; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { font-size: 0.85rem; color: var(--text-on-dark-muted); letter-spacing: 0.02em; }
.hero-trust strong { color: var(--gold-light); font-weight: 600; }

.page-hero {
  position: relative;
  color: var(--text-on-dark);
  padding: 170px 0 90px;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,0.72) 0%, rgba(15,15,17,0.82) 100%);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); max-width: 760px; }
.page-hero p { color: var(--text-on-dark-muted); max-width: 620px; font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-on-dark-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--charcoal);
  padding: 34px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-light);
  font-weight: 700;
}
.stat-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
}

/* ---------- Cards: services ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.service-card:hover img { transform: scale(1.06); }
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,0) 15%, rgba(15,15,17,0.97) 100%);
  z-index: 1;
}
.service-card-body { position: relative; z-index: 2; padding: 30px; color: var(--white); }
.service-card-body h3 { color: var(--white); margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.service-card-body p { color: var(--text-on-dark-muted); font-size: 0.92rem; margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.service-card-list { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 16px; }
.service-card-list li { font-size: 0.8rem; color: var(--text-on-dark-muted); }
.service-card-list li::before { content: "— "; color: var(--gold-light); }
.service-card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: var(--gold-light); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.service-card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ---------- Featured services (editorial) ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) { .featured-grid { grid-template-columns: 1fr; } }
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.featured-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,17,0.1) 0%, rgba(15,15,17,0.4) 45%, rgba(15,15,17,0.97) 100%);
}
.featured-card-body { position: relative; z-index: 1; padding: 34px; color: var(--white); }
.featured-card-body .eyebrow { color: var(--gold-light); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.featured-card-body .eyebrow::before { background: var(--gold-light); }
.featured-card-body h3 { color: var(--white); font-size: 1.6rem; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.featured-card-body a { font-weight: 600; color: var(--gold-light); display: inline-flex; align-items: center; gap: 8px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---------- Why choose us ---------- */
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
@media (max-width: 1024px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.value-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Process / steps ---------- */
.steps { position: relative; }
.steps-line {
  position: absolute;
  top: 34px; left: 0; right: 0;
  height: 1px;
  background: var(--border-light);
}
.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
@media (max-width: 960px) { .step-grid { grid-template-columns: repeat(2, 1fr); } .steps-line { display: none; } }
@media (max-width: 560px) { .step-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  position: relative;
}
.step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--warm-gray-dark);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; margin: 0; }

/* ---------- Portfolio / gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.masonry {
  columns: 3 260px;
  column-gap: 22px;
}
@media (max-width: 768px) { .masonry { columns: 2 200px; } }
@media (max-width: 480px) { .masonry { columns: 1; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.masonry-item img { width: 100%; display: block; transition: transform 500ms ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15,15,17,0) 25%, rgba(15,15,17,0.96) 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-caption { opacity: 1; }
.masonry-caption span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); margin-bottom: 4px; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.masonry-caption strong { font-family: var(--font-head); font-size: 1rem; font-weight: 600; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,15,17,0.94);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-inner img { width: 100%; border-radius: var(--radius-md); max-height: 62vh; object-fit: cover; }
.lightbox-info { color: var(--white); padding-top: 20px; }
.lightbox-info span { color: var(--gold-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.lightbox-info h3 { color: var(--white); margin: 8px 0; }
.lightbox-info p { color: var(--text-on-dark-muted); margin: 0; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none;
  color: var(--white); font-size: 2rem; line-height: 1;
}

/* ---------- About ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; gap: 32px; } }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 26px;
  border-radius: 0 var(--radius-lg) 0 0;
}
.about-badge strong { display: block; font-family: var(--font-head); color: var(--gold-light); font-size: 1.1rem; }
.about-badge span { font-size: 0.8rem; color: var(--text-on-dark-muted); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.pill-list li {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  color: var(--text);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--charcoal);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(198,154,60,0.35);
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: var(--text-on-dark-muted); margin: 0; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Quote form / contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.form-card {
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
@media (max-width: 560px) { .form-card { padding: 26px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--warm-gray-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-file {
  border: 1px dashed var(--warm-gray-dark);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  background: var(--white);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.field-file input { margin-top: 10px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }

.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 22px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-method .icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method .icon svg { width: 20px; height: 20px; }
.contact-method strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.contact-method span { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 96px; width: 96px; border-radius: 50%; }
.footer-brand strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 1.1rem; }
.footer-brand span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-light); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 12px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(198,154,60,0.1); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider-gold { width: 60px; height: 2px; background: var(--gold); margin: 20px auto; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: rgba(198,154,60,0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bg-offwhite { background: var(--offwhite); }
.bg-charcoal { background: var(--charcoal); color: var(--text-on-dark); }
.bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }
.bg-charcoal p { color: var(--text-on-dark-muted); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.legal-content h2 { margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--text-muted); }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
