/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1f2937;
    background: #faf9f6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: #0f1f14; }
em { font-style: italic; color: #1a4d2e; }

/* ── Section Helpers ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a4d2e;
    background: rgba(26, 77, 46, 0.08);
    border: 1px solid rgba(26, 77, 46, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: #4b5563; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn--primary { background: #1a4d2e; color: #fff; border-color: #1a4d2e; }
.btn--primary:hover { background: #143d24; border-color: #143d24; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 77, 46, 0.3); }
.btn--ghost { background: transparent; color: #1a4d2e; border-color: #1a4d2e; }
.btn--ghost:hover { background: rgba(26, 77, 46, 0.06); }
.btn--light { background: #fff; color: #1a4d2e; border-color: #fff; }
.btn--light:hover { background: #f0f7f2; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 77, 46, 0.08);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.header__logo { display: flex; align-items: center; gap: 10px; }
.header__logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #0f1f14; }
.header__logo-text em { font-style: italic; color: #1a4d2e; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #374151;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #1a4d2e; background: rgba(26, 77, 46, 0.06); }
.nav__link--cta { background: #1a4d2e; color: #fff; margin-left: 8px; }
.nav__link--cta:hover { background: #143d24; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle-line { width: 22px; height: 2px; background: #1f2937; border-radius: 2px; transition: all 0.3s ease; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero { padding: 120px 0 80px; background: #faf9f6; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a4d2e;
    background: rgba(26, 77, 46, 0.08);
    border: 1px solid rgba(26, 77, 46, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero__title { font-size: clamp(2.25rem, 5vw, 3.5rem); margin-bottom: 20px; color: #0f1f14; }
.hero__desc { font-size: 1.125rem; color: #4b5563; margin-bottom: 32px; max-width: 480px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 24px; align-items: center; }
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #1a4d2e; }
.hero__stat-label { font-size: 0.8125rem; color: #6b7280; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(26, 77, 46, 0.15); }
.hero__image { position: relative; }
.hero__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 31, 20, 0.15);
}
.hero__image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: #1a4d2e;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.08;
}

/* ── Services ── */
.services { padding: 96px 0; background: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #faf9f6;
    border: 1px solid rgba(26, 77, 46, 0.08);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15, 31, 20, 0.1); border-color: rgba(26, 77, 46, 0.2); }
.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 77, 46, 0.08);
    border-radius: 12px;
    color: #1a4d2e;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.service-card:hover .service-card__icon { background: #1a4d2e; color: #fff; }
.service-card__title { font-size: 1.1875rem; margin-bottom: 10px; color: #0f1f14; }
.service-card__desc { font-size: 0.9375rem; color: #4b5563; line-height: 1.7; }

/* ── About ── */
.about { padding: 96px 0; background: #faf9f6; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__images { position: relative; }
.about__img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 56px rgba(15, 31, 20, 0.12); }
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 31, 20, 0.18);
    border: 4px solid #faf9f6;
}
.about__img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about__badge-card {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #1a4d2e;
    color: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(26, 77, 46, 0.3);
}
.about__badge-card-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about__badge-card-label { font-size: 0.8125rem; opacity: 0.85; margin-top: 4px; }
.about__content .section-tag { margin-bottom: 16px; }
.about__content .section-title { margin-bottom: 20px; }
.about__text { color: #4b5563; margin-bottom: 16px; }
.about__list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: #374151; }
.about__list li svg { color: #1a4d2e; flex-shrink: 0; }

/* ── Gallery ── */
.gallery { padding: 96px 0; background: #fff; }
.gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 200px 200px; gap: 16px; }
.gallery__item { border-radius: 12px; overflow: hidden; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--large { grid-column: span 7; grid-row: span 2; }
.gallery__item--wide { grid-column: span 5; grid-row: span 1; }

/* ── CTA Band ── */
.cta-band { padding: 80px 0; background: #1a4d2e; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band__title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: #fff; margin-bottom: 8px; }
.cta-band__desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 96px 0; background: #faf9f6; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__text { color: #4b5563; margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; gap: 16px; }
.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 77, 46, 0.08);
    border-radius: 10px;
    color: #1a4d2e;
    flex-shrink: 0;
}
.contact__detail dt { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; margin-bottom: 4px; }
.contact__detail dd { font-size: 0.9375rem; color: #1f2937; line-height: 1.6; }
.contact__detail a { color: #1a4d2e; font-weight: 500; transition: color 0.2s; }
.contact__detail a:hover { color: #143d24; text-decoration: underline; }

/* ── Form ── */
.contact__form-wrapper {
    background: #fff;
    border: 1px solid rgba(26, 77, 46, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(15, 31, 20, 0.06);
}
.contact__form-title { font-size: 1.375rem; margin-bottom: 24px; color: #0f1f14; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 6px; }
.form__input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1f2937;
    background: #faf9f6;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form__input:focus { border-color: #1a4d2e; box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1); }
.form__select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23374151' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__privacy { font-size: 0.75rem; color: #9ca3af; margin-top: 16px; text-align: center; }
.contact__success { text-align: center; padding: 40px 20px; }
.contact__success-icon { margin-bottom: 16px; }
.contact__success h3 { font-size: 1.5rem; margin-bottom: 8px; color: #0f1f14; }
.contact__success p { color: #4b5563; }

/* ── Map ── */
.map-section { height: 380px; filter: grayscale(0.3); }

/* ── Footer ── */
.footer { background: #0f1f14; color: rgba(255,255,255,0.7); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 64px 0 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-text { font-family: 'Playfair Display', serif; font-size: 1.1875rem; font-weight: 700; color: #fff; }
.footer__logo-text em { font-style: italic; color: #4ade80; }
.footer__tagline { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer__heading { font-family: 'Inter', sans-serif; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.9375rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__links a:hover { color: #4ade80; }
.footer__address { font-size: 0.9375rem; line-height: 1.7; font-style: normal; margin-bottom: 12px; }
.footer__phone { margin-bottom: 8px; }
.footer__phone a { color: #4ade80; font-weight: 500; }
.footer__hours { font-size: 0.875rem; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bar p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.footer__bar a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__bar a:hover { color: #4ade80; }

/* ── Scroll Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__image { max-width: 560px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .about__images { max-width: 520px; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery__item--large { grid-column: span 2; grid-row: span 1; }
    .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav { position: fixed; top: 76px; left: 0; right: 0; background: rgba(250, 249, 246, 0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(26, 77, 46, 0.08); padding: 16px 24px; transform: translateY(-120%); transition: transform 0.3s ease; box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
    .nav.open { transform: translateY(0); }
    .nav__list { flex-direction: column; gap: 4px; }
    .nav__link { padding: 12px 16px; width: 100%; }
    .nav__link--cta { margin-left: 0; text-align: center; margin-top: 8px; }
    .hero { padding: 100px 0 60px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { justify-content: center; }
    .hero__stats { flex-wrap: wrap; gap: 16px; }
    .hero__stat-divider { display: none; }
    .services__grid { grid-template-columns: 1fr; }
    .about__img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
    .about__badge-card { position: relative; top: auto; left: auto; display: inline-flex; margin-bottom: 16px; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band__actions { justify-content: center; }
    .contact__form-wrapper { padding: 24px; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bar-inner { flex-direction: column; text-align: center; }
    .gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery__item--large { grid-column: span 1; }
    .gallery__item img { height: 220px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 2rem; }
    .section-title { font-size: 1.625rem; }
}
