@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --green: #61A375;
    --green-dark: #4A8560;
    --green-light: #E4EFE8;
    --blue: #7690C9;
    --blue-light: #E7ECF5;
    --cream: #F7F1E9;
    --cream-deep: #EFE6D8;
    --ink: #2E2A23;
    --ink-soft: #6B6357;
    --white: #FFFFFF;
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow: 0 20px 50px rgba(46, 42, 35, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

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

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(97, 163, 117, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 241, 233, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(46, 42, 35, 0.06);
    transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(46, 42, 35, 0.08);
}

.site-header .container.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 128px;
    transition: height 0.25s ease;
}

.site-header.is-scrolled .container.header-grid {
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding: 10px 0;
}

.logo img {
    height: 112px;
    width: auto;
    transition: height 0.25s ease;
}

.site-header.is-scrolled .logo img {
    height: 60px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex: 1;
}

.main-nav a {
    white-space: nowrap;
}

.main-nav a {
    font-weight: 600;
    font-size: 15.5px;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.25s ease;
}

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

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

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

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

.cart-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--ink);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

/* Hero */
.hero {
    position: relative;
    height: 86vh;
    min-height: 620px;
    max-height: 860px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(35, 31, 24, 0.8) 0%, rgba(35, 31, 24, 0.52) 32%, rgba(35, 31, 24, 0.14) 58%, rgba(35, 31, 24, 0) 72%),
        linear-gradient(0deg, rgba(20, 18, 14, 0.55) 0%, rgba(20, 18, 14, 0) 24%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.hero-text {
    max-width: 580px;
}

.hero h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-on-photo.btn-outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: var(--white);
}

.btn-on-photo.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
}

.hero-slider-dots {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
    background: var(--white);
    transform: scale(1.3);
}

.wave-divider {
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    display: block;
}

/* Areas section */
.areas {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: 38px;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
}

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

.area-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

.area-card:hover {
    transform: translateY(-6px);
}

.area-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.area-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.area-card:hover .area-card-img img {
    transform: scale(1.06);
}

.area-card h3 {
    font-size: 20px;
    color: var(--ink);
    padding: 22px 24px 8px;
}

.area-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    padding: 0 24px;
    flex: 1;
}

.area-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--green-dark);
    padding: 18px 24px 24px;
    transition: gap 0.2s ease;
}

.area-card-link:hover {
    gap: 10px;
}

/* About + practical info */
.about {
    padding: 20px 0 100px;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.about-text {
    max-width: 720px;
}

.about-text h2 {
    font-size: 34px;
    color: var(--ink);
    margin: 14px 0 18px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 999px;
    padding: 12px 22px 12px 12px;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--green-dark);
}

/* Testimonials */
.testimonials {
    padding: 20px 0 100px;
}

.testimonials .section-heading {
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
}

.testimonial-frame {
    overflow: hidden;
    margin: 0 -30px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 22px 30px 42px;
    align-items: stretch;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 30px rgba(46, 42, 35, 0.07);
    padding: 32px;
}

.tslide-arrow {
    position: absolute;
    top: calc(50% - 12px);
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.tslide-prev { left: -66px; }
.tslide-next { right: -66px; }

.tslide-arrow:hover {
    background: var(--green);
}

.tslide-arrow:hover svg {
    stroke: var(--white);
}

.tslide-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--ink);
    transition: stroke 0.2s ease;
}

.tslide-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    background: var(--white);
}

.tslide-arrow:disabled:hover svg {
    stroke: var(--ink);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
}

.testimonial-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--cream-deep);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-dots button.is-active {
    background: var(--green);
    transform: scale(1.25);
}

.testimonial-stars {
    color: var(--green);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-dark);
    font-weight: 700;
    font-family: 'Fraunces', serif;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 14.5px;
    color: var(--ink);
}

/* Find us */
.find-us {
    padding: 0 0 100px;
}

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.find-us-map,
.find-us-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.find-us-photo {
    position: relative;
    background: repeating-linear-gradient(
        135deg,
        var(--green-light),
        var(--green-light) 14px,
        var(--cream-deep) 14px,
        var(--cream-deep) 28px
    );
}

.find-us-photo .placeholder-note {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
}

.footer-wave {
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    height: 70px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col span {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
}

.footer-bottom span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1380px) {
    .tslide-prev { left: -16px; }
    .tslide-next { right: -16px; }
}

@media (max-width: 960px) {
    .site-header .container.header-grid {
        height: 108px;
    }
    .site-header.is-scrolled .container.header-grid {
        height: 76px;
    }
    .main-nav {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .logo img {
        height: 84px;
    }
    .site-header.is-scrolled .logo img {
        height: 56px;
    }
    .hero h1 {
        font-size: 40px;
    }
    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(35, 31, 24, 0.35) 0%, rgba(35, 31, 24, 0.72) 55%, rgba(35, 31, 24, 0.85) 100%);
    }
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-frame {
        overflow: visible;
        margin: 0;
    }
    .testimonial-track {
        display: block;
        transform: none !important;
    }
    .testimonial-page {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px 4px;
    }
    .tslide-arrow,
    .testimonial-dots {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 20px;
    }
    .site-header .container.header-grid {
        height: 88px;
    }
    .site-header.is-scrolled .container.header-grid {
        height: 68px;
    }
    .logo img {
        height: 68px;
    }
    .site-header.is-scrolled .logo img {
        height: 48px;
    }
    .hero {
        min-height: 620px;
        height: 96vh;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 17px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .areas {
        padding: 64px 0;
    }
    .section-heading {
        margin-bottom: 36px;
    }
    .section-heading h2 {
        font-size: 30px;
    }
    .area-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about {
        padding: 8px 0 64px;
    }
    .about-text h2 {
        font-size: 28px;
    }
    .find-us {
        padding: 0 0 64px;
    }
    .find-us-grid {
        grid-template-columns: 1fr;
    }
    .find-us-map,
    .find-us-photo {
        aspect-ratio: 4 / 3;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }
    .testimonial-page {
        grid-template-columns: 1fr;
    }
}
