*, *::before, *::after { box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  img, video, svg, canvas { max-width: 100%; height: auto; }

/* CSS Variables & Reset */
        :root {
            --c-espresso: #4A3B32;
            --c-cream: #F5EFE6;
            --c-saddle: #8B5A2B;
            --c-olive: #6B8E23;
            --c-tan: #D2B48C;
            --f-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            --f-serif: Georgia, 'Times New Roman', Times, serif;
            --nav-height: 80px;
        }

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

        body {
            font-family: var(--f-sans);
            color: var(--c-espresso);
            background-color: var(--c-cream);
            line-height: 1.6;
            overflow-x: hidden; /* Scroll safety: only hide x */
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px; /* Space for sticky bottom banner */
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        ul {
            list-style: none;
        }

        h1, h2, h3, h4 {
            font-family: var(--f-serif);
            font-weight: normal;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--c-olive);
            color: var(--c-cream);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .btn:hover {
            background-color: #5a7a1d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
        }

        .section-padding {
            padding: 6rem 5%;
        }

        /* Header & Nav */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            z-index: 100;
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

        header.scrolled {
            background-color: rgba(30, 20, 15, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .logo-container {
            flex: 0 0 180px;
            display: flex;
            align-items: center;
        }

        nav {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

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

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .nav-links a:hover {
            color: var(--c-olive);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background-color: var(--c-espresso);
            transition: 0.3s;
        }

        /* 1. Hero Section */
        #hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: var(--nav-height);
            background-color: var(--c-cream);
        }

        .hero-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 5%;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--c-espresso);
        }

        .hero-content p {
            font-size: 1.125rem;
            max-width: 500px;
            color: var(--c-tan);
        }

        .hero-image-wrapper {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 40vh;
        }

        .hero-image {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            object-fit: cover;
            animation: cinematicZoom 30s linear infinite alternate;
        }

        @keyframes cinematicZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        @media (min-width: 768px) {
            #hero { flex-direction: row; padding-top: 0; }
            .hero-content { flex: 1; padding: 0 5% 0 10%; padding-top: var(--nav-height); }
            .hero-image-wrapper { flex: 1.2; min-height: 100vh; }
        }

        /* 2. How It Works */
        #how-it-works {
            min-height: 100vh;
            background: linear-gradient(to bottom, var(--c-cream), var(--c-tan));
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .hiw-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .timeline-wrapper {
            position: relative;
            width: 100%;
        }

        .timeline-container {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 2rem;
            padding: 2rem 5%;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE 10+ */
        }
        .timeline-container::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .timeline-card {
            flex: 0 0 280px;
            scroll-snap-align: center;
            background: var(--c-cream);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            z-index: 2;
  border: 1px solid rgba(245, 239, 230, 0.1);
}

        .timeline-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background-color: #4A3B32;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.4s ease;
            font-size: 1.5rem;
            color: var(--c-espresso);
  margin: 0 auto 1.5rem;
}

        .timeline-card:hover .card-icon {
            background-color: var(--c-olive);
            color: var(--c-cream);
        }

        .timeline-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
  text-align: center;
}

        .timeline-card p {
            font-size: 0.95rem;
            margin: 0;
            color: var(--c-tan);
  text-align: center;
}

        .timeline-nav {
            display: none;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .timeline-btn {
            background: var(--c-espresso);
            color: var(--c-cream);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .timeline-btn:hover { background: var(--c-olive); }

        @media (min-width: 1024px) {
            .timeline-nav { display: flex; }
            .timeline-container { scroll-padding: 0 5%; }
            .timeline-card { scroll-snap-align: start; }
        }

        /* 3. Your Perfect Day */
        #perfect-day {
            min-height: 100vh;
            background: linear-gradient(to bottom, var(--c-tan), #c29f76);
            position: relative;
        }

        .masonry-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .masonry-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            min-height: 400px;
        }

        .masonry-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .glass-panel {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            right: 2rem;
            background: rgba(74, 59, 50, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 768px) {
            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 300px;
            }
            .masonry-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
            .masonry-item:nth-child(2) { grid-row: span 2; }
            .masonry-item:nth-child(3) { grid-row: span 2; }
            .glass-panel { max-width: 80%; }
        }

        /* 4. Our Welcoming Space */
        #space {
            min-height: 100vh;
            background-color: var(--c-cream);
            position: relative;
            padding-top: 8rem; /* Space for curve */
        }

        .curve-divider {
            position: absolute;
            top: 0; left: 0; width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .curve-divider svg {
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

        .curve-divider .shape-fill {
            fill: var(--c-cream); /* Matches bottom of previous section */
        }

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

        .space-text h2 { font-size: 2.5rem; }
        
        .space-img-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 1024px) {
            .space-grid { grid-template-columns: 1fr 1.2fr; }
            .curve-divider svg { height: 120px; }
        }

        /* 5. Nourish & Recharge */
        #nourish {
            min-height: 100vh;
            background-color: var(--c-saddle);
            color: var(--c-cream);
        }

        #nourish h2, #nourish h3 { color: var(--c-cream); }

        .nourish-row {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 6rem;
            align-items: center;
        }

        .nourish-row:last-child { margin-bottom: 0; }

        .nourish-img {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .nourish-text {
            flex: 1;
        }

        @media (min-width: 768px) {
            .nourish-row { flex-direction: row; }
            .nourish-row:nth-child(even) { flex-direction: row-reverse; }
        }

        /* 6. Simple Pricing */
        #pricing {
            min-height: 100vh;
            background: linear-gradient(to bottom, var(--c-saddle), var(--c-espresso));
            color: var(--c-cream);
        }

        #pricing h2 { color: var(--c-espresso); text-align: center; font-size: 2.5rem; margin-bottom: 1rem;}
        .pricing-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .price-card {
            background-color: var(--c-cream);
            color: var(--c-espresso);
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(245, 239, 230, 0.1);
}

        .price-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .price-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .price-amount { 
            font-size: 2.5rem; 
            font-family: var(--f-serif); 
            margin-bottom: 1rem; 
            transition: text-shadow 0.3s, color 0.3s;
        }
        
        .price-card:hover .price-amount {
            color: var(--c-olive);
            text-shadow: 0 0 15px rgba(107, 142, 35, 0.4);
        }

        .price-card p { font-size: 0.95rem; color: var(--c-tan); }
        .price-disclaimer { text-align: center; font-size: 0.85rem; margin-top: 3rem; opacity: 0.8; }

        @media (min-width: 768px) {
            .pricing-grid { grid-template-columns: repeat(3, 1fr); }
        }

        /* 7. Free Pass */
        #free-pass {
            min-height: 100vh;
            background: linear-gradient(to bottom, var(--c-espresso), var(--c-olive));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ambient-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://images.pexels.com/photos/8681899/pexels-photo-8681899.jpeg?auto=compress&cs=tinysrgb&h=650&w=940');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            filter: blur(8px);
        }

        .form-glass {
            position: relative;
            z-index: 2;
            background: rgba(74, 59, 50, 0.5);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(245, 239, 230, 0.2);
            padding: 4rem 3rem;
            border-radius: 20px;
            max-width: 600px;
            text-align: center;
            color: var(--c-espresso);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .form-glass h2 { color: var(--c-espresso); font-size: 2.5rem; }

        .email-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .email-form input {
            padding: 1rem 1.5rem;
            border-radius: 30px;
            border: 1px solid rgba(245, 239, 230, 0.5);
            background: rgba(255,255,255,0.9);
            font-family: var(--f-sans);
            font-size: 1rem;
            outline: none;
        }

        .email-form button {
            border-radius: 30px;
            background-color: var(--c-espresso);
            color: var(--c-olive);
            font-weight: bold;
        }

        .email-form button:hover {
            background-color: #fff;
            box-shadow: 0 0 20px rgba(245, 239, 230, 0.5);
            color: #5a7a1d;
        }

        /* 8. Visit Us */
        #visit {
            min-height: 80vh;
            background-color: var(--c-espresso);
            color: var(--c-cream);
            position: relative;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .visit-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://images.pexels.com/photos/887723/pexels-photo-887723.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }

        .visit-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .visit-content h2 { font-size: 3rem; color: var(--c-espresso); margin-bottom: 2rem;}
        .contact-info { font-size: 1.25rem; line-height: 2; margin-bottom: 2rem; }

        /* Sticky Bottom Banner */
        .sticky-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--c-espresso);
            border-top: 1px solid rgba(245, 239, 230, 0.1);
            padding: 10px 5%;
            z-index: 90;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
        }

        .pulse-btn {
            background-color: var(--c-olive);
            color: var(--c-cream);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 0.9rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(107, 142, 35, 0); }
            100% { box-shadow: 0 0 0 0 rgba(107, 142, 35, 0); }
        }

        /* Footer */
        footer {
            background-color: #362a23;
            color: var(--c-cream);
            padding: 4rem 5% 6rem; /* Extra padding bottom for banner */
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-col h4 {
            font-family: var(--f-sans);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--c-tan);
        }

        .footer-col ul li { margin-bottom: 0.5rem; }
        .footer-col a:hover { color: var(--c-olive); }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 239, 230, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            font-size: 0.85rem;
            opacity: 0.7;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
            .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left;}
        }

        /* Mobile Nav Override */
        @media (max-width: 767px) {
            .hamburger { display: flex; }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--c-cream);
                flex-direction: column;
                justify-content: center;
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 100;
            }
            .nav-links.active { right: 0; }
            .nav-links a { font-size: 1.25rem; color: var(--c-espresso); }
            .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .hamburger.active span:nth-child(2) { opacity: 0; }
            .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        }

        /* Utility Classes for GSAP */
        .gsap-fade-up { opacity: 0; transform: translateY(40px); }
        .gsap-fade-in { opacity: 0; }
        .gsap-slide-right { opacity: 0; transform: translateX(-50px); }
        .gsap-slide-left { opacity: 0; transform: translateX(50px); }

/* === Page-specific styles added by sub-page: Menu === */
/* Menu Page Specific Styles */
        .menu-header-wrapper {
            padding: calc(var(--nav-height) + 6rem) 5% 6rem;
            background-color: var(--c-espresso);
            color: var(--c-cream);
            text-align: center;
            position: relative;
        }
        
        .menu-header-wrapper h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            color: var(--c-espresso);
            margin-bottom: 1.5rem;
        }

        .beverage-list {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .bev-category h4 {
            color: var(--c-olive);
            font-family: var(--f-sans);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .bev-category p {
            font-size: 0.95rem;
            color: var(--c-tan);
            margin-bottom: 0;
            line-height: 1.5;
        }

        .menu-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 5rem;
        }

        .menu-intro h2 {
            font-size: 2.5rem;
            color: var(--c-espresso);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .menu-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
        }

        .menu-category-title {
            font-size: 2rem;
            color: var(--c-tan);
            margin-bottom: 2.5rem;
            border-bottom: 1px solid rgba(139, 90, 43, 0.2);
            padding-bottom: 0.75rem;
        }

        .menu-item {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateX(5px);
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.5rem;
            border-bottom: 1px dotted rgba(245, 239, 230, 0.3);
            padding-bottom: 0.25rem;
        }

        .menu-item-name {
            font-family: var(--f-serif);
            font-size: 1.25rem;
            color: var(--c-espresso);
            font-weight: normal;
        }

        .menu-item-price {
            font-family: var(--f-sans);
            color: var(--c-olive);
            font-weight: 600;
            font-size: 1.1rem;
            padding-left: 1rem;
            background: transparent;
        }

        .menu-item-desc {
            font-size: 0.95rem;
            color: var(--c-tan);
            line-height: 1.5;
            margin-bottom: 0;
        }

        .menu-item-tag {
            font-size: 0.7rem;
            background: var(--c-tan);
            color: #4A3B32;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
            vertical-align: middle;
            font-family: var(--f-sans);
            font-weight: bold;
        }

        .menu-image-container {
            max-width: 1100px;
            margin: 5rem auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .menu-image-break {
            width: 100%;
            height: 40vh;
            min-height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }
        
        .menu-image-container:hover .menu-image-break {
            transform: scale(1.05);
        }

        .menu-legend {
            max-width: 1100px;
            margin: 4rem auto 0;
            text-align: center;
            font-size: 0.85rem;
            color: var(--c-tan);
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 239, 230, 0.1);
        }

        .menu-cta-section {
            min-height: 70vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 5%;
            background-color: var(--c-cream);
        }

h2[data-wc-id="wc-10-zke697"] {
  color: var(--c-olive);
}

:root {
  --c-espresso: #F5EFE6;
  --c-cream: #4A3B32;
}

#how-it-works {
  background: linear-gradient(to bottom, var(--c-cream), var(--c-saddle));
}

#perfect-day {
  background: linear-gradient(to bottom, var(--c-saddle), var(--c-cream));
}

#nourish {
  color: var(--c-espresso);
}

#nourish h2, #nourish h3 {
  color: var(--c-espresso);
}

#pricing {
  background: linear-gradient(to bottom, var(--c-saddle), var(--c-cream));
  color: var(--c-espresso);
}

#free-pass {
  background: linear-gradient(to bottom, var(--c-cream), var(--c-olive));
}

#visit {
  background-color: var(--c-espresso);
}

.sticky-banner {
  background-color: var(--c-cream);
}

footer {
  background-color: #1a1410;
}

.menu-header-wrapper {
  background-color: var(--c-espresso);
}

/* === Page-specific styles added by sub-page: Prissättning === */
/* Page-Specific Styles for Pricing Sub-Page */
        .pricing-features-list {
            list-style: none;
            margin: 2rem 0;
            padding: 0;
            text-align: left;
        }
        
        .pricing-features-list li {
            padding: 0.75rem 0 0.75rem 2rem;
            border-bottom: 1px solid rgba(74, 59, 50, 0.1);
            font-size: 0.95rem;
            color: var(--c-espresso);
            position: relative;
            line-height: 1.4;
        }
        
        .pricing-features-list li:last-child {
            border-bottom: none;
        }
        
        .pricing-features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.75rem;
            color: var(--c-olive);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .pricing-card-featured {
            position: relative;
            border: 2px solid var(--c-olive);
            background-color: #fff;
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--c-olive);
            color: var(--c-cream);
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(107, 142, 35, 0.3);
        }
        
        .included-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        @media (min-width: 768px) {
            .included-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem 3rem;
            }
            .pricing-card-featured {
                transform: scale(1.05);
            }
            .pricing-card-featured:hover {
                transform: scale(1.05) translateY(-10px);
            }
        }
        
        .included-item {
            position: relative;
            padding-left: 1.5rem;
            border-left: 2px solid var(--c-tan);
        }
        
        .included-item h4 {
            font-family: var(--f-sans);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--c-tan);
            letter-spacing: 0.5px;
        }
        
        .included-item p {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 0;
            line-height: 1.6;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .faq-item {
            background: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(74, 59, 50, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        }
        
        .faq-question {
            font-family: var(--f-serif);
            font-size: 1.25rem;
            color: var(--c-espresso);
            margin-bottom: 0.75rem;
        }
        
        .faq-answer {
            color: var(--c-tan);
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.6;
        }

/* === Page-specific styles added by sub-page: Contact Us === */
/* Contact Page Specific Styles */
        .locations-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .locations-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            }
        }

        .location-card {
            background-color: var(--c-tan);
            padding: 3rem 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(74, 59, 50, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--c-olive);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .location-card:hover::before {
            transform: scaleX(1);
        }

        .loc-icon {
            color: var(--c-olive);
            margin-bottom: 1.5rem;
            background: rgba(107, 142, 35, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-card h3 {
            font-size: 1.75rem;
            color: var(--c-espresso);
            margin-bottom: 1rem;
        }

        .loc-address {
            font-size: 1rem;
            color: var(--c-tan);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            min-height: 70px;
        }

        .loc-divider {
            height: 1px;
            width: 100%;
            background-color: rgba(74, 59, 50, 0.1);
            margin-bottom: 1.5rem;
        }

        .loc-details {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            flex-grow: 1;
        }

        .loc-details li {
            font-size: 0.95rem;
            color: var(--c-espresso);
            margin-bottom: 0.75rem;
            display: flex;
            flex-direction: column;
        }

        .loc-details li strong {
            font-family: var(--f-sans);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--c-tan);
            margin-bottom: 0.2rem;
        }

        .loc-details a {
            color: var(--c-olive);
            font-weight: 500;
        }

        .loc-details a:hover {
            text-decoration: underline;
        }

        .loc-link {
            display: inline-block;
            font-family: var(--f-sans);
            font-weight: bold;
            color: var(--c-espresso);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: color 0.3s;
            margin-top: auto;
        }

        .loc-link:hover {
            color: var(--c-olive);
        }

        /* Form Styles */
        .page-contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: left;
        }

        .page-contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .page-contact-form .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .page-contact-form .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .page-contact-form label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--c-espresso);
            margin-left: 0.5rem;
        }

        .page-contact-form input,
        .page-contact-form select,
        .page-contact-form textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(74, 59, 50, 0.2);
            background: rgba(255, 255, 255, 0.9);
            font-family: var(--f-sans);
            font-size: 1rem;
            color: var(--c-espresso);
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .page-contact-form select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A3B32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            cursor: pointer;
        }

        .page-contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .page-contact-form input:focus,
        .page-contact-form select:focus,
        .page-contact-form textarea:focus {
            border-color: var(--c-olive);
            box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.2);
            background: #fff;
        }

.location-card {
    background-color: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(74, 59, 50, 0.08);
    border: 1px solid rgba(139, 90, 43, 0.1);
    text-align: center;
    align-items: center;
}
.location-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(74, 59, 50, 0.15);
}
.location-card::before {
    display: none;
}
.loc-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    background: var(--c-cream);
    color: var(--c-saddle);
    border: 1px solid rgba(139, 90, 43, 0.2);
    transition: all 0.4s ease;
}
.location-card:hover .loc-icon {
    background: var(--c-olive);
    color: var(--c-cream);
    border-color: var(--c-olive);
    transform: scale(1.1);
}
.location-card h3 {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}
.loc-address {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--c-espresso);
    opacity: 0.8;
}
.loc-divider {
    background-color: rgba(139, 90, 43, 0.2);
    margin: 0 auto 2rem;
    width: 50px;
    height: 2px;
}
.loc-details li {
    align-items: center;
    margin-bottom: 1.25rem;
}
.loc-details li strong {
    color: var(--c-saddle);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}
.loc-link {
    background-color: var(--c-olive);
    color: var(--c-cream);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    font-weight: bold;
}
.loc-link:hover {
    background-color: #5a7a1d;
    color: var(--c-cream);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(107, 142, 35, 0.3);
    text-decoration: none;
}

header {
  background-color: rgba(30, 20, 15, 0.95);
}