/* ─────────────────────────────────────────
   RYŌMA MEDIA — TOKENS
───────────────────────────────────────── */
:root {
  --gold:       #B8960C;
  --gold-lt:    #D4AC0D;
  --gold-dk:    #8B6914;
  --gold-bg:    #FBF7EE;
  --white:      #FFFFFF;
  --off-white:  #FAFAF9;
  --ink:        #0D0D0D;
  --charcoal:   #1A1A1A;
  --stone:      #4A4A4A;
  --mist:       #888888;
  --silk:       #DEDBD5;
  --rule:       #E8E4DC;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--rule);
  box-shadow: 0 1px 0 var(--rule);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo img { height: 40px; width: auto; }

.nav-center {
  display: flex; align-items: center;
  list-style: none; gap: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0 18px; height: 68px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-item.active .nav-link { color: var(--gold); }

.nav-link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg,
.nav-item.menu-open .nav-link svg { transform: rotate(180deg); }

/* MEGA MENU */
.mega-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 24px 48px rgba(0,0,0,0.07);
  padding: 48px 56px;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  z-index: 999;
}
.mega-menu.open { display: grid; }

.mega-col {
  padding: 0 36px 0 0;
  border-right: 1px solid var(--rule);
}
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-col:not(:first-child) { padding-left: 36px; }

.mega-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}

.mega-link {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.15s;
}
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { padding-left: 5px; }

.mega-link-title {
  font-size: 13px; font-weight: 500;
  color: var(--charcoal); margin-bottom: 2px;
  transition: color 0.15s;
}
.mega-link:hover .mega-link-title { color: var(--gold); }

.mega-link-sub {
  font-size: 11px; font-weight: 300;
  color: var(--mist); line-height: 1.5;
}

.nav-cta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: 11px 24px; border-radius: 1px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all 0.3s;
}

/* ─────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  z-index: 998; overflow-y: auto;
  padding: 32px 28px;
}
.mobile-nav.open { display: block; }
.mob-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin: 28px 0 10px; display: block;
}
.mob-link {
  display: block; padding: 13px 0;
  font-size: 15px; font-weight: 300; color: var(--charcoal);
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s, padding-left 0.15s;
}
.mob-link:hover { color: var(--gold); padding-left: 6px; }
.mob-cta {
  display: block; margin-top: 32px; text-align: center;
  background: var(--ink); color: var(--white);
  padding: 15px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.mob-cta:hover { background: var(--gold); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 56px 80px;
  position: relative;
  overflow: hidden;
  gap: 80px;
  background: var(--white);
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; display: block;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

h1 {
  font-family: var(--serif);
  font-size: 88px; font-weight: 300; line-height: 0.95;
  letter-spacing: -2px; color: var(--ink);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
h1 em { font-style: italic; color: var(--gold); }

.hero-rule {
  width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.6s var(--ease) 0.8s forwards;
}

.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--stone);
  line-height: 1.8; max-width: 420px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s var(--ease) 0.9s forwards;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s var(--ease) 1.1s forwards;
}

.btn-ink {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  background: var(--ink); padding: 14px 30px; border-radius: 1px;
  transition: background 0.2s;
}
.btn-ink:hover { background: var(--gold); }

.btn-outline-dark {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--ink); padding: 14px 30px; border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-logo-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,12,0.15);
}
.hero-logo-ring:nth-child(2) {
  width: 440px; height: 440px;
  border-color: rgba(184,150,12,0.08);
}

.hero-logo-img {
  width: 260px; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(184,150,12,0.15));
}

.hero-bg-text {
  position: absolute; bottom: 60px; right: 56px;
  font-family: var(--serif); font-size: 180px; font-weight: 300;
  color: rgba(0,0,0,0.03); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -8px;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   FOUNDER BAND
───────────────────────────────────────── */
.founder-band {
  background: var(--gold-bg);
  border-top: 1px solid rgba(184,150,12,0.2);
  border-bottom: 1px solid rgba(184,150,12,0.2);
  padding: 32px 56px;
  display: flex; align-items: center; gap: 20px;
}
.founder-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--gold);
}
.founder-text {
  font-size: 14px; font-weight: 300; color: var(--stone);
  line-height: 1.7; max-width: 720px;
}
.founder-text strong { font-weight: 500; color: var(--ink); }

/* ─────────────────────────────────────────
   INSIGHT BAND
───────────────────────────────────────── */
.insight-band {
  background: var(--ink);
  padding: 88px 56px;
}
.insight-inner { max-width: 1100px; margin: 0 auto; }
.insight-quote {
  font-family: var(--serif);
  font-size: 44px; font-weight: 300; font-style: italic;
  line-height: 1.18; color: #F5F0E8; margin-bottom: 24px;
}
.insight-quote .gold { color: var(--gold-lt); }
.insight-body {
  font-size: 15px; font-weight: 300; color: #666;
  line-height: 1.85; max-width: 580px;
}
.insight-body strong { color: #aaa; font-weight: 400; }

/* ─────────────────────────────────────────
   SECTION
───────────────────────────────────────── */
.section {
  padding: 104px 56px;
  max-width: 1200px; margin: 0 auto;
}
.sec-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.sec-title {
  font-family: var(--serif); font-size: 54px; font-weight: 300;
  line-height: 1.05; letter-spacing: -0.5px; color: var(--ink);
  margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-sub {
  font-size: 15px; font-weight: 300; color: var(--stone);
  line-height: 1.8; max-width: 500px; margin-bottom: 0;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.svc-section-header {
  padding: 104px 56px 0;
  max-width: 1200px; margin: 0 auto;
}

.svc-wrap { padding: 48px 56px 104px; }
.svc-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
.svc-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: var(--gold-bg); }
.svc-card:nth-child(3n) { border-right: none; }
.svc-card:nth-child(n+4) { border-bottom: none; }

.svc-num {
  font-family: var(--serif); font-size: 44px; font-weight: 300;
  color: rgba(184,150,12,0.15); display: block;
  margin-bottom: 18px; line-height: 1;
  transition: color 0.25s;
}
.svc-card:hover .svc-num { color: rgba(184,150,12,0.3); }

.svc-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 10px;
}
.svc-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  line-height: 1.1; color: var(--ink); margin-bottom: 12px;
}
.svc-title em { font-style: italic; }
.svc-body {
  font-size: 13px; font-weight: 300; color: var(--stone);
  line-height: 1.75; margin-bottom: 18px;
}
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pill {
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--rule); color: var(--mist);
  padding: 4px 10px; border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.svc-card:hover .pill { border-color: rgba(184,150,12,0.3); color: var(--gold-dk); }

.spec-row {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); border-top: none;
}
.spec-chip {
  padding: 24px 28px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
}
.spec-chip:last-child { border-right: none; }
.spec-chip:hover { background: var(--gold-bg); }
.spec-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.spec-desc { font-size: 12px; font-weight: 300; color: var(--mist); line-height: 1.6; }

/* ─────────────────────────────────────────
   CLIENTS
───────────────────────────────────────── */
.clients-band { background: var(--off-white); padding: 104px 56px; }
.clients-grid {
  max-width: 1200px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule);
}
.client-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
}
.client-card:hover { background: var(--white); }
.client-card:nth-child(3n) { border-right: none; }
.client-name { font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.client-type {
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; display: block;
}
.client-work { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ─────────────────────────────────────────
   WHY STUDIO
───────────────────────────────────────── */
.why-band { padding: 104px 56px; }
.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 96px; align-items: start;
}
.why-left { position: sticky; top: 96px; }
.why-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.why-h {
  font-family: var(--serif); font-size: 50px; font-weight: 300;
  line-height: 1.05; color: var(--ink);
}
.why-h em { font-style: italic; color: var(--gold); }
.why-points { display: flex; flex-direction: column; }
.why-point {
  padding: 28px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left 0.2s;
}
.why-point:first-child { border-top: 1px solid var(--rule); }
.why-point:hover { padding-left: 8px; }
.why-pt { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 9px; }
.why-pb { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.8; }

/* ─────────────────────────────────────────
   DELIVERABLES
───────────────────────────────────────── */
.del-band { background: var(--off-white); padding: 104px 56px; }
.del-grid {
  max-width: 1200px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule);
}
.del-card {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
}
.del-card:last-child { border-right: none; }
.del-card:hover { background: var(--white); }
.del-num {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: rgba(184,150,12,0.2); display: block; margin-bottom: 18px; line-height: 1;
}
.del-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 9px; }
.del-body { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ─────────────────────────────────────────
   PULLQUOTE
───────────────────────────────────────── */
.pullquote {
  padding: 112px 56px; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.pq-mark {
  font-family: var(--serif); font-size: 80px; font-weight: 300;
  color: rgba(184,150,12,0.2); line-height: 0.6;
  display: block; margin-bottom: 28px;
}
.pq-text {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  font-style: italic; line-height: 1.25; color: var(--ink); margin-bottom: 24px;
}
.pq-attr {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mist);
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  background: var(--ink); padding: 112px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%,
    rgba(184,150,12,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-h {
  font-family: var(--serif); font-size: 68px; font-weight: 300;
  line-height: 1.0; color: #F5F0E8; margin-bottom: 18px;
}
.cta-h em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  font-size: 15px; font-weight: 300; color: #666;
  margin-bottom: 48px; line-height: 1.8;
}
.btn-gold-solid {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  background: var(--gold-lt); padding: 15px 32px; border-radius: 1px;
  transition: background 0.2s; display: inline-block;
}
.btn-gold-solid:hover { background: #E8C20E; }
.btn-outline-light {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #F5F0E8;
  border: 1px solid rgba(245,240,232,0.3); padding: 15px 32px; border-radius: 1px;
  transition: border-color 0.2s; display: inline-block;
}
.btn-outline-light:hover { border-color: rgba(245,240,232,0.7); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 72px 56px 44px;
}
.footer-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 56px;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-tagline {
  font-size: 13px; font-weight: 300; color: var(--stone);
  line-height: 1.7; max-width: 200px;
}
.footer-col-label {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; display: block;
}
.footer-link {
  display: block; padding: 7px 0;
  font-size: 13px; font-weight: 300; color: var(--stone);
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s, padding-left 0.15s;
}
.footer-link:last-child { border-bottom: none; }
.footer-link:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--rule);
  flex-wrap: wrap; gap: 20px;
}
.footer-copy {
  font-size: 11px; font-weight: 300; color: var(--mist); letter-spacing: 0.04em;
}

/* SOCIAL */
.social-row { display: flex; align-items: center; gap: 6px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--rule); border-radius: 1px; color: var(--mist);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-bg);
}
.social-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  #nav, .founder-band, .insight-band,
  .svc-section-header, .svc-wrap, .clients-band,
  .why-band, .del-band, .pullquote, .cta-band, footer { padding-left: 36px; padding-right: 36px; }
  #hero { padding: 100px 36px 60px; gap: 48px; }
  h1 { font-size: 68px; }
  .hero-logo-img { width: 200px; }
  .hero-logo-ring { width: 300px; height: 300px; }
  .hero-logo-ring:nth-child(2) { width: 360px; height: 360px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .svc-card:nth-child(2n) { border-right: none; }
  .del-grid { grid-template-columns: 1fr 1fr; }
  .del-card:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-inner { gap: 56px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 24px; }
  .nav-center, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding: 100px 24px 64px; gap: 48px; min-height: auto; }
  h1 { font-size: 52px; }
  .hero-right { order: -1; }
  .hero-logo-img { width: 160px; }
  .hero-logo-ring { width: 220px; height: 220px; }
  .hero-logo-ring:nth-child(2) { width: 270px; height: 270px; }
  .hero-bg-text { display: none; }
  .founder-band { padding: 28px 24px; }
  .insight-band { padding: 64px 24px; }
  .insight-quote { font-size: 28px; }
  .svc-section-header, .svc-wrap, .clients-band,
  .why-band, .del-band, .pullquote, .cta-band, footer { padding-left: 24px; padding-right: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .client-card { border-right: none !important; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-left { position: static; }
  .why-h { font-size: 38px; }
  .del-grid { grid-template-columns: 1fr; }
  .del-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .del-card:last-child { border-bottom: none; }
  .sec-title { font-size: 38px; }
  .cta-h { font-size: 44px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pq-text { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
