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

:root {
    --color-forest: #1a4d2e;
    --color-forest-light: #2d6a4f;
    --color-forest-dark: #0f3319;
    --color-cream: #f7f5f0;
    --color-cream-dark: #ebe8e0;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #7a7a7a;
    --color-accent: #b7e4c7;
    --color-accent-light: #d8f3dc;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-forest-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-forest-light);
    display: inline-block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(26, 77, 46, 0.3);
}

.btn--primary:hover {
    background: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.35);
}

.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-forest);
    box-shadow: var(--shadow-md);
}

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

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

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--color-forest-dark);
}

.nav__logo-icon {
    color: var(--color-accent);
}

.nav.scrolled .nav__logo-icon {
    color: var(--color-forest);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-white);
}

.nav.scrolled .nav__link {
    color: var(--color-text-light);
}

.nav.scrolled .nav__link:hover {
    color: var(--color-forest);
}

.nav.scrolled .nav__link::after {
    background: var(--color-forest);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.nav__cta:hover {
    background: var(--color-white);
    color: var(--color-forest);
}

.nav.scrolled .nav__cta {
    background: var(--color-forest);
    border-color: var(--color-forest);
    color: var(--color-white);
}

.nav.scrolled .nav__cta:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav__toggle-line {
    background: var(--color-forest);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   HERO
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-forest-dark) 0%, var(--color-forest) 40%, var(--color-forest-light) 100%);
    padding: 120px 0 80px;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(45, 106, 79, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(183, 228, 199, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(15, 51, 25, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--color-accent);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 28px;
}

.hero__headline-em {
    font-style: italic;
    font-weight: 600;
    color: var(--color-accent);
}

.hero__subheadline {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 6/7;
    box-shadow: var(--shadow-xl);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 51, 25, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

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

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

.services .container {
    text-align: center;
}

.services .section-label {
    justify-content: center;
}

.services .section-label::before {
    display: none;
}

.services .section-subtitle {
    margin: 0 auto 64px;
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-forest), var(--color-forest-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 77, 46, 0.08);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--color-accent-light);
    color: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--color-forest);
    color: var(--color-white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

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

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 640px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    z-index: -1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

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

.about__feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===================================
   VISIT
   =================================== */
.visit {
    padding: 120px 0;
    background: var(--color-cream);
}

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

.visit__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 48px;
}

.visit__steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.visit__step-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
}

.visit__step-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.visit__step-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.visit__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/6;
    box-shadow: var(--shadow-lg);
}

.visit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 50%, var(--color-forest-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(183, 228, 199, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-banner__title em {
    color: var(--color-accent);
    font-style: italic;
}

.cta-banner__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cta-banner__note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

/* ===================================
   CONTACT
   =================================== */
.contact {
    padding: 120px 0;
    background: var(--color-white);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.contact__detail:first-child {
    padding-top: 0;
}

.contact__detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-accent-light);
    color: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact__detail p,
.contact__detail a {
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 500;
}

.contact__detail a:hover {
    color: var(--color-forest);
}

.contact__map {
    margin-top: 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact__form-wrapper {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

.form__input::placeholder {
    color: var(--color-text-muted);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* Success message */
.contact__form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-forest-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--color-accent);
}

.footer__tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255,255,255,0.5);
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.footer__link-group a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer__link-group a:hover {
    color: var(--color-white);
}

.footer__link-group span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer__disclaimer {
    font-size: 0.78rem !important;
    max-width: 500px;
    text-align: right;
    line-height: 1.5;
}

/* ===================================
   ANIMATIONS
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__image {
        display: none;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .about__layout,
    .visit__inner,
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner__actions {
        align-items: center;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__link {
        color: var(--color-text);
        font-size: 1.1rem;
    }
    
    .nav__link::after {
        background: var(--color-forest);
    }
    
    .nav__cta {
        background: var(--color-forest);
        border-color: var(--color-forest);
        color: var(--color-white);
        justify-content: center;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }
    
    .nav__overlay.active {
        display: block;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero__headline {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    
    .services,
    .about,
    .visit,
    .contact {
        padding: 80px 0;
    }
    
    .contact__form-wrapper {
        padding: 32px 24px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .btn--lg {
        padding: 16px 32px;
    }
}
