/* ...existing code... */
@media (max-width: 900px) {
    .mobile-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 1000;
        background: transparent;
    }
}
/* About Amanda - Heading and Italic Styles to Match Services Snapshot */
.bio-content h1 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.bio-content h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}
.bio-content em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.bio-content .lead-text {
    font-size: 1.15rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}
/* Amanda Bio Section - About Page Layout */
.amanda-bio-section {
    width: 100%;
    max-width: 1100px;
    margin: 7.5rem auto 0 auto;
    padding: 0 1rem;
}
.bio-flex {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
}
.bio-content {
    flex: 2;
    min-width: 260px;
}
.bio-photo {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.bio-photo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: block;
}
@media (max-width: 800px) {
    .bio-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .bio-photo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
}
/* Amanda Bio Section - About Page */
.bio-photo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .bio-photo img {
        max-width: 95vw;
        min-width: 220px;
        border-radius: 14px;
    }
}
/* About page two-column layout to match services */
/* About page two-column layout to match services */
.about-main-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.about-main-container {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    max-width: 1100px;
    width: 100%;
    align-items: flex-start;
}
.about-main-left {
    flex: 1 1 0;
    max-width: 520px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}
.about-main-right {
    flex: 1 1 0;
    max-width: 520px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-full {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.about-card-inner {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.about-hero-row {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}
.about-hero-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.about-hero-lead {
    font-size: 1.15rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}
/* About page vertical layout fixes */
.about-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
}
.about-card-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 520px;
}
.about-card-inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    box-sizing: border-box;
}
.about-image-full {
    margin: 2rem auto 0 auto !important;
    max-width: 420px;
    height: 420px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.about-hero {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 0.5rem;
}
.about-hero h1 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1.15rem;
    color: #6a6a6a;
    margin-bottom: 0.5rem;
}
/* Force redesigned about section to use flexbox and prevent legacy grid/wrapper styles from interfering */
.about-hero.redesigned-about {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    background: none;
    max-width: 1100px;
    margin: 6rem auto 0 auto;
}
.about-flex {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    min-height: 520px;
    gap: 0;
    align-items: stretch;
}
.about-card-left {
    flex: 0 0 340px;
    max-width: 340px;
    min-width: 260px;
    margin-right: 0;
    z-index: 2;
    display: flex;
    align-items: stretch;
    height: 520px;
}
.about-image-full {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    min-width: 340px;
    max-width: 520px;
    height: 520px;
    z-index: 1;
}
.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 18px 18px 0;
}
/* Ensure left card matches Visit Us style and aligns next to image */
/* Intro Visit Section (Homepage Amanda Card) */
.intro-visit-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2.5rem auto 0 auto;
}
.intro-visit-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
    max-width: 1100px;
    width: 100%;
    min-height: 340px;
}
.intro-visit-flex .visit-card {
    margin: 0;
}
.intro-visit-flex .visit-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 380px;
    max-width: 520px;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    background: #fff;
    align-self: center;
}
.intro-visit-flex .visit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}
/* Responsive styles for intro-visit-section */
@media (max-width: 900px) {
    .intro-visit-flex {
        flex-direction: column;
        gap: 1.5rem;
        min-height: unset;
        max-width: 100%;
        align-items: center;
    }
    .intro-visit-flex .visit-card {
        max-width: 95vw;
        margin: 0 auto;
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .intro-visit-flex .visit-photo {
        min-width: 220px;
        max-width: 95vw;
        height: 260px;
        margin: 0 auto;
        border-radius: 14px;
    }
    .intro-visit-flex .visit-photo img {
        border-radius: 14px;
    }
    .visit-card-inner {
        padding: 1.2rem 1rem 1rem 1rem;
        min-width: unset;
        max-width: 95vw;
    }
}

@media (max-width: 600px) {
    .intro-visit-section {
        margin-top: 1.2rem;
    }
    .intro-visit-flex {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    /* Make the visit/photo (Amanda) image responsive on small screens.
       Use aspect-ratio so the image keeps a consistent crop instead of forcing
       a fixed pixel height which can cause odd scaling on different phones. */
    .intro-visit-flex .visit-photo {
        height: auto; /* allow aspect-ratio to control height */
        aspect-ratio: 4 / 3; /* sensible portrait-ish card for mobile */
        width: 100%;
        max-width: 95vw;
        min-width: unset;
        border-radius: 10px;
        overflow: hidden; /* ensure cropping stays inside rounded container */
        display: block;
    }
    .intro-visit-flex .visit-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fill and crop without distortion */
        display: block;
        border-radius: 10px; /* keeps consistent rounding for the image */
    }
    .visit-card {
        max-width: 100vw;
        padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    }
    .visit-card-inner {
        padding: 0.7rem 0.5rem 0.5rem 0.5rem;
        min-width: unset;
        max-width: 100vw;
        font-size: 1rem;
    }
    .visit-card-inner h2 {
        font-size: 1.1rem;
    }
}
.about-card-left {
    display: flex;
    align-items: stretch;
    flex: 0 0 340px;
    max-width: 340px;
    min-width: 260px;
    margin-right: 0;
}
/* About Card Section (matches Visit Us card) */
.about-card-inner {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-info {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: left;
}
.about-info strong {
    color: #6d6a5c;
    font-weight: 600;
}
.about-list {
    margin: 0.75rem 0 0.5rem 1.2rem;
    padding: 0;
    list-style: disc inside;
    color: #444;
    font-size: 1rem;
}
.about-btn {
    display: block;
    margin: 1.2rem auto 0 auto;
    padding: 0.7rem 1.6rem;
    background: #4a5d4a;
    color: #fff;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: background 0.2s;
    text-align: center;
}
.about-btn:hover {
    background: #3a4a3a;
}
.about-interior {
    margin: 1.2rem auto 0 auto;
    font-size: 0.98rem;
    color: #8d8577;
    font-style: italic;
    text-align: center;
    width: 100%;
}
/* Visit Us Card Section */
.visit-card {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 3.5rem auto 0 auto;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    color: #444;
    font-size: 1rem;
}
.visit-card-inner {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 1.2rem 1rem 1rem 1rem;
    max-width: 500px;
    width: 100%;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.08rem;
    justify-content: center;
}
.visit-card-inner h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #6d6a5c;
    font-weight: 600;
}
.visit-info > div {
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 1rem;
}
.visit-info a {
    color: #8d8577;
    text-decoration: none;
    transition: color 0.2s;
}
.visit-info a:hover {
    color: #a8b5a0;
    text-decoration: underline;
}
.visit-brand {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #8d8577;
    font-weight: 500;
    letter-spacing: 0.04em;
    align-self: flex-end;
}
/* Redesigned About Section */
.redesigned-about {
    width: 100%;
    margin: 4rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #faf8f5;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    padding: 0;
    max-width: 1100px;
}

.about-flex {
    display: flex;
    width: 100%;
    min-height: 480px;
}

.about-image-full {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    min-width: 340px;
    max-width: 520px;
    height: 520px;
}
.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 18px 18px 0;
}

.about-text-compact {
    flex: 0 0 340px;
    background: #fff;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 1rem;
    min-height: 480px;
    max-width: 340px;
}
.about-text-compact h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.about-text-compact .lead-text {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #6d6a5c;
}
.about-text-compact p {
    margin-bottom: 0.5rem;
    color: #444;
}
.about-text-compact .signature-line {
    margin-top: 1rem;
    font-style: italic;
    color: #8d8577;
}
/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0 auto;
    height: 480px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.12);
    background: url('../images/your-hero-image.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(20,20,30,0.55) 60%, rgba(40,40,50,0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 36px 48px;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-content h1 {
    color: var(--color-primary);
}
/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2e2e2e;
    --color-secondary: #6d6a5c;
    --color-accent: #8d8577;
    --color-light-bg: #f9f7f4;
    --color-cream: #faf8f5;
    --color-sand: #e6e2d8;
    /* Zen-inspired greens (updated sitewide per request) */
    --zen-sage: #a0b393; /* updated to requested color */
    --zen-mint: #a0b393; /* updated to requested color */
    --zen-forest: #4a5d4a; /* keep darker forest tone for contrast */
    /* Wood tones - zen green variants */
    --wood-100: #f3e6d6;
    --wood-300: #a0b393; /* lighter wood/green accent updated to requested color */
    --wood-500: #7a9b8a;
    --wood-700: #4a5d4a;
    /* Subtle wood texture using gradients (can be used on larger panels) */
    --wood-texture: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 6px, rgba(0,0,0,0.02) 6px 12px), linear-gradient(180deg, var(--wood-100), var(--wood-300));
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: linear-gradient(180deg, #fff 0%, var(--zen-mint) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><defs><pattern id="paper" x="0" y="0" width="256" height="256" patternUnits="userSpaceOnUse"><rect width="256" height="256" fill="%23faf8f5"/><circle cx="128" cy="128" r="2" fill="%23e6e2d8" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paper)"/></svg>');
    background-attachment: fixed;
    color: var(--color-primary);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

em {
    font-style: italic;
    color: var(--color-secondary);
}

p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 1.8rem;
    font-weight: 400;
}

/* ===================================
   SERVICE DETAILS & CREDENTIALS
   =================================== */

.service-details {
    padding: 6rem 8%;
    background: transparent;
}

.details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-detail-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.service-detail-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 400;
}

.service-detail-item p {
    line-height: 1.7;
    color: #4a4a4a;
}

.service-detail-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-detail-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wood-500);
    font-weight: bold;
}

@media (max-width: 768px) {
    .details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   QUICK LINKS SECTION
   =================================== */

.quick-links-section {
    padding: 6rem 8%;
    background: transparent;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-link-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 40px 12px rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.quick-link-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    color: var(--color-secondary);
    gap: 0.8rem;
}

@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 200px;
    }
}

/* ===================================
   MARQUEE SECTION  
   =================================== */

.marquee-section {
    padding: 4rem 0;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.marquee-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-secondary);
    white-space: nowrap;
    padding: 0 3rem;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

@keyframes scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-33.333%, 0, 0);
    }
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 6rem 8%;
    background: transparent;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.cta-emphasis {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary);
    font-style: italic;
    margin: 1.5rem 0;
}

.cta-content .btn-primary {
    margin-top: 2rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 6rem 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 55fr 45fr;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    min-height: 650px;
}

.contact-info {
    padding: 4rem 8% 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-info h2 em {
    font-style: normal;
    color: var(--color-primary);
    font-size: 3rem;
    display: block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1.2;
}

.info-block {
    margin-bottom: 2.5rem;
    position: relative;
    padding-top: 2.5rem;
}

.info-block:first-of-type {
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.info-block:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--color-accent);
}

.info-block h3 {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.info-block p {
    line-height: 1.9;
    margin: 0;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.info-block a {
    color: var(--color-accent);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.info-block a:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.contact-image {
    position: relative;
    height: 100%;
    min-height: 650px;
    max-height: 450px; /* Limit the maximum height on desktop */
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   THE SPACE SECTION
   =================================== */

.space-section {
    padding: 6rem 8%;
    background: transparent;
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.space-item {
    text-align: center;
}

.space-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.space-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 40px 15px rgba(249, 247, 244, 0.3);
    pointer-events: none;
}

.space-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-item:hover .space-image img {
    transform: scale(1.05);
}

.space-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.space-info p {
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.space-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .space-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .space-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   WELCOME SPACE SECTION
   =================================== */

.welcome-space {
    background: transparent;
    padding: 6rem 8%;
}

.welcome-space .content-wrapper {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.welcome-space .text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.welcome-space .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.welcome-space .text-content .lead-text {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.welcome-space .text-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.welcome-space .image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-space .image-content img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.welcome-space .btn-secondary {
    align-self: flex-start;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .welcome-space .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .welcome-space .image-content {
        order: -1;
    }
}

@media (max-width: 768px) {
    .welcome-space {
        padding: 4rem 5%;
    }
    
    .welcome-space .text-content h2 {
        font-size: 2rem;
    }
}

/* ===================================
   WELLNESS FEATURES SECTION
   =================================== */

.wellness-features {
    padding: 6rem 8%;
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
}

.wellness-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--color-light-bg);
    border-radius: 12px;
}

.feature-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 400;
}

.feature-detail p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-detail ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wood-500);
    font-weight: bold;
}

/* ===================================
   LOCATION INFO SECTION
   =================================== */

.location-info {
    padding: 6rem 8%;
    background: var(--color-cream);
    text-align: center;
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
}

.location-content h2 {
    margin-bottom: 2rem;
}

.location-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.location-content a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.location-content a:hover {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products-section {
    padding: 6rem 8%;
    background: transparent;
}

.products-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.product-intro .lead-text {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
}

.sustainability-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    text-align: left;
}

.feature-icon {
    font-size: 3rem;
    color: var(--wood-500);
    line-height: 1;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.feature-text p {
    line-height: 1.7;
    margin: 0;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.product-category {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    text-align: center;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--wood-500);
    margin-bottom: 1rem;
}

.product-category h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-category > p {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wood-500);
}

.products-cta {
    margin-top: 4rem;
}

.cta-box {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.eco-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(109, 106, 92, 0.2);
}

@media (max-width: 1024px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sustainability-feature {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   WHY INNERSENSE SECTION
   =================================== */

.why-innersense {
    padding: 6rem 8%;
    background: transparent;
}

.why-innersense .content-wrapper {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.why-innersense .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding-left: 1.5rem;
    border-left: 3px solid var(--wood-500);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.benefit-item p {
    line-height: 1.7;
    margin: 0;
}

.why-innersense .image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-innersense .image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .why-innersense .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-innersense .image-content {
        order: -1;
    }
}

/* ===================================
   PRODUCT EDUCATION SECTION
   =================================== */

.product-education {
    padding: 6rem 8%;
    background: var(--color-cream);
    text-align: center;
}

.product-education h2 {
    margin-bottom: 1rem;
}

.product-education .lead-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.product-education > p {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.education-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .education-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   SHOP CTA SECTION
   =================================== */

.shop-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--wood-300) 0%, var(--wood-500) 100%);
    text-align: center;
}

.shop-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.shop-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.shop-cta h2 em {
    color: #fff;
}

.shop-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: #4a5d4a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: 6rem 8%;
    background: transparent;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.gallery-intro .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   WHAT TO EXPECT SECTION
   =================================== */

.what-to-expect {
    padding: 6rem 8%;
    background: var(--color-cream);
}

.expect-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.expect-content h2 {
    margin-bottom: 0.5rem;
}

.expect-content .lead-text {
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.expect-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(135deg, var(--wood-300) 0%, var(--wood-500) 100%);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .expect-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .expect-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===================================
   SOCIAL FOLLOW SECTION
   =================================== */

.social-follow {
    padding: 6rem 8%;
    background: #fff;
    text-align: center;
}

.social-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-content h2 {
    margin-bottom: 1rem;
}

.social-content > p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-light-bg);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.social-link span {
    font-size: 1.5rem;
    color: var(--wood-500);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: #fff;
}

@media (max-width: 640px) {
    .social-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   GALLERY CTA SECTION
   =================================== */

.gallery-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--wood-500) 0%, var(--wood-700) 100%);
    text-align: center;
}

.gallery-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.gallery-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.gallery-cta h2 em {
    color: #fff;
}

.gallery-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===================================
   WHAT YOU'LL GET SECTION
   =================================== */

.what-youll-get {
    padding: 6rem 8%;
    background: var(--color-light-bg);
    text-align: center;
}

.what-youll-get h2 {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--wood-500);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 6rem 8%;
    background: var(--color-cream);
    text-align: center;
}

.faq-section h2 {
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--wood-300) 0%, var(--wood-500) 100%);
    text-align: center;
}

.final-cta .cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.signature-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.final-cta em {
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-heading);
}

.final-cta .btn-primary {
    margin-top: 2rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 6rem 8%;
    background: transparent;
}

.services-section .content-wrapper {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.services-section .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    background: transparent;
    padding: 1.8rem 0 2.5rem 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: none;
    transition: padding 0.3s ease;
    position: relative;
}


.service-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

.services-section .image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .image-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .services-section .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-section .image-content {
        order: -1;
    }
}

/* ===================================
   EDUCATION SECTION
   =================================== */

.education-section {
    padding: 6rem 8%;
    background: transparent;
    text-align: center;
}

.education-content {
    max-width: 1200px;
    margin: 0 auto;
}

.education-content h2 {
    margin-bottom: 1rem;
}

.education-content .lead-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.promise-item {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.promise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 3px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        rgba(255, 255, 255, 0.4) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.promise-item::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 20px;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.promise-item:hover::after {
    opacity: 1;
}

.promise-icon {
    font-size: 2rem;
    color: var(--wood-500);
    font-weight: bold;
    flex-shrink: 0;
}

.promise-item p {
    margin: 0;
    line-height: 1.7;
}

.education-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-secondary);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   BOOKING CTA SECTION
   =================================== */

.booking-cta {
    padding: 6rem 8%;
    background: #fff;
    text-align: center;
}

.booking-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-cta h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.booking-cta p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-cta .signature {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-style: italic;
    margin-top: 2rem;
    font-family: var(--font-heading);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

section {
    padding: 7rem 8%;
}

@media (max-width: 900px) {
    header,
    .mobile-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 1000;
        background: #fff;
        box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }
    .hamburger {
        /* only toggle visibility here; positioning comes from the base rule */
        display: flex;
        margin: 0;
    }
    body {
        padding-top: 70px !important;
    }
}

/* Mobile: pin the inner navbar itself so the nav content doesn't shift when header
   background/box-shadow changes or when other page-specific styles apply. */
@media (max-width: 900px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 11000 !important;
        padding: 0.9rem 4% !important; /* reduce vertical padding on small screens */
        background: rgba(255,255,255,0.98) !important;
        box-shadow: 0 2px 16px rgba(0,0,0,0.04) !important;
    }
    /* Keep the header element as a thin container so layout/padding remains stable */
    header {
        height: auto;
    }
}

header {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}

/* Ensure consistent top spacing across all pages on desktop so the header
   doesn't appear to 'move up' on pages without a hero. This adds a desktop-
   only body padding that matches the vertical space the header/nav occupies. */
@media (min-width: 901px) {
    body {
        padding-top: 4rem; /* matches .navbar / hero spacing used elsewhere */
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 150px;
    width: auto;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
    font-size: 0.98rem;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.nav-links a {
    font-size: 0.98rem;
    font-weight: 400;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wood-500);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    /* Base hamburger styling. Hidden on desktop (display:none). */
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 24px rgba(109, 106, 92, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(109, 106, 92, 0.12);
    transition: background 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1200;
}

@media (max-width: 900px) {
    /* On small screens just show the hamburger; base rule handles anchoring/positioning */
    .hamburger {
        display: flex;
        margin: 0;
    }
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff 0%, var(--zen-mint) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><defs><pattern id="paper" x="0" y="0" width="256" height="256" patternUnits="userSpaceOnUse"><rect width="256" height="256" fill="%23faf8f5"/><circle cx="128" cy="128" r="2" fill="%23e6e2d8" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paper)"/></svg>');
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* On the homepage, let the hero be transparent so the page/background shows through
   (this makes the header area and hero color match the About page appearance) */
body.home .hero {
    background: transparent;
    background-attachment: scroll;
}

/* Move homepage hero up by 80px (overrides default .hero-content margin-top) */
body.home .hero .hero-content {
    margin-top: calc(4rem - 230px);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 8rem 8% 4rem 8%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    margin-top: 4rem; /* Move hero-content down from header */
    margin-left: 2rem; /* Add left margin to hero-content */
}

.hero-text {
    color: var(--color-primary);
}

.hero-location {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-previous {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
}

.location-current {
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-image {
    position: relative;
    width: 100%;
    /* Slightly reduce the hero height so tall images aren't cropped at the bottom */
    height: 65vh;
    min-height: 480px;
    max-height: 900px;
    /* allow the frosted/backdrop pseudo-element room to show without unwanted clipping */
    overflow: visible;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--color-cream);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 60px 20px rgba(250, 248, 245, 0.3);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    /* Use contain so the whole photo is visible; object-position keeps it centered */
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.visit-image {
    position: relative;
    width: 100%;
    /* Slightly reduce the hero height so tall images aren't cropped at the bottom */
    height: 65vh;
    min-height: 480px;
    max-height: 900px;
    /* allow the frosted/backdrop pseudo-element room to show without unwanted clipping */
    overflow: visible;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--color-cream);
}

/* ===================================
   PAGE SPECIFIC STYLES
   =================================== */

/* Services Hero, Gallery Hero, Products Hero, Booking Hero, Space Hero, About Hero */
.services-hero,
.gallery-hero,
.products-hero,
.booking-hero,
.space-hero,
.about-hero {
    text-align: left;
    padding: 6rem 8% 3rem 8%;
    background: transparent;
}

.services-hero .hero-content,
.gallery-hero .hero-content,
.products-hero .hero-content,
.booking-hero .hero-content,
.space-hero .hero-content,
.about-hero .hero-content {
    max-width: 800px;
    margin: 0;
    margin-left: 2rem;
}

.services-hero h1,
.gallery-hero h1,
.products-hero h1,
.booking-hero h1,
.space-hero h1,
.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    color: var(--color-primary);
    font-weight: 400;
}

.services-hero h1,
.about-hero h1 {
    white-space: nowrap;
}

.services-hero .lead-text,
.gallery-hero .section-subtitle,
.products-hero .section-subtitle,
.booking-hero .section-subtitle,
.space-hero .section-subtitle {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.services-hero .lead-text,
.about-hero-lead {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .services-hero,
    .gallery-hero,
    .products-hero,
    .booking-hero,
    .space-hero {
        padding: 4rem 5% 2rem 5%;
    }
    
    .services-hero h1,
    .gallery-hero h1,
    .products-hero h1,
    .booking-hero h1,
    .space-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h1 {
        margin-left: 1rem;
    }
    
    .hero-content {
        margin-left: 1rem;
    }
}

/* Home Page Styles */
.home-hero {
    background: linear-gradient(180deg, #fff 0%, var(--zen-mint) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><defs><pattern id="paper" x="0" y="0" width="256" height="256" patternUnits="userSpaceOnUse"><rect width="256" height="256" fill="%23faf8f5"/><circle cx="128" cy="128" r="2" fill="%23e6e2d8" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23paper)"/></svg>');
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    padding: 0 8%;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.home-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

.home-hero .lead-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.home-hero .cta-button {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 24px;
    background: #4a5d4a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.home-hero .cta-button:hover {
    background: #3a4a3a;
    transform: translateY(-2px);
}

.home-hero .hero-image {
    display: none;
}

/* Show hero image on wider screens, hide on mobile */
@media (min-width: 901px) {
    .home-hero .hero-image {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 600px;
        height: auto;
        z-index: 0;
    }

    .home-hero::after {
        display: none;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    background: var(--color-cream);
    padding: 4rem 0;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-primary);
}

.testimonial-content p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--color-secondary);
    font-style: italic;
}

/* Service Section Styles */
.service-section {
    padding: 4rem 0;
}

.service-title {
    text-align: center;
    margin-bottom: 3rem;
}

.service-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-title p {
    font-size: 1.15rem;
    color: #6a6a6a;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Contact Section Styles */
.contact-section {
    background: var(--color-cream);
    padding: 4rem 0;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.contact-title {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-title p {
    font-size: 1.15rem;
    color: #6a6a6a;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.contact-form label {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    color: #444;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid var(--color-primary);
    outline: none;
}

.contact-form button {
    background: #4a5d4a;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
    background: #3a4a3a;
    transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: var(--color-sand);
    padding: 4rem 8% 2rem 8%;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 8px;
    background: linear-gradient(90deg, var(--wood-300), var(--wood-500));
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    opacity: 0.98;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.footer-signature {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.footer-subtitle {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-social a {
    font-size: 0.95rem;
    color: var(--color-secondary);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-secondary);
    padding-top: 2rem;
    border-top: 1px solid rgba(109, 106, 92, 0.2);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #4a5d4a;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 1000;
}

#back-to-top:hover {
    background: #3a4a3a;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

/* Miscellaneous */
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    margin: 2rem 0;
}

blockquote {
    font-size: 1.2rem;
    color: #444;
    margin: 1.5rem 0;
    padding-left: 1.2rem;
    border-left: 4px solid var(--color-primary);
}

pre {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 12px;
    overflow-x: auto;
    code {
        font-size: 1rem;
        color: #333;
    }
}

/* Hide the default map controls for a cleaner look */
.leaflet-control-container {
    display: none;
}

/* Custom marker icon for the map */
.custom-marker {
    background-image: url('../images/marker-icon.png');
    background-size: contain;
    width: 40px;
    height: 50px;
    border: none;
    cursor: pointer;
}

/* Style the popup content on the map */
.leaflet-popup-content {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive iframe for videos */
.responsive-iframe {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 4px;
}

/* Print styles */
/* ===================================
   FROSTED GLASS + FLOATING IMAGE EFFECTS
   =================================== */

.hero-image,
.image-content,
.card-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    display: block;
    overflow: visible;
}

.contact-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    display: block;
    overflow: visible;
}

.hero-image::before,
.image-content::before,
.card-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 18px;
    background: rgba(250, 248, 245, 0.45);
    box-shadow: 0 28px 60px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
    z-index: 1;
}

/* Remove blur effect from contact image to ensure clarity */
.contact-image::before {
    display: none;
}

.hero-image img,
.image-content img,
.card-image img,
.contact-image img {
    position: relative;
    z-index: 3;
    border-radius: 12px;
    display: block;
    transform: translateY(-6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
    will-change: transform;
}

.hero-image img:hover,
.image-content img:hover,
.card-image img:hover,
.contact-image img:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
}

/* Gentle floating animation */
@keyframes aflFloat {
    0% { transform: translateY(-6px); }
    50% { transform: translateY(-12px) translateZ(0); }
    100% { transform: translateY(-6px); }
}

.hero-image,
.image-content,
.card-image,
.contact-image {
    animation: aflFloat 10s ease-in-out infinite;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .image-content,
    .card-image,
    .contact-image {
        animation: none;
    }
    
    .hero-image img,
    .image-content img,
    .card-image img,
    .contact-image img {
        transform: translateY(0);
    }
}

/* Logo exceptions - prevent frosted effect on site logo */
.logo-container::before {
    display: none !important;
}

.logo {
    transform: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 3;
    border-radius: 4px;
    transition: none !important;
}

.logo-container {
    overflow: visible;
}

/* Enhanced card shadows on hover */
.quick-link-card,
.benefit-card,
.service-card,
.product-category,
.space-item {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover,
.benefit-card:hover,
.service-card:hover,
.product-category:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Enhanced button shadows */
.btn-primary,
.btn-secondary {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.btn-primary:hover,
.btn-secondary:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: #4a5d4a;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Contact image responsive fix */
@media (max-width: 900px) {
    .contact-image {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .contact-image {
        min-height: unset;
        height: auto;
        width: 90%;
        max-width: 420px;
        aspect-ratio: 16 / 9;
        max-height: 40vh;
        overflow: hidden;
        border-radius: 10px;
        margin: 0 auto;
        display: block;
    }

    .contact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-height: 40vh;
    }
}

@media print {
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        color: #000;
        background: #fff;
    }

    header, footer, .no-print {
        display: none !important;
    }

    .printable {
        display: block !important;
        page-break-inside: avoid;
    }

    /* Ensure images are printed in high quality */
    img {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        max-width: 100%;
        height: auto;
    }
}
