/* ==========================================================
   Follas & Partners — Interior Design
   Παλέτα: Μαύρο & χρυσό (business / glamour)
   Αλλάξτε τα χρώματα μόνο εδώ (:root)
   ========================================================== */
:root {
  --bg:        #FAF8F4;  /* ιβουάρ φόντο */
  --soft:      #F2EDE4;  /* ζεστό μπεζ για εναλλακτικές ενότητες */
  --line:      #E6DFD3;  /* γραμμές */
  --ink:       #111111;  /* κείμενο */
  --ink-soft:  #5E5A54;  /* δευτερεύον κείμενο */
  --dark:      #0E0E0E;  /* σκούρες ενότητες */
  --gold:      #C9A45C;  /* χρυσό σαμπάνιας */
  --gold-dark: #9A7A3A;  /* χρυσό για κείμενο σε ανοιχτό φόντο */
  --white:     #FFFFFF;

  --font-head: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 4px;
  --maxw: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.4rem; }
h1 em, h2 em { font-style: italic; color: var(--gold-dark); }
p { margin: 0 0 1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.hidden { position: absolute; left: -9999px; }

.eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 1.2rem; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 36em; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 1rem 2rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; border: 1px solid transparent; cursor: pointer; font-family: inherit; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-sun { background: var(--gold); color: var(--ink); }
.btn-sun:hover { background: var(--white); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 248, 244, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 24px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 58px; width: auto; }
.nav { display: flex; gap: 34px; align-items: center; }
.nav a { text-decoration: none; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; position: relative; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active:not(.nav-cta) { color: var(--gold-dark); }
.nav-cta { padding: .75rem 1.3rem; background: var(--ink); color: var(--white); border-radius: var(--radius); transition: .3s; }
.nav-cta:hover, .nav-cta.active { background: var(--gold); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--ink-soft); }
.lang-switch button { background: none; border: 0; padding: 4px; cursor: pointer; font: inherit; color: var(--ink-soft); letter-spacing: .1em; }
.lang-switch button.active { color: var(--gold-dark); font-weight: 700; }
.menu-toggle { display: none; background: none; border: 0; width: 36px; height: 36px; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 6px; right: 6px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.menu-toggle span:first-child { top: 13px; }
.menu-toggle span:last-child { top: 22px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 17px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 17px; transform: rotate(-45deg); }

/* ---------- Hero (αρχική) ---------- */
.hero { padding: clamp(48px, 8vw, 110px) 0 clamp(72px, 9vw, 130px); position: relative; overflow-x: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-visual { position: relative; aspect-ratio: 4 / 5; }
.hero-visual::before { content: ""; position: absolute; inset: -22px 22px 22px -22px; border: 1px solid var(--gold); }
.hero-visual img { position: relative; }
.hero-visual img, .about-visual img, .svc-img img { width: 100%; height: 100%; object-fit: cover; background: var(--soft); }
.hero-badge { position: absolute; left: -40px; bottom: 40px; background: var(--dark); color: var(--white); padding: 22px 26px; display: flex; flex-direction: column; border-top: 2px solid var(--gold); }
.hero-badge strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 400; color: var(--gold); line-height: 1; }
.hero-badge span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #CFC8BB; margin-top: 8px; }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-tight { padding-top: clamp(48px, 6vw, 80px); }
.section-alt { background: var(--soft); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark .eyebrow { color: var(--gold); }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.link-arrow { color: var(--ink); font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 4px; }
.link-arrow:hover { color: var(--gold-dark); }

/* Services cards (αρχική) */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service { display: block; text-decoration: none; padding: 40px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .35s var(--ease), color .35s var(--ease); }
.service:hover { background: var(--dark); color: var(--white); }
.service:hover p { color: #BDB6AA; }
.service-num { display: block; font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.6rem; margin-bottom: 1.2rem; }
.service p { color: var(--ink-soft); font-size: .96rem; margin: 0; transition: color .35s; }

/* Project cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.filters + .cards { margin-top: 36px; }
.card { text-decoration: none; display: flex; flex-direction: column; background: var(--white); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(0,0,0,.45); }
.card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.card-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); position: relative; }
.card-img::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(201,164,92,0); transition: border-color .4s var(--ease); }
.card:hover .card-img::after { border-color: rgba(201,164,92,.9); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px 26px; border-bottom: 2px solid transparent; transition: border-color .4s; }
.card:hover .card-body { border-bottom-color: var(--gold); }
.card-body small { color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.card-body strong { font-family: var(--font-head); font-weight: 400; font-size: 1.4rem; line-height: 1.2; }
.card-meta { color: var(--ink-soft); font-size: .86rem; }
.card.is-hidden { display: none; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { background: transparent; border: 1px solid var(--line); color: var(--ink); padding: .6rem 1.3rem; border-radius: var(--radius); font: inherit; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Page hero (εσωτερικές σελίδες) */
.page-hero { padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 7vw, 96px); background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.page-hero::after, .page-hero::before { content: ""; position: absolute; top: 50%; width: clamp(120px, 18vw, 240px); aspect-ratio: 1; border: 1px solid rgba(201,164,92,.45); }
.page-hero::after { right: clamp(16px, 6vw, 90px); transform: translateY(-50%); }
.page-hero::before { right: calc(clamp(16px, 6vw, 90px) + 24px); transform: translateY(calc(-50% - 24px)); border-color: rgba(201,164,92,.2); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { max-width: 15em; }
.page-hero .lead { color: #CFC8BB; margin-bottom: 0; }

/* Project page */
.pp-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(28px, 4vw, 48px); }
.pp-hero h1 { max-width: 18em; }
.pp-back { display: inline-block; margin-bottom: 1.6rem; text-decoration: none; color: var(--ink-soft); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.pp-back:hover { color: var(--gold-dark); }
.pp-cover-img { aspect-ratio: 16 / 8; overflow: hidden; background: var(--soft); }
.pp-cover-img img { width: 100%; height: 100%; object-fit: cover; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--dark); color: var(--white); position: relative; margin: -48px clamp(16px, 4vw, 56px) 0; border-top: 2px solid var(--gold); }
.facts div { padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.facts div:last-child { border-right: 0; }
.facts dt { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.facts dd { margin: 6px 0 0; font-family: var(--font-head); font-size: 1.25rem; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.story h2 { font-size: 1.9rem; padding-bottom: .6rem; border-bottom: 1px solid var(--gold); display: inline-block; }
.story p { color: var(--ink-soft); font-size: 1.05rem; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gal-item { margin: 0; background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.gal-item:first-child { grid-column: 1 / -1; flex-direction: row; }
.gal-img { aspect-ratio: 4 / 3; background: var(--soft); overflow: hidden; }
.gal-item:first-child .gal-img { flex: 1.6; aspect-ratio: 16 / 10; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; }
.gal-item figcaption { padding: 26px 28px 30px; }
.gal-item:first-child figcaption { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px; }
.gal-num { display: block; font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.5rem; margin-bottom: 8px; }
.gal-item strong { display: block; font-family: var(--font-head); font-weight: 400; font-size: 1.4rem; margin-bottom: 8px; }
.gal-item p { margin: 0; color: var(--ink-soft); }
.pp-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: clamp(48px, 6vw, 72px); }
.pp-nav-link { text-decoration: none; padding: 24px 28px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; transition: border-color .3s, background .3s; }
.pp-nav-link.next { text-align: right; }
.pp-nav-link:hover { border-color: var(--gold); background: var(--white); }
.pp-nav-link small { color: var(--ink-soft); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.pp-nav-link strong { font-family: var(--font-head); font-weight: 400; font-size: 1.35rem; }
.pp-nav + .cta-band { padding-top: clamp(40px, 5vw, 64px); }

/* Services page */
.svc-list { display: grid; gap: clamp(64px, 9vw, 120px); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; scroll-margin-top: 110px; }
.svc-row.reverse .svc-img { order: 2; }
.svc-img { aspect-ratio: 5 / 4; position: relative; }
.svc-img::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid var(--gold); }
.svc-row.reverse .svc-img::before { inset: 20px 20px -20px -20px; }
.svc-img img { position: relative; }
.checks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; }
.checks li::before { content: ""; position: absolute; left: 0; top: .8em; width: 16px; height: 1px; background: var(--gold); }

/* Process steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.steps li { padding: 32px 28px 8px 0; }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps li > span { display: block; font-family: var(--font-head); font-style: italic; font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; }
.steps p { color: var(--ink-soft); font-size: .96rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-visual { aspect-ratio: 4 / 5; position: relative; }
.about-visual::before { content: ""; position: absolute; inset: -20px 20px 20px -20px; border: 1px solid rgba(201,164,92,.6); }
.about-visual img { position: relative; }
.about-text p { color: #CFC8BB; }
.stats { list-style: none; padding: 2rem 0 0; margin: 2.6rem 0 0; display: flex; gap: 44px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); }
.stats li { display: flex; flex-direction: column; }
.stats strong { font-family: var(--font-head); font-weight: 400; font-size: 2.8rem; color: var(--gold); line-height: 1.1; }
.stats span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #9F988C; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.value { padding: 36px 30px 12px 0; }
.value + .value { padding-left: 30px; border-left: 1px solid var(--line); }
.value .service-num { margin-bottom: .8rem; }
.value p { color: var(--ink-soft); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 2.4rem; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--gold-dark); }
.contact-list svg, .social svg, .footer-social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-list svg { color: var(--gold-dark); }
svg .fill { fill: currentColor; stroke: none; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.socials-label { width: 100%; margin: 0 0 .4rem; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); }
.social { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; padding: .7rem 1.2rem; border: 1px solid var(--ink); border-radius: var(--radius); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; transition: .3s; }
.social:hover { background: var(--ink); color: var(--gold); }
.contact-form { background: var(--white); padding: clamp(28px, 4vw, 48px); display: grid; gap: 20px; border-top: 2px solid var(--gold); box-shadow: 0 30px 60px -40px rgba(0,0,0,.35); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span { font-size: .7rem; color: var(--ink-soft); letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.field input, .field select, .field textarea { font: inherit; font-size: 1rem; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .7rem 0; width: 100%; transition: border-color .25s; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-soft); }
.consent input { margin-top: 5px; accent-color: var(--gold-dark); }

/* CTA band */
.cta-band { padding: clamp(56px, 7vw, 90px) 0; }
.cta-inner { background: var(--dark); color: var(--white); padding: clamp(40px, 5vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; outline: 1px solid rgba(201,164,92,.5); outline-offset: -14px; }
.cta-inner h2 { margin-bottom: .3rem; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-inner p { margin: 0; color: #CFC8BB; }

/* Footer */
.site-footer { background: var(--dark); color: #CFC8BB; padding: 56px 0 0; }
.site-footer .logo img { height: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding: 22px var(--gutter); }
.footer-bottom p { margin: 0; font-size: .8rem; color: #8C857A; }

/* Success */
.success { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px var(--gutter); }
.success p { color: var(--ink-soft); max-width: 30em; margin: 0 auto 2rem; }
.success-icon { width: 76px; height: 76px; margin: 0 auto 1.6rem; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; color: var(--gold-dark); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li:nth-child(3) { padding-left: 0; border-left: 0; }
  .values { grid-template-columns: 1fr; }
  .value, .value + .value { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 88px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--bg); padding: 8px var(--gutter) 28px; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .4s var(--ease); z-index: -1; }
  .nav.open { transform: none; }
  .nav a { padding: 15px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { border: 0; margin-top: 14px; text-align: center; padding: 15px !important; }
  .hero-grid, .about-grid, .contact-grid, .svc-row, .story { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3.4; margin-left: 14px; }
  .hero-visual::before { inset: -14px 14px 14px -14px; }
  .hero-badge { left: 16px; bottom: 16px; }
  .about-visual { aspect-ratio: 16 / 11; margin-left: 14px; }
  .about-visual::before { inset: -14px 14px 14px -14px; }
  .svc-row.reverse .svc-img { order: 0; }
  .svc-img { margin-right: 14px; }
  .svc-img::before, .svc-row.reverse .svc-img::before { inset: 14px -14px -14px 14px; }
  .facts { grid-template-columns: 1fr 1fr; margin: -32px 12px 0; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .gallery { grid-template-columns: 1fr; }
  .gal-item:first-child { flex-direction: column; }
  .gal-item:first-child .gal-img { aspect-ratio: 4 / 3; }
  .gal-item:first-child figcaption { padding: 26px 28px 30px; }
  .pp-cover-img { aspect-ratio: 4 / 3; }
  .page-hero::before, .page-hero::after { opacity: .35; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid, .steps, .field-row, .cards { grid-template-columns: 1fr; }
  .steps li, .steps li + li { padding: 26px 0 8px; border-left: 0; border-bottom: 1px solid var(--line); }
  .stats { gap: 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom p { text-align: center; }
  .pp-nav { grid-template-columns: 1fr; }
  .pp-nav-link.next { text-align: left; }
}
