/* ============================================================
   Menuiserie Labaule — CSS
   Images fixes : hero.jpg · portrait.jpg · atelier.jpg
   service-1/2/3.jpg · galerie-01…12.jpg · logo.png
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --dark:    #0D0804;
  --prim:    #7B4A1E;
  --prim-d:  #5e3714;
  --gold:    #B37F1A;
  --gold-d:  #8f6413;
  --bg:      #F5F2ED;
  --white:   #FFFFFF;
  --text:    #1A0F06;
  --mid:     #6A5444;
  --border:  #DDD5C8;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --hh:      68px;
  --max:     1160px;
  --r:       8px;
  --rl:      16px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typographie ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.18; color: var(--text); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); }
p  { color: var(--mid); }

.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── Layout ──────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.section  { padding: 5rem 0; }
.sec-head { margin-bottom: 2.8rem; }
.sec-head p { margin-top: .6rem; max-width: 52ch; }
.centered   { text-align: center; }
.centered p { margin-inline: auto; }

/* ── Boutons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .78rem 1.7rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .88rem;
  transition: background .18s, transform .18s;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-prim   { background: var(--prim);  color: #fff; border-color: var(--prim); }
.btn-prim:hover  { background: var(--prim-d); border-color: var(--prim-d); transform: translateY(-2px); }
.btn-gold   { background: var(--gold);  color: #fff; border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold-d); border-color: var(--gold-d); transform: translateY(-2px); }
.btn-ghost  { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--prim); border-color: var(--prim); }
.btn-outline:hover { background: var(--prim); color: #fff; }

/* ════════════════════════════════════════════════════════════
   HEADER — sticky, une seule ligne garantie
   Structure : [logo] ··· [nav centré] ··· [btn + hamburger]
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #0D0804;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--hh);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--prim);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}
.logo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-info strong {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.logo-info span {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Navigation desktop */
.site-nav {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
  transition: color .18s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .18s;
}
.site-nav a:hover,
.site-nav a.active { color: #fff; }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

/* Bouton + hamburger à droite */
.site-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-actions .btn-gold {
  padding: .55rem 1.2rem;
  font-size: .82rem;
}

/* Hamburger */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.btn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
  transform-origin: center;
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile — caché par défaut, affiché via .open */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #0D0804;
  border-bottom: 1px solid rgba(255,255,255,.09);
  position: sticky;
  top: var(--hh);
  z-index: 999;
  padding: 1.2rem 24px 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--serif);
  text-decoration: none;
  transition: color .18s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-gold {
  margin-top: 1rem;
  justify-content: center;
}

/* Responsive : ≤ 800px → hamburger, pas de nav desktop */
@media (max-width: 800px) {
  .site-nav { display: none; }
  .site-actions .btn-gold { display: none; }
  .btn-hamburger { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   HERO (index)
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--hh));
  display: flex;
  align-items: center;
  background-color: #1a0c04;
  background-image:
    linear-gradient(to right, rgba(10,5,2,.92) 42%, rgba(10,5,2,.45)),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-title { color: #fff; margin: .5rem 0 1.1rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.68); font-size: 1rem; max-width: 44ch; margin-bottom: 1.8rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rl);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-card-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-stats { display: flex; flex-direction: column; gap: 1rem; }
.hero-stat { display: flex; align-items: baseline; gap: .8rem; }
.hero-stat-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; min-width: 58px; }
.hero-stat-label { font-size: .83rem; color: rgba(255,255,255,.55); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 360px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   PROCESSUS
   ════════════════════════════════════════════════════════════ */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}
.process-step {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg); }
.process-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: .8rem;
  transition: color .2s;
}
.process-step:hover .process-num { color: var(--gold); }
.process-step h3 { margin-bottom: .45rem; }
.process-step p  { font-size: .88rem; }

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card {
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20,10,0,.1); }
.service-img {
  height: 200px;
  background: linear-gradient(135deg, #1a0d04, #4a2610);
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.5rem; }
.service-body h3 { margin-bottom: .4rem; }
.service-body p  { font-size: .88rem; margin-bottom: 1rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--prim);
  transition: gap .18s;
}
.service-link:hover { gap: .65rem; }

@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 480px) and (max-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════
   ARTISAN
   ════════════════════════════════════════════════════════════ */
.artisan { background: var(--white); }
.artisan-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 460px;
}
.artisan-photo {
  background: linear-gradient(160deg, #1a0d04 0%, #5a3015 100%);
  position: relative;
}
.artisan-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.artisan-content {
  padding: 3rem 2.8rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artisan-content h2 { color: #fff; margin-top: .4rem; margin-bottom: 1rem; }
.artisan-content p  { color: rgba(255,255,255,.62); font-size: .92rem; margin-bottom: .9rem; }
.artisan-sig { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; margin-top: .4rem; }

@media (max-width: 720px) {
  .artisan-split { grid-template-columns: 1fr; }
  .artisan-photo { min-height: 240px; }
  .artisan-content { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════
   BANDEAU CTA
   ════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--prim);
  background-image: linear-gradient(135deg, var(--prim) 0%, #3d1e08 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/atelier.jpg');
  background-size: cover;
  background-position: center;
  opacity: .07;
}
.cta-band .wrap { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: .7rem; }
.cta-band p  { color: rgba(255,255,255,.7); margin-bottom: 1.8rem; font-size: 1rem; }
.cta-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   HERO PAGES SECONDAIRES
   ════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 4rem 0 3rem;
  background-color: var(--dark);
  background-image: linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.52)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero h1  { color: #fff; }
.page-hero p   { color: rgba(255,255,255,.6); margin-top: .6rem; font-size: .98rem; }

/* ════════════════════════════════════════════════════════════
   GALERIE
   ════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg); padding: 3.5rem 0 5rem; }
.gallery-filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.2rem; }
.filter-btn {
  padding: .45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mid);
  cursor: pointer;
  transition: all .18s;
}
.filter-btn.active,
.filter-btn:hover { background: var(--prim); border-color: var(--prim); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a0d04, #4a2610);
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .42s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .18s;
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  pointer-events: none;
}

@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: var(--r); }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-caption { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); font-size: .78rem; white-space: nowrap; }

/* ════════════════════════════════════════════════════════════
   LOCALISATION
   ════════════════════════════════════════════════════════════ */
.loc-section { background: var(--bg); padding: 3.5rem 0 5rem; }
.loc-grid { display: grid; grid-template-columns: 360px 1fr; gap: 2.2rem; align-items: start; }
.loc-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 1.4rem;
  border: 1px solid var(--border);
}
.info-card-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.info-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--bg);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--prim);
}
.info-card-head h3 { font-size: .92rem; margin: 0; }
.info-card address,
.info-card p { font-style: normal; font-size: .88rem; color: var(--mid); line-height: 1.7; }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .22rem 0; font-size: .86rem; color: var(--mid); }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--text); }
.hours .off td { color: var(--border); }

.zone-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .5rem; }
.zone-tag {
  padding: .22rem .65rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: .74rem;
  font-weight: 600;
  color: var(--prim);
  background: var(--bg);
}

.map-wrap { border-radius: var(--rl); overflow: hidden; border: 1px solid var(--border); height: 520px; background: var(--dark); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } .map-wrap { height: 340px; } }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); padding: 3.5rem 0 5rem; }
.contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 2.2rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: .9rem; }

.cc {
  background: var(--white);
  border-radius: var(--rl);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .9rem;
}
.cc-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--prim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.cc b { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--prim); margin-bottom: .2rem; }
.cc p, .cc a { font-size: .88rem; color: var(--text); font-weight: 500; }
.cc a:hover { color: var(--prim); }

.cc-dark {
  background: var(--dark);
  border-radius: var(--rl);
  padding: 1.4rem;
  border: none;
  margin-top: .3rem;
}
.cc-dark p { color: rgba(255,255,255,.58); font-size: .85rem; margin-bottom: .9rem; }
.cc-dark .btn-gold { width: 100%; justify-content: center; }

/* Formulaire */
.form-card { background: var(--white); border-radius: var(--rl); padding: 2.2rem; border: 1px solid var(--border); }
.form-card h3 { margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.fgroup { display: flex; flex-direction: column; gap: .38rem; margin-bottom: .9rem; }
.fgroup label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
}
.fgroup input,
.fgroup select,
.fgroup textarea {
  padding: .72rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  outline: none;
  border-color: var(--prim);
  box-shadow: 0 0 0 3px rgba(123,74,30,.1);
  background: #fff;
}
.fgroup textarea { min-height: 120px; resize: vertical; }
.fcheck {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.fcheck input { margin-top: 3px; flex-shrink: 0; cursor: pointer; }
.fcheck span  { font-size: .8rem; color: var(--mid); line-height: 1.5; }
.form-submit .btn { width: 100%; justify-content: center; padding: .88rem; }

.form-ok { display: none; text-align: center; padding: 2rem 1rem; }
.form-ok.show { display: block; }
.form-ok-icon {
  width: 54px;
  height: 54px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2e7d32;
}
.form-ok strong { display: block; font-size: 1.1rem; color: var(--text); margin-bottom: .4rem; }
.form-ok p { font-size: .88rem; }

@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer { background: var(--dark); padding: 3.5rem 0 1.8rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.footer-about p { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 32ch; margin-top: .8rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-badge { background: var(--prim); }
.footer-logo .logo-info strong { color: #fff; }

.fcol h4 { font-family: var(--serif); font-size: .92rem; color: #fff; margin-bottom: 1rem; }
.fcol ul { display: flex; flex-direction: column; gap: .5rem; }
.fcol ul a { font-size: .86rem; color: rgba(255,255,255,.52); transition: color .18s; }
.fcol ul a:hover { color: var(--gold); }
.frow {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: rgba(255,255,255,.52);
  margin-bottom: .65rem;
}
.frow svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.frow a { color: rgba(255,255,255,.52); transition: color .18s; }
.frow a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; font-size: .76rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .4rem; }

@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } .footer-about p { max-width: none; } }

/* ── Reveal scroll ───────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].visible { opacity: 1; transform: none; }
