/* ============================================================
   COWORKINGBYDGOSZCZ.PL – STYLESHEET
   Canal / River / Music City aesthetic
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:     #0d6e6e;
  --teal-lt:  #128888;
  --teal-dk:  #094f4f;
  --gold:     #c8920a;
  --gold-lt:  #e5a820;
  --slate:    #3d5a5a;
  --muted:    #4a6363;
  --border:   #c8d8d8;
  --bg:       #f4f9f9;
  --bg-alt:   #e8f2f2;
  --white:    #ffffff;
  --ink:      #0d2828;
  --success:  #2a6b2a;

  --ff-body: 'Nunito Sans', system-ui, sans-serif;

  --step--1: clamp(0.78rem, 2vw, 0.88rem);
  --step-0:  clamp(0.94rem, 2.5vw, 1.05rem);
  --step-1:  clamp(1.1rem,  3vw,  1.28rem);
  --step-2:  clamp(1.3rem,  4vw,  1.6rem);
  --step-3:  clamp(1.65rem, 5vw,  2.2rem);
  --step-4:  clamp(2.1rem,  6vw,  3.2rem);
  --step-5:  clamp(2.8rem,  9vw,  5rem);

  --sp-xs: 0.5rem; --sp-s: 1rem; --sp-m: 1.75rem;
  --sp-l: 3rem; --sp-xl: 5rem; --sp-2xl: 8rem;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(13,110,110,.1);
  --shadow-lg: 0 8px 32px rgba(13,110,110,.16);
}

html { scroll-behavior: smooth; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-underline-offset: 3px; }
a:hover { color: var(--gold); }
h1,h2,h3,h4 { line-height: 1.25; font-weight: 800; letter-spacing: -.02em; }
strong { font-weight: 700; }

.skip-link { position:absolute; top:-100%; left:1rem; background:var(--teal); color:var(--white); padding:.5rem 1rem; border-radius:var(--radius); font-weight:700; z-index:9999; transition:top .2s; text-decoration:none; }
.skip-link:focus { top:1rem; }

.container { width:100%; max-width:74rem; margin-inline:auto; padding-inline:var(--sp-m); }
.container--narrow { max-width:56rem; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== HEADER ===== */
.site-header {
  position:sticky; top:0; z-index:200;
  background:var(--teal-dk);
  border-bottom:3px solid var(--gold);
}
.nav-top { display:flex; align-items:center; justify-content:space-between; padding-block:.9rem; }
.logo { font-size:var(--step-2); font-weight:800; text-decoration:none; letter-spacing:-.03em; line-height:1; display:flex; align-items:center; gap:.25rem; }
.logo-city { color:var(--gold-lt); }
.logo-cw { color:#ffffff; }

.nav-links { display:none; list-style:none; gap:.25rem; align-items:center; }
.nav-links a { font-size:var(--step--1); font-weight:600; color:rgba(255,255,255,.75); text-decoration:none; padding:.4rem .7rem; border-radius:var(--radius); transition:color .15s, background .15s; }
.nav-links a:hover { color:var(--white); background:rgba(255,255,255,.1); }

.nav-dropdown { position:relative; }
.nav-dropdown-toggle { background:none; border:none; cursor:pointer; font-family:var(--ff-body); font-size:var(--step--1); font-weight:600; color:rgba(255,255,255,.75); padding:.4rem .7rem; border-radius:var(--radius); display:flex; align-items:center; gap:.3rem; transition:color .15s, background .15s; }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle[aria-expanded="true"] { color:var(--white); background:rgba(255,255,255,.1); }
.dropdown-arrow { transition:transform .2s; font-size:.7rem; }
.nav-dropdown-toggle[aria-expanded="true"] .dropdown-arrow { transform:rotate(180deg); }
.dropdown-menu { display:none; position:absolute; top:calc(100% + .5rem); left:50%; transform:translateX(-50%); background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:var(--sp-m); z-index:100; width:280px; }
.dropdown-menu.open { display:block; }
.dropdown-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:.25rem; }
.dropdown-grid a { font-size:var(--step--1); color:var(--muted); text-decoration:none; padding:.4rem .6rem; border-radius:var(--radius); transition:color .15s, background .15s; }
.dropdown-grid a:hover { color:var(--teal); background:var(--bg-alt); }
.dropdown-title { font-size:var(--step--1); font-weight:800; color:var(--ink); margin-bottom:.5rem; text-transform:uppercase; letter-spacing:.06em; }

.nav-cta { display:none !important; }
.nav-toggle { display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:.25rem; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; transition:transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-menu { display:none; flex-direction:column; background:var(--teal-dk); border-top:1px solid rgba(255,255,255,.1); max-height:70vh; overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu a, .mobile-menu button.mob-section-toggle { padding:.55rem var(--sp-m); font-size:var(--step-0); font-weight:600; color:rgba(255,255,255,.85); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.08); background:none; border-left:none; border-right:none; border-top:none; cursor:pointer; font-family:var(--ff-body); text-align:left; width:100%; display:flex; justify-content:space-between; align-items:center; }
.mobile-menu a:hover { color:var(--white); background:rgba(255,255,255,.08); }
.mobile-districts { display:none; flex-direction:column; background:rgba(0,0,0,.2); }
.mobile-districts.open { display:flex; }
.mobile-districts a { font-size:var(--step--1); padding-left:2.5rem; font-weight:400; color:rgba(255,255,255,.65); }
.mob-cta { background:var(--gold) !important; color:var(--ink) !important; border-radius:var(--radius); margin:var(--sp-s); text-align:center !important; justify-content:center !important; font-weight:700 !important; }

@media (min-width:900px) { .nav-links { display:flex; } .nav-cta { display:flex !important; } .nav-toggle { display:none; } }

/* ===== BUTTONS ===== */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.4rem; padding:.6rem 1.4rem; border-radius:var(--radius); font-family:var(--ff-body); font-size:var(--step--1); font-weight:700; cursor:pointer; border:2px solid transparent; transition:all .15s; text-decoration:none; white-space:nowrap; }
.btn--primary { background:var(--teal); color:var(--white); border-color:var(--teal); }
.btn--primary:hover { background:var(--teal-lt); border-color:var(--teal-lt); color:var(--white); }
.btn--gold { background:var(--gold); color:var(--ink); border-color:var(--gold); }
.btn--gold:hover { background:var(--gold-lt); border-color:var(--gold-lt); }
.btn--dark { background:var(--teal-dk); color:var(--white); border-color:var(--teal-dk); }
.btn--dark:hover { background:var(--ink); border-color:var(--ink); }
.btn--outline { background:transparent; color:var(--ink); border-color:var(--border); }
.btn--outline:hover { border-color:var(--teal); color:var(--teal); }
.btn--outline-white { background:transparent; color:var(--white); border-color:rgba(255,255,255,.4); }
.btn--outline-white:hover { border-color:var(--white); background:rgba(255,255,255,.1); }
.btn--lg { padding:.85rem 2rem; font-size:var(--step-0); }
.btn--xl { padding:1rem 2.4rem; font-size:var(--step-1); }
.btn--sm { padding:.4rem 1rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding-block:.75rem; background:var(--bg-alt); border-bottom:1px solid var(--border); font-size:var(--step--1); color:var(--muted); }
.breadcrumb ol { list-style:none; display:flex; flex-wrap:wrap; gap:.25rem; align-items:center; }
.breadcrumb li::after { content:'/'; margin-left:.25rem; color:var(--border); }
.breadcrumb li:last-child::after { display:none; }
.breadcrumb a { color:var(--muted); text-decoration:none; }
.breadcrumb a:hover { color:var(--teal); }
.breadcrumb [aria-current="page"] { color:var(--ink); font-weight:700; }

/* ===== SECTION ===== */
.section { padding-block:var(--sp-xl); }
.section--alt { background:var(--bg-alt); }
.section--dark { background:var(--teal-dk); color:var(--white); }
.section--dark h2, .section--dark h3 { color:var(--white); }
.section-label { display:inline-block; font-size:var(--step--1); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--teal); margin-bottom:.4rem; border-left:3px solid var(--teal); padding-left:.6rem; }
.section-label--gold { color:var(--gold); border-color:var(--gold); }
.section-label--white { color:rgba(255,255,255,.65); border-color:rgba(255,255,255,.35); }
.section-title { font-size:var(--step-4); margin-bottom:var(--sp-m); color:var(--ink); }
.section-lead { font-size:var(--step-1); color:var(--muted); max-width:60ch; line-height:1.7; margin-bottom:var(--sp-l); }

/* ===== HERO ===== */
.hero { background:var(--teal-dk); color:var(--white); padding-block:var(--sp-xl) var(--sp-2xl); position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; inset:0; pointer-events:none; background:radial-gradient(ellipse 60% 70% at 100% 0%, rgba(200,146,10,.2) 0%, transparent 55%), radial-gradient(ellipse 40% 40% at 0% 100%, rgba(18,136,136,.3) 0%, transparent 50%); }
.hero::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:50px; background:var(--bg); clip-path:ellipse(55% 100% at 50% 100%); }
.hero-tag { display:inline-flex; align-items:center; gap:.4rem; font-size:var(--step--1); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-lt); margin-bottom:var(--sp-s); }
.hero h1 { font-size:var(--step-5); color:var(--white); max-width:18ch; margin-bottom:var(--sp-m); letter-spacing:-.03em; }
.hero h1 .accent { color:var(--gold-lt); }
.hero-lead { font-size:var(--step-1); color:rgba(255,255,255,.88); max-width:52ch; margin-bottom:var(--sp-l); line-height:1.65; }
.hero-cta { display:flex; flex-wrap:wrap; gap:var(--sp-s); margin-bottom:var(--sp-2xl); }
.hero-stats { display:grid; grid-template-columns:repeat(auto-fit, minmax(9rem,1fr)); gap:var(--sp-m); padding-top:var(--sp-l); border-top:1px solid rgba(255,255,255,.15); }
.stat-n { font-size:var(--step-4); font-weight:800; color:var(--gold-lt); line-height:1; display:block; }
.stat-l { font-size:var(--step--1); color:rgba(255,255,255,.75); margin-top:.2rem; display:block; }

/* ===== DISTRICT GRID ===== */
.district-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(14rem,1fr)); gap:var(--sp-s); }
.district-card { border:2px solid var(--border); border-radius:var(--radius-lg); padding:var(--sp-m); background:var(--white); text-decoration:none; color:var(--ink); display:flex; flex-direction:column; gap:.4rem; transition:box-shadow .15s, border-color .15s, transform .15s; }
.district-card:hover { box-shadow:var(--shadow); border-color:var(--teal); transform:translateY(-3px); color:var(--ink); }
.district-card-name { font-size:var(--step-1); font-weight:800; color:var(--teal-dk); }
.district-card-tag { font-size:var(--step--1); color:var(--muted); }
.district-card-price { font-size:var(--step--1); font-weight:700; color:var(--teal); margin-top:auto; padding-top:.5rem; border-top:1px solid var(--border); }
.district-card-icon { font-size:1.5rem; margin-bottom:.25rem; }

/* ===== CARDS ===== */
.cards { display:grid; grid-template-columns:1fr; gap:var(--sp-m); }
@media (min-width:36rem) { .cards { grid-template-columns:repeat(2,1fr); } }
@media (min-width:60rem) { .cards { grid-template-columns:repeat(3,1fr); } }
.card { background:var(--white); border:2px solid var(--border); border-radius:var(--radius-lg); padding:var(--sp-m); transition:box-shadow .15s, border-color .15s; }
.card:hover { box-shadow:var(--shadow); border-color:var(--teal); }
.card-icon { font-size:2rem; margin-bottom:var(--sp-s); line-height:1; }
.card h3 { font-size:var(--step-1); color:var(--teal-dk); margin-bottom:.5rem; }
.card p { color:var(--muted); font-size:var(--step--1); line-height:1.7; }

/* ===== TABLE ===== */
.table-wrapper { overflow-x:auto; border-radius:var(--radius-lg); border:2px solid var(--border); }
.price-table { width:100%; border-collapse:collapse; font-size:var(--step--1); }
.price-table th { background:var(--teal-dk); color:var(--white); text-align:left; padding:.85rem 1.25rem; font-weight:700; letter-spacing:.02em; }
.price-table td { padding:.8rem 1.25rem; border-bottom:1px solid var(--border); }
.price-table tr:last-child td { border-bottom:none; }
.price-table tr:nth-child(even) td { background:var(--bg-alt); }
.price-table td:last-child { font-weight:700; color:var(--teal); }

/* ===== STEPS ===== */
.steps { counter-reset:step; display:flex; flex-direction:column; gap:var(--sp-m); }
.step { display:flex; gap:var(--sp-m); background:var(--white); border:2px solid var(--border); border-radius:var(--radius-lg); padding:var(--sp-m); border-left:5px solid var(--teal); }
.step-n { counter-increment:step; flex-shrink:0; width:2.5rem; height:2.5rem; border-radius:50%; background:var(--teal); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:var(--step-1); font-weight:800; line-height:1; }
.step-n::after { content:counter(step); }
.step-content h3 { font-size:var(--step-1); margin-bottom:.3rem; color:var(--teal-dk); }
.step-content p { color:var(--muted); font-size:var(--step--1); }

/* ===== FAQ ===== */
.faq-list { display:flex; flex-direction:column; border:2px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:last-child { border-bottom:none; }
.faq-q { width:100%; background:none; border:none; cursor:pointer; text-align:left; padding:var(--sp-m); font-family:var(--ff-body); font-size:var(--step-0); font-weight:700; color:var(--teal-dk); display:flex; align-items:center; justify-content:space-between; gap:var(--sp-s); transition:background .15s; }
.faq-q:hover { background:var(--bg-alt); }
.faq-q[aria-expanded="true"] { background:var(--bg-alt); color:var(--teal); }
.faq-icon { flex-shrink:0; width:1.4rem; height:1.4rem; border:2px solid currentColor; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:transform .25s; font-size:.7rem; }
.faq-q[aria-expanded="true"] .faq-icon { transform:rotate(180deg); }
.faq-a { display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease; background:var(--bg); }
.faq-a.open { grid-template-rows:1fr; }
.faq-a-inner { overflow:hidden; color:var(--muted); font-size:var(--step--1); line-height:1.8; }
.faq-a.open .faq-a-inner { padding:var(--sp-s) var(--sp-m) var(--sp-m); }

/* ===== DISTRICT FACTS ===== */
.district-facts { display:grid; grid-template-columns:repeat(auto-fit, minmax(10rem,1fr)); gap:var(--sp-s); margin-bottom:var(--sp-l); }
.district-fact { background:var(--white); border:2px solid var(--border); border-top:3px solid var(--teal); border-radius:var(--radius); padding:var(--sp-s) var(--sp-m); }
.district-fact-label { font-size:var(--step--1); color:var(--muted); font-weight:600; }
.district-fact-value { font-size:var(--step-1); font-weight:800; color:var(--teal-dk); margin-top:.15rem; }

/* ===== ARTICLE BODY ===== */
.article-body h3 { font-size:var(--step-2); color:var(--teal-dk); margin-top:var(--sp-m); margin-bottom:.4rem; }
.article-body p { color:var(--muted); margin-bottom:var(--sp-s); line-height:1.8; font-size:var(--step--1); }
.article-body ul { list-style:none; margin-bottom:var(--sp-s); }
.article-body ul li { font-size:var(--step--1); color:var(--muted); padding:.25rem 0 .25rem 1.2rem; position:relative; }
.article-body ul li::before { content:'→'; position:absolute; left:0; color:var(--teal); font-size:.85em; }

/* ===== OPERATOR BOX ===== */
.operator-box { border:2px solid var(--teal); border-radius:var(--radius-lg); padding:var(--sp-l); background:var(--white); display:flex; flex-direction:column; gap:var(--sp-m); }
.operator-box h2 { font-size:var(--step-3); color:var(--teal-dk); }
.operator-box p { color:var(--muted); font-size:var(--step-0); line-height:1.7; max-width:58ch; }

/* ===== CHECKLIST ===== */
.checklist { list-style:none; display:flex; flex-direction:column; }
.checklist li { display:flex; gap:.75rem; align-items:flex-start; font-size:var(--step--1); color:rgba(255,255,255,.9); padding:.55rem 0; border-bottom:1px solid rgba(255,255,255,.1); }
.checklist li::before { content:'✓'; color:var(--gold-lt); font-weight:700; flex-shrink:0; margin-top:.15rem; }

/* ===== PRICING ===== */
.pricing-grid { display:grid; grid-template-columns:1fr; gap:var(--sp-m); }
@media (min-width:48rem) { .pricing-grid { grid-template-columns:repeat(2,1fr); } }
@media (min-width:72rem) { .pricing-grid { grid-template-columns:repeat(3,1fr); } }
.plan { border:2px solid var(--border); border-radius:var(--radius-lg); padding:var(--sp-l); background:var(--white); display:flex; flex-direction:column; gap:var(--sp-m); position:relative; }
.plan--featured { border-color:var(--teal); box-shadow:var(--shadow-lg); }
.plan-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--teal); color:var(--white); font-size:var(--step--1); font-weight:700; padding:.25rem 1rem; border-radius:20px; white-space:nowrap; }
.plan-name { font-size:var(--step-2); font-weight:800; color:var(--teal-dk); }
.plan-price { display:flex; align-items:baseline; gap:.4rem; }
.plan-price strong { font-size:var(--step-5); font-weight:800; color:var(--teal); line-height:1; }
.plan-price span { color:var(--muted); font-size:var(--step--1); }
.plan-desc { color:var(--muted); font-size:var(--step--1); line-height:1.7; }
.plan-features { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.plan-features li { display:flex; gap:.6rem; align-items:flex-start; font-size:var(--step--1); line-height:1.5; }
.plan-features li::before { content:'✓'; color:var(--success); font-weight:700; flex-shrink:0; margin-top:.1rem; }
.plan-features li.no::before { content:'–'; color:var(--border); }
.plan-features li.no { color:var(--muted); }
.plan .btn { width:100%; margin-top:auto; }

/* ===== FORM ===== */
.form-grid { display:grid; grid-template-columns:1fr; gap:var(--sp-m); }
@media (min-width:48rem) { .form-grid { grid-template-columns:repeat(2,1fr); } }
.form-group { display:flex; flex-direction:column; gap:.35rem; }
.form-group--full { grid-column:1/-1; }
.form-group label { font-size:var(--step--1); font-weight:700; color:var(--teal-dk); }
.form-group input, .form-group select, .form-group textarea { padding:.65rem 1rem; border:2px solid var(--border); border-radius:var(--radius); font-family:var(--ff-body); font-size:var(--step--1); color:var(--ink); background:var(--bg); transition:border-color .15s; width:100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(13,110,110,.1); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-note { font-size:var(--step--1); color:var(--muted); margin-top:var(--sp-s); }

/* ===== INFO BOX ===== */
.info-box { background:rgba(13,110,110,.07); border-left:4px solid var(--teal); border-radius:0 var(--radius) var(--radius) 0; padding:var(--sp-m); margin-top:var(--sp-m); }
.info-box strong { color:var(--teal); }
.info-box p { color:var(--muted); font-size:var(--step--1); margin-top:.3rem; }

/* ===== VAT BOX ===== */
.vat-box { margin-top:var(--sp-m); background:var(--bg-alt); border:1px solid var(--border); border-radius:var(--radius); padding:var(--sp-m); font-size:var(--step--1); color:var(--muted); display:flex; flex-direction:column; gap:.4rem; }
.vat-box strong { color:var(--teal-dk); }

/* ===== CTA BAND ===== */
.cta-band { background:var(--teal); color:var(--white); padding-block:var(--sp-xl); text-align:center; }
.cta-band h2 { font-size:var(--step-4); color:var(--white); margin-bottom:var(--sp-s); }
.cta-band p { color:rgba(255,255,255,.88); font-size:var(--step-0); max-width:52ch; margin-inline:auto; margin-bottom:var(--sp-m); }

/* ===== LEGAL ===== */
.legal-body h2 { font-size:clamp(1.2rem,3vw,1.5rem); margin-top:2rem; margin-bottom:.5rem; color:var(--teal-dk); }
.legal-body p { color:var(--muted); margin-bottom:.85rem; line-height:1.8; font-size:var(--step--1); }
.legal-body ul { list-style:disc; padding-left:1.5rem; margin-bottom:.85rem; }
.legal-body ul li { color:var(--muted); font-size:var(--step--1); margin-bottom:.3rem; line-height:1.7; }
.legal-body a { color:var(--teal); }
.legal-body table { width:100%; border-collapse:collapse; font-size:.85rem; margin-block:1.5rem; }
.legal-body th { background:var(--teal-dk); color:#fff; text-align:left; padding:.7rem 1rem; font-weight:700; }
.legal-body td { padding:.7rem 1rem; border-bottom:1px solid var(--border); color:var(--muted); vertical-align:top; }
.legal-body tr:nth-child(even) td { background:var(--bg-alt); }

/* Responsive table for mobile */
@media (max-width: 48rem) {
  .legal-body table thead { display:none; }
  .legal-body table, .legal-body tbody, .legal-body tr, .legal-body td { display:block; width:100%; }
  .legal-body tr { margin-bottom:1rem; border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
  .legal-body td { padding:.6rem 1rem; border-bottom:1px solid var(--border); position:relative; padding-left:45%; }
  .legal-body td::before { content:attr(data-label); position:absolute; left:.75rem; top:.6rem; font-weight:700; color:var(--teal-dk); font-size:.8rem; text-transform:uppercase; letter-spacing:.05em; max-width:40%; }
  .legal-body td:last-child { border-bottom:none; }
}
.legal-body code { background:var(--bg-alt); padding:.15rem .4rem; border-radius:3px; font-size:.82rem; border:1px solid var(--border); }
.pdata { font-weight:700; color:var(--ink); }

/* ===== FOOTER ===== */
.site-footer { background:var(--teal-dk); color:rgba(255,255,255,.45); padding-block:var(--sp-l); }
.footer-inner { display:flex; flex-direction:column; gap:var(--sp-m); }
@media (min-width:48rem) { .footer-inner { flex-direction:row; align-items:flex-start; justify-content:space-between; } }
.footer-logo { font-size:var(--step-2); font-weight:800; text-decoration:none; letter-spacing:-.03em; }
.footer-brand p { font-size:var(--step--1); margin-top:.5rem; max-width:28ch; line-height:1.6; color:rgba(255,255,255,.45); }
.footer-col-title { font-size:var(--step--1); font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.3); margin-bottom:.5rem; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:.35rem; }
.footer-links a { color:rgba(255,255,255,.45); text-decoration:none; font-size:var(--step--1); transition:color .15s; }
.footer-links a:hover { color:var(--gold-lt); }
.footer-bottom { margin-top:var(--sp-m); padding-top:var(--sp-m); border-top:1px solid rgba(255,255,255,.08); font-size:var(--step--1); display:flex; flex-wrap:wrap; gap:var(--sp-s); justify-content:space-between; color:rgba(255,255,255,.35); }
.footer-bottom a { color:rgba(255,255,255,.35); }
.footer-bottom a:hover { color:var(--gold-lt); }

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion:no-preference) {
  [data-reveal] { opacity:0; transform:translateY(16px); transition:opacity .55s ease, transform .55s ease; }
  [data-reveal].revealed { opacity:1; transform:none; }
}
.text-center { text-align:center; }
.mt-m { margin-top:var(--sp-m); }
.mt-l { margin-top:var(--sp-l); }
