/* ============================================================
   Na Vlásku — salon Líbeznice
   Mobile-first, no framework, no build step.
   ============================================================ */

:root {
  --bg:          #faf7f2;
  --bg-alt:      #f3ece1;
  --ink:         #2d2a26;
  --ink-soft:    #5a544c;
  --muted:       #8a8278;
  --line:        #e7dfd3;
  --brand:       #b08968;   /* warm gold-brown */
  --brand-dark:  #8a6a4f;
  --accent:      #c9a87a;
  --white:       #ffffff;
  --star:        #e8b738;
  --shadow-sm:   0 1px 2px rgba(45,42,38,.06), 0 1px 3px rgba(45,42,38,.08);
  --shadow-md:   0 10px 30px -12px rgba(45,42,38,.22), 0 2px 8px rgba(45,42,38,.06);
  --shadow-lg:   0 24px 48px -16px rgba(45,42,38,.28);
  --radius:      14px;
  --radius-lg:   22px;
  --serif:       "Cormorant Garamond", "Georgia", serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw:        1200px;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .6em; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 5vw + .5rem, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw + .8rem, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
p  { margin: 0 0 1em; }
em { font-style: italic; color: var(--brand-dark); }
small { font-size: .875em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

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

/* Vizuálně skrytý prvek (pro SEO/a11y, ne pro design) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.muted { color: var(--muted); }
.small { font-size: .875rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .75rem;
  color: var(--brand-dark); font-weight: 600; margin: 0 0 .75em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 500; font-size: 1rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease), backdrop-filter .2s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* Nad hero: bílé texty + invertovaný hamburger, logo skryté (wordmark je v hero) */
.site-header:not(.is-scrolled) .main-nav a:not(.nav-cta) { color: #fff; }
.site-header:not(.is-scrolled) .main-nav a:not(.nav-cta):hover { color: var(--accent); }
/* Pokud je menu otevřené na mobilu (rozbalený panel s krémovým bg), texty musí být tmavé */
.site-header .main-nav.is-open a:not(.nav-cta) { color: var(--ink) !important; }
.site-header .main-nav.is-open .nav-cta { color: var(--ink) !important; border-color: var(--ink) !important; }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.site-header:not(.is-scrolled) .brand { visibility: hidden; pointer-events: none; }
.site-header.is-scrolled .brand { animation: fadeInLogo .25s var(--ease) both; }
@keyframes fadeInLogo { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; }
@media (min-width: 768px) { .nav-wrap { padding: 1.1rem 2rem; } }

.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--ink); }
.brand img { height: 48px; width: auto; object-fit: contain; }
.brand-logo { max-height: 48px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand-name small { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: .5rem; width: 44px; height: 44px;
  justify-content: center; align-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed; inset: 64px 0 auto 0; top: 72px;
  background: var(--bg); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transform: translateY(-120%); transition: transform .35s var(--ease);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 72px); overflow: auto;
}
.main-nav.is-open { transform: translateY(0); }
.main-nav a { color: var(--ink); font-size: 1.125rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.main-nav a:last-child { border: 0; }
.nav-cta {
  background: transparent;
  color: var(--ink) !important;
  padding: .55rem 1.1rem !important;
  border-radius: 999px !important;
  border: 1px solid var(--ink) !important;
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-size: .9rem;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: #fff !important; }
.nav-cta .dot {
  width: 6px; height: 6px;
  background: currentColor;
  opacity: .55;
  border-radius: 50%; display: inline-block;
}
/* Nad hero (průhledná hlavička) — bílý outline button */
.site-header:not(.is-scrolled) .nav-cta {
  color: #fff !important;
  border-color: rgba(255,255,255,.7) !important;
}
.site-header:not(.is-scrolled) .nav-cta:hover { background: #fff; color: var(--ink) !important; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static; transform: none; flex-direction: row; align-items: center; gap: 2rem;
    padding: 0; background: transparent; border: 0; box-shadow: none; max-height: none;
  }
  .main-nav a { border: 0; font-size: .95rem; padding: 0; }
  .main-nav a:not(.nav-cta):hover { color: var(--brand-dark); }
}

/* ---- Hero (originální WP layout: wordmark + CTA + telefon + adresa) ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background-size: cover; background-position: right center;
  color: #fff; overflow: hidden;
}
/* Na mobilu fotka zabírá celé pozadí — vycentrovat na obličej (ne pravý okraj) */
@media (max-width: 768px) {
  .hero { background-position: 68% center; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(75,62,52,.85) 0%, rgba(75,62,52,.55) 45%, rgba(75,62,52,.15) 100%);
}
/* Mobil: přidáme vrstvu přes celou fotku, ať je čitelnější text + tlačítko */
@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(55,45,38,.35) 0%,
      rgba(55,45,38,.65) 40%,
      rgba(55,45,38,.80) 70%,
      rgba(55,45,38,.70) 100%);
  }
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 1.25rem;
  max-width: 1100px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-content { padding: 6rem 2rem; align-items: flex-start; text-align: left; max-width: 50%; margin-left: 8%; }
}

.hero-wordmark {
  width: clamp(260px, 60vw, 520px);
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}

.hero-reserve {
  display: inline-block;
  background: #95a283;          /* khaki olive – jako na původním WP */
  color: #fff !important;
  padding: 1rem 2.5rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s var(--ease), transform .2s var(--ease);
  margin-bottom: 2rem;
}
/* Mobil: tlačítko užší (auto šířka, ne full-width) */
@media (max-width: 768px) {
  .hero-reserve {
    width: auto;
    align-self: center;
    padding: .85rem 2rem;
    font-size: .78rem;
    letter-spacing: .2em;
  }
}
.hero-reserve:hover { background: #7d8d6d; transform: translateY(-1px); color: #fff; }

.hero-phone {
  display: inline-block;
  color: #fff !important;
  font-size: clamp(1.5rem, 2.5vw + .5rem, 2.1rem);
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.hero-phone:hover { color: var(--accent) !important; }

.hero-addr {
  margin: 0;
  font-size: 1rem;
  opacity: .92;
  letter-spacing: .02em;
}

.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.5rem; z-index: 2; animation: bob 2.4s ease-in-out infinite; opacity: .7; }
.hero-scroll:hover { opacity: 1; color: #fff; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 8px);} }

/* ---- Section ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-head .lead { color: var(--ink-soft); font-size: 1.125rem; }

/* ---- O nás ---- */
.onas-grid { display: grid; gap: 3rem; }
@media (min-width: 900px) { .onas-grid { grid-template-columns: 1fr 1fr; align-items: center; } }

.onas-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.onas-gallery img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; width: 100%; }
/* Jemný diagonální offset – používáme margin místo transform, aby se respektoval grid-gap */
.onas-gallery img:nth-child(1),
.onas-gallery img:nth-child(4) { margin-top: 1.5rem; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.check-list li { padding: .4rem 0 .4rem 1.75rem; position: relative; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand);
  font-weight: 600;
}

/* ---- Team ---- */
.team-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); margin-bottom: 1rem; background: var(--bg-alt); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h3 { margin: 0 0 .1em; }
.team-card .role { color: var(--brand-dark); font-size: .875rem; margin: 0 0 .75em; font-weight: 500; }
.team-card .bio  { font-size: .925rem; color: var(--ink-soft); margin: 0; }

/* ---- Price list ---- */
.price-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: 2.5rem; padding: .4rem;
  background: #fff; border-radius: 999px; box-shadow: var(--shadow-sm);
  max-width: fit-content; margin-left: auto; margin-right: auto;
}
.price-tabs .tab {
  padding: .7rem 1.2rem; border-radius: 999px; color: var(--ink-soft); font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.price-tabs .tab:hover { color: var(--ink); }
.price-tabs .tab.is-active { background: var(--ink); color: #fff; }

.price-panel { max-width: 960px; margin: 0 auto; }
.price-panel[hidden] { display: none; }
.panel-intro { text-align: center; color: var(--ink-soft); margin-bottom: 2rem; font-style: italic; }

.price-group { margin-bottom: 2.5rem; }
.price-group h3 {
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1rem;
  padding-bottom: .6rem; border-bottom: 2px solid var(--brand);
  display: inline-block;
}

.price-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.price-row {
  display: grid; gap: .5rem;
  grid-template-columns: 1fr auto;
  padding: 1rem 1.25rem;
  align-items: center;
  border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-row.simple { grid-template-columns: 1fr auto; }
.price-table.has-variants .price-row { grid-template-columns: 1.8fr repeat(3, minmax(70px, 1fr)); }
.price-row.price-head {
  background: var(--bg-alt); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); font-weight: 600; padding: .8rem 1.25rem;
}
.col-name { font-weight: 500; }
.col-name small { display: block; font-weight: 400; color: var(--muted); font-size: .8rem; margin-top: .15rem; }
.col-price { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--brand-dark); font-weight: 600; }

/* Mobile pricelist: stack variants as rows */
@media (max-width: 680px) {
  .price-table.has-variants .price-row { grid-template-columns: 1fr; gap: .4rem; }
  .price-table.has-variants .price-row.price-head { display: none; }
  .price-table.has-variants .col-price {
    display: flex; justify-content: space-between; text-align: left;
    padding: .15rem 0; font-weight: 500;
  }
  .price-table.has-variants .col-price::before {
    content: attr(data-label); color: var(--muted); font-weight: 400; text-transform: uppercase; font-size: .72rem; letter-spacing: .1em;
  }
  .price-table.has-variants .col-name { font-weight: 600; padding-bottom: .25rem; border-bottom: 1px dashed var(--line); margin-bottom: .4rem; }
}

.price-note { text-align: center; margin-top: 2rem; color: var(--ink-soft); }

/* ---- Reviews ---- */
.stars { color: var(--star); letter-spacing: 2px; }
.reviews-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 700px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .75rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.review-stars .dim { color: var(--line); }
.review-text { font-size: 1rem; color: var(--ink); line-height: 1.55; flex: 1; margin: 0; }
.review footer { display: flex; flex-direction: column; gap: .1rem; color: var(--ink-soft); font-size: .875rem; }
.review footer strong { color: var(--ink); }
.review-cta { text-align: center; margin-top: 2rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.contact-card {
  background: #fff; border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1rem;
}
.contact-card h3 { margin-bottom: .5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-family: var(--sans); font-weight: 600; }
.big-link { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); display: inline-block; }
.big-link:hover { color: var(--brand-dark); }

.vcard-card .vcard-row { display: flex; align-items: center; gap: 1rem; margin-top: .75rem; }
.vcard-qr { width: 120px; height: 120px; background: #fff; border-radius: 10px; padding: 8px; flex-shrink: 0; border: 1px solid var(--line); }
.vcard-qr svg, .vcard-qr img { width: 100%; height: 100%; display: block; }
.vcard-meta { display: flex; flex-direction: column; gap: .35rem; }
.vcard-meta .small { margin: 0; }
.vcard-link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--brand-dark);
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .25rem;
  width: fit-content;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.vcard-link svg { transition: transform .2s var(--ease); }
.vcard-link:hover { color: var(--ink); border-color: var(--brand-dark); }
.vcard-link:hover svg { transform: translateY(2px); }

.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md);
  position: relative;
}
.contact-form h3 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .4rem; color: var(--ink); }
.field label small { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 4px rgba(176,137,104,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.gdpr { display: flex; gap: .75rem; align-items: flex-start; font-size: .875rem; color: var(--ink-soft); margin: 1rem 0 1.5rem; padding: .5rem 0; cursor: pointer; }
.gdpr input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--brand); flex-shrink: 0; }
.gdpr span { flex: 1; padding-top: 1px; }
.form-status { margin-top: 1rem; font-size: .925rem; min-height: 1.4em; }
.form-status.ok  { color: #2f7a3e; }
.form-status.err { color: #b94a3e; }

.map-wrap {
  position: relative;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 9; background: var(--bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link {
  position: absolute; top: 1rem; right: 1rem;
  background: #fff;
  color: var(--ink) !important;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-size: .85rem; font-weight: 500;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.map-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--brand-dark) !important; }
@media (max-width: 540px) {
  .map-link { font-size: .75rem; padding: .45rem .8rem; top: .6rem; right: .6rem; }
}

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #d6cfc4; padding: 4rem 0 2rem; margin-top: 0; }
.site-footer a { color: #f1e8da; }
.site-footer a:hover { color: var(--accent); }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-family: var(--sans); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand strong { color: #fff; }
.site-footer .brand small { color: #b0a69a; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.hours { list-style: none; padding: 0; margin: 0; font-size: .925rem; }
.hours li { display: flex; justify-content: space-between; padding: .3rem 0; border-bottom: 1px dotted rgba(255,255,255,.1); }
.socials { display: flex; gap: .5rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  transition: background .2s var(--ease);
}
.socials a:hover { background: var(--brand); color: #fff; }
.copyright {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #938a7e;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.copyright .mfb { margin-left: auto; }
@media (max-width: 540px) {
  .copyright { justify-content: center; text-align: center; }
  .copyright .mfb { margin: 0; }
}

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