/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a2744;
  background: #faf9f7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: #1a2744; color: #fff; padding: 0.5rem 1.5rem; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy: #1a2744;
  --navy-light: #2a3f66;
  --navy-dark: #0f1a2e;
  --gold: #d4a843;
  --gold-light: #e8c36a;
  --gold-dark: #b8912e;
  --cream: #faf9f7;
  --cream-dark: #f0ede8;
  --white: #ffffff;
  --gray-50: #f8f7f5;
  --gray-100: #f0ede8;
  --gray-200: #e2dfd9;
  --gray-300: #c8c3ba;
  --gray-400: #9e9890;
  --gray-500: #7a746c;
  --gray-600: #5c5650;
  --gray-700: #3d3834;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(26,39,68,0.06), 0 1px 2px rgba(26,39,68,0.04);
  --shadow-md: 0 4px 16px rgba(26,39,68,0.08), 0 2px 6px rgba(26,39,68,0.04);
  --shadow-lg: 0 12px 40px rgba(26,39,68,0.12), 0 4px 12px rgba(26,39,68,0.06);
  --shadow-xl: 0 24px 60px rgba(26,39,68,0.14), 0 8px 20px rgba(26,39,68,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy); margin-bottom: 1.25rem;
}
.section-title .text-gold { color: var(--gold-dark); }
.section-description {
  font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin: 0 auto;
}
.text-center { text-align: center; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.75rem; border-radius: var(--radius-lg);
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 14px rgba(26,39,68,0.25);
}
.btn-primary:hover {
  background: var(--navy-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,39,68,0.3);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(212,168,67,0.35);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2); transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,249,247,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,39,68,0.06);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(250,249,247,0.96);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600;
  color: var(--navy);
}
.logo-accent { color: var(--gold-dark); }

/* NAV */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  padding: 0.5rem 1rem; border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 500; color: var(--gray-600);
  transition: all var(--transition);
}
.nav-menu a:hover { color: var(--navy); background: rgba(26,39,68,0.05); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  margin-left: 0.5rem; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 8rem 0 5rem;
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-badge svg { color: var(--gold); }
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--navy); margin-bottom: 1.5rem; line-height: 1.15;
}
.hero-headline .text-gold { color: var(--gold-dark); }
.hero-description {
  font-size: 1.1rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow-md);
}
.hero-stat {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0 1.5rem;
}
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--navy);
}
.stat-label { font-size: 0.78rem; color: var(--gray-500); font-weight: 500; }
.hero-stat-divider {
  width: 1px; height: 40px; background: var(--gray-200);
}
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.hero-img-wrapper img {
  width: 100%; height: 820px; object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px; border-radius: var(--radius-xl);
  background: var(--gold); opacity: 0.15;
  z-index: -1;
}
.hero-floating-card {
  position: absolute; bottom: 2rem; left: -2rem;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lg);
}
.floating-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.floating-card-title { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.floating-card-sub { font-size: 0.78rem; color: var(--gray-500); }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-wrapper img {
  width: 100%; height: 680px; object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-img-pattern {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 12px 12px; opacity: 0.4;
  z-index: -1;
}
.about-experience-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.experience-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.experience-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.experience-number-accent {
  display: block; font-size: 0.7rem; color: var(--gold-light);
  margin-top: 0.15rem; font-weight: 600; letter-spacing: 0.05em;
}
.about-content { padding: 1rem 0; }
.about-text {
  font-size: 1rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8;
}
.about-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--cream); transition: all var(--transition);
}
.value-item:hover { background: var(--gray-100); transform: translateX(4px); }
.value-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.value-item strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.15rem; }
.value-item span { font-size: 0.85rem; color: var(--gray-500); }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  position: relative; background: var(--white);
  border-radius: var(--radius-xl); padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition); overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card--featured {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.service-card--featured .service-icon { background: rgba(212,168,67,0.15); color: var(--gold); }
.service-card--featured .service-title { color: var(--white); }
.service-card--featured .service-description { color: rgba(255,255,255,0.75); }
.service-card--featured .service-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.service-card--featured .service-card-accent { background: var(--gold); opacity: 0.08; }
.service-card-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}
.service-card-accent {
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px; border-radius: 0 var(--radius-xl) 0 100%;
  background: var(--navy); opacity: 0.03;
}
.service-icon {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: rgba(26,39,68,0.06); display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 1.5rem;
}
.service-title {
  font-size: 1.3rem; color: var(--navy); margin-bottom: 0.75rem;
}
.service-description {
  font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem;
}
.service-features { display: flex; flex-direction: column; gap: 0.6rem; }
.service-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--gray-600);
  padding-left: 0.25rem;
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ===== AREAS ===== */
.areas { background: var(--white); overflow: hidden; }
.areas-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.areas-text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 2rem; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.area-tag {
  padding: 0.45rem 1rem; border-radius: 50px;
  background: var(--cream); color: var(--navy);
  font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.areas-img-grid { position: relative; }
.areas-img-main img {
  width: 100%; height: 620px; object-fit: cover;
  border-radius: var(--radius-xl);
}
.areas-img-secondary {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 55%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 4px solid var(--white);
}
.areas-img-secondary img { width: 100%; height: 280px; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial-stars { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; }
.testimonial-stars svg { color: var(--gold); }
.testimonial-text {
  font-size: 0.95rem; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.testimonial-avatar { border-radius: 50%; overflow: hidden; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--gray-500); }

/* ===== CTA ===== */
.cta {
  background: var(--navy);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content .section-label { color: var(--gold); }
.cta-content .section-label::before { background: var(--gold); }
.cta-title { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-md); background: var(--cream);
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.15rem; }
.contact-detail span, .contact-detail a {
  font-size: 0.9rem; color: var(--gray-600);
}
.contact-detail a:hover { color: var(--gold-dark); }
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 4px solid var(--white);
}
.contact-map img { width: 100%; height: 280px; object-fit: cover; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--gray-200);
}
.form-title {
  font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  color: var(--navy); background: var(--white);
  transition: all var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem; padding: 1.25rem;
  background: rgba(212,168,67,0.1); border-radius: var(--radius-md);
  border: 1px solid rgba(212,168,67,0.25);
}
.form-success .success-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark); flex-shrink: 0;
}
.form-success strong { display: block; font-size: 0.9rem; color: var(--navy); }
.form-success span { font-size: 0.82rem; color: var(--gray-600); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); }
.footer-tagline {
  font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col strong {
  display: block; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== MOBILE NAV ===== */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1.5rem; gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%); opacity: 0;
    transition: all var(--transition);
    border-top: 1px solid var(--gray-200);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-menu a { padding: 0.75rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 0.5rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .areas-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-img-wrapper img { height: 500px; }
  .hero-floating-card { left: 1rem; bottom: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat { padding: 0 1rem; }
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .areas-img-secondary { width: 60%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .about-img-wrapper img,
  .areas-img-main img { height: 450px; }
  .about-experience-badge { right: 0; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .areas-img-secondary { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 1rem; }
  .areas-img-secondary img { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
