/* ============================================================
   리틀스텝 – 유치원·어린이집 전문 미디어 서비스
   Design System & Full Stylesheet
   ============================================================ */

/* ── 0. CSS Variables ── */
:root {
  --ink-900: #1f2f46;
  --ink-700: #3f5069;
  --ink-500: #627086;
  --surface: #f7f6f1;
  --paper: #fffdf7;
  --card: #ffffff;
  --brand: #e04233;
  --brand-deep: #c73325;
  --brand-soft: #ffe6de;
  --line: #dfe4ea;
  --shadow-sm: 0 10px 26px rgba(31, 47, 70, 0.08);
  --shadow-md: 0 18px 48px rgba(31, 47, 70, 0.12);
  --shadow-lg: 0 24px 64px rgba(31, 47, 70, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1240px;
}

/* ── 1. Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: "Noto Sans KR", sans-serif;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.25;
  word-break: keep-all;
}

h1 { font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 600; }

/* ── 2. Layout Utilities ── */
.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── 3. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.btn-pill {
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 8px 24px rgba(224, 66, 51, 0.28);
}

.btn-pill:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 66, 51, 0.35);
}

.btn-pill:active {
  transform: translateY(0);
}

.btn-outline {
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-700);
  padding: 12px 28px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-2px);
}


/* ============================================================
   4. HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(31, 47, 70, 0.07);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(31, 47, 70, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.logo {
  font-family: "Noto Sans KR", sans-serif;
  color: var(--ink-900);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  padding: 4px 0;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--ink-900);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(31, 47, 70, 0.06);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  border-radius: var(--radius-pill);
  background: var(--ink-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  padding: 0 24px 24px;
  background: var(--paper);
  border-top: 1px solid rgba(31, 47, 70, 0.06);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideDown 0.3s ease;
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(31, 47, 70, 0.05);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--brand);
  padding-left: 8px;
}

.mobile-nav .btn-pill {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  max-height: 90vh;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(31, 47, 70, 0.82) 0%,
    rgba(31, 47, 70, 0.50) 40%,
    rgba(31, 47, 70, 0.18) 70%,
    rgba(31, 47, 70, 0.30) 100%
  );
  pointer-events: none;
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 6vw, 80px) clamp(24px, 5vw, 80px);
  gap: 20px;
}

.hero-content h1 {
  color: #fff;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 560px;
}

.hero-cta {
  margin-top: 8px;
  padding: 16px 34px;
  font-size: 1rem;
}

/* Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-indicators .hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-indicators .hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}


/* ============================================================
   6. ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 47, 70, 0.78) 0%,
    rgba(31, 47, 70, 0.72) 100%
  );
}

.about-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-inner .eyebrow {
  color: var(--brand-soft);
}

.about-inner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.about-desc {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.stat-card h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.stat-card h3 .counter {
  color: var(--brand-soft);
}

.stat-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ============================================================
   7. SERVICES
   ============================================================ */
.services {
  background: var(--paper);
}

.services .container > .eyebrow,
.services .container > h2 {
  text-align: center;
}

.services .container > h2 {
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-img-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-info {
  padding: 24px;
}

.service-info h3 {
  margin-bottom: 8px;
  color: var(--ink-900);
}

.service-info p {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.7;
}


/* ============================================================
   8. WORKS / PORTFOLIO
   ============================================================ */
.works {
  background: var(--surface);
}

.works .container > .eyebrow,
.works .container > h2 {
  text-align: center;
}

.works .container > h2 {
  margin-bottom: 32px;
}

/* Filter Tabs */
.works-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-500);
  background: var(--card);
  border: 1.5px solid var(--line);
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.filter-btn.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(224, 66, 51, 0.25);
}

/* Works Grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-item.hide {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.work-item.show {
  opacity: 1;
  transform: scale(1);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover img {
  transform: scale(1.08);
}

/* More Button */
.works-more-wrap {
  text-align: center;
  margin-top: 36px;
}

.works-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* ============================================================
   9. BLOG
   ============================================================ */
.blog {
  background: var(--paper);
}

.blog .container > .eyebrow,
.blog .container > h2 {
  text-align: center;
}

.blog .container > h2 {
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.08);
}

.blog-info {
  padding: 22px 24px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-info h3 {
  margin-bottom: 10px;
  color: var(--ink-900);
  line-height: 1.4;
}

.blog-info time {
  font-size: 0.84rem;
  color: var(--ink-500);
}


/* ============================================================
   10. CLIENTS
   ============================================================ */
.clients {
  background: var(--surface);
  text-align: center;
}

.clients h2 {
  margin-bottom: 12px;
}

.clients-sub {
  color: var(--ink-500);
  font-size: 1.02rem;
  margin-bottom: 48px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-item {
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.client-item img {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}


/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 47, 70, 0.80) 0%,
    rgba(31, 47, 70, 0.74) 100%
  );
}

.testimonials-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonials-inner h2 {
  color: #fff;
  margin-bottom: 48px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: var(--card);
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease;
}

.quote-card:hover {
  transform: translateY(-6px);
}

.stars {
  color: #f5b731;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.quote-text {
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.quote-author strong {
  color: var(--ink-900);
  font-size: 0.95rem;
}

.quote-author span {
  color: var(--ink-500);
  font-size: 0.84rem;
}


/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  margin-top: 0;
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 233, 221, 0.6) 0%, rgba(255, 233, 221, 0) 30%),
    #f5f3eb;
  border-top: 1px solid rgba(31, 47, 70, 0.07);
}

/* Footer CTA */
.footer-cta {
  padding: 72px 0;
  border-bottom: 1px solid rgba(31, 47, 70, 0.08);
  background: linear-gradient(
    135deg,
    var(--brand) 0%,
    var(--brand-deep) 100%
  );
}

.footer-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-wrap h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.footer-cta-wrap .btn-pill {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.footer-cta-wrap .btn-pill:hover {
  background: var(--paper);
  color: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Footer Grid */
.footer-grid {
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-grid .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--ink-900);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-500);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--brand);
}

/* Socials */
.socials {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  display: inline-block;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(31, 47, 70, 0.18);
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--ink-500);
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(31, 47, 70, 0.08);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: var(--ink-500);
}


/* ============================================================
   13. ANIMATIONS & UTILITIES
   ============================================================ */

/* Scroll Reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation placeholder */
.counter {
  display: inline;
}


/* ============================================================
   14. RESPONSIVE – 1040px
   ============================================================ */
@media (max-width: 1040px) {
  /* Header */
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  /* Section padding */
  .section-pad {
    padding: 72px 0;
  }

  /* Hero */
  .hero-slider {
    aspect-ratio: 16 / 11;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
  }

  /* Services */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Works */
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Clients */
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials */
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}


/* ============================================================
   15. RESPONSIVE – 760px
   ============================================================ */
@media (max-width: 760px) {
  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Hero */
  .hero-slider {
    aspect-ratio: 9 / 14;
    min-height: 360px;
    max-height: 80vh;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-cta {
    padding: 13px 26px;
    font-size: 0.92rem;
  }

  .hero-indicators {
    bottom: 18px;
  }

  /* About */
  .about-bg {
    background-attachment: scroll;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .service-img-wrap {
    aspect-ratio: 16 / 10;
  }

  /* Works */
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .works-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Clients */
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-item {
    padding: 14px;
  }

  /* Testimonials */
  .testimonials-bg {
    background-attachment: scroll;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .quote-card {
    padding: 24px 20px;
  }

  /* Footer */
  .footer-cta {
    padding: 48px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px;
  }
}


/* ============================================================
   16. SKIP NAVIGATION & FOCUS
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
}

.hero-dot:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}


/* ============================================================
   17. PRINT
   ============================================================ */
@media print {
  .site-header,
  .hero-indicators,
  .works-filters,
  .works-more-wrap,
  .mobile-nav,
  .menu-toggle,
  .footer-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .about-bg,
  .about-overlay,
  .testimonials-bg,
  .testimonials-overlay,
  .hero-overlay {
    display: none !important;
  }
}
