﻿        @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=DM+Serif+Display&family=Lexend:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@700;800&family=Source+Serif+4:wght@300;600;700&display=swap');

        .nav-mobile-book {
            display: none;
        }

        @media (max-width: 900px) {
            .nav-mobile-book {
                display: flex;
                align-items: center;
                margin-left: auto;
                margin-right: 12px;
                padding: 6px 14px;
                background: #B0A05F;
                color: #1a3320;
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 1px;
                text-transform: uppercase;
                text-decoration: none;
                border-radius: 50px;
                white-space: nowrap;
            }
        }

        body {
            min-height: 100vh;
            background: #EEE6DB;
        }
        .side-bg {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: auto;
            z-index: 1;
            pointer-events: none;
        }

        .side-bg-right {
            position: fixed;
            top: 0;
            right: -40px;
            height: 100vh;
            width: auto;
            z-index: 0;
            pointer-events: none;
            opacity: 0.22;
            filter: sepia(1) saturate(1.8) hue-rotate(-20deg);
            -webkit-mask-image: linear-gradient(to top right, transparent 15%, black 55%);
            mask-image: linear-gradient(to top right, transparent 15%, black 55%);
        }

        .side-bg-maegan {
            position: fixed;
            bottom: 0;
            right: clamp(150px, 13.7vw, 263px);
            height: auto;
            width: clamp(220px, 20.42vw, 392px);
            z-index: 2;
            pointer-events: none;
            filter: sepia(0.25) saturate(1.2) brightness(0.9);
        }

        /* ── Main ─────────────────────────────────────────── */
        .dashboard-main {
            padding-top: 64px;
            min-height: 100vh;
            overflow-y: auto;
            overflow-x: hidden;
        }

        .hero-left-stack {
            position: absolute;
            top: 300px;
            left: 280px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .done-differently {
            position: static;
        }

        .done-differently img {
            display: block;
            width: 500px;
            height: auto;
            max-width: 100%;
        }

        @media (max-width: 900px) {
            .hero-left-stack {
                position: static;
            }
            .done-differently {
                position: absolute;
                top: 335px;
                left: 50%;
                right: auto;
                transform: translateX(-50%);
                width: calc(67vw - 35px);
                z-index: 5;
            }
            .done-differently img {
                width: 100%;
                height: auto;
            }
            .dashboard-main { padding-top: 44px; }
        }

        .topbar {
            display: none;
        }

        .page-title {
            font-size: 20px;
            font-weight: normal;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--color-text);
        }

        .content-area {
            padding: 28px 36px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* ── Pages ────────────────────────────────────────── */
        .page { display: none; }
        .page.active { display: block; animation: fadeIn 0.2s ease; }

        /* ── Home Page ────────────────────────────────────── */
.hero-logo-wrap {
            position: fixed;
            top: 74px;
            left: 10px;
            display: inline-block;
            z-index: 1000;
            pointer-events: none;
        }

        .hero-logo-wrap::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160%;
            height: 160%;
            background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.72) 35%, rgba(255,255,255,0.15) 55%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-logo-wrap img {
            width: 250px;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .topnav-spacer { flex: 1; }
            .hero-logo-wrap {
                top: 90px;
                left: 10px;
            }
            .hero-logo-wrap::before {
                display: none;
            }
            .hero-logo-wrap img {
                width: 130px !important;
            }
        }

        .hero-info-card {
            background: rgba(255, 255, 255, 0.70);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 8px;
            width: 500px;
        }

        .hero-feature {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 16px;
            padding: 8px 16px;
            box-sizing: border-box;
        }

        .hero-feature-icon {
            width: 84px;
            height: 84px;
            min-width: 84px;
            border-radius: 50%;
            border: 2px solid #B0A05F;
            background: rgb(30, 77, 43);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-feature-icon svg {
            width: 42px;
            height: 42px;
        }

        .hero-feature span {
            font-family: 'Noto Serif', serif;
            font-size: 33px;
            color: #1a3320;
            letter-spacing: 0.3px;
            line-height: 1.3;
            text-align: left;
        }

        @media (max-width: 900px) {
            .hero-info-card {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                position: absolute;
                bottom: 80px;
                left: 5px;
                right: 5px;
                top: auto;
                width: auto;
                height: auto;
                padding: 8px;
            }
            .hero-feature {
                flex: 1 1 calc(50% - 4px);
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
                padding: 0 6px;
            }
            .hero-feature-icon {
                width: 36px;
                height: 36px;
                min-width: 36px;
            }
            .hero-feature-icon svg {
                width: 18px;
                height: 18px;
            }
            .hero-feature span {
                font-size: 11px;
                text-align: left;
            }
        }

        .home-hero-section {
            width: 100vw;
            position: relative;
            left: calc(-50vw + 50%);
            background: #205E10 url('../images/Background.png') center center / cover no-repeat;
            margin-top: -28px;
            margin-bottom: 40px;
            min-height: calc(100vh - 64px);
            padding: 0 0 48px;
            box-sizing: border-box;
        }

        @media (max-width: 900px) {
            .home-hero-section {
                background-position: calc(50% + 80px) center;
            }
        }

        .home-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 28px 36px 0;
        }

        .hero-text {
            margin-bottom: 32px;
        }

        .hero-coming {
            font-size: 22px;
            font-style: italic;
            color: var(--color-text-muted);
            margin-bottom: 12px;
        }

        .hero-headline {
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #f0ebe0;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .hero-headline .accent { color: #B0A05F; }

        .hero-sub {
            font-size: 15px;
            color: #9fc99f;
            max-width: 540px;
            line-height: 1.7;
            margin-bottom: 28px;
        }


        .book-btn {
            display: inline-block;
            background: #B0A05F;
            color: #0B2143;
            border: 1px solid transparent;
            padding: 14px 44px;
            border-radius: 50px;
            font-family: var(--font-primary);
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition);
        }

        .book-btn:hover {
            background: #132B4C;
            color: white;
        }

        /* ── Home Service Cards ──────────────────────────── */
        .home-services-row {
            display: flex;
            gap: clamp(10px, 1.1vw, 16px);
            margin-bottom: 32px;
        }

        .home-service-card {
            flex: 1;
            background: #f8f4ee;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 12px;
            padding: clamp(14px, 1.5vw, 22px) clamp(12px, 1.4vw, 20px) clamp(48px, 5vw, 72px);
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(0,0,0,0.28);
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: clamp(10px, 1.1vw, 16px);
            user-select: none;
        }

        .home-service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.35);
        }

        @keyframes hsc-img-fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Nature watermark illustrations */
        .home-service-card::after {
            content: '';
            position: absolute;
            bottom: 0; right: 0;
            width: 130px; height: 100%;
            pointer-events: none;
            opacity: 0.07;
            background-size: cover;
            background-position: bottom right;
            background-repeat: no-repeat;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
            mask-image: linear-gradient(to right, transparent 0%, black 50%);
        }

        .hsc-inclinic::after {
            background-image: url("../images/mountain_card_bg.png");
            width: 90%;
            background-size: contain;
            background-position: bottom right;
            right: -95px;
            animation: hsc-img-fadein 1.2s ease forwards;
        }

        .hsc-mobile::after {
            background-image: url("../images/forrest_card_bg.png");
            width: 75%;
            background-size: contain;
            background-position: bottom right;
            bottom: -10px;
            right: -25px;
            animation: hsc-img-fadein 1.2s ease 0.15s forwards;
        }

        .hsc-telehealth::after {
            background-image: url("../images/weeds_card_bg.png");
            width: 75%;
            background-size: contain;
            background-position: bottom right;
            right: -30px;
            animation: hsc-img-fadein 1.2s ease 0.3s forwards;
        }

        .hsc-icon {
            width: clamp(36px, 3.5vw, 50px);
            height: clamp(36px, 3.5vw, 50px);
            min-width: clamp(36px, 3.5vw, 50px);
            background: #1a3320;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            position: relative; z-index: 1;
        }

        .hsc-icon svg {
            width: clamp(16px, 1.55vw, 22px);
            height: clamp(16px, 1.55vw, 22px);
            stroke: #ffffff; fill: none;
            stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
        }

        .hsc-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .hsc-name {
            font-size: clamp(13px, 1.2vw, 17px); font-weight: 700;
            color: #1a3320;
            letter-spacing: 0.3px;
            margin-bottom: 0;
        }

        .hsc-name::after {
            content: '';
            display: block;
            width: clamp(22px, 2vw, 30px); height: 2px;
            background: #B0A05F;
            margin: clamp(3px, 0.4vw, 5px) 0 clamp(5px, 0.55vw, 8px);
        }

        .hsc-desc {
            font-size: clamp(10px, 0.85vw, 12px);
            color: #4a6352;
            line-height: 1.6;
        }

        .hsc-book-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #B0A05F;
            color: #1a3320;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 50px;
            white-space: nowrap;
            z-index: 2;
            line-height: 1;
        }

        @media (max-width: 900px) {
            .home-services-row {
                flex-direction: column;
                gap: 12px;
            }

            .home-service-card {
                padding: 14px 16px 14px;
                align-items: flex-start;
                flex: none;
                height: 90px;
                width: 100%;
                box-sizing: border-box;
            }

            .services-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .services-content-card {
                padding: 18px 16px;
                margin-bottom: 0;
            }

            .htc-icon svg {
                width: 32px;
                height: 32px;
            }

            .htc-header {
                gap: 10px;
            }

            .htc-title {
                font-size: 18px;
            }

            .htc-desc {
                font-size: 14px;
                max-width: 100%;
            }

            .content-area {
                padding-left: 12px;
                padding-right: 12px;
            }
        }

        /* ── Services Page ──────────────────────────────── */
        .services-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        @media (max-width: 900px) {
            .services-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* ── Content Card ───────────────────────────────── */
        .services-content-card {
            background: #FFFFFF;
            border: 1px solid rgba(30,60,32,0.12);
            border-radius: 12px;
            padding: 32px 40px;
            min-height: 200px;
            width: 100%;
            display: block;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 24px rgba(30,60,32,0.08);
            margin-bottom: 24px;
            box-sizing: border-box;
        }

        .htc-topline {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .htc-flourish-svg {
            width: 48px;
            height: 24px;
            flex-shrink: 0;
        }

        .htc-topline-rule {
            flex: 1;
            height: 1px;
            background: #B0A05F;
        }

        .htc-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
        }


        .htc-icon {
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }

        .htc-icon svg {
            width: 48px; height: 48px;
        }

        .htc-title {
            font-size: 28px;
            font-weight: 700;
            color: #1E3A20;
            letter-spacing: 0.3px;
        }

        .htc-title::after {
            content: none;
        }

        .htc-badge {
            display: inline-block;
            border: 1.5px solid #B0A05F;
            color: #B0A05F;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .htc-desc {
            font-size: 20px;
            color: rgba(30,60,32,0.72);
            line-height: 1.65;
            max-width: 680px;
        }

        /* ── Dark Section ────────────────────────────────── */

        /* ── Info Cards ───────────────────────────────────── */
        .info-card {
            background: #FFFFFF;
            border: 1px solid rgba(30,60,32,0.12);
            border-top: 3px solid rgba(176,160,95,0.6);
            border-radius: 8px;
            padding: 40px 44px;
            margin-bottom: 28px;
            box-shadow: 0 6px 28px rgba(30,60,32,0.08);
            position: relative;
            z-index: 1;
        }

        .info-card-label {
            font-family: var(--font-primary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #B0A05F;
            margin-bottom: 18px;
        }

        .info-card-text {
            font-size: 20px;
            color: rgba(30,60,32,0.82);
            line-height: 1.85;
        }

        .info-card-text .highlight {
            color: #B0A05F;
        }

        /* ── Services Page ────────────────────────────────── */
        .service-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid var(--color-border);
        }

        .service-item:last-child { border-bottom: none; }

        .service-dot {
            width: 48px;
            height: 48px;
            background: rgba(176,160,95,0.08);
            border: 1px solid rgba(176,160,95,0.35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-dot svg {
            width: 20px;
            height: 20px;
            stroke: #B0A05F;
            fill: none;
            stroke-width: 1.5;
        }

        .service-name {
            font-size: 15px;
            color: var(--color-text);
        }

        .service-name small {
            display: block;
            font-size: 12px;
            color: var(--color-text-muted);
            margin-top: 2px;
        }

        /* ── Section Header ───────────────────────────────── */
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            font-weight: normal;
        }

        /* ── Responsive ───────────────────────────────────── */
        @media (max-width: 768px) {
            .topbar,
            .content-area {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* ── Modal ────────────────────────────────────────── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 500;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active { display: flex; }

        .modal {
            background: var(--color-bg);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 36px 40px 40px;
            width: 380px;
            max-width: 92vw;
            animation: slideUp 0.3s ease;
        }

        .modal-tabs {
            display: flex;
            border-bottom: 1px solid var(--color-border);
            margin-bottom: 28px;
        }

        .modal-tab {
            flex: 1;
            background: none;
            border: none;
            padding: 10px;
            font-family: var(--font-primary);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            transition: var(--transition);
        }

        .modal-tab.active {
            color: #B0A05F;
            border-bottom-color: #B0A05F;
        }

        .modal-form { display: none; }
        .modal-form.active { display: block; }

        .modal input { margin-bottom: 14px; }

        .modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 8px;
        }

        .modal-error {
            color: #ff6b6b;
            font-size: 13px;
            text-align: center;
            margin-top: 12px;
            display: none;
        }

        .modal-success {
            color: #B0A05F;
            font-size: 13px;
            text-align: center;
            margin-top: 12px;
            display: none;
        }

        /* ── Product Cards ───────────────────────────────── */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .product-card {
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 22px 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 2px 10px rgba(19,43,76,0.06);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(176,160,95,0.9), rgba(176,160,95,0.5));
        }

        .product-card:hover {
            border-color: rgba(176,160,95,0.35);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(19,43,76,0.12);
        }

        .product-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 14px;
        }

        .product-name {
            font-size: 36px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text);
            line-height: 1.4;
        }

        .product-tier {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 1px solid var(--color-border);
            color: var(--color-text-muted);
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .product-divider {
            height: 1px;
            background: var(--color-border);
            margin-bottom: 14px;
        }

        .product-ingredients {
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .product-ingredients li {
            font-size: 18px;
            color: rgba(19,43,76,0.65);
            padding: 5px 0;
            border-bottom: 1px solid rgba(19,43,76,0.06);
            display: flex;
            align-items: baseline;
            gap: 8px;
            line-height: 1.4;
        }

        .product-ingredients li:last-child { border-bottom: none; }

        .product-ingredients li::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(176,160,95,0.7);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .product-note {
            font-size: 11px;
            color: var(--color-text-muted);
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid var(--color-border);
            line-height: 1.7;
            letter-spacing: 0.3px;
        }

        .product-icon {
            position: absolute;
            bottom: 14px;
            right: 14px;
            width: 54px;
            height: 54px;
            opacity: 0.35;
            transition: opacity 0.2s ease;
            pointer-events: none;
            color: #B0A05F;
        }

        .product-card:hover .product-icon { opacity: 0.55; }

        .product-icon svg {
            width: 100%;
            height: 100%;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.25;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .product-edit-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(19,43,76,0.06);
            border: 1px solid var(--color-border);
            border-radius: 6px;
            padding: 5px 6px;
            cursor: pointer;
            color: var(--color-text-muted);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.15s ease, background 0.15s, border-color 0.15s, color 0.15s;
            z-index: 3;
            line-height: 0;
        }

        .product-card:hover .product-edit-btn { opacity: 1; }

        .product-edit-btn:hover {
            background: rgba(176,160,95,0.15);
            border-color: rgba(176,160,95,0.45);
            color: #B0A05F;
        }

        .product-edit-btn svg {
            width: 12px; height: 12px;
            stroke: currentColor; fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }

        .modal-box {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 40px;
            width: 420px;
            max-width: 92vw;
            animation: slideUp 0.3s ease;
            box-shadow: 0 8px 40px rgba(77, 77, 85, 0.15);
        }

        .modal-box h2 {
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-text);
            margin-bottom: 28px;
        }

        .modal-box .field { margin-bottom: 14px; }

        .modal-box label {
            display: block;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            margin-bottom: 6px;
        }

        .modal-box select, .modal-box textarea {
            width: 100%;
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 12px 16px;
            color: var(--color-text);
            font-size: 14px;
            font-family: var(--font-primary);
            outline: none;
            box-sizing: border-box;
        }

        .modal-box textarea { resize: vertical; min-height: 60px; }

        .modal-close-btn {
            position: absolute;
            top: 16px; right: 20px;
            background: none; border: none;
            color: var(--color-text-muted);
            font-size: 20px; cursor: pointer;
            transition: var(--transition);
        }

        .modal-close-btn:hover { color: var(--color-text); }

        .modal-error-sm {
            color: #ff6b6b;
            font-size: 13px;
            margin-top: 12px;
            display: none;
        }

        .icon-picker-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 7px;
            margin-top: 8px;
        }

        .icon-pick-btn {
            background: var(--color-bg-mid);
            border: 1px solid var(--color-border);
            border-radius: 8px;
            padding: 9px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s;
            color: var(--color-text-muted);
        }

        .icon-pick-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .icon-pick-btn:hover { background: #ffffff; border-color: rgba(19,43,76,0.25); color: var(--color-text); }
        .icon-pick-btn.selected { background: rgba(176,160,95,0.1); border-color: rgba(176,160,95,0.55); color: #B0A05F; }

        .ingredient-row { display: flex; gap: 8px; margin-bottom: 6px; }
        .ingredient-row input { flex: 1; }

        .btn-sm { padding: 5px 12px; font-size: 11px; letter-spacing: 0.5px; }
        .btn-danger { border-color: rgba(255,100,100,0.3); color: rgba(255,100,100,0.7); }
        .btn-danger:hover { background: rgba(255,100,100,0.1); border-color: rgba(255,100,100,0.6); color: rgba(255,100,100,0.9); }

        @media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 680px)  { .product-grid { grid-template-columns: 1fr; } }

        /* ── Service Cards ───────────────────────────────── */
        .svc-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 40px;
        }

        .svc-card {
            background: #ffffff;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: 22px 20px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            box-shadow: 0 2px 10px rgba(19,43,76,0.06);
        }

        .svc-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, rgba(176,160,95,0.9), rgba(176,160,95,0.5));
        }

        .svc-card:hover {
            border-color: rgba(176,160,95,0.35);
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(19,43,76,0.12);
        }

        .svc-card-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .svc-card-desc {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        @media (max-width: 1100px) { .svc-card-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 680px)  { .svc-card-grid { grid-template-columns: 1fr; } }


        /* ══ Home Hero ══════════════════════════════════════════ */
        .wr-hero {
            position: relative;
            min-height: calc(100vh - 64px);
            background: transparent;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            overflow: hidden;
        }

        .wr-hero-watermark {
            position: absolute;
            right: 2%;
            top: 50%;
            transform: translateY(-50%);
            width: 47vmin;
            opacity: 0.07;
            pointer-events: none;
            z-index: 0;
            user-select: none;
        }
        .wr-hero-watermark img { width: 100%; height: auto; }

        .wr-hero-content {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: clamp(8px, 0.73vw, 14px) clamp(18px, 1.67vw, 32px) clamp(24px, 2.14vw, 41px);
            gap: clamp(10px, 0.89vw, 17px);
        }

        /* Brand block — logo + headline grouped */
        .wr-hero-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(5px, 0.42vw, 8px);
            margin-bottom: clamp(15px, 1.3vw, 25px);
            transform: translateX(-11.82vw);
        }

        .wr-hero-logo img { width: clamp(120px, 10.94vw, 210px); height: auto; }

        /* Headline */
        .wr-hero-headline { text-align: center; }

        .wr-headline-main {
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(28px, 2.81vw, 54px);
            font-weight: 300;
            color: #1E3A20;
            line-height: 1.05;
        }

        .wr-headline-script {
            font-family: 'Dancing Script', cursive;
            font-size: clamp(32px, 3.23vw, 62px);
            font-weight: 600;
            color: #1E3A20;
            line-height: 1.0;
            margin-top: -2px;
        }

        .wr-headline-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(4px, 0.36vw, 7px);
            width: 70%;
            margin: clamp(10px, 0.83vw, 16px) auto;
        }
        .orn-line {
            flex: 1;
            height: 2px;
            background: #B0A05F;
        }
        .orn-diamond {
            color: #B0A05F;
            font-size: clamp(7px, 0.57vw, 11px);
            line-height: 1;
        }

        /* Feature card — single container, 4 columns */
        .wr-hero-features {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            background: #F3EDE6;
            border: 1px solid rgba(30,60,32,0.08);
            border-radius: 12px;
            padding: 1px;
            box-shadow: 0 8px 40px rgba(30,60,32,0.18), 0 2px 8px rgba(30,60,32,0.10);
            gap: 0;
            height: clamp(100px, 9.01vw, 173px);
            align-items: center;
            width: clamp(300px, 27.29vw, 524px);
            align-self: center;
            transform: translateX(-11.82vw);
        }

        .wr-hf-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 clamp(4px, 0.42vw, 8px);
            border-right: 1px solid rgba(30,60,32,0.08);
        }
        .wr-hf-item:last-child { border-right: none; }

        .wr-hf-icon {
            width: clamp(28px, 2.4vw, 46px);
            height: clamp(28px, 2.4vw, 46px);
            border-radius: 50%;
            background: #1E4D2B;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: clamp(5px, 0.42vw, 8px);
            flex-shrink: 0;
        }
        .wr-hf-icon svg {
            width: clamp(22px, 1.93vw, 37px);
            height: clamp(22px, 1.93vw, 37px);
            stroke: #B0A05F;
            fill: none;
            stroke-width: 2.0;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .wr-hf-title {
            font-family: 'Lexend', sans-serif;
            font-size: clamp(9px, 0.73vw, 14px);
            font-weight: 700;
            color: #1a3320;
            margin-bottom: clamp(3px, 0.26vw, 5px);
            line-height: 1.25;
        }
        .wr-hf-desc {
            font-family: 'Lexend', sans-serif;
            font-size: clamp(7px, 0.57vw, 11px);
            color: #767676;
            line-height: 1.5;
        }

        /* CTA */
        .wr-hero-cta {
            display: inline-flex;
            align-items: center;
            gap: clamp(8px, 0.73vw, 14px);
            background: #1E3A20;
            color: #B0A05F;
            font-size: clamp(7px, 0.57vw, 11px);
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            text-decoration: none;
            width: clamp(130px, 11.25vw, 216px);
            justify-content: center;
            padding: clamp(7px, 0.57vw, 11px) clamp(18px, 1.67vw, 32px);
            margin-top: clamp(8px, 0.73vw, 14px);
            border-radius: 9px;
            align-self: center;
            transform: translateX(-11.82vw);
            transition: background 0.3s ease, color 0.3s ease;
        }
        .wr-hero-cta:hover {
            background: #2d5a32;
            color: #C9B870;
        }

        /* Taglines */
        .wr-hero-taglines {
            display: flex;
            flex-direction: column;
            gap: clamp(4px, 0.36vw, 7px);
            padding: clamp(5px, 0.42vw, 8px) clamp(10px, 0.89vw, 17px);
            align-self: center;
            transform: translateX(-11.82vw);
            text-align: center;
        }

        .wr-tags-gold {
            font-size: clamp(11px, 0.99vw, 19px);
            color: #B0A05F;
            letter-spacing: 0.3px;
        }
        .wr-tags-italic {
            font-size: clamp(10px, 0.89vw, 17px);
            font-style: italic;
            color: rgba(30,60,32,0.58);
        }
        .wr-tags-bold {
            font-size: clamp(10px, 0.89vw, 17px);
            font-weight: 700;
            font-style: italic;
            color: #1E3A20;
        }

        /* Mobile */
        @media (max-width: 900px) {
            /* Hide decorative fixed images on mobile */
            .side-bg-maegan { display: none; }
            .side-bg-right  { opacity: 0.1; }

            /* Hero layout */
            .wr-hero { flex-direction: column; min-height: auto; }
            .wr-hero-content { flex: none; padding: 28px 20px 40px; gap: 20px; }

            /* Reset all translateX offsets */
            .wr-hero-brand    { transform: translateX(0); margin-bottom: 20px; gap: 10px; }
            .wr-hero-features { transform: translateX(0); }
            .wr-hero-cta      { transform: translateX(0); }
            .wr-hero-taglines { transform: translateX(0); }

            /* Scale down headline */
            .wr-hero-logo img { width: 200px; }
            .wr-headline-main   { font-size: 42px; }
            .wr-headline-script { font-size: 48px; }
            .wr-headline-ornament { margin: 14px auto; }

            /* Features card — stack vertically */
            .wr-hero-features {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                height: auto;
                padding: 12px 8px;
            }
            .wr-hf-item {
                display: grid;
                grid-template-columns: 42px 160px 1fr;
                column-gap: 14px;
                padding: 10px 16px;
                border-right: none;
                border-bottom: 1px solid rgba(30,60,32,0.08);
                text-align: left;
                align-items: center;
            }
            .wr-hf-item:last-child { border-bottom: none; }
            .wr-hf-icon  { grid-column: 1; width: 42px; height: 42px; margin-bottom: 0; }
            .wr-hf-icon svg { width: 22px; height: 22px; }
            .wr-hf-title { grid-column: 2; font-size: 15px; margin-bottom: 0; white-space: nowrap; }
            .wr-hf-desc  { grid-column: 3; font-size: 12px; }

            /* CTA button */
            .wr-hero-cta { width: 100%; font-size: 13px; padding: 14px 24px; }

            /* Taglines */
            .wr-hero-taglines {
                background: rgba(255,255,255,0.88);
                border-radius: 10px;
                padding: 14px 20px;
                width: 100%;
            }
            .wr-tags-gold { font-size: 16px; }
            .wr-tags-italic, .wr-tags-bold { font-size: 15px; }
        }
