/* ============================================
   LAPDOLLS RAGDOLL CATTERY — Steel Blue
   ============================================ */

/* Fonts loaded via <link> in HTML for better performance */

:root {
  /* Brand Colors — steel blue palette (matches original Wix) */
  --amber-50: #F0F4F8;
  --amber-100: #D9E2EC;
  --amber-200: #BCCCDC;
  --amber-300: #9FB3C8;
  --amber-400: #6B8BAD;
  --amber-500: #547898;
  --amber-600: #486581;
  --amber-700: #334E68;
  --amber-800: #243B53;
  --amber-900: #102A43;

  /* Neutrals — cool-toned whites and grays */
  --cream: #FFFFFF;
  --warm-white: #F9FAFB;
  --stone-50: #F0F2F5;
  --stone-100: #E2E6EA;
  --stone-200: #CDD3DA;
  --stone-300: #A8B2BF;
  --stone-400: #7B8794;
  --stone-500: #616E7C;
  --stone-600: #4A5568;
  --stone-700: #334155;
  --stone-800: #1E293B;
  --stone-900: #0F172A;

  /* Accent — soft teal for secondary elements */
  --sage-50: #EFF6F5;
  --sage-100: #D5E8E4;
  --sage-200: #B2D4CD;
  --sage-400: #5EA89A;
  --sage-600: #3D7A6E;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 48px 0;
  --container-width: 1140px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--stone-800);
  background: var(--cream);
  line-height: 1.7;
}

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

a {
  color: var(--amber-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--amber-500); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--stone-900);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1em; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber-600);
  color: #fff;
}

.btn-primary:hover {
  background: var(--amber-500);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--stone-700);
  border: 1px solid var(--stone-200);
}

.btn-outline:hover {
  border-color: var(--amber-400);
  color: var(--amber-600);
  transform: translateY(-1px);
}

/* ---- Skip Navigation (accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--amber-600);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-100);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.nav-brand-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--stone-800);
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--stone-500);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber-500);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover { color: var(--stone-800); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--amber-600); }
.nav-links a.active::after { width: 100%; background: var(--amber-600); }

.nav-cta {
  font-size: 0.78rem;
  padding: 8px 20px;
}

.nav-links .btn-primary {
  color: #fff;
}

.nav-links .btn-primary:hover {
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--stone-700);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ---- Hero ---- */
.hero {
  padding-top: 101px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { padding: 40px 0; }

.hero h1 {
  margin-bottom: 20px;
  font-weight: 500;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--stone-400);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone-50);
  max-height: 560px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--stone-300);
  font-size: 0.85rem;
  gap: 8px;
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--warm-white);
  border-top: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--stone-500);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--amber-500);
  flex-shrink: 0;
}

.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stone-200);
}

/* ---- Section ---- */
.section { padding: var(--section-padding); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--stone-400);
  font-size: 0.95rem;
}

/* ---- Cat Cards ---- */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.cat-card {
  background: var(--warm-white);
  border: 1px solid var(--stone-100);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.cat-card:hover {
  border-color: var(--amber-200);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.cat-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--stone-50);
}

.cat-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--ease-out);
}

.cat-card:hover .cat-card-image img {
  transform: scale(1.04);
}

.cat-card-body {
  padding: 20px 24px;
}

.cat-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--stone-900);
}

.cat-card-color {
  font-size: 0.8rem;
  color: var(--amber-500);
  font-weight: 400;
  margin-bottom: 8px;
}

.cat-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--stone-400);
  margin-bottom: 12px;
}

.cat-card-desc {
  font-size: 0.85rem;
  color: var(--stone-500);
  line-height: 1.7;
}

.cat-card-badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.badge-amber {
  background: var(--amber-100);
  color: var(--amber-700);
}

.badge-sage {
  background: var(--sage-100);
  color: var(--sage-600);
}

/* ---- About Preview (Home) ---- */
.about-preview {
  background: var(--stone-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--stone-600);
  line-height: 1.6;
  border-left: 2px solid var(--amber-400);
  padding-left: 20px;
  margin: 24px 0;
}

.about-text .signature {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--amber-600);
  margin-top: 16px;
}

/* ---- Adoption Process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  position: relative;
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--stone-100);
  border-radius: 8px;
}

.process-step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber-200);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.process-step h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--stone-800);
}

.process-step p {
  font-size: 0.82rem;
  color: var(--stone-400);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone-100);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone-700);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--amber-600); }

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--stone-300);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--stone-500);
  line-height: 1.8;
}

/* ---- Contact Form ---- */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--stone-600);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--stone-800);
  background: var(--warm-white);
  border: 1px solid var(--stone-200);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(72, 101, 129, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--stone-900);
  color: var(--stone-300);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--stone-100);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--stone-400);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.82rem;
  color: var(--stone-400);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--amber-400); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-700);
  border-radius: 50%;
  color: var(--stone-400);
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--amber-500);
  color: var(--amber-400);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--stone-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--stone-500);
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  padding: 128px 0 36px;
  background: var(--stone-50);
  border-bottom: 1px solid var(--stone-100);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header .page-subtitle {
  font-size: 1rem;
  color: var(--stone-400);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Content Sections ---- */
.content-section {
  padding: 48px 0;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-section h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 0.92rem;
  color: var(--stone-500);
}

.content-section ul, .content-section ol {
  padding-left: 20px;
  margin-bottom: 1em;
}

.content-section li {
  font-size: 0.92rem;
  color: var(--stone-500);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--amber-600);
  color: var(--amber-50);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.process-step h3, .process-step h4 { font-size: 1.125rem; }

/* ---- Sticky Mobile CTA ---- */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--amber-600);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 999;
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .mobile-sticky-cta:hover {
    background: var(--amber-500);
    color: #fff;
  }

  .site-footer {
    padding-bottom: 52px;
  }
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--stone-50);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

/* ---- Contact layout ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Kittens Preview Grid (homepage desktop) ---- */
.kittens-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kittens-preview-grid .gallery-item {
  aspect-ratio: 4/3;
}

/* ---- Mobile Cats Compact (homepage) ---- */
.cats-compact-mobile {
  display: none;
}

.cats-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.cats-scroll::-webkit-scrollbar {
  display: none;
}

.cats-scroll-item {
  flex: 0 0 160px;
  scroll-snap-align: start;
  text-decoration: none;
  text-align: center;
}

.cats-scroll-item img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--stone-100);
  transition: border-color 0.2s ease;
}

.cats-scroll-item:hover img {
  border-color: var(--amber-400);
}

.cats-scroll-item span {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--stone-600);
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out) forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  :root {
    --section-padding: 36px 0;
  }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta-desktop { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--stone-100);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  }

  .nav-links.open a { font-size: 0.95rem; }

  .hero { min-height: auto; padding-top: 80px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content { padding: 20px 0 0; }
  .hero-image {
    aspect-ratio: auto;
    max-height: none;
    border-radius: 0;
    margin: 0 -24px;
    width: calc(100% + 48px);
    background: none;
  }

  .hero h1 { font-size: 1.75rem; }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { max-height: 360px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-links li { margin-bottom: 2px; }
  .footer-socials { margin-top: 10px; }
  .footer-socials a { width: 30px; height: 30px; }
  .footer-links a { font-size: 0.78rem; }
  .footer-heading { margin-bottom: 10px; font-size: 0.68rem; }
  .footer-desc { font-size: 0.78rem; }
  .footer-brand { font-size: 0.78rem; margin-bottom: 8px; }
  .site-footer { padding: 32px 0 60px; }
  .footer-grid { margin-bottom: 20px; }
  .footer-bottom { padding-top: 16px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .trust-items { gap: 12px; justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.68rem; gap: 5px; }
  .trust-item svg { width: 14px; height: 14px; }
  .trust-strip { padding: 14px 0; }

  .cats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .cat-card {
    display: block;
  }

  .cat-card-image {
    aspect-ratio: 1;
    height: auto;
    max-height: none;
  }

  .cat-card-image img {
    object-fit: cover;
    object-position: top;
  }

  .cat-card-body {
    padding: 10px 12px;
  }

  .cat-card-name { font-size: 0.88rem; margin-bottom: 2px; }
  .cat-card-desc { display: none; }
  .cat-card-meta { font-size: 0.62rem; gap: 4px; flex-direction: column; }
  .cat-card-color { font-size: 0.68rem; margin-bottom: 4px; }
  .cat-card-badges { margin-top: 6px; }
  .cat-card-body p[style*="0.75rem"] { display: none; }
  .badge { font-size: 0.55rem; padding: 2px 5px; }

  .section { padding: 32px 0; }

  .section-header { margin-bottom: 16px; }
  .section-header p { font-size: 0.85rem; }

  /* About page stats grid */
  [style*="repeat(auto-fit, minmax(200px, 1fr))"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .page-header { padding: 100px 0 24px; }
  .page-subtitle { font-size: 0.88rem; }

  .process-steps { gap: 12px; }
  .process-step { padding: 16px 20px; }
  .process-step::before { font-size: 1.2rem; margin-bottom: 4px; }
  .process-step h3, .process-step h4 { font-size: 1rem; margin-bottom: 4px; }
  .process-step p { font-size: 0.82rem; margin-bottom: 0; }


  .cats-compact-mobile { display: block; }
  .cats-desktop { display: none !important; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Fix inline grid layouts on mobile */
  .section > .container > [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Blog cards stack on mobile */
  a[style*="grid-template-columns: 240px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: row;
    gap: 10px;
  }
  .hero-actions .btn {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}