@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&family=Great+Vibes&display=swap');
/*
Theme Name: Miso Spa & Wellness
Theme URI: https://misospa.vn/
Description: Giao diện luxury spa cao cấp cho Miso Spa & Wellness. Trang chủ chuẩn SEO, 100% tùy biến qua ACF Pro, giao diện sang trọng, tốc độ tải tối ưu.
Author: Antigravity AI
Version: 1.0.0
Text Domain: miso-spa
*/

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --color-primary: #1e3020;        /* Deep Forest Green */
    --color-primary-light: #2d4530;  /* Lighter Forest Green */
    --color-primary-dark: #121f14;   /* Very Dark Forest Green */
    --color-secondary: #c29a5b;      /* Champagne Gold */
    --color-secondary-light: #d4af72;/* Bright Gold */
    --color-secondary-dark: #a67c42; /* Darker Antique Gold */
    --color-bg-cream: #faf7f2;       /* Soft Beige Background */
    --color-bg-white: #ffffff;       /* Card White */
    --color-text-dark: #2c352e;      /* Elegant Dark Charcoal Green */
    --color-text-light: #ffffff;     /* White text */
    --color-text-gray: #758278;      /* Muted Green-Gray */
    --color-border: #ebdcc8;         /* Gentle Golden Border */
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-premium: 0 10px 40px rgba(30, 48, 32, 0.05);
    --shadow-hover: 0 20px 50px rgba(30, 48, 32, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 24px;
    --max-width: 1200px;
}

/* ==========================================================================
   RESET & SYSTEM BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-cream);
    color: var(--color-text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

/* ==========================================================================
   CORE STRUCTURAL HELPERS
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section-padding {
    padding: 6.5rem 0 8.5rem 0;
    position: relative;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* Section Header Typography */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-border);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.6rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 15px rgba(194, 154, 91, 0.35);
    border: 1px solid var(--color-secondary);
}

.btn-primary:hover {
    background-color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 154, 91, 0.45);
}

.btn-outline {
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 154, 91, 0.25);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-outline-text {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-secondary);
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 3px;
    font-size: 1rem;
}

.btn-outline-text:hover {
    color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    gap: 0.75rem;
}


/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.site-header {
    background-color: var(--color-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(235, 220, 200, 0.15);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(18, 31, 20, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-navigation .nav-menu {
    display: flex;
    gap: 2.25rem;
}

.main-navigation .nav-menu a:hover {
    color: var(--color-secondary);
}

.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

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

.btn-header {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    border-radius: 50px;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0 8.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(194, 154, 91, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag {
    background-color: rgba(194, 154, 91, 0.12);
    border: 1px solid rgba(194, 154, 91, 0.25);
    color: var(--color-secondary);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(235, 220, 200, 0.25);
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 3;
}

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

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}


/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-desc {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1rem;
}

.feat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(194, 154, 91, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.feat-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.feat-desc {
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

.about-image-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
    aspect-ratio: 4 / 3;
}

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


/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: var(--color-bg-cream);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.value-card:hover {
    background-color: var(--color-bg-white);
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}


/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(235, 220, 200, 0.3);
    display: flex;
    flex-direction: column;
}

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

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    bottom: -20px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-overlay {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.service-content {
    padding: 1.5rem 1.25rem var(--spacing-md) 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    align-items: center;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    flex-grow: 1;
    text-align: center;
}

.service-link-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 auto;
}

.service-link-more:hover {
    color: var(--color-primary);
    gap: 0.6rem;
}


/* ==========================================================================
   DECORATIVE SEPARATORS & BACKGROUNDS
   ========================================================================== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bg-illustration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.leaf-left {
    left: 0;
    top: 5%;
}

.leaf-right {
    right: 0;
    bottom: 5%;
}

/* ==========================================================================
   PRICING PACKAGES SECTION
   ========================================================================== */
.pricing-container {
    display: grid;
    grid-template-columns: 0.27fr 0.73fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.pricing-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 80px;
}

.pricing-sidebar .section-subtitle::before,
.pricing-sidebar .section-subtitle::after {
    display: none !important;
}

.pricing-sidebar-desc {
    color: var(--color-text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-sidebar-decor {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 180px;
    opacity: 0.95;
    border: none !important;
    box-shadow: none !important;
    z-index: 10;
    pointer-events: none;
}

.pricing-sidebar-decor img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.package-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: visible; /* Allow badge overflow */
    padding: 0;
}

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

.package-featured {
    border: 2px solid var(--color-secondary);
    transform: scale(1.03);
    z-index: 2;
}

.package-featured:hover {
    transform: translateY(-8px) scale(1.03);
}

.package-card-header {
    background-color: #586b3f;
    color: #ffffff;
    padding: 1.25rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(194, 154, 91, 0.2);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.package-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fbf9f4;
    border: 1px solid rgba(194, 154, 91, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 0.75rem auto;
    color: var(--color-secondary);
    font-size: 1.1rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #ffffff !important;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-meta {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 0.75rem;
    text-align: center;
}

.package-meta i {
    margin-right: 0.25rem;
}

.package-card-body {
    padding: 2rem 1.25rem 2.5rem 1.25rem;
    background-color: var(--color-bg-white);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(30, 48, 32, 0.15);
    padding-bottom: 0.75rem;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 500;
    vertical-align: super;
    margin-left: 2px;
    text-decoration: underline;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--color-text-gray);
    text-align: left;
}

.package-features i {
    color: var(--color-secondary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.package-footer {
    width: 100%;
    margin-top: auto;
}

.package-card .btn {
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 50px;
}

.package-card .btn-primary {
    background-color: #586b3f;
    border-color: #586b3f;
    color: #ffffff;
    box-shadow: none;
    border-radius: 50px;
}

.package-card .btn-primary:hover {
    background-color: #4a5c34;
    border-color: #4a5c34;
    transform: translateY(-2px);
}

.package-badge {
    position: absolute;
    top: -12px; /* Position half-floating outside the card */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-right-decor {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 260px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

.pricing-right-decor img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
}

/* ==========================================================================
   PROMO HAPPY HOUR SECTION
   ========================================================================== */
/* Happy Hour Horizontal Banner */
.promo-horizontal-section {
    background-color: #1e3020;
    color: #ffffff;
    padding: 3.5rem 0 5.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(194, 154, 91, 0.2);
}

.promo-horizontal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.promo-h-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.promo-h-seal {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    outline: 1px solid var(--color-secondary);
    outline-offset: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.promo-h-cursive {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: var(--color-secondary);
    line-height: 1;
    text-align: center;
    transform: rotate(-10deg);
}

.promo-h-deal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-h-deal .disc-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.15rem;
}

.promo-h-deal .disc-val {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.1;
}

.promo-h-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(194, 154, 91, 0.3);
    flex-shrink: 0;
}

.promo-h-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    flex-grow: 1;
    padding-left: 1rem;
}

.promo-h-sched-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.4;
}

.btn-outline-gold-h {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    background-color: transparent;
}

.btn-outline-gold-h:hover {
    background-color: var(--color-secondary);
    color: #1e3020;
    transform: translateY(-2px);
}

.promo-h-right {
    flex-shrink: 0;
    margin-left: auto;
}

.promo-h-decor-img {
    height: 110px;
    width: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    border: 1px solid rgba(194, 154, 91, 0.3);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--color-bg-white);
    padding: 7rem 0 9rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background-color: var(--color-bg-cream);
    padding: 2.25rem 1.75rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(194, 154, 91, 0.15);
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background-color: var(--color-bg-white);
}

.tst-left {
    flex-shrink: 0;
}

.tst-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tst-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tst-right {
    flex-grow: 1;
}

.tst-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.tst-stars {
    color: var(--color-secondary);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.tst-review {
    font-style: italic;
    font-size: 0.88rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background-color: var(--color-secondary);
    width: 25px;
    border-radius: 10px;
}


/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 48, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-top: 3px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 1.2fr;
    gap: 3.5rem;
    padding: var(--spacing-xl) 1.5rem;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-secondary);
}

/* Brand Col */
.footer-logo-img {
    max-height: 55px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-socials a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Contact Col */
.footer-contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-contact-list a:hover {
    color: var(--color-secondary);
}

/* Hours Col */
.footer-hours-list li {
    margin-bottom: 0.75rem;
}

.footer-hours-list .day {
    font-weight: 600;
    color: var(--color-text-light);
}

.footer-hours-list .time {
    display: block;
    font-size: 1.15rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-top: 0.25rem;
}

.footer-hours-list .note {
    font-size: 0.8rem;
    opacity: 0.65;
}

/* Newsletter Col */
.newsletter-text {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex-grow: 1;
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: var(--color-secondary-light);
}

.newsletter-privacy {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Copyright Bar */
.footer-copyright {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-container strong {
    color: var(--color-secondary);
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .services-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .pricing-sidebar {
        text-align: center;
        align-items: center;
    }
    .pricing-sidebar-decor {
        display: none;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-tags {
        justify-content: center;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-content {
        align-items: center;
        text-align: center;
    }
    .about-features-grid {
        text-align: left;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2rem;
    }
    .package-featured {
        transform: scale(1);
    }
    .package-featured:hover {
        transform: translateY(-8px) scale(1);
    }
    .promo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .promo-left {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
    }
    .promo-right {
        align-items: center;
    }
    .promo-discount-badge {
        border-left: none;
        padding-left: 0;
    }
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .main-navigation {
        display: none; /* In production, we'd add a hamburger menu. Since this is a home landing page focus, we can keep simple navigation */
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .services-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-title {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   MISO HOMEPAGE COMPACT LUXURY REDESIGN - giống layout ảnh mẫu
   Ghi đè ở cuối file để không phá cấu trúc ACF/PHP hiện có.
   ========================================================================== */
:root {
    --color-primary: #263615;
    --color-primary-light: #3b4d1d;
    --color-primary-dark: #18220d;
    --color-secondary: #e2c65a;
    --color-secondary-light: #f5dd75;
    --color-secondary-dark: #a98b2a;
    --color-bg-cream: #fbf7e9;
    --color-bg-white: #fffdf6;
    --color-text-dark: #4c4a2c;
    --color-text-gray: #6d6b4c;
    --color-border: #dfcf99;
    --shadow-premium: 0 8px 24px rgba(66, 56, 16, 0.08);
    --shadow-hover: 0 14px 34px rgba(66, 56, 16, 0.14);
    --border-radius: 14px;
    --border-radius-lg: 22px;
    --max-width: 1120px;
}

body {
    background:
        radial-gradient(circle at 8% 28%, rgba(226, 198, 90, 0.10), transparent 28%),
        linear-gradient(180deg, #fffdf6 0%, #fbf7e9 100%);
    color: var(--color-text-dark);
}

.container {
    max-width: var(--max-width);
    padding-left: 18px;
    padding-right: 18px;
}

.section-padding {
    padding: 46px 0 54px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.05;
    margin-bottom: 0;
    color: #686126;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #686126;
    margin-bottom: 24px;
    gap: 14px;
}

.section-subtitle::before,
.section-subtitle::after {
    width: 92px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.btn {
    min-height: 42px;
    padding: 0.72rem 1.55rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(180deg, #f4dc73, #d9b844);
    color: #23310f;
    border-color: #f0d76d;
    box-shadow: 0 8px 22px rgba(226, 198, 90, 0.30);
}

.btn-outline,
.btn-secondary {
    border-color: rgba(226, 198, 90, 0.85);
    color: #f3da71;
    background: rgba(255, 255, 255, 0.03);
}

/* Header giống ảnh: thanh xanh đậm, logo trái, menu một hàng */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    min-height: 72px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1f2b10 0%, #314117 52%, #202c10 100%);
    border-bottom: 1px solid rgba(226, 198, 90, 0.28);
    box-shadow: 0 4px 24px rgba(16, 20, 6, 0.24);
}

.header-container {
    min-height: 72px;
    gap: 22px;
}

.site-branding .custom-logo {
    max-height: 58px;
}

.main-navigation {
    margin-left: auto;
}

.main-navigation .nav-menu {
    gap: 0;
    align-items: center;
}

.main-navigation .nav-menu li a {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 0 15px;
    font-size: 0.88rem;
    letter-spacing: 0;
    color: #fff7cf;
    opacity: 0.95;
}

.main-navigation .nav-menu li:first-child a,
.main-navigation .nav-menu li a:hover {
    color: var(--color-secondary-light);
}

.main-navigation .nav-menu li:first-child a::after,
.main-navigation .nav-menu a:hover::after {
    width: calc(100% - 30px);
    left: 15px;
    height: 2px;
}

.btn-header {
    min-height: 42px;
    padding: 0.55rem 1.25rem;
    white-space: nowrap;
}

/* Hero full background giống ảnh: chữ trái, ảnh massage bên phải */
.hero-section {
    min-height: 500px;
    padding: 64px 0 90px;
    background-color: #202c10;
    background-image:
        linear-gradient(90deg, rgba(31, 43, 16, 0.96) 0%, rgba(31, 43, 16, 0.92) 37%, rgba(31, 43, 16, 0.48) 61%, rgba(31, 43, 16, 0.05) 100%),
        radial-gradient(circle at 13% 18%, rgba(226, 198, 90, 0.19), transparent 27%),
        var(--hero-bg-image);
    background-size: cover, cover, cover;
    background-position: center, center, right center;
    overflow: hidden;
}

.hero-section::before {
    inset: 0 auto auto 0;
    width: 46%;
    height: 100%;
    background: radial-gradient(circle at 14% 35%, rgba(226, 198, 90, 0.20), transparent 50%);
}

.hero-container {
    display: block;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 565px;
    align-items: flex-start;
    padding-top: 8px;
}

.hero-badge {
    order: 2;
    margin: 4px 0 18px;
    color: #fff0a7;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-title {
    order: 1;
    max-width: 600px;
    margin-bottom: 10px;
    font-size: clamp(3.3rem, 6.6vw, 5.9rem);
    line-height: 0.86;
    font-weight: 600;
    color: #f7df72;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.hero-title::first-line {
    font-size: 0.48em;
    line-height: 1.05;
    color: #fff3b5;
}

.hero-subtitle {
    display: none;
}

.hero-tags {
    order: 3;
    margin-bottom: 26px;
    gap: 10px;
}

.hero-tag {
    padding: 0.34rem 0.95rem;
    background: rgba(226, 198, 90, 0.12);
    border-color: rgba(226, 198, 90, 0.48);
    color: #f4df7a;
    font-size: 0.82rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-actions {
    order: 4;
    gap: 18px;
}

.hero-actions .btn-secondary {
    color: #f4df7a;
    border-color: rgba(226, 198, 90, 0.7);
    background: rgba(20, 28, 9, 0.26);
}

.hero-image-wrapper {
    display: none;
}

.hero-scroll-down {
    bottom: 26px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(226, 198, 90, 0.65);
    display: grid;
    place-items: center;
    color: var(--color-secondary-light);
    background: rgba(255,255,255,0.06);
}

.wave-divider {
    height: 42px;
}

/* About */
.about-section {
    background:
        linear-gradient(180deg, #fffdf6 0%, #fbf7e9 100%);
    padding-top: 50px;
}

.about-container {
    grid-template-columns: 0.78fr 1fr;
    gap: 50px;
}

.about-content .section-subtitle {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.about-content .section-subtitle::before,
.about-content .section-subtitle::after {
    display: none;
}

.about-content .section-title {
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    margin-bottom: 16px;
}

.about-desc {
    font-size: 0.94rem;
    line-height: 1.72;
    margin-bottom: 22px;
    color: #585833;
}

.about-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 18px;
    border-top: 1px solid rgba(223, 207, 153, 0.72);
    border-bottom: 1px solid rgba(223, 207, 153, 0.72);
}

.about-feature-item {
    display: block;
    text-align: center;
    padding: 14px 10px;
    border-right: 1px solid rgba(223, 207, 153, 0.72);
}

.about-feature-item:last-child {
    border-right: 0;
}

.feat-icon-box {
    width: 42px;
    height: 42px;
    margin: 0 auto 9px;
    background: #fff9df;
    border: 1px solid rgba(180, 145, 41, 0.40);
    color: #8b7d25;
}

.feat-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 700;
    color: #575328;
}

.feat-desc {
    display: none;
}

.about-image-frame {
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(180, 145, 41, 0.42);
    box-shadow: 0 18px 38px rgba(59, 65, 24, 0.13);
}

.about-actions .btn-primary {
    background: #586b35;
    color: #fffbe0;
    border-color: #586b35;
    box-shadow: none;
}

/* Values cards */
.values-section,
.services-section,
.pricing-section,
.gallery-section {
    background: #fffdf6;
}

.values-section {
    padding-top: 34px;
    padding-bottom: 28px;
    border-color: rgba(226, 198, 90, 0.22);
}

.values-section .text-center,
.services-section .text-center,
.testimonials-section .text-center,
.gallery-section .text-center {
    margin-bottom: 26px !important;
}

.values-section .section-title,
.services-section .section-title,
.testimonials-section .section-title,
.gallery-section .section-title {
    display: none;
}

.values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.value-card {
    background: rgba(255, 253, 246, 0.88);
    border: 1px solid rgba(191, 171, 100, 0.62);
    border-radius: 12px;
    padding: 24px 22px 22px;
    box-shadow: none;
}

.value-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.value-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #847622;
    font-size: 2rem;
}

.value-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 800;
    color: #575328;
    margin-bottom: 8px;
}

.value-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #606044;
}

/* Services compact 5 cards */
.services-section {
    padding-top: 22px;
    padding-bottom: 34px;
}

.services-row {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    border-radius: 12px;
    border-color: rgba(223, 207, 153, 0.70);
    box-shadow: 0 6px 16px rgba(71, 59, 20, 0.07);
    overflow: visible;
}

.service-image-wrapper {
    aspect-ratio: 1.95 / 1;
    border-radius: 12px 12px 0 0;
}

.service-icon-overlay {
    left: 14px;
    bottom: -18px;
    width: 42px;
    height: 42px;
    background: #87933d;
    color: #f9e279;
    border: 3px solid #fff9df;
}

.service-content {
    padding: 25px 14px 15px;
}

.service-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 800;
    color: #575328;
}

.service-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    color: #69694c;
    margin-bottom: 10px;
}

.service-link-more {
    color: #5c5a2d;
    font-size: 0.78rem;
}

/* Pricing giống ảnh: text bên trái, 3 package bên phải */
.pricing-section {
    padding-top: 34px;
    padding-bottom: 58px;
}

.pricing-container {
    grid-template-columns: 0.27fr 0.73fr;
    gap: 34px;
    align-items: center;
}

.pricing-sidebar .section-subtitle {
    display: none;
}

.pricing-sidebar .section-title {
    font-size: clamp(2rem, 3vw, 2.45rem) !important;
    line-height: 1.08;
    color: #686126;
}

.pricing-sidebar-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #69694c;
}

.pricing-sidebar .btn-outline {
    color: #4e4d24;
    border-color: #d6bf69;
    background: #fffdf6;
}

.pricing-grid {
    gap: 18px;
}

.package-card {
    border-radius: 11px;
    border-color: rgba(172, 147, 63, 0.55);
    box-shadow: 0 8px 18px rgba(70, 61, 24, 0.08);
}

.package-featured {
    border: 2px solid #d7b643;
    box-shadow: 0 10px 26px rgba(166, 124, 42, 0.18);
}

.package-card-header {
    padding: 14px 10px;
    background: #53632e;
    border-radius: 10px 10px 0 0;
}

.package-name {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
}

.package-card-body {
    padding: 24px 20px 22px;
}

.package-icon-circle {
    width: 42px;
    height: 42px;
    margin-top: -46px;
    background: #fff6ce;
    color: #998227;
}

.package-price {
    font-size: 2rem;
    color: #36351d;
}

.package-features {
    gap: 8px;
    margin-bottom: 18px;
}

.package-features li {
    font-size: 0.80rem;
    color: #5d5d42;
}

.package-card .btn-primary {
    background: #53632e;
    border-color: #53632e;
    color: #fffbe2;
}

.package-badge {
    top: -18px;
    background: #f4d75c;
    color: #5b4a07;
}

/* Promo banner */
.promo-horizontal-section {
    padding: 28px 0 34px;
    background:
        linear-gradient(90deg, rgba(32, 44, 16, 0.98), rgba(50, 65, 24, 0.94)),
        radial-gradient(circle at 16% 42%, rgba(226,198,90,0.16), transparent 32%);
}

.promo-horizontal-container {
    min-height: 100px;
}

.promo-h-seal {
    width: 112px;
    height: 112px;
    background: rgba(226, 198, 90, 0.07);
}

.promo-h-cursive {
    font-size: 2rem;
    color: #f4df75;
}

.promo-h-deal .disc-label {
    font-size: 1rem;
    font-weight: 800;
    color: #fff8cd;
}

.promo-h-deal .disc-val {
    font-size: 3.3rem;
    color: #f4df75;
}

.promo-h-sched-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff6c4;
}

.promo-h-decor-img {
    height: 112px;
    min-width: 280px;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

/* Reviews + gallery + footer compact */
.testimonials-section {
    padding-top: 34px;
    padding-bottom: 42px;
    background: #fffdf6;
}

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

.testimonial-card {
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fffaf0;
    box-shadow: none;
    border-color: rgba(223, 207, 153, 0.70);
}

.tst-avatar {
    width: 70px;
    height: 70px;
}

.tst-name {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 800;
}

.tst-stars {
    color: #f0bf30;
    margin-bottom: 4px;
}

.tst-review {
    font-style: normal;
    font-size: 0.78rem;
    line-height: 1.5;
}

.gallery-section {
    padding-top: 26px;
    padding-bottom: 34px;
}

.gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 1.7 / 1;
    border-radius: 10px;
}

.site-footer {
    background: linear-gradient(90deg, #243214 0%, #52612c 100%);
    border-top: 1px solid rgba(226, 198, 90, 0.45);
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 0.82fr 1.15fr;
    gap: 38px;
    padding-top: 28px;
    padding-bottom: 20px;
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #f4df75;
}

.footer-logo-img {
    max-height: 58px;
    margin-bottom: 10px;
}

.footer-slogan,
.newsletter-text,
.footer-contact-list li,
.footer-hours-list li {
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    color: #f4df75;
}

.newsletter-form {
    min-height: 42px;
    background: #fff9df;
    border: 0;
}

.newsletter-input {
    color: #3e431d;
}

.newsletter-btn {
    background: #f4d75c;
}

.footer-copyright {
    padding: 10px 0;
}

@media (max-width: 1200px) {
    .main-navigation .nav-menu li a { padding: 0 9px; font-size: 0.82rem; }
    .services-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        background-image:
            linear-gradient(90deg, rgba(31, 43, 16, 0.96), rgba(31, 43, 16, 0.78)),
            var(--hero-bg-image);
        background-position: center, center;
    }
    .hero-content { max-width: 100%; align-items: center; text-align: center; }
    .hero-title { max-width: 720px; }
    .hero-tags, .hero-actions { justify-content: center; }
    .about-container,
    .pricing-container { grid-template-columns: 1fr; }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid,
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .pricing-sidebar { text-align: center; align-items: center; }
    .pricing-sidebar .section-title { text-align: center !important; }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .site-header { min-height: 64px; }
    .header-container { min-height: 64px; }
    .header-cta .btn-header { padding: 0.48rem 0.85rem; font-size: 0.76rem; }
    .hero-section { padding: 48px 0 76px; }
    .hero-title { font-size: 3.2rem; line-height: 0.92; }
    .hero-badge { text-align: center; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 260px; }
    .hero-actions .btn { width: 100%; }
    .section-padding { padding: 38px 0 44px; }
    .section-subtitle::before,
    .section-subtitle::after { width: 42px; }
    .values-grid,
    .services-row,
    .pricing-grid,
    .testimonials-slider { grid-template-columns: 1fr; }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-horizontal-container { flex-direction: column; text-align: center; }
    .promo-h-left { flex-direction: column; }
    .promo-h-divider { display: none; }
    .promo-h-center { align-items: center; padding-left: 0; }
    .promo-h-right { margin-left: 0; width: 100%; }
    .promo-h-decor-img { width: 100%; min-width: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CSS-ONLY LUXURY DECORATIONS + FONT TUNING
   No extra image assets required. All leaves, flowers, stones, candle/towel
   details below are created with CSS so the homepage matches the reference.
   ========================================================================== */
:root {
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Be Vietnam Pro', 'Montserrat', Arial, sans-serif;
    --font-script: 'Great Vibes', cursive;
    --color-primary: #202d14;
    --color-primary-light: #34421f;
    --color-primary-dark: #111909;
    --color-secondary: #d6bd63;
    --color-secondary-light: #f0db83;
    --color-secondary-dark: #a98a35;
    --color-bg-cream: #fbf6e8;
    --color-bg-white: #fffdf7;
    --color-text-dark: #4b4423;
    --color-text-gray: #6c6a50;
    --color-border: #dacb94;
}

body {
    font-weight: 400;
    letter-spacing: -0.01em;
    background:
        radial-gradient(circle at 8% 18%, rgba(214, 189, 99, 0.12), transparent 24rem),
        radial-gradient(circle at 92% 62%, rgba(84, 101, 40, 0.08), transparent 22rem),
        var(--color-bg-cream);
}

.site-header {
    background: linear-gradient(90deg, rgba(24, 33, 12, 0.98), rgba(47, 57, 24, 0.98));
    padding: 0.45rem 0;
}

.main-navigation .nav-menu a,
.btn,
.hero-badge,
.hero-tag,
.section-subtitle,
.service-desc,
.package-features li,
.tst-review,
.footer-contact-list li {
    font-family: var(--font-body);
}

.hero-title,
.section-title,
.value-title,
.service-title,
.package-price,
.tst-name,
.footer-col-title {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
}

.hero-title::first-line {
    font-size: 0.55em;
    color: #fff2a0;
}

.section-title {
    font-size: clamp(2.1rem, 3.6vw, 3.15rem);
    font-weight: 600;
    color: #5a532d;
}

.section-subtitle {
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0;
    color: #7b7138;
}

.section-subtitle::before,
.section-subtitle::after {
    width: 88px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.section-subtitle::before { margin-right: 0.25rem; }
.section-subtitle::after { margin-left: 0.25rem; }

.section-subtitle::marker { display: none; }

/* Hero background like the sample: image on the right with dark green/gold overlay */
.hero-section {
    min-height: 590px;
    padding: 6.2rem 0 9.5rem;
    background:
        linear-gradient(90deg, rgba(22, 31, 8, 0.98) 0%, rgba(27, 36, 13, 0.95) 35%, rgba(27, 36, 13, 0.64) 57%, rgba(27, 36, 13, 0.18) 100%),
        var(--hero-bg-image) center right / cover no-repeat;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 32%, rgba(240, 219, 131, 0.22), transparent 13rem),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 45%, rgba(17, 25, 9, 0.2));
    z-index: 1;
}

.hero-container { grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr); }
.hero-image-wrapper { display: none; }
.hero-content { position: relative; z-index: 3; }
.hero-badge { color: #f5e889; text-transform: none; letter-spacing: -0.01em; }
.hero-subtitle { color: rgba(255, 246, 191, 0.9); font-weight: 500; }
.hero-tag { color: #f1df7e; border-color: rgba(240, 219, 131, 0.45); background: rgba(255, 255, 255, 0.06); }
.btn-primary { background: #f0d36b; border-color: #f0d36b; color: #222811; font-weight: 700; }
.btn-secondary { color: #f4dc76; border-color: rgba(240, 211, 107, 0.7); }

.wave-divider { height: 84px; filter: drop-shadow(0 -10px 18px rgba(38, 45, 18, 0.1)); }

/* reusable decorations */
.section-decor,
.section-decor-dark,
.site-footer { position: relative; overflow: hidden; }
.section-decor > .container,
.section-decor-dark > .container,
.site-footer > .container { position: relative; z-index: 2; }

.corner-ornament,
.botanical-corner,
.corner-line-art,
.footer-line-art,
.soft-gold-orb,
.hero-gold-ring {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.corner-ornament {
    width: 210px;
    height: 230px;
    opacity: 0.34;
    background:
        radial-gradient(ellipse at 50% 12%, transparent 0 42%, rgba(139, 128, 63, 0.32) 43% 44%, transparent 45%),
        radial-gradient(ellipse at 18% 56%, transparent 0 42%, rgba(139, 128, 63, 0.28) 43% 44%, transparent 45%),
        radial-gradient(ellipse at 72% 61%, transparent 0 42%, rgba(139, 128, 63, 0.28) 43% 44%, transparent 45%);
}
.corner-ornament::before,
.corner-ornament::after {
    content: '';
    position: absolute;
    background: rgba(139, 128, 63, 0.36);
    transform-origin: bottom center;
    border-radius: 999px;
}
.corner-ornament::before { width: 1px; height: 190px; left: 84px; top: 22px; transform: rotate(-28deg); }
.corner-ornament::after { width: 1px; height: 135px; left: 105px; top: 73px; transform: rotate(34deg); }
.corner-ornament-tl { left: -38px; top: 38px; transform: rotate(-14deg); }
.corner-ornament-tr { right: -58px; top: 34px; transform: scaleX(-1) rotate(-10deg); }
.corner-ornament-bl { left: -50px; bottom: 20px; transform: rotate(12deg); }
.corner-ornament-br { right: -56px; bottom: 22px; transform: scaleX(-1) rotate(12deg); }

.botanical-corner { width: 260px; height: 275px; opacity: 0.46; }
.botanical-corner-left { left: -50px; bottom: 28px; }
.botanical-corner-right { right: -46px; bottom: 18px; transform: scaleX(-1); }
.botanical-corner .branch-line {
    position: absolute; left: 90px; bottom: 10px; width: 2px; height: 245px;
    background: linear-gradient(180deg, transparent, rgba(123, 113, 56, 0.58), transparent);
    border-radius: 999px; transform: rotate(-34deg); transform-origin: bottom center;
}
.botanical-corner .leaf {
    position: absolute; width: 62px; height: 28px; border: 1.4px solid rgba(123, 113, 56, 0.52);
    border-radius: 100% 0 100% 0; transform: rotate(-26deg); background: rgba(214, 189, 99, 0.035);
}
.botanical-corner .l1 { left: 70px; bottom: 162px; }
.botanical-corner .l2 { left: 122px; bottom: 120px; transform: rotate(42deg) scaleX(-1); }
.botanical-corner .l3 { left: 35px; bottom: 94px; transform: rotate(-42deg); }
.botanical-corner .l4 { left: 110px; bottom: 55px; transform: rotate(36deg) scaleX(-1); }
.botanical-corner .l5 { left: 72px; bottom: 210px; transform: rotate(-10deg); }

.soft-gold-orb {
    width: 280px; height: 280px; border-radius: 50%; opacity: 0.38;
    background: radial-gradient(circle, rgba(214, 189, 99, 0.26), transparent 66%);
    filter: blur(1px);
}
.orb-left { left: -120px; top: 22%; }
.orb-right { right: -130px; top: 10%; }

.hero-gold-ring {
    border: 1px solid rgba(240, 219, 131, 0.34);
    border-radius: 50%;
    z-index: 2;
}
.ring-1 { width: 360px; height: 360px; left: -120px; bottom: -90px; }
.ring-2 { width: 70px; height: 70px; left: 53%; bottom: 70px; }

/* CSS-only spa object compositions */
.spa-stone-decor { width: 235px; height: 150px; }
.spa-stone-decor .stone,
.promo-css-decor .rolled-towel,
.promo-css-decor .oil-bottle,
.promo-css-decor .candle-flame,
.flower,
.leaf-spray { position: absolute; display: block; }
.spa-stone-decor .stone {
    bottom: 28px; border-radius: 50%; background: linear-gradient(145deg, #827c5f, #c9bd93 45%, #6b674d);
    box-shadow: 0 12px 28px rgba(35, 31, 14, 0.18);
}
.spa-stone-decor .stone-1 { width: 78px; height: 39px; left: 24px; }
.spa-stone-decor .stone-2 { width: 95px; height: 45px; left: 72px; bottom: 18px; }
.spa-stone-decor .stone-3 { width: 70px; height: 34px; left: 145px; bottom: 30px; }
.flower { width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle, #f3d76a 0 14%, transparent 15%); }
.flower::before,
.flower::after {
    content: ''; position: absolute; inset: 5px; border-radius: 55% 45% 60% 40%; background: #fff8e5; box-shadow: 16px 0 #fff8e5, -16px 0 #fff8e5, 0 16px #fff8e5, 0 -16px #fff8e5;
}
.flower::after { inset: 8px; transform: rotate(45deg); opacity: 0.78; }
.spa-stone-decor .flower-1 { left: 8px; bottom: 18px; transform: scale(0.85) rotate(12deg); }
.spa-stone-decor .flower-2 { right: 8px; bottom: 40px; transform: scale(0.62) rotate(-18deg); }
.leaf-spray-small { width: 90px; height: 80px; right: 20px; top: 10px; border-left: 1.3px solid rgba(123, 113, 56, 0.5); transform: rotate(28deg); }
.leaf-spray-small::before,
.leaf-spray-small::after { content: ''; position: absolute; width: 36px; height: 16px; border: 1px solid rgba(123,113,56,.52); border-radius: 100% 0 100% 0; }
.leaf-spray-small::before { left: 0; top: 20px; transform: rotate(-30deg); }
.leaf-spray-small::after { left: -25px; top: 46px; transform: rotate(30deg) scaleX(-1); }

.pricing-sidebar-decor img,
.pricing-right-decor img,
.promo-h-decor-img { display: none !important; }
.pricing-sidebar-decor { left: -55px; bottom: -42px; opacity: 1; }
.pricing-right-decor { width: 310px; height: 300px; opacity: 0.42; }

.promo-css-decor {
    width: 290px; height: 128px; min-width: 250px; position: relative; display: block; flex-shrink: 0;
}
.promo-css-decor .rolled-towel {
    width: 92px; height: 54px; border-radius: 999px;
    background: radial-gradient(circle at 36% 50%, #faf1d8 0 14%, #d8c89c 15% 25%, #f8edcf 26% 100%);
    box-shadow: 0 12px 24px rgba(0,0,0,.26);
    bottom: 20px;
}
.promo-css-decor .towel-back { right: 82px; transform: rotate(-5deg); opacity: .9; }
.promo-css-decor .towel-front { right: 136px; bottom: 11px; transform: rotate(4deg); }
.promo-css-decor .oil-bottle {
    bottom: 30px; width: 34px; border-radius: 11px 11px 8px 8px;
    background: linear-gradient(90deg, #8a581b, #e2a24e 45%, #6d4315);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 10px 22px rgba(0,0,0,.22);
}
.promo-css-decor .oil-bottle::before { content: ''; position: absolute; left: 8px; top: -18px; width: 18px; height: 20px; border-radius: 5px 5px 2px 2px; background: #dcb26a; }
.promo-css-decor .bottle-small { right: 40px; height: 58px; transform: rotate(-4deg); }
.promo-css-decor .bottle-tall { right: 8px; height: 82px; }
.promo-css-decor .candle-flame {
    right: 215px; bottom: 44px; width: 18px; height: 30px; border-radius: 50% 50% 50% 0;
    transform: rotate(-38deg); background: radial-gradient(circle at 45% 70%, #fff9bc 0 18%, #f2b33f 45%, #c4561d 75%);
    filter: drop-shadow(0 0 16px rgba(242, 179, 63, .85));
}
.promo-css-decor .flower-1 { left: 8px; bottom: 7px; transform: scale(.65); }
.promo-css-decor .flower-2 { left: 52px; bottom: 18px; transform: scale(.48) rotate(20deg); }

.corner-line-art.promo-line-left {
    left: 0; bottom: 0; width: 270px; height: 220px; opacity: 0.3;
    background:
        linear-gradient(58deg, transparent 49%, rgba(240, 219, 131, 0.45) 50%, transparent 51%),
        radial-gradient(ellipse at 35% 65%, transparent 0 42%, rgba(240, 219, 131, 0.4) 43% 44%, transparent 45%),
        radial-gradient(ellipse at 61% 46%, transparent 0 42%, rgba(240, 219, 131, 0.35) 43% 44%, transparent 45%);
}

/* Section/card polish closer to reference */
.about-section,
.gallery-section { background: linear-gradient(180deg, #fffdf7 0%, #fbf6e8 100%); }
.values-section,
.testimonials-section { background: #fffdf7; }
.services-section,
.pricing-section { background: #fbf6e8; }

.about-image-frame,
.service-card,
.value-card,
.testimonial-card,
.gallery-item,
.package-card { border-color: rgba(166, 137, 56, 0.38); }

.value-card {
    border-radius: 14px;
    background: rgba(255, 253, 247, 0.78);
    box-shadow: 0 10px 32px rgba(58, 53, 25, 0.04);
}
.value-icon,
.service-icon-overlay,
.feat-icon-box { color: #897732; }

.service-card {
    border-radius: 15px;
    overflow: visible;
    background: #fffdf7;
}
.service-image-wrapper { border-radius: 15px 15px 0 0; overflow: hidden; }
.service-content { padding-top: 1.75rem; }
.service-icon-overlay { left: 18px; background: #8a8133; color: #f6e991; border: 2px solid #f5e8a0; }

.package-card-header { background: linear-gradient(180deg, #667840, #43551f); }
.package-featured { box-shadow: 0 20px 48px rgba(91, 79, 29, 0.16); }
.package-badge { background: #f0d36b; }

.promo-horizontal-section {
    background:
        radial-gradient(circle at 72% 10%, rgba(240,219,131,.17), transparent 18rem),
        linear-gradient(90deg, #24300f, #38451b 55%, #202b0e);
}
.promo-h-cursive { font-family: var(--font-script); }
.promo-h-seal { box-shadow: inset 0 0 0 5px rgba(240, 219, 131, 0.08), 0 0 0 1px rgba(240, 219, 131, 0.3); }
.promo-h-deal .disc-val { font-size: clamp(2.4rem, 5vw, 4.9rem); color: #f2dc77; }

.testimonial-card {
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.88);
}
.tst-stars { color: #e7bf37; }

.gallery-item { border-radius: 16px; box-shadow: 0 12px 32px rgba(47, 57, 24, 0.07); }

.site-footer {
    background: linear-gradient(90deg, #293514, #3d481e 48%, #293514);
    border-top: 0;
}
.footer-line-art {
    right: -60px; bottom: -56px; width: 280px; height: 240px; opacity: .22;
    background:
        radial-gradient(ellipse at 30% 60%, transparent 0 42%, rgba(240, 219, 131, 0.55) 43% 44%, transparent 45%),
        radial-gradient(ellipse at 60% 42%, transparent 0 42%, rgba(240, 219, 131, 0.48) 43% 44%, transparent 45%),
        linear-gradient(48deg, transparent 49%, rgba(240, 219, 131, 0.42) 50%, transparent 51%);
}

/* ==========================================================================
   SWIPER SLIDER PREMIUM CUSTOMIZATIONS
   ========================================================================== */
.swiper {
    width: 100%;
    position: relative;
    padding-bottom: 3.5rem !important;
}

.swiper-slide {
    height: auto;
}

/* Customized Champagne Gold Bullets */
.swiper-pagination-bullet {
    background: var(--color-text-gray) !important;
    opacity: 0.3;
    width: 8px;
    height: 8px;
    transition: var(--transition-smooth) !important;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-secondary) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Sleek Gold Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-secondary) !important;
    background: rgba(30, 48, 32, 0.7);
    border: 1px solid rgba(194, 154, 91, 0.35);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px);
    z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-secondary);
    color: var(--color-primary-dark) !important;
    border-color: var(--color-secondary);
    transform: scale(1.08);
}

/* Positioning for Testimonials Nav Arrows */
.testimonials-slider {
    padding-left: 2rem;
    padding-right: 2rem;
}
.testimonials-section .swiper-button-prev {
    left: 0;
}
.testimonials-section .swiper-button-next {
    right: 0;
}

/* Positioning for Gallery Nav Arrows */
.gallery-slider {
    padding-left: 2rem;
    padding-right: 2rem;
}
.gallery-section .swiper-button-prev {
    left: 0;
}
.gallery-section .swiper-button-next {
    right: 0;
}

/* Hide arrows on mobile for clean look, rely on touch swipe gestures */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    .testimonials-slider,
    .gallery-slider {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Swiper Gallery Card Polish */
.gallery-slider .gallery-item {
    transition: var(--transition-smooth);
    margin: 10px 0;
}

.gallery-slider .swiper-slide-active .gallery-item,
.gallery-slider .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 48, 32, 0.12);
}

/* ==========================================================================
   MOBILE BURGER MENU & NAVIGATION DRAWER
   ========================================================================== */
/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle .hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hamburger Transformations for Active State */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
    /* Section Padding Adjustments */
    .section-padding {
        padding: 2rem 0 2rem 0;
    }

    /* Mobile Navigation Menu Drawer */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #121f14 0%, #1e3020 100%);
        border-left: 1px solid rgba(194, 154, 91, 0.25);
        padding: 7rem 2.5rem 3rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        width: 100%;
    }

    .main-navigation .nav-menu a {
        font-size: 1.1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        display: block;
        padding: 5px 0;
    }

    .main-navigation .nav-menu a::after {
        display: none;
    }

    /* Block body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hide header cta on mobile/tablet to clean up spacing */
    .header-cta {
        display: none;
    }

    /* 2-Column Grids on Tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .pricing-sidebar {
        padding-bottom: 0;
        align-items: center;
        text-align: center;
    }

    .pricing-sidebar .section-title {
        text-align: center !important;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-sidebar-decor {
        display: none !important;
    }

    /* Footer Grid Tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    /* Hero Section Polish */
    .hero-section {
        background-position: 68% center;
        padding-bottom: 7.5rem;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content {
        max-width: 660px;
        align-items: flex-start;
    }
    .hero-title {
        font-size: clamp(2.3rem, 6vw, 3.2rem);
    }
    .hero-title::first-line {
        font-size: inherit;
        color: inherit;
    }
    .promo-css-decor {
        display: none !important;
    }
    .corner-ornament, 
    .botanical-corner {
        opacity: 0.15;
        transform: scale(0.7);
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        order: -1;
    }
}

@media (max-width: 767px) {
    /* 1-Column Grids on Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Brand section center aligning on mobile */
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .footer-contact-list li {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 6rem;
        background-position: 75% center;
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-tags {
        gap: 0.5rem;
    }
    .hero-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }

    /* Section Subtitle Decoration adjustment */
    .section-subtitle::before, 
    .section-subtitle::after {
        width: 36px;
    }

    /* Happy Hour Promo Mobile Grid */
    .promo-horizontal-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    .promo-h-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .promo-h-left {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    .promo-h-cursive {
        margin: 0 auto;
    }
    .promo-h-deal {
        align-items: center;
    }

    /* Hide heavy ornaments on mobile */
    .corner-ornament, 
    .botanical-corner, 
    .pricing-right-decor, 
    .pricing-sidebar-decor, 
    .soft-gold-orb {
        display: none !important;
    }
    
    .wave-divider {
        height: 48px;
    }
}
