:root{
    --green-900:#154b18;
    --green-800:#1d5d1f;
    --green-700:#2c7528;
    --green-600:#3d8a35;
    --green-100:#eef7ec;

    --orange-700:#ea741f;
    --orange-600:#f07a24;
    --orange-500:#ff9640;
    --orange-100:#fff2e7;

    --ink:#1d201b;
    --muted:#677266;
    --line:#e7ebdf;
    --white:#ffffff;
    --soft:#fbf8f3;
    --panel:#ffffff;

    --shadow-sm:0 10px 24px rgba(21, 75, 24, 0.06);
    --shadow-md:0 18px 40px rgba(21, 75, 24, 0.10);
    --shadow-lg:0 26px 60px rgba(21, 75, 24, 0.14);

    --radius-sm:14px;
    --radius-md:20px;
    --radius-lg:28px;

    --container:1240px;
    --header-height:132px;

    --transition:all .32s ease;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter", sans-serif;
    font-size:15px;
    line-height:1.6;
    color:var(--ink);
    background:
            radial-gradient(circle at top left, rgba(61, 138, 53, 0.07), transparent 24%),
            radial-gradient(circle at bottom right, rgba(240, 122, 36, 0.08), transparent 22%),
            var(--soft);
    overflow-x:hidden;
}

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

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

button,
input,
select,
textarea{
    font:inherit;
    border:none;
    outline:none;
}

ul{
    list-style:none;
}

.container{
    width:min(var(--container), calc(100% - 32px));
    margin:0 auto;
}

.site-wrap{
    min-height:100vh;
}

/* topbar */
.topbar{
    background:linear-gradient(90deg, var(--green-900), var(--green-700));
    color:rgba(255,255,255,.92);
    font-size:12px;
}

.topbar-inner{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.topbar-sep{
    width:5px;
    height:5px;
    border-radius:50%;
    background:rgba(255,255,255,.55);
}

.topbar-socials{
    display:flex;
    align-items:center;
    gap:10px;
}

.topbar-social{
    width:34px;
    height:34px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#ffffff;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    transition:var(--transition);
}

.topbar-social:hover{
    background:rgba(255,255,255,.18);
    color:#fff;
    transform:translateY(-2px);
}

.topbar-social svg{
    width:16px;
    height:16px;
    display:block;
}

/* header */
.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(251,248,243,.88);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(21, 75, 24, 0.08);
    transition:var(--transition);
}

.header.scrolled{
    box-shadow:0 12px 28px rgba(21, 75, 24, 0.08);
    background:rgba(251,248,243,.96);
}

.header-inner{
    min-height:var(--header-height);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
}

.brand-logo{
    height:132px;
    width:auto;
    object-fit:contain;
    padding:8px 0;
}

.nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav > a,
.nav-drop-toggle{
    position:relative;
    font-size:14px;
    font-weight:700;
    color:var(--green-900);
    transition:var(--transition);
}

.nav > a::after,
.nav-drop-toggle::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--orange-600), var(--green-700));
    transition:var(--transition);
}

.nav > a:hover,
.nav > a.active,
.nav-drop-toggle:hover{
    color:var(--orange-700);
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-drop-toggle:hover::after{
    width:100%;
}

.nav-dropdown{
    position:relative;
    display:flex;
    align-items:center;
}

.nav-drop-toggle{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:transparent;
    cursor:pointer;
    padding:0;
}

.nav-caret{
    font-size:12px;
    line-height:1;
    transition:transform .25s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret{
    transform:rotate(180deg);
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 22px);
    left:0;
    min-width:290px;
    padding:12px;
    border-radius:22px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.10);
    box-shadow:var(--shadow-md);
    display:grid;
    gap:6px;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:var(--transition);
    z-index:20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-dropdown-menu a{
    display:flex;
    align-items:center;
    min-height:46px;
    padding:0 14px;
    border-radius:14px;
    color:var(--green-900);
    font-size:13px;
    font-weight:700;
    transition:var(--transition);
}

.nav-dropdown-menu a:hover{
    background:var(--green-100);
    color:var(--orange-700);
    transform:translateX(4px);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

/* buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 20px;
    border-radius:999px;
    cursor:pointer;
    transition:var(--transition);
    font-size:14px;
    font-weight:800;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:linear-gradient(135deg, var(--orange-600), var(--orange-500));
    color:#fff;
    box-shadow:0 12px 26px rgba(240, 122, 36, 0.22);
}

.btn-primary:hover{
    box-shadow:0 18px 32px rgba(240, 122, 36, 0.28);
}

.btn-secondary{
    background:linear-gradient(135deg, var(--green-800), var(--green-600));
    color:#fff;
    box-shadow:0 12px 26px rgba(29, 93, 31, 0.18);
}

.btn-secondary:hover{
    box-shadow:0 18px 32px rgba(29, 93, 31, 0.24);
}

.btn-outline{
    background:#fff;
    color:var(--green-900);
    border:1px solid rgba(21, 75, 24, 0.12);
    box-shadow:var(--shadow-sm);
}

.btn-outline:hover{
    background:var(--green-100);
}

.btn-sm{
    min-height:40px;
    padding:0 16px;
    font-size:13px;
}

.btn-block{
    width:100%;
}

/* mobile menu */
.menu-toggle{
    display:none;
    width:50px;
    height:50px;
    border-radius:16px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
    cursor:pointer;
    position:relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
    content:"";
    position:absolute;
    left:50%;
    width:22px;
    height:2px;
    background:var(--green-900);
    transform:translateX(-50%);
    transition:var(--transition);
}

.menu-toggle span{
    top:24px;
}

.menu-toggle span::before{
    top:-7px;
}

.menu-toggle span::after{
    top:7px;
}

.mobile-menu{
    position:fixed;
    inset:0;
    background:rgba(17, 30, 17, 0.35);
    backdrop-filter:blur(8px);
    z-index:1100;
    opacity:0;
    pointer-events:none;
    transition:var(--transition);
}

.mobile-menu.active{
    opacity:1;
    pointer-events:auto;
}

.mobile-menu-panel{
    width:min(380px, 92%);
    height:100%;
    margin-left:auto;
    background:linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
    padding:24px;
    transform:translateX(100%);
    transition:var(--transition);
    box-shadow:-20px 0 40px rgba(0,0,0,.12);
    display:flex;
    flex-direction:column;
    overflow-y:auto;
}

.mobile-menu.active .mobile-menu-panel{
    transform:translateX(0);
}

.mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:24px;
}

.mobile-brand-logo{
    height:104px;
}

.mobile-close{
    width:46px;
    height:46px;
    border-radius:14px;
    background:var(--orange-100);
    color:var(--orange-700);
    font-size:28px;
    cursor:pointer;
}

.mobile-nav{
    display:grid;
    gap:12px;
}

.mobile-nav > a{
    display:flex;
    align-items:center;
    min-height:52px;
    padding:0 16px;
    border-radius:16px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.08);
    color:var(--green-900);
    font-weight:800;
    font-size:14px;
}

.mobile-nav > a.active{
    background:var(--green-100);
    color:var(--green-800);
}

.mobile-nav-group{
    padding:14px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
}

.mobile-nav-title{
    font-size:14px;
    font-weight:800;
    color:var(--green-900);
    margin-bottom:10px;
}

.mobile-subnav{
    display:grid;
    gap:8px;
}

.mobile-subnav a{
    display:flex;
    align-items:center;
    min-height:42px;
    padding:0 12px;
    border-radius:12px;
    background:var(--green-100);
    color:var(--green-900);
    font-size:13px;
    font-weight:700;
}

.mobile-subnav a:hover{
    background:var(--orange-100);
    color:var(--orange-700);
}

.mobile-cta{
    margin-top:auto;
    display:grid;
    gap:12px;
    padding-top:20px;
}

/* hero */
.hero{
    padding:64px 0 74px;
    position:relative;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 13px;
    border-radius:999px;
    background:var(--green-100);
    color:var(--green-800);
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.09em;
    margin-bottom:16px;
}

.hero-title{
    font-family:"Playfair Display", serif;
    font-size:clamp(34px, 5vw, 62px);
    line-height:1.06;
    letter-spacing:-0.04em;
    color:var(--green-900);
    margin-bottom:16px;
}

.hero-title span{
    color:var(--orange-700);
}

.hero-text{
    max-width:640px;
    font-size:15px;
    line-height:1.85;
    color:var(--muted);
    margin-bottom:24px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:24px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}

.hero-feature{
    padding:18px;
    border-radius:20px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
}

.hero-feature strong{
    display:block;
    font-size:14px;
    color:var(--green-900);
    margin-bottom:7px;
}

.hero-feature span{
    display:block;
    font-size:12px;
    line-height:1.7;
    color:var(--muted);
}

.hero-image-card{
    position:relative;
    border-radius:34px;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--shadow-lg);
    border:1px solid rgba(21, 75, 24, 0.08);
    min-height:700px;
}

.hero-slider{
    isolation:isolate;
}

.hero-slides{
    position:relative;
    width:100%;
    height:700px;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .9s ease, visibility .9s ease;
    z-index:1;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

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

.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.20) 100%);
    pointer-events:none;
}

.hero-slider-dots{
    position:absolute;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:10px;
    z-index:5;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.16);
}

.hero-dot{
    width:11px;
    height:11px;
    border-radius:50%;
    background:rgba(255,255,255,.55);
    cursor:pointer;
    transition:var(--transition);
    padding:0;
    min-width:11px;
    min-height:11px;
}

.hero-dot.active{
    background:var(--orange-600);
    transform:scale(1.15);
    box-shadow:0 0 0 4px rgba(240, 122, 36, 0.18);
}

.hero-slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    z-index:5;
    border:1px solid rgba(255,255,255,.20);
    transition:var(--transition);
}

.hero-slider-arrow:hover{
    background:rgba(240, 122, 36, .85);
    border-color:transparent;
}

.hero-slider-prev{
    left:20px;
}

.hero-slider-next{
    right:20px;
}

.hero-floating{
    position:absolute;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(10px);
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-md);
    border-radius:22px;
    padding:16px 18px;
    max-width:240px;
    z-index:6;
}

.hero-floating span{
    display:block;
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--orange-700);
    margin-bottom:6px;
}

.hero-floating strong{
    display:block;
    font-size:14px;
    line-height:1.4;
    color:var(--green-900);
}

.hero-floating-top{
    top:24px;
    right:24px;
}

.hero-floating-bottom{
    left:24px;
    bottom:24px;
}

/* sections */
.stats{
    padding-bottom:28px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    background:linear-gradient(135deg, var(--green-900), var(--green-700));
    padding:26px;
    border-radius:32px;
    box-shadow:var(--shadow-lg);
}

.stat-card{
    text-align:center;
    padding:18px 14px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
}

.stat-card h3{
    font-family:"Playfair Display", serif;
    font-size:40px;
    line-height:1;
    color:#fff;
    margin-bottom:8px;
}

.stat-card p{
    color:rgba(255,255,255,.84);
    font-size:13px;
    line-height:1.65;
}

.section{
    padding:110px 0;
}

.section-head{
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.section-head h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(28px, 3.5vw, 44px);
    line-height:1.15;
    letter-spacing:-0.03em;
    color:var(--green-900);
    margin-bottom:14px;
}

.section-head p{
    font-size:15px;
    line-height:1.8;
    color:var(--muted);
}

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

.service-card{
    background:rgba(255,255,255,.82);
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
    border-radius:26px;
    padding:28px;
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.service-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg, var(--orange-100), #fff);
    color:var(--orange-700);
    font-weight:800;
    margin-bottom:18px;
}

.service-card h3{
    font-size:19px;
    line-height:1.3;
    color:var(--green-900);
    margin-bottom:10px;
}

.service-card p{
    font-size:14px;
    line-height:1.75;
    color:var(--muted);
    margin-bottom:16px;
}

.service-card a{
    color:var(--orange-700);
    font-weight:800;
    font-size:13px;
}

.menu-section{
    background:linear-gradient(180deg, rgba(238, 247, 236, .42), transparent);
}

.menu-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.menu-tab{
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.10);
    color:var(--green-900);
    font-weight:800;
    font-size:13px;
    cursor:pointer;
    transition:var(--transition);
}

.menu-tab.active,
.menu-tab:hover{
    background:linear-gradient(135deg, var(--orange-600), var(--orange-500));
    color:#fff;
    border-color:transparent;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
}

.menu-card{
    background:rgba(255,255,255,.9);
    border:1px solid rgba(21, 75, 24, 0.08);
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.menu-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.menu-card-image{
    height:250px;
    overflow:hidden;
}

.menu-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.menu-card:hover .menu-card-image img{
    transform:scale(1.08);
}

.menu-card-body{
    padding:22px;
}

.menu-badge{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    background:var(--green-100);
    color:var(--green-800);
    font-size:11px;
    font-weight:800;
    margin-bottom:10px;
}

.menu-card-body h3{
    font-size:19px;
    line-height:1.28;
    color:var(--green-900);
    margin-bottom:8px;
}

.menu-card-body p{
    font-size:13px;
    line-height:1.75;
    color:var(--muted);
    margin-bottom:12px;
}

.menu-card-body ul{
    display:grid;
    gap:8px;
    margin-bottom:18px;
}

.menu-card-body li{
    font-size:13px;
    color:var(--ink);
    position:relative;
    padding-left:18px;
}

.menu-card-body li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--orange-600);
}

.about-highlight-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:34px;
    align-items:center;
}

.about-highlight-image{
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
}

.about-highlight-image img{
    width:100%;
    height:640px;
    object-fit:cover;
}

.about-highlight-content h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(30px, 3.5vw, 42px);
    line-height:1.15;
    letter-spacing:-0.03em;
    color:var(--green-900);
    margin-bottom:14px;
}

.about-highlight-content p{
    font-size:15px;
    line-height:1.8;
    color:var(--muted);
    margin-bottom:22px;
}

.why-list{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-bottom:26px;
}

.why-item{
    padding:18px;
    border-radius:20px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
}

.why-item strong{
    display:block;
    font-size:15px;
    color:var(--green-900);
    margin-bottom:7px;
}

.why-item span{
    display:block;
    font-size:13px;
    line-height:1.7;
    color:var(--muted);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.gallery-item{
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:transform .55s ease;
}

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

.section-cta{
    margin-top:28px;
    display:flex;
    justify-content:center;
}

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

.testimonial-card{
    padding:28px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-sm);
}

.stars{
    color:var(--orange-600);
    letter-spacing:2px;
    margin-bottom:14px;
    font-size:18px;
}

.testimonial-card p{
    font-size:14px;
    line-height:1.8;
    color:var(--muted);
    margin-bottom:14px;
}

.testimonial-card strong{
    display:block;
    color:var(--green-900);
    font-size:15px;
    margin-bottom:4px;
}

.testimonial-card span{
    display:block;
    color:var(--muted);
    font-size:12px;
}

.cta-section{
    padding-top:40px;
}

.cta-box{
    background:linear-gradient(135deg, var(--green-900), var(--green-700));
    border-radius:34px;
    padding:38px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:28px;
    box-shadow:var(--shadow-lg);
}

.cta-box .eyebrow{
    background:rgba(255,255,255,.12);
    color:#fff;
}

.cta-content h2{
    font-family:"Playfair Display", serif;
    font-size:clamp(28px, 3.5vw, 42px);
    line-height:1.14;
    color:#fff;
    margin-bottom:12px;
}

.cta-content p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.84);
}

.cta-form{
    background:rgba(255,255,255,.96);
    border-radius:26px;
    padding:24px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    min-height:54px;
    padding:0 16px;
    border-radius:16px;
    border:1px solid rgba(21, 75, 24, 0.12);
    background:#fff;
    color:var(--ink);
    font-size:14px;
}

.form-group textarea{
    min-height:130px;
    resize:vertical;
    padding:16px;
}

.form-group-full{
    grid-column:1 / -1;
}

/* footer professional */
.footer{
    margin-top:110px;
    background:
            radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 22%),
            linear-gradient(180deg, var(--green-900), #0d3510);
    color:#fff;
    padding:76px 0 28px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:280px;
    height:280px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(240,122,36,.18), transparent 68%);
    pointer-events:none;
}

.footer-top{
    display:grid;
    grid-template-columns:1.1fr 1.9fr;
    gap:42px;
    padding-bottom:34px;
    border-bottom:1px solid rgba(255,255,255,.10);
    position:relative;
    z-index:1;
}

.footer-brand-box{
    max-width:360px;
}

.footer-logo{
    height:96px;
    width:auto;
    object-fit:contain;
    filter:brightness(1.08);
}

.footer-brand-text{
    margin-top:18px;
    color:rgba(255,255,255,.78);
    font-size:13px;
    line-height:1.9;
}

.footer-socials{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
}

.footer-social{
    width:40px;
    height:40px;
    border-radius:14px;
    display:grid;
    place-items:center;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    transition:var(--transition);
}

.footer-social:hover{
    background:rgba(240,122,36,.22);
    border-color:rgba(240,122,36,.30);
    transform:translateY(-2px);
}

.footer-social svg{
    width:17px;
    height:17px;
    display:block;
}

.footer-links-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:24px;
}

.footer-col h4{
    font-size:15px;
    margin-bottom:16px;
    color:#fff;
    font-weight:800;
    letter-spacing:.01em;
}

.footer-col ul{
    display:grid;
    gap:10px;
}

.footer-col li,
.footer-col a,
.footer-col p{
    color:rgba(255,255,255,.76);
    font-size:13px;
    line-height:1.8;
    transition:var(--transition);
}

.footer-col a:hover{
    color:#fff;
    transform:translateX(4px);
}

.footer-contact-list li{
    display:grid;
    gap:4px;
    padding-bottom:8px;
}

.footer-contact-list span{
    display:block;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:rgba(255,255,255,.52);
}

.footer-bottom{
    margin-top:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    position:relative;
    z-index:1;
}

.footer-bottom p{
    color:rgba(255,255,255,.68);
    font-size:12px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.68);
    font-size:12px;
    transition:var(--transition);
}

.footer-bottom-links a:hover{
    color:#fff;
}

/* misc */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    min-height:60px;
    padding:0 18px 0 14px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg, #25d366, #1ebe5b);
    color:#fff;
    font-weight:800;
    font-size:13px;
    box-shadow:0 18px 34px rgba(37, 211, 102, 0.30);
    z-index:999;
    transition:var(--transition);
}

.whatsapp-float:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 38px rgba(37, 211, 102, 0.36);
}

.whatsapp-float-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.16);
    flex-shrink:0;
}

.whatsapp-float-icon svg{
    width:19px;
    height:19px;
    display:block;
    color:#fff;
}

.whatsapp-float-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.whatsapp-float-text strong{
    font-size:13px;
    font-weight:800;
    color:#fff;
}

.whatsapp-float-text small{
    font-size:11px;
    font-weight:700;
    color:rgba(255,255,255,.88);
    margin-top:3px;
}

.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .7s ease, transform .7s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

.page-hero{
    padding:74px 0 42px;
}

.page-hero-box{
    padding:42px;
    border-radius:30px;
    background:linear-gradient(135deg, rgba(238,247,236,.95), rgba(255,242,231,.95));
    border:1px solid rgba(21, 75, 24, 0.08);
    box-shadow:var(--shadow-md);
    text-align:center;
}

.page-hero-box h1{
    font-family:"Playfair Display", serif;
    font-size:clamp(32px, 4.5vw, 54px);
    line-height:1.1;
    color:var(--green-900);
    margin-bottom:12px;
}

.page-hero-box p{
    max-width:760px;
    margin:0 auto;
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
}

/* responsive */
@media (max-width: 1180px){
    .hero-grid,
    .about-highlight-grid,
    .cta-box,
    .footer-top{
        grid-template-columns:1fr;
    }

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

    .gallery-grid,
    .footer-links-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .hero-image-card{
        min-height:560px;
    }

    .hero-slides{
        height:560px;
    }

    .footer-brand-box{
        max-width:none;
    }
}

@media (max-width: 980px){
    .nav,
    .header-actions{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .hero-features,
    .why-list,
    .stats-grid,
    .form-grid{
        grid-template-columns:1fr 1fr;
    }

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

@media (max-width: 768px){
    .container{
        width:min(var(--container), calc(100% - 24px));
    }

    .topbar-inner{
        min-height:auto;
        padding:10px 0;
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }

    .topbar-right{
        justify-content:center;
    }

    .header-inner{
        min-height:104px;
    }

    .brand-logo{
        height:102px;
        padding:4px 0;
    }

    .hero{
        padding:42px 0 54px;
    }

    .section{
        padding:84px 0;
    }

    .hero-features,
    .why-list,
    .stats-grid,
    .services-grid,
    .menu-grid,
    .gallery-grid,
    .testimonials-grid,
    .footer-links-grid,
    .form-grid{
        grid-template-columns:1fr;
    }

    .hero-title{
        font-size:34px;
        line-height:1.1;
    }

    .hero-text{
        font-size:14px;
    }

    .section-head h2,
    .about-highlight-content h2,
    .cta-content h2{
        font-size:30px;
    }

    .stat-card h3{
        font-size:34px;
    }

    .hero-image-card{
        min-height:420px;
    }

    .hero-slides{
        height:420px;
    }

    .hero-floating{
        position:static;
        max-width:none;
        margin:14px;
    }

    .hero-slider-arrow{
        width:44px;
        height:44px;
        font-size:28px;
    }

    .hero-slider-prev{
        left:12px;
    }

    .hero-slider-next{
        right:12px;
    }

    .cta-box{
        padding:24px;
    }

    .page-hero-box{
        padding:28px 20px;
    }

    .footer{
        margin-top:90px;
        padding:60px 0 24px;
    }

    .footer-top{
        gap:28px;
        padding-bottom:26px;
    }

    .footer-logo{
        height:88px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .whatsapp-float{
        right:14px;
        left:14px;
        bottom:14px;
        justify-content:center;
    }
}
.form-error{
    display:none;
    margin-top:8px;
    font-size:12px;
    color:#c62828;
    font-weight:500;
}
