  :root {
    --green-dark: #0f3d1e;
    --green-mid: #1a5c2a;
    --green-bright: #228940;
    --green-light: #2ea854;
    --green-pale: #e8f5ec;
    --off-white: #f5f0e8;
    --off-white-dark: #e8e0d0;
    --cream: #faf7f0;
    --text-dark: #1a1a1a;
    --text-mid: #3a3a3a;
    --text-light: #6b6b6b;
    --accent-yellow: #f5c518;
    --accent-orange: #e8732a;
    --accent-teal: #1a8a7d;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(15, 61, 30, 0.08);
    --shadow-md: 0 8px 30px rgba(15, 61, 30, 0.12);
    --shadow-lg: 0 16px 60px rgba(15, 61, 30, 0.16);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
    font-weight: 700;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

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

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* NAV */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    transition: var(--transition);
  }

  .nav.scrolled {
    background: rgba(250, 247, 240, 0.95);
    box-shadow: var(--shadow-sm);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green-dark);
  }

  .logo-mark {
    width: 40px;
    height: 40px;
    background: var(--green-mid);
    color: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

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

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
  }

  .nav-links a:hover {
    color: var(--green-mid);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-bright);
    transition: var(--transition);
    border-radius: 2px;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .btn-nav {
    background: var(--green-mid) !important;
    color: var(--off-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: var(--transition) !important;
  }

  .btn-nav:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
  }

  .btn-nav::after {
    display: none !important;
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
  }

  .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger::before { top: -7px; }
  .hamburger::after { bottom: -7px; }

  .nav-toggle.active .hamburger {
    background: transparent;
  }

  .nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 35%, var(--green-bright) 70%, var(--accent-teal) 100%);
    z-index: 0;
  }

  .geo {
    position: absolute;
    opacity: 0.12;
    z-index: 1;
  }

  .geo-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-yellow);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
  }

  .geo-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-orange);
    top: 20%;
    left: -80px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite reverse;
  }

  .geo-3 {
    width: 200px;
    height: 200px;
    background: var(--off-white);
    border-radius: 50%;
    bottom: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
  }

  .geo-4 {
    width: 150px;
    height: 150px;
    background: var(--accent-teal);
    bottom: 25%;
    left: 10%;
    transform: rotate(30deg);
    animation: float 7s ease-in-out infinite reverse;
  }

  .geo-5 {
    width: 100px;
    height: 100px;
    background: var(--accent-yellow);
    border-radius: 50%;
    top: 40%;
    right: 5%;
    animation: float 9s ease-in-out infinite;
  }

  .gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(15, 61, 30, 0.4) 100%);
    z-index: 2;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--off-white);
    margin-bottom: 32px;
  }

  .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  .hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--off-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

  .hero-headline .highlight {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 240, 232, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--accent-yellow);
    color: var(--green-dark);
  }

  .btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
  }

  .btn-outline {
    background: transparent;
    color: var(--off-white);
    border: 2px solid rgba(245, 240, 232, 0.4);
  }

  .btn-outline:hover {
    border-color: var(--off-white);
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-2px);
  }

  .btn-white {
    background: var(--off-white);
    color: var(--green-dark);
  }

  .btn-white:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-ghost {
    background: transparent;
    color: var(--off-white);
    border: 2px solid rgba(245, 240, 232, 0.3);
  }

  .btn-ghost:hover {
    border-color: var(--off-white);
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-2px);
  }

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

  .stat {
    text-align: center;
  }

  .stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
  }

  .stat-label {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 240, 232, 0.2);
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
  }

  .scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bob 2s ease-in-out infinite;
  }

  @keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  /* SECTION LABELS */
  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-bright);
    margin-bottom: 16px;
  }

  .section-label.right {
    flex-direction: row-reverse;
  }

  .label-line {
    width: 40px;
    height: 2px;
    background: var(--green-bright);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 48px;
    letter-spacing: -0.02em;
  }

  .section-title .accent {
    color: var(--green-mid);
  }

  /* SERVICES */
  .services {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
  }

  .services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-dark), var(--green-bright), var(--accent-teal), var(--accent-yellow));
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(26, 92, 42, 0.06);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 92, 42, 0.12);
  }

  .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .service-card:nth-child(1) .card-accent { background: var(--green-bright); }
  .service-card:nth-child(2) .card-accent { background: var(--accent-yellow); }
  .service-card:nth-child(3) .card-accent { background: var(--accent-orange); }
  .service-card:nth-child(4) .card-accent { background: var(--accent-teal); }
  .service-card:nth-child(5) .card-accent { background: var(--green-light); }
  .service-card:nth-child(6) .card-accent { background: var(--green-mid); }

  .service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    margin-bottom: 20px;
    transition: var(--transition);
  }

  .service-card:hover .service-icon {
    background: var(--green-mid);
    color: var(--off-white);
    transform: scale(1.05);
  }

  .service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

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

  /* HOW IT WORKS */
  .how-it-works {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
  }

  .how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--green-pale);
    border-radius: 50%;
    opacity: 0.5;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
  }

  .step {
    text-align: center;
    position: relative;
  }

  .step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: -10px;
    position: relative;
    z-index: 1;
  }

  .step-geo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
  }

  .geo-shape {
    position: absolute;
    transition: var(--transition);
  }

  .step:hover .geo-shape {
    transform: rotate(15deg) scale(1.1);
  }

  .geo-circle {
    width: 50px;
    height: 50px;
    background: var(--green-bright);
    border-radius: 50%;
    top: 15px;
    left: 15px;
  }

  .geo-square {
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    top: 0;
    right: 0;
    border-radius: 6px;
  }

  .geo-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid var(--accent-orange);
    top: 5px;
    left: 18px;
  }

  .geo-diamond {
    width: 40px;
    height: 40px;
    background: var(--accent-teal);
    top: 20px;
    right: 10px;
    transform: rotate(45deg);
    border-radius: 4px;
  }

  .step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .step p {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.65;
  }

  .steps-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .steps-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .steps-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
  }

  .img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-yellow);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
  }

  .steps-text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  /* ABOUT */
  .about {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .about::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--green-pale);
    border-radius: 50%;
    opacity: 0.6;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .about-visual {
    position: relative;
  }

  .about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .about-img-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
  }

  .about-img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-orange);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.5;
  }

  .about-floating-card {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .floating-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
  }

  .floating-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-mid);
  }

  .about-content .section-title {
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
  }

  .value-icon {
    width: 36px;
    height: 36px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
  }

  /* CTA BANNER */
  .cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-bright) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .cta-shape {
    position: absolute;
    opacity: 0.1;
  }

  .cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-yellow);
    border-radius: 50%;
    top: -100px;
    left: -50px;
  }

  .cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-orange);
    bottom: -60px;
    right: 10%;
    transform: rotate(45deg);
  }

  .cta-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--off-white);
    border-radius: 50%;
    top: 20%;
    right: 5%;
  }

  .cta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--off-white);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
  }

  .cta-title .accent,
  .cta-title span {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  /* VISIT */
  .visit {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
  }

  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
  }

  .contact-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
  }

  .contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .contact-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
  }

  .contact-value:hover {
    color: var(--green-mid);
  }

  .map-btn {
    display: inline-flex;
  }

  .visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .map-placeholder {
    position: relative;
  }

  .map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(15, 61, 30, 0.6);
    color: var(--off-white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border-radius: var(--radius-xl);
  }

  .map-overlay:hover {
    background: rgba(15, 61, 30, 0.75);
  }

  /* FOOTER */
  .footer {
    background: var(--green-dark);
    color: var(--off-white);
    padding: 80px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  }

  .footer-brand p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.7;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 20px;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--accent-yellow);
  }

  .footer-contact p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer-contact a {
    color: var(--accent-yellow);
    transition: var(--transition);
  }

  .footer-contact a:hover {
    color: #e6b800;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
  }

  /* MOBILE */
  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
      gap: 48px;
    }

    .about-img-wrap img {
      height: 450px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: rgba(250, 247, 240, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 32px 24px;
      gap: 24px;
      transform: translateY(-120%);
      transition: var(--transition);
      box-shadow: var(--shadow-md);
      border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    }

    .nav-links.open {
      transform: translateY(0);
    }

    .nav-toggle {
      display: block;
    }

    .hero {
      padding: 100px 24px 80px;
    }

    .hero-stats {
      gap: 24px;
    }

    .stat-num {
      font-size: 1.1rem;
    }

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

    .steps {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .steps-visual {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .steps-img img {
      height: 280px;
    }

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

    .about-img-wrap img {
      height: 350px;
    }

    .about-floating-card {
      right: 20px;
      bottom: 20px;
    }

    .about-values {
      grid-template-columns: 1fr;
    }

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

    .map-placeholder img {
      height: 300px;
    }

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

    .footer-bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    .hero-actions {
      flex-direction: column;
      align-items: center;
    }

    .btn {
      width: 100%;
      justify-content: center;
    }

    .hero-stats {
      flex-direction: column;
      gap: 16px;
    }

    .stat-divider {
      width: 40px;
      height: 1px;
    }

    .cta-actions {
      flex-direction: column;
      align-items: center;
    }
  }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .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; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }
