/* ==========================================================================
   RITUALS BEAUTY - MAIN THEME STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & NORMALIZE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

article, aside, footer, header, nav, section {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

p {
    margin: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

textarea {
    overflow: auto;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS & VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-bg: #faf7f6;
    --color-bg-alt: #f4efee;
    --color-white: #ffffff;
    
    --color-blush: #c89b9b;
    --color-blush-dark: #b58585;
    --color-blush-soft: #f7ede8;
    --color-blush-hover: #ba8686;
    
    --color-text: #1a1a1a;
    --color-text-muted: #666666;
    --color-text-light: #999999;
    
    --color-border: #eee6e6;
    --color-border-dark: #333333;
    
    --color-footer: #181616;
    --color-footer-text: #cccccc;
    --color-footer-muted: #888888;
    
    --color-rating: #d4af37;
    --color-success: #3c763d;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Layout Containers */
    --container-width: 1240px;
    --container-narrow: 860px;

    /* Spacings */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-base: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   3. BASE STYLES & TYPOGRAPHY
   -------------------------------------------------------------------------- */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--color-blush);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    z-index: 10000;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: var(--space-xs);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

p:last-child {
    margin-bottom: 0;
}

.text-lead {
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    line-height: 1.7;
    color: var(--color-text-muted);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-blush);
    margin-bottom: var(--space-xs);
}

/* Container & Sections */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--white {
    background-color: var(--color-white);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl) auto;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

/* Focus outline for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--color-blush);
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.85rem 1.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-align: center;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn--primary {
    background-color: var(--color-blush);
    color: var(--color-white);
    border: 1px solid var(--color-blush);
}

.btn--primary:hover {
    background-color: var(--color-blush-hover);
    border-color: var(--color-blush-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 155, 155, 0.3);
}

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

.btn--secondary:hover {
    background-color: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn--outline-blush:hover {
    background-color: var(--color-blush-soft);
    color: var(--color-text);
}

.btn--full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.btn--sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   5. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 247, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

/* Admin Bar Adjustments */
body.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo__img {
    height: auto;
    max-height: 48px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: opacity var(--transition-fast);
}

.site-logo:hover .site-logo__img {
    opacity: 0.85;
}

/* Invert logo text color for dark footer */
.site-footer .site-logo__img {
    max-height: 42px;
    filter: invert(1) brightness(1.3);
}

.site-nav {
    display: none;
}

@media (min-width: 1024px) {
    .site-nav {
        display: block;
    }
}

.site-nav__list, ul.site-nav__list, #menu-hauptmenu, ul.menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list li, #menu-hauptmenu li, ul.menu > li {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.site-nav__link, 
.site-nav__list a,
#menu-hauptmenu a,
ul.menu > li > a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.site-nav__link::after, 
.site-nav__list a::after,
#menu-hauptmenu a::after,
ul.menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-blush);
    transition: width var(--transition-base);
}

.site-nav__link:hover, .site-nav__link--active,
.site-nav__list li.current-menu-item > a,
.site-nav__list li.current_page_item > a,
.site-nav__list a:hover,
#menu-hauptmenu li.current-menu-item > a,
#menu-hauptmenu li.current_page_item > a,
#menu-hauptmenu a:hover,
ul.menu > li.current-menu-item > a,
ul.menu > li.current_page_item > a,
ul.menu > li > a:hover {
    color: var(--color-blush-dark);
}

.site-nav__link:hover::after, .site-nav__link--active::after,
.site-nav__list li.current-menu-item > a::after,
.site-nav__list li.current_page_item > a::after,
.site-nav__list a:hover::after,
#menu-hauptmenu li.current-menu-item > a::after,
#menu-hauptmenu li.current_page_item > a::after,
#menu-hauptmenu a:hover::after,
ul.menu > li.current-menu-item > a::after,
ul.menu > li.current_page_item > a::after,
ul.menu > li > a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header-actions__cta {
    display: none;
}

@media (min-width: 640px) {
    .header-actions__cta {
        display: inline-flex;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle__bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-base);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1050;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-drawer--open {
    right: 0;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-nav-backdrop--open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__list, .mobile-nav-drawer ul.menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    list-style: none;
}

.mobile-nav__link, .mobile-nav-drawer ul.menu > li > a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    display: block;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
}

.mobile-nav__link--active, .mobile-nav-drawer ul.menu > li.current-menu-item > a {
    color: var(--color-blush);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   6. CARDS & GRID COMPONENTS
   -------------------------------------------------------------------------- */
.category-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-blush-soft);
}

.category-card__media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card__img {
    transform: scale(1.05);
}

.category-card__content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card__title {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
}

.category-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.category-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-blush-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.category-card:hover .category-card__link {
    gap: 10px;
}

/* Treatment Card */
.treatment-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    height: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
}

.treatment-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-blush);
    box-shadow: var(--shadow-md);
}

.treatment-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xs);
}

.treatment-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.treatment-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.88rem;
}

.duration-tag {
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.price-tag {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.15rem;
}

.treatment-card__desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

/* Blog Post Card */
.post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    height: 100%;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.post-card__media {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: var(--space-lg) 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-blush-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blush-dark);
    flex-shrink: 0;
}

.trust-item__title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.trust-item__subtitle {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Rating Badge */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--color-white);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
}

.stars {
    color: var(--color-rating);
    letter-spacing: 2px;
}

/* Review Card */
.review-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-card__quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-blush-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-blush-dark);
}

.review-card__name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-card__verified {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Voucher Banner */
.voucher-banner {
    background-color: var(--color-blush-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.voucher-banner__content {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   7. LAYOUT & GRIDS
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: var(--space-md);
    min-width: 0;
    width: 100%;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

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

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

/* Hero Section */
.hero {
    padding: var(--space-xl) 0 var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero__content {
    max-width: 620px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .founder-section {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.founder__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.founder__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.result-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.result-card__media {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.result-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card__caption {
    padding: var(--space-sm);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. FAQ ACCORDION & FORMS
   -------------------------------------------------------------------------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item--active {
    border-color: var(--color-blush);
}

.faq-trigger {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform var(--transition-base);
    color: var(--color-blush-dark);
}

.faq-item--active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    padding: 0 var(--space-md);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.faq-item--active .faq-content {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md) var(--space-md);
}

/* Contact Grid & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--color-text);
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-blush);
    background-color: var(--color-white);
}

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

/* Booking App Mount */
.booking-app {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    min-height: 480px;
}

/* --------------------------------------------------------------------------
   9. LEGAL PAGES & GENERAL WORDPRESS ALIGNMENT
   -------------------------------------------------------------------------- */
.legal-content {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.legal-content p, .legal-content ul {
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignright {
    float: right;
    margin-left: var(--space-md);
}
.alignleft {
    float: left;
    margin-right: var(--space-md);
}

/* --------------------------------------------------------------------------
   10. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-footer);
    color: var(--color-footer-text);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-col__list, .site-footer ul.menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    list-style: none;
}

.footer-col__link, .site-footer ul.menu > li > a {
    color: var(--color-footer-text);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-col__link:hover, .site-footer ul.menu > li > a:hover {
    color: var(--color-blush);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
    color: var(--color-footer-muted);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal, .footer-legal-menu ul {
    display: flex;
    gap: var(--space-md);
    list-style: none;
}

/* ==========================================================================
   11. REDESIGNED HOMEPAGE COMPONENTS (CLIENT REFERENCE DESIGN)
   ========================================================================== */

/* Typography & General Helpers */
.section-title-serif {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

.section-subtitle-caps {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.section-header--centered {
    text-align: center;
    max-width: 780px;
    margin: 0 auto var(--space-xl) auto;
}

.section-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: var(--space-xs);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1.5px solid var(--color-text);
    padding-bottom: 2px;
    transition: color var(--transition-fast), border-color var(--transition-fast), gap var(--transition-fast);
}

.btn-text-link:hover {
    color: var(--color-blush-dark);
    border-color: var(--color-blush-dark);
    gap: 10px;
}

.btn--dark {
    background-color: #2c2a2a;
    color: var(--color-white);
    border: 1px solid #2c2a2a;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    display: inline-block;
}

.btn--dark:hover {
    background-color: var(--color-blush-dark);
    border-color: var(--color-blush-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   1. Split Dark Hero Section
   -------------------------------------------------------------------------- */
.hero-split-dark {
    background-color: #232224;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-split-dark__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 520px;
}

@media (min-width: 992px) {
    .hero-split-dark__inner {
        grid-template-columns: 46% 54%;
        min-height: 580px;
    }
}

.hero-split-dark__content {
    padding: 3.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-split-dark__content {
        padding: 4.5rem 3.5rem 4.5rem 4.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-split-dark__content {
        padding: 5.5rem 4.5rem 5.5rem 6.5rem;
    }
}

.hero-split-dark__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d8c0b6;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: block;
}

.hero-split-dark__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.12;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-split-dark__heading span {
    font-style: italic;
    font-weight: 500;
}

.hero-split-dark__desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #d1cbc7;
    margin-bottom: 2rem;
    max-width: 460px;
}

.hero-split-dark__cta,
.hero-split-dark__actions .btn,
.hero-split-dark__actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1.5px solid #ffffff;
    padding-bottom: 4px;
    text-decoration: none;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero-split-dark__cta:hover,
.hero-split-dark__actions .btn:hover,
.hero-split-dark__actions a:hover {
    color: #e5c3b5;
    border-bottom-color: #e5c3b5;
    transform: translateX(4px);
}

.hero-split-dark__media {
    position: relative;
    min-height: 320px;
    background-color: #1a1a1a;
}

.hero-split-dark__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

/* --------------------------------------------------------------------------
   2. Founder Overview & Google Reviews
   -------------------------------------------------------------------------- */
.section--founder-overview {
    padding: var(--space-2xl) 0 var(--space-xl) 0;
}

.founder-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
}

@media (min-width: 992px) {
    .founder-overview-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
    }
}

.founder-overview__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.founder-overview__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.founder-overview__body p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.founder-overview__action {
    margin-top: var(--space-md);
}

.founder-overview__media-wrapper {
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.founder-portrait-frame {
    position: relative;
    max-width: 360px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: visible;
}

.founder-portrait-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: block;
}

.google-rating-overlay-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(--color-white);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 5;
}

.google-rating-overlay-badge__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.google-icon {
    display: block;
}

.badge-stars {
    color: #fbbc05;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.google-rating-overlay-badge__text {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    line-height: 1.35;
}

.google-rating-overlay-badge__text strong {
    font-size: 0.88rem;
    color: var(--color-text);
}

.google-rating-overlay-badge__text span {
    color: var(--color-text-muted);
}

.badge-link {
    color: var(--color-blush-dark);
    text-decoration: underline;
    font-weight: 600;
    margin-top: 2px;
    font-size: 0.8rem;
}

/* Google Reviews Row */
.google-reviews-row {
    padding-top: var(--space-lg);
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .google-reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.google-review-card {
    background: #faf8f7;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.google-review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.google-review-card__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #2c2a2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.google-review-card__name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text);
    line-height: 1.2;
}

.google-review-card__stars {
    color: #fbbc05;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.google-review-card__badge {
    margin-left: auto;
    width: 20px;
    height: 20px;
    background: #4285F4;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-review-card__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    font-style: italic;
}

/* --------------------------------------------------------------------------
   3. Treatment Feature Cards (4 Columns)
   -------------------------------------------------------------------------- */
.section--treatments-overview {
    background-color: #faf7f6;
    padding: var(--space-2xl) 0;
}

.treatment-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .treatment-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .treatment-feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.treatment-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.treatment-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--color-blush-soft);
}

.treatment-feature-card__title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.treatment-feature-card__desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.treatment-feature-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.treatment-feature-card__list li {
    font-size: 0.9rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-bullet {
    color: var(--color-blush-dark);
    font-weight: 700;
}

.treatment-feature-card__footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
    margin-top: auto;
}

.card-action-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.treatment-feature-card:hover .card-action-link,
.card-action-link:hover {
    color: var(--color-blush-dark);
    gap: 10px;
}

/* --------------------------------------------------------------------------
   4. Testimonials Split (Left Media + Right Blush Quotes)
   -------------------------------------------------------------------------- */
.section--testimonials-split {
    padding: var(--space-2xl) 0;
}

.testimonials-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .testimonials-split-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }
}

.testimonials-split__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-height: 520px;
}

.testimonials-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-split__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    margin-bottom: 0.4rem;
}

.testimonials-split__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.testimonials-split__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.blush-quotes-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
    .blush-quotes-row {
        grid-template-columns: 1fr 1fr;
    }
}

.blush-quote-card {
    background-color: #faf0ec;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(200, 155, 155, 0.15);
}

.quote-symbol {
    position: absolute;
    top: 8px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(200, 155, 155, 0.4);
    user-select: none;
}

.blush-quote-card__quote {
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.blush-quote-card__author {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.blush-quote-card__author strong {
    color: var(--color-text);
}

.blush-quote-card__author span {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   5. Results Gallery Strip (4 Photos in One Row)
   -------------------------------------------------------------------------- */
.section--results-strip {
    background-color: #faf7f6;
    padding: var(--space-2xl) 0;
}

.results-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .results-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }
}

.results-strip-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.results-strip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.results-strip-item__media {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.results-strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.results-strip-item:hover .results-strip-img {
    transform: scale(1.05);
}

.results-strip-item__caption {
    padding: 0.6rem 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-white);
}

.results-strip-action {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

/* --------------------------------------------------------------------------
   6. Floating Voucher Banner
   -------------------------------------------------------------------------- */
.section--voucher-floating {
    position: relative;
    overflow: hidden;
}

.voucher-floating-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.voucher-floating-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.voucher-floating-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.voucher-floating-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 2.25rem 3.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.voucher-floating-card__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.voucher-floating-card__subtitle {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-blush-dark);
    margin-bottom: 0.75rem;
}

.voucher-floating-card__desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   7. Contact Inquiry Box (2-Column 2x2 Info + Form)
   -------------------------------------------------------------------------- */
.section--contact-inquiry {
    padding: var(--space-2xl) 0;
}

.contact-inquiry-box {
    background-color: #faf0ec;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    border: 1px solid rgba(200, 155, 155, 0.2);
}

@media (max-width: 480px) {
    .contact-inquiry-box {
        padding: 1.25rem 0.75rem;
        border-radius: var(--radius-md);
    }
    .contact-inquiry__form-card {
        padding: 1.25rem 1rem !important;
    }
}

@media (min-width: 640px) {
    .contact-inquiry-box {
        padding: var(--space-xl);
    }
}

@media (min-width: 992px) {
    .contact-inquiry-box {
        padding: 3.5rem;
    }
}

.contact-inquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 992px) {
    .contact-inquiry-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.contact-inquiry__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    margin-bottom: 0.35rem;
}

.contact-inquiry__subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-inquiry__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.contact-info-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .contact-info-2x2 {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.contact-info-item__icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.contact-info-item strong {
    color: var(--color-text);
    display: block;
}

.info-link {
    color: var(--color-text);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.info-link:hover {
    color: var(--color-blush-dark);
}

.contact-inquiry__form-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--color-border);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .contact-inquiry__form-card {
        padding: 2rem;
    }
}

.form-row {
    margin-bottom: 1rem;
    width: 100%;
}

.form-row--2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row--2col {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-inquiry-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-inquiry-form .form-group {
    margin-bottom: 0;
    width: 100%;
}

.contact-inquiry-form .form-label {
    font-size: 0.82rem;
    margin-bottom: 4px;
    display: block;
}

.contact-inquiry-form .form-input,
.contact-inquiry-form .form-textarea {
    font-size: 0.9rem;
    padding: 0.75rem 0.85rem;
    background-color: #faf8f7;
    border-color: #e5dedc;
    width: 100%;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   8. Dual Bottom Info Cards
   -------------------------------------------------------------------------- */
.section--bottom-info {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
}

.bottom-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

.bottom-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bottom-info-block__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.bottom-info-block__desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   9. Floating Mobile Booking CTA
   -------------------------------------------------------------------------- */
.floating-booking-mobile {
    display: none;
    position: fixed;
    bottom: max(1.25rem, calc(env(safe-area-inset-bottom) + 0.85rem));
    right: max(1.25rem, calc(env(safe-area-inset-right) + 0.85rem));
    z-index: 999;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .floating-booking-mobile {
        display: block;
    }
}

.floating-booking-mobile__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 0.85rem 1.45rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #c89b9b 0%, #b58585 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 24px rgba(200, 155, 155, 0.55), 0 3px 10px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.floating-booking-mobile__btn::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    background-color: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center / contain;
}

.floating-booking-mobile__btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 12px rgba(200, 155, 155, 0.4) !important;
}


/* Gallery page and client-managed Work cards */
.gallery-hero {
    padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.gallery-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.gallery-work-card,
.gallery-empty {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
}

.gallery-work-card__link,
.results-strip-item__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gallery-work-card__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.gallery-work-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.gallery-work-card:hover .gallery-work-card__image,
.gallery-work-card:focus-within .gallery-work-card__image {
    transform: scale(1.035);
}

.gallery-work-card__body {
    padding: 1rem 1.1rem 1.2rem;
}

.gallery-work-card__body h3 {
    margin: 0;
    font-size: 1.1rem;
}

.gallery-work-card__body span {
    display: block;
    margin-top: 0.35rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.gallery-empty {
    padding: var(--space-xl);
    text-align: center;
}

.gallery-pagination {
    margin-top: var(--space-xl);
}

.gallery-pagination .page-numbers {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
}

.gallery-pagination a,
.gallery-pagination .current {
    display: grid;
    min-width: 2.75rem;
    min-height: 2.75rem;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.gallery-pagination .current {
    background: var(--color-text);
    color: var(--color-white);
}

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

@media (min-width: 1100px) {
    .gallery-work-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Compact breadcrumb trail below the site header */
.breadcrumbs-nav {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(28, 25, 23, 0.08);
    background: var(--color-white, #fff);
    color: var(--color-text-muted, #6b6866);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.breadcrumbs-nav .container {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0.625rem 0;
    list-style: none;
}

.breadcrumbs-list > li,
.breadcrumbs-list > .breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumbs-list a {
    color: var(--color-text, #1c1917);
    font-weight: 500;
    text-decoration: none;
    transition: color 180ms ease;
}

.breadcrumbs-list a:hover,
.breadcrumbs-list a:focus-visible {
    color: var(--color-primary, #c99a9e);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.breadcrumbs-list .active {
    overflow: hidden;
    max-width: min(28rem, 65vw);
    color: var(--color-text-muted, #6b6866);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-sep {
    margin-inline: 0.65rem !important;
    color: #b8b2ae;
    font-size: 0;
}

.breadcrumb-sep::after {
    content: "›";
    font-size: 1rem;
    line-height: 1;
}

/* Normalize breadcrumb output when Yoast or Rank Math is enabled. */
.breadcrumbs-nav #breadcrumbs,
.breadcrumbs-nav .rank-math-breadcrumb,
.breadcrumbs-nav .rank-math-breadcrumb p {
    margin: 0;
    padding: 0.625rem 0;
}

@media (max-width: 600px) {
    .breadcrumbs-nav {
        font-size: 0.75rem;
    }

    .breadcrumbs-nav .container {
        min-height: 2.5rem;
    }

    .breadcrumb-sep {
        margin-inline: 0.45rem !important;
    }
}

/* Full-resolution Work image lightbox */
.lightbox-trigger {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: inherit;
    cursor: zoom-in;
}

.lightbox-trigger:focus-visible {
    outline: 3px solid var(--color-primary, #c99a9e);
    outline-offset: 3px;
}

.work-lightbox {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(15, 13, 12, 0.92);
}

.work-lightbox.is-open {
    display: flex;
}

.work-lightbox__stage {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.work-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.35);
}

.work-lightbox__close {
    position: absolute;
    z-index: 1;
    top: max(1rem, env(safe-area-inset-top));
    right: max(1rem, env(safe-area-inset-right));
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font: 300 2rem/1 sans-serif;
    cursor: pointer;
}

.work-lightbox__close:hover,
.work-lightbox__close:focus-visible {
    background: #fff;
    color: #1c1917;
}
