/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ── Utility ── */
.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: #064e3b;
    margin-bottom: 1rem;
}

.text-emerald-700 {
    color: #047857;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: #047857;
    color: #fff;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.btn--primary:hover {
    background: #065f46;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

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

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(6, 78, 59, 0.08);
    padding: 0.625rem 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.0625rem;
    color: #064e3b;
}

.nav__logo-text {
    font-family: 'Playfair Display', Georgia, serif;
}

.nav__logo-icon {
    color: #047857;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #065f46;
    position: relative;
    transition: color 0.2s ease;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a:focus::after {
    width: 100%;
}

.nav__links a:hover {
    color: #047857;
}

.nav__cta {
    background: #047857;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.3s ease !important;
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: #065f46;
    transform: translateY(-1px);
}

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

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: #064e3b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #064e3b;
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: #059669;
}

.mobile-menu__link--cta {
    margin-top: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    background: #047857;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #022c22 0%,
        #064e3b 20%,
        #047857 45%,
        #059669 65%,
        #34d399 85%,
        #6ee7b7 100%
    );
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(4, 120, 87, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(110, 231, 183, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(2, 44, 34, 0.4) 0%, transparent 70%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #d9f99d;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero__headline-accent {
    font-style: italic;
    font-weight: 400;
    color: #d9f99d;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: #d9f99d;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ── About ── */
.about {
    padding: 7rem 1.5rem;
    background: #fefdf8;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.2);
    border: 4px solid #fefdf8;
}

.about__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content {
    padding: 1rem 0;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.25rem;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
}

.about__highlight strong {
    display: block;
    font-size: 1rem;
    color: #064e3b;
    margin-bottom: 0.125rem;
}

.about__highlight span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* ── Menu ── */
.menu {
    padding: 7rem 1.5rem;
    background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%);
}

.menu__container {
    max-width: 900px;
    margin: 0 auto;
}

.menu__header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu__sub {
    font-size: 1.0625rem;
    color: #374151;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.menu__tab {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #065f46;
    background: transparent;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.menu__tab:hover {
    background: rgba(4, 120, 87, 0.08);
}

.menu__tab.active {
    background: #047857;
    color: #fff;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.menu__panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu__panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu__item {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(6, 78, 59, 0.06);
    border: 1px solid rgba(6, 78, 59, 0.06);
    transition: all 0.3s ease;
}

.menu__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(6, 78, 59, 0.12);
    border-color: rgba(4, 120, 87, 0.15);
}

.menu__item-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #064e3b;
    margin-bottom: 0.375rem;
}

.menu__item-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

.menu__note {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 2rem;
    font-style: italic;
}

/* ── Gallery ── */
.gallery {
    padding: 7rem 1.5rem;
    background: #fefdf8;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery__item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(6, 78, 59, 0.1);
    transition: all 0.4s ease;
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(6, 78, 59, 0.18);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery__item--large img {
    height: 100%;
    min-height: 400px;
}

.gallery__item:not(.gallery__item--large) img {
    height: 240px;
}

.gallery__item--wide {
    grid-column: span 12;
}

.gallery__item--wide img {
    height: 280px;
}

/* ── Visit ── */
.visit {
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #022c22 0%, #047857 50%, #059669 100%);
    color: #fff;
}

.visit__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit__text {
    padding-top: 1rem;
}

.visit__text .section-title {
    color: #fff;
}

.visit__text .section-label {
    color: #d9f99d;
}

.visit__text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visit__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.visit__card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.visit__card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(217, 249, 157, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9f99d;
}

.visit__card strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.375rem;
}

.visit__card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.visit__card a {
    color: #d9f99d;
    transition: color 0.2s ease;
}

.visit__card a:hover {
    color: #fff;
}

/* ── Contact ── */
.contact {
    padding: 7rem 1.5rem;
    background: #fefdf8;
}

.contact__container {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact__desc {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
    margin-top: 1rem;
}

.contact__desc a {
    color: #047857;
    font-weight: 600;
    border-bottom: 1px solid rgba(4, 120, 87, 0.3);
    transition: all 0.2s ease;
}

.contact__desc a:hover {
    color: #065f46;
    border-bottom-color: #065f46;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #064e3b;
}

.contact__input {
    padding: 0.875rem 1rem;
    border: 1.5px solid #d1fae5;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #064e3b;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.contact__input::placeholder {
    color: #9ca3af;
}

.contact__input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.contact__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    color: #065f46;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact__success svg {
    flex-shrink: 0;
    color: #059669;
}

/* ── Footer ── */
.footer {
    background: #022c22;
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 700;
    font-size: 1.0625rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer__logo svg {
    color: #6ee7b7;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer__links a:hover {
    color: #d9f99d;
    padding-left: 0.25rem;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #d9f99d;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about__container {
        gap: 3rem;
    }

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

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

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
        min-height: 100svh;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero__trust {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .about__image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -2rem;
        margin-left: auto;
    }

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

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

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item--large img {
        min-height: 250px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item img {
        height: 200px !important;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .about, .menu, .gallery, .visit, .contact {
        padding: 5rem 1rem;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 1;
    }
}
