/* ============================================================
   ALL STAR SPORTS — style.css
   Faithful recreation of allstarsports.net
   Colors from source: navy #25305a, red #cf1426, bg #f0f1fd
   Fonts: Geist (body), Aleo (headings)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-navy:        #25305a;
  --color-navy-dark:   #131739;
  --color-red:         #cf1426;
  --color-red-hover:   #a5101e;
  --color-bg-light:    #f0f1fd;
  --color-bg-subtle:   #E4E7FD;
  --color-white:       #ffffff;
  --color-text:        #131739;
  --color-text-light:  #555;
  --color-border:      #E4E7FD;
  --font-body:         'Geist', sans-serif;
  --font-heading:      'Aleo', serif;
  --max-width:         1200px;
  --header-height:     110px;
  --radius:            0px;
  --transition:        0.2s ease;
}

html {
  font-size: 112.5%; /* 18px base - matches source */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-red);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── HEADINGS (Aleo serif - matches source) ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2em;
  margin-bottom: 20px;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.6666rem; }
h3 { font-size: 1.4444rem; }
h4 { font-size: 1.2222rem; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8889rem;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border: 2px solid var(--color-red);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8889rem;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.site-branding {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  line-height: 0;
}

.site-logo {
  width: 120px;
  height: auto;
  transition: opacity 0.2s;
}

.site-logo:hover {
  opacity: 0.85;
}

/* Desktop Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--header-height);
}

.nav-menu > li > a {
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 0 20px 0 0;
  line-height: var(--header-height);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li > a .arrow {
  font-size: 0.55rem;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--color-red);
}

.nav-menu > li.current-menu-item > a {
  color: var(--color-red);
}

/* Dropdown */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-top: 2px solid var(--color-navy);
  box-shadow: 0px 4px 10px -2px rgba(0,0,0,0.1);
  z-index: 200;
}

.has-submenu:hover .sub-menu,
.has-submenu:focus-within .sub-menu {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 10px;
  font-size: 0.9rem;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition), background var(--transition);
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  color: var(--color-red);
  background: var(--color-bg-light);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--color-navy);
  border: none;
  border-radius: 2px;
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 700px;
}

.mobile-menu ul {
  padding: 0;
}

.mobile-menu > nav > ul > li > a,
.mobile-menu > nav > ul > li > .mob-cta {
  display: block;
  padding: 15px 32px;
  font-size: 1rem;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
}

.mobile-menu > nav > ul > li > a:hover { color: var(--color-red); background: var(--color-bg-light); }

.mob-sub {
  background: var(--color-bg-light);
  display: none;
}

.mob-sub.open { display: block; }

.mob-sub li a {
  display: block;
  padding: 10px 32px 10px 48px;
  font-size: 0.9rem;
  color: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
}

.mob-sub li a:hover { color: var(--color-red); }

.mob-sub-toggle {
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 0.65rem;
  cursor: pointer;
  padding: 0 4px;
  vertical-align: middle;
}

.mob-cta {
  margin: 12px 20px !important;
  text-align: center;
  border-radius: 0 !important;
  border-bottom: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  margin-top: var(--header-height);
  background-color: var(--color-navy);
  background-image: none;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  min-height: 480px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-section h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2em;
  margin-bottom: 20px;
  max-width: 760px;
}

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.6em;
}

.hero-btn {
  font-size: 0.9444rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background-color: var(--color-white);
  padding: 60px 0;
}

.services-section h2 {
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 0;
}

.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 20px auto 48px;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.services-intro p {
  margin-bottom: 0.5em;
}

/* 3-column services grid matching original */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(19, 23, 57, 0.12);
}

.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-light);
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.service-body .btn-outline {
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 12px 24px;
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background-color: var(--color-bg-light);
  padding: 60px 0;
}

.instagram-section h2 {
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Profile bar */
.insta-header-bar {
  margin-bottom: 20px;
}

.insta-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.insta-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insta-avatar-icon {
  width: 28px;
  height: 28px;
  fill: white;
}

.insta-profile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insta-profile-text strong {
  font-size: 1rem;
  color: var(--color-navy);
  font-family: var(--font-body);
}

.insta-profile-text span {
  font-size: 0.84rem;
  color: var(--color-text-light);
}

/* ── Grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

/* Each tile rendered by JS */
.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--color-bg-subtle);
  /* smooth appear on load-more */
  animation: instaFadeIn 0.35s ease both;
}

@keyframes instaFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Real photo layer — sits above gradient, fades in on load */
.insta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* Gradient placeholder bg — set via inline style from JS */
.insta-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.insta-placeholder-icon {
  width: 36px;
  height: 36px;
  fill: rgba(255,255,255,0.7);
}

.insta-placeholder-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Video badge — above photo layer */
.insta-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  background: rgba(0,0,0,0.55);
  border-radius: 3px;
  padding: 3px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

.insta-video-badge svg {
  width: 10px;
  height: 10px;
  fill: white;
}

.insta-video-badge span {
  font-size: 0.62rem;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hover overlay */
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 23, 57, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 4;
}

.insta-item:hover .insta-overlay,
.insta-item:focus .insta-overlay {
  opacity: 1;
}

.insta-overlay-icon {
  width: 28px;
  height: 28px;
  fill: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.insta-overlay-caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  font-family: var(--font-body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-overlay-view {
  margin-top: 10px;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
}

/* ── Actions row: Load More + Follow ── */
.insta-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-load-more {
  background: transparent;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8889rem;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border: 2px solid var(--color-navy);
  border-radius: 0;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn-load-more:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.btn-load-more:disabled,
.btn-load-more[data-exhausted="true"] {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.btn-follow-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 24px;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.btn-follow-insta:hover {
  opacity: 0.88;
  color: var(--color-white);
}

.btn-follow-insta svg {
  flex-shrink: 0;
  fill: white;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
  background-color: var(--color-navy);
  padding: 60px 40px;
}

.why-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.why-text h3 {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.why-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

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

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.about-content h2 {
  color: var(--color-navy);
  font-size: 2rem;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
}

.about-cta {
  margin-top: 28px;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: var(--color-bg-light);
  padding: 60px 0;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: 0;
}

.stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-navy));
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-navy);
  font-family: var(--font-body);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--color-navy);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-btn {
  font-size: 1rem;
  padding: 18px 40px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.process-section h2 {
  text-align: center;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.footer-primary {
  padding: 45px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col address {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.footer-col a {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-red);
}

/* Below footer bar */
.footer-below {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.footer-below-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-below p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.footer-below nav a {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.footer-below nav a:hover {
  color: var(--color-red);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 500;
  width: 2.1em;
  height: 2.1em;
  border-radius: 5px;
  background-color: var(--color-navy);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background-color var(--transition);
}

.scroll-top-btn svg {
  transform: rotate(180deg);
}

.scroll-top-btn:hover {
  background-color: var(--color-red);
}

.scroll-top-btn.visible {
  display: flex;
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 921px)
   ============================================================ */
@media (max-width: 921px) {
  :root { --header-height: 100px; }

  html { font-size: 100%; }

  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }

  .container { padding-left: 32px; padding-right: 32px; }

  /* Header */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }

  .header-inner {
    padding: 0 20px;
    gap: 1rem;
  }

  /* Hero */
  .hero-section {
    padding: 60px 32px;
    min-height: 360px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .insta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    max-width: 480px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col-wide {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 544px)
   ============================================================ */
@media (max-width: 544px) {
  :root { --header-height: 80px; }

  html { font-size: 100%; }

  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .container { padding-left: 24px; padding-right: 24px; }

  /* Hero */
  .hero-section {
    padding: 50px 24px;
    min-height: auto;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  /* CTA */
  .cta-section {
    padding: 60px 24px;
  }

  /* Process */
  .process-section { padding: 60px 0; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col-wide {
    grid-column: auto;
  }

  .footer-below-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Scroll top */
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
  }

  /* Buttons */
  .btn-primary,
  .btn-outline {
    padding: 14px 24px;
  }
}
