/*
Theme Name: Motionara
Theme URI: https://motionara.in
Author: Motionara
Author URI: https://motionara.in
Description: Official website theme for Motionara — Artist-Led Execution Partners. Award-winning short films, documentaries, theatre documentation, podcasts and research-driven media from Kerala, India.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: motionara
Tags: dark, cinematic, creative, portfolio, arts
*/

/* ── RESET & BASE ── */
:root {
  --ink: #0e0c0a;
  --paper: #f5f0e8;
  --amber: #c8882a;
  --ash: #2a2520;
  --dust: #8a7d6e;
  --light-dust: #c4b89e;
  --cinema: #1a1510;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cinema);
  color: var(--paper);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(14,12,10,0.95), transparent);
  backdrop-filter: blur(2px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.08em;
  color: var(--paper); text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light-dust); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: var(--amber);
  padding: 0.6rem 1.4rem; text-decoration: none; transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--paper); }

/* ── HAMBURGER (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--paper); display: block; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 3rem 6rem; overflow: hidden; position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,136,42,0.09), transparent 70%),
    radial-gradient(ellipse 50% 80% at 15% 75%, rgba(217,79,43,0.07), transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45; pointer-events: none;
}
.hero-bigword {
  position: absolute; right: 1rem; top: 50%;
  font-family: 'Bebas Neue', sans-serif; font-size: 22rem;
  color: rgba(200,136,42,0.03); line-height: 1;
  pointer-events: none; transform: translateY(-50%);
}
.hero-line {
  position: absolute; bottom: 0; left: 3rem;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--amber));
  opacity: 0; animation: growDown 1s 1.6s forwards;
}
.hero-scroll {
  position: absolute; right: 3rem; bottom: 6rem;
  writing-mode: vertical-rl;
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; color: var(--dust); text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem); line-height: 0.92;
  letter-spacing: 0.02em; max-width: 980px;
  opacity: 0; animation: fadeUp 1.1s 0.5s forwards;
}
.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300; color: var(--amber);
}
.hero-sub {
  margin-top: 2rem; font-size: 1.25rem; font-weight: 300;
  color: var(--light-dust); max-width: 620px; line-height: 1.65;
  opacity: 0; animation: fadeUp 1.1s 0.8s forwards;
}
.hero-pills {
  margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.1s 0.95s forwards;
}
.pill {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); border: 1px solid rgba(200,136,42,0.35);
  padding: 0.35rem 0.9rem;
}
.hero-btns {
  margin-top: 2.5rem; display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; animation: fadeUp 1.1s 1.1s forwards;
}
.btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: var(--amber);
  padding: 1rem 2.4rem; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn-o {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light-dust); text-decoration: none;
  border-bottom: 1px solid rgba(200,136,42,0.3); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-o:hover { color: var(--amber); border-color: var(--amber); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.55; } }
@keyframes growDown { from { height: 0; } to { height: 80px; } }

/* ── TICKER ── */
.ticker { background: var(--amber); padding: 1.2rem 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: scrollX 32s linear infinite;
}
.ti {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  letter-spacing: 0.15em; color: var(--ink);
  display: flex; align-items: center; gap: 1.5rem;
}
.td { width: 5px; height: 5px; background: var(--ink); border-radius: 50%; flex-shrink: 0; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SHARED LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }
.label {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem;
}
.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; letter-spacing: 0.03em;
}
.h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300; color: var(--amber);
}

/* ── ABOUT ── */
.about { padding: 8rem 0; background: var(--ash); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.big-q {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300;
  font-style: italic; line-height: 1.45; color: var(--paper);
  border-left: 3px solid var(--amber); padding-left: 2rem; margin: 2rem 0;
}
.about-r p { color: var(--light-dust); margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.78; }
.about-r p.lead { color: var(--paper); font-size: 1.15rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(200,136,42,0.15); }
.sn { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--amber); line-height: 1; }
.sd { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dust); margin-top: 0.3rem; }

/* ── WHAT WE MAKE ── */
.what { padding: 8rem 0; background: var(--cinema); }
.what-intro { max-width: 620px; font-size: 1.1rem; color: var(--light-dust); line-height: 1.75; margin-top: 1.5rem; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.wcard {
  background: var(--ash); padding: 3.5rem 2.8rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.wcard:hover { background: #2e2820; }
.wcard.gold { background: var(--amber); }
.wcard.gold .wicon, .wcard.gold h3, .wcard.gold p { color: var(--ink); }
.wcard.gold .waward { color: var(--ash); }
.wcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.wcard.gold::before { display: none; }
.wcard:hover::before { transform: scaleX(1); }
.wicon { font-size: 1.6rem; color: var(--amber); display: block; margin-bottom: 1.5rem; }
.wcard h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em; color: var(--paper); margin-bottom: 1rem; }
.wcard p { font-size: 0.95rem; color: var(--dust); line-height: 1.72; }
.waward { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-top: 1.2rem; display: block; }

/* ── SERVICES ── */
.services { padding: 8rem 0; background: var(--ash); }
.srv-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-bottom: 5rem; align-items: end; }
.srv-intro p { font-size: 1.1rem; color: var(--light-dust); line-height: 1.75; }
.srow {
  display: grid; grid-template-columns: 3rem 1fr auto;
  gap: 2rem; align-items: start; padding: 2.5rem 0;
  border-bottom: 1px solid rgba(200,136,42,0.12);
  cursor: pointer; transition: all 0.2s;
}
.srow:first-child { border-top: 1px solid rgba(200,136,42,0.12); }
.srow:hover .st { color: var(--amber); }
.sno { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--dust); margin-top: 0.3rem; }
.st { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.04em; transition: color 0.2s; }
.sd2 { font-size: 0.95rem; color: var(--dust); line-height: 1.65; margin-top: 0.5rem; max-width: 560px; }
.sarr { font-size: 1.5rem; color: var(--amber); opacity: 0; transition: opacity 0.2s; margin-top: 0.2rem; }
.srow:hover .sarr { opacity: 1; }

/* ── WHY US ── */
.why { padding: 8rem 0; background: var(--cinema); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 5rem; }
.wc { background: var(--ash); padding: 3.5rem 3rem; }
.wc.gold { background: var(--amber); }
.wc.gold h3, .wc.gold p, .wc.gold .wi { color: var(--ink); }
.wi { font-size: 1.8rem; margin-bottom: 1.5rem; display: block; color: var(--amber); }
.wc h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.04em; margin-bottom: 1rem; }
.wc p { font-size: 0.95rem; color: var(--dust); line-height: 1.72; }
.wc-wide { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pullquote {
  border-left: 3px solid var(--amber); padding-left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-style: italic; line-height: 1.5; color: var(--paper);
}
.pullquote cite {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-top: 1.5rem; display: block; font-style: normal;
}

/* ── WORK ── */
.work { padding: 8rem 0; background: var(--ash); }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.pcard {
  background: var(--cinema); aspect-ratio: 3/4;
  position: relative; overflow: hidden; cursor: pointer;
}
.pcard.wide { grid-column: 1/3; aspect-ratio: auto; min-height: 420px; }
.pbg { position: absolute; inset: 0; transition: transform 0.65s ease; }
.pcard:hover .pbg { transform: scale(1.04); }
.pb1 { background: linear-gradient(135deg, #1a1510, #2d1f0e 50%, #3d2a0f); }
.pb2 { background: linear-gradient(135deg, #0e1510, #1a2d1e); }
.pb3 { background: linear-gradient(135deg, #150e10, #2d0e1a); }
.pb4 { background: linear-gradient(135deg, #0e1015, #0e1a2d); }
.pcard::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}
.pinfo {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(14,12,10,0.92), transparent 60%);
}
.ptag {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.8rem;
}
.ptitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; font-weight: 300; line-height: 1.3;
}
.pdesc { font-size: 0.85rem; color: var(--light-dust); margin-top: 0.5rem; line-height: 1.55; }
.paw {
  display: inline-block; margin-top: 0.8rem;
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--amber); color: var(--ink); padding: 0.25rem 0.7rem;
}
.psplit { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }
.psplit-vis {
  border-right: 1px solid rgba(200,136,42,0.15);
  display: flex; align-items: center; justify-content: center;
}
.psplit-bg {
  font-family: 'Bebas Neue', sans-serif; font-size: 8rem;
  color: rgba(200,136,42,0.06); text-align: center; line-height: 1;
}
.pcard-plain {
  background: var(--ash); display: flex; align-items: center;
  justify-content: center; flex-direction: column;
  gap: 1rem; padding: 3rem; text-align: center;
}
.pcard-plain .ptag2 {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dust);
}
.pcard-plain .ptitle2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-style: italic; color: var(--paper); line-height: 1.4;
}
.pcard-plain .pdesc2 { font-size: 0.88rem; color: var(--dust); line-height: 1.55; }

/* ── PROCESS ── */
.process { padding: 8rem 0; background: var(--cinema); }
.process-sub { margin-top: 1.5rem; max-width: 560px; color: var(--light-dust); font-size: 1.05rem; line-height: 1.75; }
.psteps { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 5rem; position: relative; }
.psteps::before {
  content: ''; position: absolute;
  top: 2rem; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
}
.pstep { padding: 0 1rem; text-align: center; }
.pnum {
  width: 4rem; height: 4rem; border: 1px solid var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--amber);
  background: var(--cinema); position: relative; z-index: 1;
}
.ptit { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.pde { font-size: 0.82rem; color: var(--dust); line-height: 1.6; }

/* ── ACCESSIBILITY ── */
.a11y { padding: 8rem 0; background: var(--ash); }
.a11y-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 520px; }
.a11y-txt { background: var(--amber); padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.a11y-txt .label { color: var(--ink); }
.a11y-txt .h2 { color: var(--ink); }
.a11y-txt p { color: var(--ash); margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.78; }
.a11y-list { background: var(--cinema); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.aitem {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.8rem 0; border-bottom: 1px solid rgba(200,136,42,0.1);
}
.aitem:first-child { border-top: 1px solid rgba(200,136,42,0.1); }
.aicon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(200,136,42,0.08); border: 1px solid rgba(200,136,42,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.atit { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; }
.adesc { font-size: 0.92rem; color: var(--dust); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi { padding: 8rem 0; background: var(--cinema); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.tcard { background: var(--ash); padding: 3rem 2.5rem; }
.tq { font-size: 1.05rem; font-style: italic; color: var(--paper); line-height: 1.72; margin-bottom: 2rem; }
.tq::before {
  content: '\201C'; font-size: 3rem; color: var(--amber);
  line-height: 0; vertical-align: -1rem; margin-right: 0.15rem; font-family: Georgia, serif;
}
.ta { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); }
.tr { font-size: 0.85rem; color: var(--dust); margin-top: 0.3rem; }

/* ── CTA ── */
.cta { padding: 10rem 0; background: var(--ash); text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: 'CO-CREATE'; position: absolute;
  font-family: 'Bebas Neue', sans-serif; font-size: 20rem;
  color: rgba(200,136,42,0.03); left: 50%; top: 50%;
  transform: translate(-50%, -50%); white-space: nowrap; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta .h2 { font-size: clamp(3rem, 7vw, 6rem); }
.cta p { font-size: 1.2rem; color: var(--light-dust); max-width: 560px; margin: 2rem auto; font-style: italic; }
.cta-btns { display: flex; gap: 2rem; justify-content: center; margin-top: 3rem; align-items: center; }
.cta-mail {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--dust); border-bottom: 1px solid rgba(200,136,42,0.2);
  padding-bottom: 2px; text-decoration: none; transition: color 0.2s;
}
.cta-mail:hover { color: var(--amber); }
.cta-note {
  margin-top: 3rem; font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.1em; color: var(--dust); text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer { background: var(--ink); padding: 4rem 3rem 2rem; }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.fbrand p { font-size: 0.9rem; color: var(--dust); line-height: 1.65; max-width: 300px; margin-top: 1rem; }
.fbrand .fmeta { margin-top: 1rem; font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--dust); }
.fcol h4 {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.5rem;
}
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 0.8rem; }
.fcol ul a { font-size: 0.9rem; color: var(--dust); text-decoration: none; transition: color 0.2s; }
.fcol ul a:hover { color: var(--paper); }
.fbot {
  border-top: 1px solid rgba(200,136,42,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.fbot p { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--dust); }
.ftagline { font-style: italic; color: var(--amber); font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; }

/* ── WORDPRESS PAGE CONTENT ── */
.page-content { padding: 10rem 0 6rem; }
.page-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; margin-bottom: 2rem; }
.page-content p { color: var(--light-dust); font-size: 1.05rem; line-height: 1.78; margin-bottom: 1.5rem; max-width: 720px; }
.page-content a { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav.site-nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14,12,10,0.98); padding: 2rem 1.5rem;
  }
  .hero { padding: 0 1.5rem 5rem; }
  .hero-bigword { font-size: 10rem; }
  .hero-scroll { display: none; }
  .container { padding: 0 1.5rem; }
  .about-grid, .srv-intro, .a11y-inner { grid-template-columns: 1fr; gap: 3rem; }
  .a11y-txt { padding: 4rem 2rem; }
  .a11y-list { padding: 4rem 2rem; }
  .what-grid, .tgrid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .wc-wide { grid-column: auto; grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr; }
  .pcard.wide { grid-column: auto; }
  .psplit { grid-template-columns: 1fr; }
  .psplit-vis { display: none; }
  .psteps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .psteps::before { display: none; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fbot { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-btns { flex-direction: column; }
  .cta::before { font-size: 8rem; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 3.5rem; }
  .fgrid { grid-template-columns: 1fr; }
  .psteps { grid-template-columns: 1fr; }
  .hero-pills { flex-direction: column; align-items: flex-start; }
}
