/*
Theme Name: Morals Exclusive
Author: Antigravity
Description: A custom intake form and landing page theme for Morals Exclusive.
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --black: #080808;
  --dark: #111111;
  --card: rgba(255,255,255,0.03);
  --red: #c8102e;
  --red-glow: rgba(200,16,46,0.35);
  --red-dim: rgba(200,16,46,0.12);
  --white: #f5f5f5;
  --grey: #7a7a7a;
  --border: rgba(255,255,255,0.08);
  --border-red: rgba(200,16,46,0.4);
  --font-gothic: 'Bebas Neue', sans-serif;
  --font-block: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);

  /* Intake form specific — Dark mode */
  --form-bg: rgba(8, 8, 8, 0.5);
  --form-card: rgba(255,255,255,0.03);
  --form-text: var(--white);
  --form-label: var(--grey);
  --form-placeholder: #666666;
  --form-border: rgba(255,255,255,0.08);
  --form-input-bg: rgba(255,255,255,0.02);
  --form-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black) url('jean_bg.jpg') center/cover fixed;
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s var(--ease);
}
nav.scrolled { padding: .85rem 4rem; }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-block);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: .5rem 1.4rem;
  border-radius: 4px;
}
.nav-cta:hover { background: #a50d25 !important; box-shadow: 0 0 20px var(--red-glow); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:26px; height:2px; background:var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(0.5);
  opacity: 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Effects */
.hero-slide.effect-fade {
  animation: effectFade 1.5s ease-in-out forwards;
}
@keyframes effectFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-slide.effect-dissolve {
  animation: effectDissolve 1.5s ease-in-out forwards;
}
@keyframes effectDissolve {
  0% { opacity: 0; filter: brightness(0.25) saturate(0.5) blur(10px); }
  100% { opacity: 1; filter: brightness(0.25) saturate(0.5) blur(0px); }
}

.hero-slide.effect-spin {
  animation: effectSpin 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes effectSpin {
  0% { opacity: 0; transform: scale(1.1) rotate(-5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.06) 0%, transparent 55%, rgba(8,8,8,0.96) 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  padding-top: 7rem;
}
.hero-label {
  font-family: var(--font-block);
  font-size: .85rem;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-label::before { content:''; width:40px; height:1px; background:var(--red); }
.hero h1 {
  font-family: var(--font-gothic);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 0 60px rgba(200,16,46,0.3);
  letter-spacing: 2px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow), 0 0 80px var(--red-glow);
}
.hero-sub {
  font-family: var(--font-block);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 4px;
  color: var(--grey);
  margin-bottom: 1rem;
}
.hero-desc { max-width: 520px; color: var(--grey); font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  font-family: var(--font-block);
  letter-spacing: 2px;
  font-size: 1rem;
  padding: .9rem 2.2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: all .3s var(--ease);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a50d25; box-shadow: 0 0 30px var(--red-glow); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

/* Ticker */
.ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--red);
  padding: .6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: ticker 22s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-track span { font-family: var(--font-block); font-size: .85rem; letter-spacing: 3px; }
.ticker-track .dot { color: rgba(255,255,255,0.5); }

/* ── SERVICES ── */
.services {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label { font-family: var(--font-block); font-size:.8rem; letter-spacing:4px; color:var(--red); margin-bottom:1rem; }
.section-title { font-family: var(--font-gothic); font-size: clamp(2rem,4vw,3.5rem); margin-bottom:1rem; letter-spacing: 2px; }
.section-sub { color:var(--grey); font-size:1rem; max-width:500px; line-height:1.8; margin-bottom:4rem; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.5rem; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px; background:var(--red);
  transform:scaleX(0); transition:transform .35s var(--ease);
}
.service-card:hover { border-color:var(--border-red); transform:translateY(-6px); background:rgba(200,16,46,0.05); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon { font-size:2rem; margin-bottom:1.5rem; display:block; }
.service-card h3 { font-family:var(--font-block); font-size:1.4rem; letter-spacing:2px; margin-bottom:.75rem; }
.service-card p { color:var(--grey); font-size:.9rem; line-height:1.7; }
.service-price { display:inline-block; margin-top:1.5rem; font-family:var(--font-block); font-size:.85rem; letter-spacing:2px; color:var(--red); }

/* ── ABOUT & GALLERY ── */
.about-section { padding: 7rem 4rem; max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { font-size: 1.1rem; color: var(--grey); line-height: 1.8; }
.about-image img { width: 100%; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.gallery-section { padding: 7rem 4rem; max-width: 1400px; margin: 0 auto; border-top: 1px solid var(--border); text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin-top: 3rem; }
.gallery-item { height: 350px; background-size: cover; background-position: center; border-radius: 8px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.gallery-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.6); z-index: 2; position: relative; }

/* ── BRAND STRIP ── */
.brand-strip { background: rgba(17, 17, 17, 0.5); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:5rem 4rem; }
.brand-strip-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.brand-quote { font-family:var(--font-gothic); font-size:clamp(1.8rem,3vw,3rem); line-height:1.3; letter-spacing: 2px; }
.brand-quote span { color:var(--red); }
.brand-stats { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.stat { border-left:2px solid var(--red); padding-left:1.5rem; }
.stat-num { font-family:var(--font-block); font-size:2.5rem; letter-spacing:2px; }
.stat p { color:var(--grey); font-size:.85rem; margin-top:.25rem; }

/* ═══════════════════════════════════════════
   INTAKE FORM — Print Society inspired layout
   ═══════════════════════════════════════════ */
.intake-section {
  background: var(--form-bg);
  padding: 0 0 6rem 0;
}

.intake-header {
  background: rgba(8, 8, 8, 0.7);
  padding: 5rem 4rem 4rem;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.intake-header .section-label { color: var(--red); display:block; text-align:center; }
.intake-header h2 {
  font-family: var(--font-gothic);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: .75rem;
  letter-spacing: 2px;
}
.intake-header p { color: var(--grey); font-size: 1rem; }

/* PS-style thin progress line */
.intake-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.intake-progress-fill {
  height: 100%;
  background: var(--red);
  transition: width .5s var(--ease);
  box-shadow: 0 0 8px var(--red-glow);
}

.intake-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Step wrapper */
.ps-step { display: none; }
.ps-step.active { display: block; animation: psSlide .4s var(--ease); }
@keyframes psSlide { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* Step question heading — big bold like PS */
.ps-question {
  padding: 3.5rem 0 2rem;
}
.ps-question h3 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--form-text);
  line-height: 1.15;
  margin-bottom: .6rem;
}
.ps-question p {
  font-size: .95rem;
  color: var(--form-label);
  line-height: 1.6;
}

/* Clean input fields */
.ps-field { margin-bottom: 1.25rem; }
.ps-field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--form-label);
  margin-bottom: .5rem;
}
.ps-field input,
.ps-field textarea,
.ps-field select {
  width: 100%;
  background: var(--form-input-bg);
  border: 1.5px solid var(--form-border);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--form-text);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.ps-field input:focus,
.ps-field textarea:focus,
.ps-field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.ps-field input::placeholder,
.ps-field textarea::placeholder { color: var(--form-placeholder); }
.ps-field textarea { resize: vertical; min-height: 110px; }
.ps-field select option { background: var(--dark); color: var(--white); }

.ps-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Service pick cards — PS 2-col cards */
.ps-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.ps-service-card {
  background: var(--form-card);
  border: 1.5px solid var(--form-border);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.ps-service-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.ps-service-card.active {
  border-color: var(--red);
  background: var(--red-dim);
}
.ps-service-card.active .ps-card-check { opacity: 1; }
.ps-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .5rem;
}
.ps-card-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--form-text);
}
.ps-card-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}
.ps-card-check::after {
  content: '';
  width: 5px; height: 9px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translateY(-1px);
}
.ps-card-desc { font-size: .82rem; color: var(--form-label); line-height: 1.5; }

/* Color swatches */
.ps-colors { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.ps-color-chip {
  display: flex; align-items: center; gap: .4rem;
  border: 1.5px solid var(--form-border);
  border-radius: 6px;
  padding: .4rem .85rem;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  color: var(--form-text);
  background: var(--form-card);
  transition: border-color .2s;
}
.ps-color-chip:hover { border-color: rgba(255,255,255,0.3); }
.ps-color-chip.active { border-color: var(--red); background: var(--red-dim); }
.ps-color-swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }

/* Quantity row */
.ps-quantity-row {
  background: var(--form-card);
  border: 1.5px solid var(--form-border);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.ps-quantity-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--form-label); }
.ps-quantity-num {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--form-text);
}
.ps-qty-btns { display: flex; gap: .5rem; }
.ps-qty-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--form-border);
  border-radius: 6px;
  background: var(--form-card);
  color: var(--form-text);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.ps-qty-btn:hover { border-color: var(--red); color: var(--red); }

/* File upload — PS style */
.ps-file-zone {
  border: 2px dashed var(--form-border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  background: var(--form-card);
  transition: border-color .25s, background .25s;
  margin-bottom: 1rem;
}
.ps-file-zone:hover, .ps-file-zone.drag-over { border-color: var(--red); background: var(--red-dim); }
.ps-file-icon { font-size: 2rem; color: var(--red); margin-bottom: .75rem; }
.ps-file-zone h4 { font-size: 1rem; font-weight: 700; color: var(--form-text); margin-bottom: .3rem; }
.ps-file-zone p { font-size: .85rem; color: var(--form-placeholder); }
.ps-file-types { display:flex; justify-content:center; gap:.4rem; margin-top:.85rem; flex-wrap:wrap; }
.ps-file-type {
  background: rgba(255,255,255,0.08);
  padding: .2rem .65rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--form-text);
  text-transform: uppercase;
}
.ps-file-pills { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:.75rem; }
.ps-file-pill {
  display:flex; align-items:center; gap:.4rem;
  background: var(--form-card);
  border: 1.5px solid var(--form-border);
  border-radius: 6px;
  padding: .35rem .85rem;
  font-size: .85rem;
  color: var(--form-text);
  animation: psSlide .25s var(--ease);
}
.ps-file-pill button { background:none; border:none; cursor:pointer; color:var(--grey); font-size:1rem; line-height:1; padding:0; }
.ps-file-pill button:hover { color: var(--red); }

/* Speed options */
.ps-speed-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:.75rem; margin-bottom:1.25rem; }
.ps-speed-card {
  border: 1.5px solid var(--form-border);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  background: var(--form-card);
  transition: border-color .2s;
}
.ps-speed-card:hover { border-color: rgba(255,255,255,0.3); }
.ps-speed-card.active { border-color: var(--red); background: var(--red-dim); }
.ps-speed-name { font-weight: 700; font-size: .95rem; color: var(--form-text); margin-bottom: .25rem; }
.ps-speed-desc { font-size: .78rem; color: var(--form-label); }

/* Nav buttons — PS style: outlined Back, solid Next */
.ps-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 0;
  margin-top: .5rem;
}
.ps-btn-back {
  display: flex; align-items: center; gap: .5rem;
  background: transparent;
  border: 1.5px solid var(--form-border);
  border-radius: 8px;
  padding: .85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  color: var(--form-text);
  transition: border-color .2s, color .2s;
}
.ps-btn-back:hover { border-color: var(--red); color: var(--red); }

.ps-btn-next {
  display: flex; align-items: center; gap: .5rem;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.ps-btn-next:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }
.ps-btn-next.submit { background: var(--red); color: var(--white); }
.ps-btn-next.submit:hover { background: #a50d25; }

/* Review rows */
.ps-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border: 1.5px solid var(--form-border);
  border-radius: 10px;
  background: var(--form-card);
  margin-bottom: .75rem;
}
.ps-review-key { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--form-label); }
.ps-review-val { font-size: 1rem; font-weight: 600; color: var(--form-text); }
.ps-review-edit {
  font-size: .82rem;
  font-weight: 600;
  text-decoration: underline;
  color: var(--form-label);
  background: none;
  border: none;
  cursor: pointer;
}
.ps-review-edit:hover { color: var(--red); }

/* Success */
#ps-success {
  display: none;
  text-align: center;
  padding: 5rem 2rem;
}
.ps-success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: white;
  animation: popIn .5s var(--ease);
}
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
#ps-success h2 { font-size: 2rem; font-weight: 900; color: var(--form-text); margin-bottom: .75rem; }
#ps-success p { color: var(--form-label); max-width: 400px; margin: 0 auto 2rem; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: rgba(17, 17, 17, 0.85); border-top: 1px solid var(--border); padding: 5rem 4rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; margin-bottom:4rem; }
.footer-brand .logo { height: 48px; margin-bottom: 1.5rem; display: block; width: auto; }
.footer-brand p { color:var(--grey); font-size:.9rem; line-height:1.8; max-width:280px; }
.footer-col h4 { font-family:var(--font-block); font-size:.8rem; letter-spacing:3px; color:var(--red); margin-bottom:1.25rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.75rem; }
.footer-col ul a { color:var(--grey); text-decoration:none; font-size:.9rem; transition:color .2s; }
.footer-col ul a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:2rem; border-top:1px solid var(--border); color:var(--grey); font-size:.8rem; }

/* ── DYNAMIC CONFIG BLOCKS ── */
.ps-service-config-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  animation: psSlide .4s var(--ease);
}
.ps-service-config-block h4 {
  font-family: var(--font-gothic);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width:900px) {
  nav { padding:1rem 2rem; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero-content, .services, footer { padding-left:1.5rem; padding-right:1.5rem; }
  .brand-strip { padding:3rem 1.5rem; }
  .brand-strip-inner { grid-template-columns:1fr; gap:2.5rem; }
  .intake-header { padding:3.5rem 1.5rem 3rem; }
  .intake-body { padding:0 1.5rem; }
  .ps-service-grid { grid-template-columns:1fr 1fr; }
  .ps-speed-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
}
@media (max-width:560px) {
  .hero h1 { font-size:3rem; }
  .services-grid { grid-template-columns:1fr; }
  .ps-service-grid { grid-template-columns:1fr; }
  .ps-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .ps-form-nav { flex-direction:column-reverse; gap:.75rem; }
  .ps-btn-back, .ps-btn-next { width:100%; justify-content:center; }
}
