/* ============================================
   M'Y FORME — Coach Sportif Privé
   Style : Luxe / Chic — Noir & Or
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

* { margin:0; padding:0; box-sizing:border-box; }

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-2: #1c1c1c;
  --gold: #c8a55b;
  --gold-light: #d4b56a;
  --gold-dark: #a8893f;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --border: rgba(255,255,255,0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--gold); font-style: italic; }
.logo svg { width:32px; height:32px; }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* CTA Réserver dans la nav */
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 700;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,165,91,0.35);
}

.burger {
  display: none;
  width: 30px; height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}
.burger span {
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=85');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 15px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 45px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.9s forwards;
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.2s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  padding: 16px 42px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,165,91,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2s infinite;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 12px auto 0;
}
@keyframes bounce {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============ SECTIONS ============ */
section {
  padding: 120px 60px;
  position: relative;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-intro {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 720px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 60px;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header .section-intro { margin: 0 auto; }

/* ============ ABOUT / INTRO ============ */
.intro {
  background: var(--black);
  padding: 140px 60px;
}
.intro-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.intro-img:hover img { transform: scale(1.05); }
.intro-img::after {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  bottom: -20px; left: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ============ SERVICES ============ */
.services {
  background: var(--dark);
  padding: 140px 60px;
}
.services-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  transition: all 0.5s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.service-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.8));
}
.service-body { padding: 35px 30px 40px; }
.service-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 15px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 25px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  transition: gap 0.3s;
}
.service-link:hover { gap: 18px; }

/* ============ EXPERTISE / FEATURES ============ */
.expertise {
  background: var(--black);
  padding: 140px 60px;
}
.expertise-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.expertise-item {
  text-align: center;
}
.expertise-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s;
}
.expertise-item:hover .expertise-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotate(360deg);
}
.expertise-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.expertise-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background 0.4s;
}
.gallery-item:hover::after { background: rgba(10,10,10,0.4); }
.gallery-item .plus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  z-index: 2;
  transition: transform 0.4s;
}
.gallery-item:hover .plus { transform: translate(-50%, -50%) scale(1); }
.gallery-item.tall { aspect-ratio: 2/3; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--dark);
  padding: 140px 60px;
}
.testi-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testi-card {
  background: var(--dark-2);
  padding: 45px 35px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s;
}
.testi-card:hover { border-color: var(--gold); }
.testi-card .quote {
  font-family: var(--serif);
  font-size: 70px;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 20px; left: 25px;
  opacity: 0.5;
}
.testi-card .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  margin-top: 30px;
}
.testi-card p {
  font-size: 15px;
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}
.testi-role {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 140px 60px;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}

/* ============ CONTACT / FORM ============ */
.contact {
  background: var(--black);
  padding: 140px 60px;
}
.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p {
  color: var(--gray-light);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-block .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-block .value {
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
}

.form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  padding: 50px 45px;
}
.form-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-card .form-sub {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 30px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status {
  margin-top: 15px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: #5cb85c; }
.form-status.error { color: #d9534f; }

/* ============ MAP ============ */
.map-wrap {
  width: 100%;
  height: 400px;
  margin-top: 40px;
  border: 1px solid var(--border);
  filter: grayscale(0.5) brightness(0.85);
  transition: filter 0.4s;
}
.map-wrap:hover { filter: none; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  padding: 80px 60px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: var(--gray);
  font-size: 13px;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 15px;
}

/* ============ PAGE HEADER ============ */
.page-header {
  height: 60vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4), rgba(10,10,10,0.7));
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  margin-bottom: 12px;
}
.page-header h1 em { color: var(--gold); font-style: italic; }
.page-header .crumbs {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: revealFallback 1s ease 0.4s forwards; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox .close {
  position: absolute;
  top: 30px; right: 30px;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============ COOKIES BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--gold);
  padding: 22px 25px;
  z-index: 9998;
  display: none;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 15px;
  line-height: 1.6;
}
.cookie-banner button {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
}
.cookie-banner button.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  section, .services, .intro, .expertise, .testimonials, .contact, .cta-banner { padding: 100px 40px; }
  footer { padding: 60px 40px 30px; }
  .navbar, .navbar.scrolled { padding: 18px 40px; }
  .intro-grid { gap: 50px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar, .navbar.scrolled { padding: 16px 24px; }
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 1050;
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 14px; letter-spacing: 3px; }

  section, .services, .intro, .expertise, .testimonials, .contact, .cta-banner { padding: 80px 22px; }
  footer { padding: 50px 22px 25px; }

  .hero { min-height: 550px; }
  .hero-content { padding: 0 22px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 25px; margin: 0 10px; }

  .intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .intro-img { height: 400px; }
  .services-grid, .testi-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr; gap: 25px; }
  .gallery-item.tall { aspect-ratio: 1; }
  .expertise-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .form-card { padding: 35px 25px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { background-attachment: scroll; }
  .section-header { margin-bottom: 50px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .expertise-grid { grid-template-columns: 1fr; }
}
