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

:root {
  /* Colors */
  --color-bg: #FAF8F5;
  --color-bg-alt: #F3EDE7;
  --color-bg-dark: #2C2C2C;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-text-on-dark: #F5F0EB;
  --color-heading: #2C2C2C;
  --color-sage: #8FA68E;
  --color-sage-dark: #6E8A6D;
  --color-sage-light: #B5CCAF;
  --color-nude: #D4B5A0;
  --color-nude-light: #E8D5C8;
  --color-white: #FFFFFF;
  --color-border: #E5DDD4;
  --color-success: #6E8A6D;
  --color-error: #C76A6A;

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

  /* Layout */
  --max-width: 1200px;
  --section-padding: clamp(4rem, 8vw, 7rem) 0;
}

/* 1. RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.7;
  color: var(--color-text);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-heading);
  margin-top: 0;
}

p {
  margin-top: 0;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* 2. UTILITY CLASSES */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 3. ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* 4. HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-sage);
}

.nav {
  display: none;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--color-heading);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  visibility: hidden;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--color-sage);
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--color-sage);
  color: var(--color-white) !important;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  border-bottom: none !important;
  transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
  background: var(--color-sage-dark);
}

/* 5. HERO SECTION */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
  text-align: center;
}

.hero-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-heading);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0 auto 2.5rem auto;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(143, 166, 142, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-sage);
  border: 1.5px solid var(--color-sage);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background: rgba(181, 204, 175, 0.1);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  order: -1;
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--color-sage-light);
  opacity: 0.3;
  border-radius: 50%;
  z-index: -1;
  top: -30px;
  right: -30px;
}

/* 6. HIGHLIGHTS SECTION */
.highlights {
  background: var(--color-white);
  padding: var(--section-padding);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: var(--color-bg);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(181, 204, 175, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-sage);
  stroke-width: 1.5;
  fill: none;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* 7. SERVICES SECTION */
.services {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: 16px;
  transition: all 0.35s ease;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  border-color: var(--color-sage-light);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-sage), var(--color-sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--color-sage);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* 8. ABOUT SECTION */
.about {
  background: var(--color-white);
  padding: var(--section-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  position: relative;
  margin-bottom: 2rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--color-sage-light);
  border-radius: 20px;
  z-index: -1;
}

.about-content {
  text-align: left;
}

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

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

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-sage);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 9. GALLERY SECTION */
.gallery {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

/* 10. TESTIMONIALS SECTION */
.testimonials {
  background: var(--color-white);
  padding: var(--section-padding);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 1rem;
  text-align: center;
}

.testimonial-card-inner {
  background: var(--color-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: #E2B93B;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-heading);
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.carousel-btn:hover {
  border-color: var(--color-sage);
  color: var(--color-sage);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-sage);
  transform: scale(1.3);
}

/* 11. LOCATION SECTION */
.location {
  background: var(--color-bg-alt);
  padding: var(--section-padding);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(181, 204, 175, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-sage);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.info-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.info-item a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--color-sage);
}

/* 12. CONTACT SECTION */
.contact {
  background: var(--color-white);
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-inner {
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.contact-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.contact-info-text {
  padding: 2rem;
}

.contact-info-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
}

.contact-info-text p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info-text .btn-primary {
  font-family: var(--font-sans);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all 0.3s ease;
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(143, 166, 142, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.error-message {
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 0.35rem;
  display: none;
}

.error-message.visible {
  display: block;
}

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

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  font-family: var(--font-sans);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(110, 138, 109, 0.08);
  border-radius: 16px;
}

.form-success.visible {
  display: block;
}

.form-success h3 {
  font-family: var(--font-serif);
  color: var(--color-success);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.form-success svg {
  margin: 0 auto 1rem;
  color: var(--color-success);
}

.form-success p {
  color: var(--color-text-light);
  margin: 0;
}

/* 13. FOOTER */
.footer {
  background: var(--color-bg-dark);
  padding: 4rem 0 2rem;
  color: var(--color-text-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-sans);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-on-dark);
  opacity: 0.7;
  text-decoration: none;
  padding: 0.3rem 0;
  transition: opacity 0.3s ease;
}

.footer-address {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.footer-social a:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-on-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* 14. WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--color-white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
  top: 0;
  left: 0;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* 15. RESPONSIVE */
@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sage);
    transition: width 0.3s ease;
  }

  .nav a:hover,
  .nav a.active {
    color: var(--color-heading);
  }

  .nav a:hover::after,
  .nav a.active::after {
    width: 100%;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    background: var(--color-sage);
    color: var(--color-white);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--font-sans);
  }

  .header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143, 166, 142, 0.3);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 2.5rem 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-image {
    order: 0;
    margin-bottom: 0;
  }

  .hero-image img {
    max-width: 520px;
    aspect-ratio: 4/5;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }

  .about-image {
    margin-bottom: 0;
  }

  .testimonial-card {
    flex: 0 0 50%;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 33.333%;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
