:root {
    --bg: #f6f4ee;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --text: #183126;
    --muted: #5f7468;
    --line: rgba(24, 49, 38, 0.09);
    --primary: #2f7d57;
    --primary-dark: #1d5b3c;
    --accent: #d8e86f;
    --accent-soft: #edf5b7;
    --shadow: 0 20px 60px rgba(28, 57, 42, 0.12);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 62px;

    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(216, 232, 111, 0.35), transparent 30%),
        radial-gradient(circle at right 20%, rgba(47, 125, 87, 0.12), transparent 25%),
        linear-gradient(180deg, #fbfaf6 0%, #f4f1e8 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

section[id] {
    scroll-margin-top: 90px;
}

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

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(246, 244, 238, 0.72);
    border-bottom: 1px solid rgba(24, 49, 38, 0.06);
    transition:
        background 250ms ease,
        box-shadow 250ms ease,
        border-color 250ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 34px rgba(24, 49, 38, 0.08);
    border-bottom-color: rgba(24, 49, 38, 0.08);
}

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

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

}

/* .brand-logo-shell {
    background: linear-gradient(135deg, #1f5d3e 0%, #2f7d57 100%);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow:
        0 14px 28px rgba(47, 125, 87, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}  */

.brand-logo {
    width: 120px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
}

.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.92rem;

    transition:
        transform 250ms ease,
        box-shadow 250ms ease,
        background 250ms ease,
        border-color 250ms ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(180deg, #3e9568 0%, #2f7d57 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(47, 125, 87, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 20px 34px rgba(47, 125, 87, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(24, 49, 38, 0.08);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff;
}

/* HERO */
.hero {
    padding: 54px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy {
    padding: 36px 10px 36px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    margin-bottom: 10px;

    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(24, 49, 38, 0.06);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(24, 49, 38, 0.05);
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #a3d86d, #2f7d57);
    box-shadow: 0 0 0 6px rgba(47, 125, 87, 0.1);
}

h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.9rem, 6vw, 5.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 11ch;
}

.hero-copy p {
    margin: 0;
    max-width: 600px;
    font-size: 1.08rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.stat-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 12px 28px rgba(24, 49, 38, 0.06);
    backdrop-filter: blur(10px);
    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(24, 49, 38, 0.08);
}

.stat-card strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-visual {
    position: relative;
    min-height: 760px;
    perspective: 1000px;
    transition: transform 250ms ease;
}

.visual-main {
    position: absolute;
    inset: 0 0 88px 0;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
        url("https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?auto=format&fit=crop&w=1200&q=80") center/cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.visual-main::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(19, 31, 24, 0.66));
}



.floating-card {
    position: absolute;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.34) 0%,
            rgba(255, 255, 255, 0.18) 45%,
            rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        0 20px 50px rgba(20, 43, 32, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 300ms ease,
        box-shadow 300ms ease,
        border-color 300ms ease,
        background 300ms ease;
    will-change: transform;
}

.floating-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.30) 0%,
            rgba(255, 255, 255, 0.10) 28%,
            rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
}

.floating-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -70px;
    right: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
    pointer-events: none;
}

.floating-card:hover {
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow:
        0 26px 70px rgba(20, 43, 32, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}


.hours-day-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hours-dot.is-open {
    background: #9fe870;
    box-shadow: 0 0 0 4px rgba(159, 232, 112, 0.14);
}

.hours-dot.is-closed {
    background: #ff7a7a;
    box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.14);
}

.top-hours-card,

.hours-card,
.offer-card {
    z-index: 2;
}

.top-hours-card {
    top: 28px;
    right: -12px;
    width: 250px;
    padding: 20px;
    border-radius: 26px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.44) 0%,
            rgba(255, 255, 255, 0.22) 100%);
}

.hours-card {
    top: 270px;
    right: 18px;
    width: 250px;
    padding: 20px;
    border-radius: 26px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.20) 100%);
}

.offer-card {
    left: -10px;
    bottom: 0;
    width: 280px;
    padding: 20px;
    border-radius: 26px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.44) 0%,
            rgba(255, 255, 255, 0.22) 100%);
}

.top-hours-card small,
.hours-card small,
.offer-card small {
    display: block;
    margin-bottom: 10px;
    color: rgba(12, 30, 21, 0.84);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}



.top-hours-card strong,
.hours-card strong,
.offer-card strong {
    display: block;
    color: #0d2219;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.top-hours-card strong {
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hours-card strong {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.offer-card strong {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.offer-card p {
    margin: 0;
    color: rgba(16, 38, 28, 0.82);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.hours-list {
    display: grid;
    gap: 10px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(16, 38, 28, 0.12);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}



.mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 125, 87, 0.12);
    border: 1px solid rgba(47, 125, 87, 0.12);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 8px 18px rgba(47, 125, 87, 0.08);
}

.mini-chip::before {
    content: "✿";
    font-size: 0.8rem;
}

.offer-card p {
    color: rgba(16, 38, 28, 0.78);
    font-weight: 500;
}

.hours-row {
    border-bottom: 1px solid rgba(16, 38, 28, 0.10);
}

.hours-row span:first-child {
    color: rgba(16, 38, 28, 0.78);
    font-weight: 700;
}

.hours-row span:last-child {
    color: #0d2219;
    font-weight: 800;
}

.top-hours-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.42) 0%,
            rgba(255, 255, 255, 0.20) 100%);
}

.hours-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.36) 0%,
            rgba(255, 255, 255, 0.16) 100%);
}

.offer-card {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.40) 0%,
            rgba(255, 255, 255, 0.18) 100%);
}

.top-hours-card {
    top: 28px;
    right: -12px;
    width: 230px;
    padding: 18px;
    border-radius: 24px;
}



.mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 125, 87, 0.12);
    border: 1px solid rgba(47, 125, 87, 0.12);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 8px 18px rgba(47, 125, 87, 0.08);
}

.mini-chip::before {
    content: "✿";
    font-size: 0.8rem;
}

.hours-card {
    top: 270px;
    right: 18px;
    width: 250px;
    padding: 20px;
    border-radius: 26px;
}




.hours-list {
    display: grid;
    gap: 10px;
}





.offer-card {
    left: -10px;
    bottom: 0;
    width: 280px;
    padding: 20px;
    border-radius: 26px;
}





/* GENERAL SECTIONS */
.section {
    padding: 48px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-head p {
    margin: 0;
    max-width: 520px;
    color: var(--muted);
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 18px 36px rgba(24, 49, 38, 0.07);
    overflow: hidden;
    min-height: 270px;
    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(216, 232, 111, 0.55), transparent 70%);
    border-radius: 50%;
    transition: transform 350ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 44px rgba(24, 49, 38, 0.1);
    border-color: rgba(47, 125, 87, 0.18);
}

.service-card:hover::before {
    transform: scale(1.12);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: linear-gradient(180deg, #eaf6cf, #d7ebb0);
    margin-bottom: 18px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        0 10px 22px rgba(47, 125, 87, 0.16);
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.service-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.96rem;
}

.service-link {
    font-weight: 800;
    color: var(--primary-dark);
}

/* SHOWCASE */
.showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: stretch;
}

.showcase-left,
.showcase-right {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    min-height: 560px;
    box-shadow: var(--shadow);
}

.showcase-left {
    background:
        /* linear-gradient(180deg, rgba(10, 20, 15, 0.08), rgba(10, 20, 15, 0.48)), */
        url("/assets/images/lupina.png") center/cover;
}

.showcase-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
    background: transparent;
    box-shadow: none;
    min-height: auto;
    overflow: visible;
}

.showcase-top,
.showcase-bottom {
    border-radius: 30px;
    overflow: hidden;
    min-height: 269px;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 300ms ease;
}

.showcase-left,
.showcase-top,
.showcase-bottom {
    transition: transform 300ms ease;
}

.showcase-top:hover,
.showcase-bottom:hover,
.showcase-left:hover {
    transform: translateY(-4px);
}

.showcase-top {
    background:
        /* linear-gradient(180deg, rgba(10, 20, 15, 0.12), rgba(10, 20, 15, 0.5)), */
        url("/assets/images/vcely.png") center/cover;
}

.showcase-bottom {
    background:
        /* linear-gradient(180deg, rgba(10, 20, 15, 0.08), rgba(10, 20, 15, 0.45)), */
        url("/assets/images/ruz.jpg") center/cover;
}

.showcase-label {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.showcase-label strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.showcase-label span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-weight: 700;
    color: #fff;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: center;
}

.about-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 18px 44px rgba(24, 49, 38, 0.07);
}

.about-card h3 {
    margin: 0 0 14px;
    font-size: 1.9rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.about-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 600;
}

.about-list div::before {
    content: "✓";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(47, 125, 87, 0.11);
    color: var(--primary-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-visual {
    min-height: 520px;
    border-radius: 30px;
    background:

        url("/assets/images/orange.jpg") center/cover;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.about-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    overflow: hidden;
    padding: 22px 24px;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.34) 0%,
            rgba(255, 255, 255, 0.18) 45%,
            rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
    color: #10261c;
    box-shadow:
        0 18px 42px rgba(24, 49, 38, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.40),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.about-note::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.26) 0%,
            rgba(255, 255, 255, 0.10) 28%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.about-note::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -90px;
    right: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
    pointer-events: none;
}

.about-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 800;
    color: #0d2219;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.about-note {
    font-size: 0.98rem;
    line-height: 1.65;
}

.about-note {
    transition:
        transform 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease;
}

.about-note:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow:
        0 22px 48px rgba(24, 49, 38, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.46),
        inset 0 -1px 0 rgba(255, 255, 255, 0.10);
}

/* CONTACT */
.contact-banner {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 40px;
    background:
        radial-gradient(circle at left top, rgba(216, 232, 111, 0.65), transparent 25%),
        linear-gradient(135deg, #1f5d3e 0%, #2f7d57 55%, #4ba574 100%);
    color: #fff;
    box-shadow: 0 26px 60px rgba(30, 72, 49, 0.22);
}

.contact-banner::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: 50%;
    bottom: -190px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-banner::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    right: -120px;
    top: -140px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-main {
    flex: 1;
    min-width: 0;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.contact-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.contact-inner p {
    margin: 0 0 22px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
}



.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}


.contact-detail-card-address {
    overflow: hidden;
}

.contact-address-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 14px;
    align-items: stretch;
}

.contact-address-text {
    min-width: 0;
}

.contact-mini-map {
    position: relative;
    min-height: 140px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.contact-mini-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-detail-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.contact-detail-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-detail-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.02rem;
    color: #fff;
}

.contact-detail-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.6;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.contact-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-row span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    flex-shrink: 0;
}

.contact-info-row a {
    color: #fff;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}








.contact-detail-link {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.contact-side {
    min-width: 300px;
    max-width: 320px;
    display: grid;
    gap: 14px;
}

.social-box {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.social-box strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #fff;
}

.social-links {
    display: grid;
    gap: 10px;
}




.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}



.contact-logo-wrap {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.contact-logo {
    width: 160px;
    height: auto;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    flex: 0 0 auto;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link span {
    display: inline-block;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}



.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(10px);
}


.social-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}


.contact-hours {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.contact-hours strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-hours .hours-row {
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.contact-hours .hours-row span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.contact-hours .hours-row span:last-child {
    color: #fff;
}

/* FOOTER */
.footer {
    padding: 30px 0 50px;
    color: var(--muted);
}

.footer-inner {
    border-top: 1px solid rgba(24, 49, 38, 0.08);
    padding-top: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f5d3e 0%, #2f7d57 100%);
    flex-shrink: 0;
}

.footer-logo {
    width: 130px;
    height: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-width: 0;
}

.footer-text {
    color: var(--muted);
    line-height: 1.5;
}

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

.footer-links a,
.footer-links .edit-cookies {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links .edit-cookies:hover {
    color: var(--muted);
}

.footer-links .edit-cookies {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 720px) {
    .footer {
        padding: 24px 0 36px;
    }

    .footer-inner {
        padding-top: 20px;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-logo {
        width: 110px;
    }

    .footer-content {
        width: 100%;
        gap: 8px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}



.site-header.theme-zoo {
    background: rgba(248, 243, 234, 0.82);
    border-bottom-color: rgba(53, 38, 27, 0.08);
}

.site-header.theme-zoo.is-scrolled {
    background: rgba(255, 250, 244, 0.9);
    box-shadow: 0 14px 34px rgba(73, 48, 24, 0.08);
    border-bottom-color: rgba(53, 38, 27, 0.1);
}

.site-header.theme-zoo .nav {
    color: #7b6a5a;
}

.site-header.theme-zoo .nav a:hover,
.site-header.theme-zoo .nav a.is-active {
    color: #35261b;
}

.site-header.theme-zoo .nav a::after {
    background: #9a6a3a;
}

.site-header.theme-zoo .btn-primary {
    background: linear-gradient(180deg, #aa7440 0%, #8f6034 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(143, 96, 52, 0.24);
}

.site-header.theme-zoo .btn-primary:hover {
    box-shadow: 0 20px 34px rgba(143, 96, 52, 0.3);
}

.site-header.theme-zoo .btn-secondary {
    background: rgba(255, 250, 244, 0.8);
    border-color: rgba(53, 38, 27, 0.08);
    color: #35261b;
}

.site-header.theme-zoo .btn-secondary:hover {
    background: #fffaf5;
}

.site-header.theme-zoo .brand-logo {
    width: 126px;
    height: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .hero-grid,
    .showcase,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-visual {
        min-height: 660px;
    }

    .nav {
        display: none;
    }

    .contact-side {
        width: 100%;
    }


    .contact-details-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 720px) {
    .header-actions .btn-secondary {
        display: none;
    }

    .hero {
        padding-top: 26px;
    }

    h1 {
        max-width: none;
    }

    .hero-stats,
    .services {
        grid-template-columns: 1fr;
    }

    .section-head,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-visual {
        min-height: 760px;
    }

    .visual-main {
        inset: 0 0 70px 0;
    }

    .top-hours-card {
        right: 10px;
        top: 16px;
        width: 220px;
    }

    .hours-card {
        left: 10px;
        right: 10px;
        top: 240px;
        width: auto;
    }

    .offer-card {
        left: 10px;
        right: 10px;
        width: auto;
    }

    .contact-banner,
    .about-card {
        padding: 28px;
    }

    .social-actions {
        justify-content: center;
    }

    .social-link {
        width: 44px;
        height: 44px;
        min-height: 44px;
        border-radius: 12px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .brand-logo {
        width: 126px;
    }

    .contact-logo {
        width: 140px;
    }

    .footer-logo {
        width: 110px;
    }

    .contact-side {
        min-width: 100%;
        max-width: 100%;
    }



    .contact-address-layout {
        grid-template-columns: 1fr;
    }

    .contact-mini-map {
        min-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .btn,
    .service-card,
    .stat-card,
    .floating-card,
    .showcase-top,
    .showcase-bottom,
    .showcase-left,
    .site-header,
    .nav a::after,
    .hero-visual {
        transition: none !important;
    }
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(24, 49, 38, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition:
        background 250ms ease,
        border-color 250ms ease,
        transform 250ms ease;
}

.menu-toggle:hover {
    background: #fff;
    transform: translateY(-1px);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transition:
        transform 250ms ease,
        opacity 250ms ease;
}

/* animace do X */
.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-icon {
    display: none;
}

body.menu-open,
html.menu-open {
    overflow: hidden;
}

@media (max-width: 1100px) {

    .tag {
        display: none
    }

    .header-inner {
        position: relative;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav {
        display: flex;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 60;
        width: 100vw;
        height: 100vh;

        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;


        padding: 12px;

        backdrop-filter: blur(16px);
        background: #f1f4d1;
        border-bottom: 1px solid rgba(24, 49, 38, 0.06);
        transition: background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;


        border: 1px solid rgba(24, 49, 38, 0.08);
        box-shadow: 0 18px 40px rgba(24, 49, 38, 0.12);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(16px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition:
            opacity 250ms ease,
            transform 250ms ease,
            visibility 250ms ease;
    }

    .site-header.menu-open .nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;

    }

    .site-header.menu-open,
    .site-header.menu-open.is-scrolled {
        background: transparent;
        box-shadow: none;
        border-bottom-color: transparent;
    }

    .nav a {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .nav a:hover,
    .nav a.is-active {
        background: rgba(47, 125, 87, 0.08);
    }

    .nav a::after {
        display: none;
    }

    .nav-home-link {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-icon {
        display: block;
        width: 18px;
        height: 18px;
        fill: currentColor;
        flex-shrink: 0;
    }
}

@media (max-width: 720px) {
    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-primary {
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.88rem;
    }

    section[id] {
        scroll-margin-top: 86px;
    }
}