/* ============================================================
   Stanek Greszta — Kancelaria Prawna i Podatkowa
   styles.css
   ============================================================ */

/* ---------- Fonts (self-hosted, subset Latin + Latin-Ext) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Italic-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #fcfbf7;
  --ivory: #f4efe3;
  --card: #ffffff;

  --navy: #16263f;
  --navy-deep: #0c1729;
  --navy-soft: #21375a;

  --ink: #2a3444;
  --muted: #5d6878;

  --gold: #a6832e;
  --gold-bright: #c3a052;
  --gold-pale: #ddcfa8;

  --line: #e7e0cd;
  --line-navy: rgba(255, 255, 255, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 71rem;
  --radius: 4px;
  --radius-lg: 14px;

  --shadow-card: 0 1px 2px rgba(22, 38, 63, 0.05), 0 10px 30px -12px rgba(22, 38, 63, 0.12);
  --shadow-card-hover: 0 2px 4px rgba(22, 38, 63, 0.06), 0 18px 44px -14px rgba(22, 38, 63, 0.2);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0325rem;
  font-weight: 430;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.14;
  font-weight: 600;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.05rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover { color: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold-pale); color: var(--navy-deep); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(4.25rem, 9vw, 7.25rem); }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy); color: #e9e4d6; }
.section--navy h2, .section--navy h3 { color: #f4efe3; }

/* ---------- Shared ornaments ---------- */

/* eyebrow label */
.eyebrow {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* tapered gold rule — echoes the flourish under the logo monogram */
.rule {
  --rule-w: 110px;
  width: var(--rule-w);
  height: 1px;
  border: 0;
  margin: 1.4rem 0 0;
  background: linear-gradient(90deg, var(--gold-bright), rgba(195, 160, 82, 0));
  position: relative;
}
.rule::before {
  content: "";
  position: absolute;
  left: 0; top: -2.5px;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--gold-bright);
}
.rule--center {
  margin-inline: auto;
  background: linear-gradient(90deg, rgba(195,160,82,0), var(--gold-bright), rgba(195,160,82,0));
}
.rule--center::before { left: calc(50% - 3px); }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.235rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.92rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn--primary {
  background: var(--navy);
  color: #f6f2e7;
}
.btn--primary:hover { background: var(--navy-soft); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--gold);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover { background: var(--gold); color: #fff; }
.btn--light {
  background: var(--gold);
  color: #fff;
}
.btn--light:hover { background: var(--gold-bright); color: var(--navy-deep); transform: translateY(-1px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.link-arrow::after {
  content: "→";
  color: var(--gold);
  transition: transform 0.2s ease;
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(12, 23, 41, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 60px; width: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.3rem); }
.site-nav a:not(.btn) {
  font-size: 0.94rem;
  font-weight: 560;
  color: var(--navy);
  position: relative;
  padding-block: 0.35rem;
}
.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-nav a:not(.btn):hover::after,
.site-nav a.is-active:not(.btn)::after { transform: scaleX(1); }
.site-nav .btn { padding: 0.62rem 1.35rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(12, 23, 41, 0.35);
    padding: 0.5rem 1.5rem 1.5rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.btn) {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .site-nav a:not(.btn)::after { content: none; }
  .site-nav .btn { margin-top: 1.1rem; justify-content: center; }
  .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); }
}

/* ---------- Hero (strona główna) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(195, 160, 82, 0.1), transparent 60%),
    var(--paper);
  padding-block: clamp(5rem, 11vw, 8.5rem) clamp(4rem, 8vw, 6.5rem);
}
.hero::before {
  /* signature: ghosted paragraf (§) — the sign woven into the monogram */
  content: "\00A7";
  position: absolute;
  right: clamp(-3rem, 2vw, 5rem);
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20rem, 42vw, 36rem);
  line-height: 1;
  color: rgba(166, 131, 46, 0.075);
  pointer-events: none;
  user-select: none;
}
.hero__content { position: relative; max-width: 44rem; }
.hero h1 { margin-bottom: 0.5em; }
.hero .lead { margin-bottom: 2.2rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
}
.hero__scope {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0;
}
.hero__scope span { white-space: nowrap; }
.hero__scope span + span::before {
  content: "·";
  color: var(--gold);
  margin-inline: 0.85rem;
}

/* ---------- Split (przekaz + opis) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.split__statement {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.9vw, 2.3rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
.split__statement .gold { color: var(--gold); font-style: italic; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .rule { margin-inline: auto; background: linear-gradient(90deg, rgba(195,160,82,0), var(--gold-bright), rgba(195,160,82,0)); }
.section-head--center .rule::before { left: calc(50% - 3px); }

/* ---------- Cards: w czym pomagamy / specjalizacje ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem 1.7rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold-pale));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.42rem; margin-bottom: 0.45em; }
.card h3 a { color: inherit; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card p { font-size: 0.965rem; color: var(--muted); flex: 1; }
.card .link-arrow { margin-top: 1.2rem; font-size: 0.88rem; }
.cards__footer { margin-top: 2.6rem; text-align: center; }

/* ---------- Proces (jak pracujemy) ---------- */
.process {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.process__intro { position: sticky; top: 7.5rem; }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; }
  .process__intro { position: static; }
}
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: 1.6rem;
  padding-block: 1.7rem;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
}
.step h3 { font-size: 1.32rem; margin-bottom: 0.3em; }
.step p { font-size: 0.97rem; color: var(--muted); }

/* ---------- Dla kogo pracujemy (navy band) ---------- */
.audience {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; } }
.audience p { color: rgba(233, 228, 214, 0.88); }
.audience__list { list-style: none; margin: 0; padding: 0; }
.audience__list li {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  color: #f4efe3;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-navy);
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.audience__list li:first-child { border-top: 1px solid var(--line-navy); }
.audience__list li::before {
  content: "\00A7";
  font-size: 1rem;
  color: var(--gold-bright);
}

/* ---------- Quote divider ---------- */
.quote {
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.quote blockquote {
  margin: 0 auto;
  max-width: 42ch;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.35;
  color: var(--navy);
}
.quote .rule { margin-top: 2rem; }

/* ---------- Zespół ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 58rem;
  margin-inline: auto;
}
@media (max-width: 720px) { .team { grid-template-columns: 1fr; max-width: 26rem; } }

.person {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.person:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.person__photo {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}
.person__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.person__body { padding: 1.7rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.person__body h3 { font-size: 1.65rem; margin-bottom: 0.2em; }
.person__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.person__body p { font-size: 0.96rem; color: var(--muted); flex: 1; }
.person__body .link-arrow { margin-top: 1.3rem; font-size: 0.88rem; }

/* full bios on /zespol */
.person--full .person__body p { flex: none; }
.areas {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line);
}
.areas li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  padding-block: 0.28rem;
  font-size: 0.94rem;
  color: var(--ink);
}
.areas li::before { content: "\00A7"; color: var(--gold); font-size: 0.85rem; }
.areas-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 1.6rem;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.address { font-style: normal; }
.address strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.address .link-arrow { margin-top: 1.2rem; }

.contact-cards { display: grid; gap: 1.3rem; }
@media (min-width: 620px) { .contact-cards { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: 0.15em; }
.contact-card .person__title { margin-bottom: 1.1rem; }
.contact-card a {
  display: block;
  font-size: 0.96rem;
  font-weight: 560;
  padding-block: 0.22rem;
}
.contact-card a:hover { color: var(--gold); }

.confidentiality {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem 1.8rem;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 62rem;
}

/* ---------- Page hero (podstrony) ---------- */
.page-hero {
  background:
    radial-gradient(900px 380px at 92% -20%, rgba(195, 160, 82, 0.12), transparent 60%),
    var(--ivory);
  padding-block: clamp(3.8rem, 8vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow a { color: inherit; }
.page-hero .eyebrow a:hover { color: var(--gold-bright); }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); max-width: 20ch; }
.page-hero .lead { margin-top: 0.8rem; }

/* ---------- Article layout (podstrony treściowe) ---------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 7.2fr) minmax(0, 3.4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } }

.article { max-width: 46rem; }
.article p { color: var(--ink); }
.article h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); margin-top: 1.8em; }
.article h2:first-child { margin-top: 0; }

.scope-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}
.scope-list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.99rem;
}
.scope-list li::before {
  content: "\00A7";
  color: var(--gold);
  font-size: 0.9rem;
  flex: none;
}

.aside {
  position: sticky;
  top: 7.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) { .aside { position: static; } }
.aside h2 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.aside ul { list-style: none; margin: 0; padding: 0; }
.aside li { border-bottom: 1px solid var(--line); }
.aside li:last-child { border-bottom: 0; }
.aside a {
  display: block;
  padding: 0.68rem 0.2rem;
  font-size: 0.93rem;
  font-weight: 540;
}
.aside a.is-current {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 15% 120%, rgba(195, 160, 82, 0.16), transparent 60%),
    var(--navy);
  color: #e9e4d6;
  padding-block: clamp(3.8rem, 7vw, 5.5rem);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}
.cta-band h2 { color: #f4efe3; margin: 0; font-size: clamp(1.7rem, 3vw, 2.35rem); max-width: 22ch; }
.cta-band p { color: rgba(233, 228, 214, 0.8); margin: 0.5rem 0 0; max-width: 52ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(233, 228, 214, 0.75);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
  font-size: 0.92rem;
}
.footer-brand { text-align: left; margin-bottom: 3rem; }
.footer-brand .wordmark {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #f4efe3;
}
.footer-brand .wordmark-sub {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-navy);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding-block: 0.22rem; }
.site-footer a { color: rgba(233, 228, 214, 0.85); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(233, 228, 214, 0.45);
}

/* ---------- Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { background: #fff; }
}
