:root {
    /* Coastal Minimalism Color Palette */
    --bg-base: #C9DEE0;
    --bg-alt: #B7D2D4;
    --bg-stone: #F3F6F5;
    --text-main: #2F3E40;
    --text-muted: #5F777A;
    --text-charcoal: #3A4A4D;
    --accent-navy: #1F6D73;
    --accent-green: #1F6D73;
    --accent-oxblood: #1F6D73;
    --accent-brass: #1F6D73;
    
    /* Additional coastal colors */
    --card-surface: #F3F6F5;
    --border-divider: #9FBFC2;
    --accent-link: #1F6D73;
    
    /* Legacy support (mapped to new colors) */
    --vintage-blue: #1F6D73;
    --vintage-blue-washed: rgba(31, 109, 115, 0.15);
    --vintage-pink: #9FBFC2;
    --vintage-pink-washed: rgba(159, 191, 194, 0.25);
    --vintage-pink-muted: rgba(159, 191, 194, 0.15);

    /* Spacing - Increased by 20% for breathing room */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3.6rem;   /* Mobile section padding 48-64px (increased from 3rem) */
    --spacing-xl: 6rem;     /* Desktop section padding (increased from 5rem) */

    /* Typography - Masculine Fresh Design System */
    --font-heading: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Mobile font sizes (390px) - More curves, more character */
    --h1-size-mobile: clamp(30px, 8vw, 34px);
    --h2-size-mobile: clamp(22px, 6vw, 24px);
    --h3-size-mobile: clamp(18px, 5vw, 20px);
    --body-size-mobile: 16px;
    --small-size-mobile: 14px;
    
    /* Desktop font sizes */
    --h1-size: clamp(2.2rem, 5vw, 3rem);
    --h2-size: clamp(1.75rem, 4vw, 2.25rem);
    --h3-size: 1.25rem;
    --body-size: 1rem;
}

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

body {
    background: linear-gradient(135deg, var(--bg-base) 0%, var(--bg-alt) 100%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Washed out filter overlay */
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(183, 210, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 222, 224, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

main {
    position: relative;
    z-index: 1;
    padding: var(--spacing-sm) 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
    filter: brightness(0.98);
}

h1 { 
    font-size: var(--h1-size-mobile);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h2 { 
    font-size: var(--h2-size-mobile);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.005em;
}

h3 { 
    font-size: var(--h3-size-mobile);
    line-height: 1.3;
    font-weight: 600;
}

/* Desktop typography */
@media (min-width: 768px) {
    h1 { font-size: var(--h1-size); }
    h2 { font-size: var(--h2-size); }
    h3 { font-size: var(--h3-size); }
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
    filter: brightness(0.97);
    font-size: var(--body-size-mobile);
    line-height: 1.6;
}

@media (min-width: 768px) {
    p {
        font-size: var(--body-size);
    }
}

a {
    color: var(--accent-link);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

/* Layout Classes */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-md) var(--spacing-md);
    border-radius: 28px;
    background-color: var(--card-surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-divider);
    position: relative;
    overflow: hidden;
}

/* Mobile First - 390px base */
@media (max-width: 600px) {
    .section {
        margin: var(--spacing-md) var(--spacing-sm);
        padding: 3rem 0;
        border-radius: 20px;
    }
    
    .hero {
        border-radius: 20px;
        padding: 3rem 0;
    }
    
    .service-hero {
        border-radius: 20px;
        padding: 3rem 0;
    }
    
    .nav {
        border-radius: 0 0 20px 20px;
    }
    
    /* Ensure minimum tap target size */
    .btn, .nav__link, .faq-question {
        min-height: 44px;
        min-width: 44px;
    }
}
}

.section--alt {
    background-color: rgba(243, 246, 245, 0.6);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.section--dark {
    background-color: var(--accent-navy);
    color: #fff;
    margin: var(--spacing-md) var(--spacing-md);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
    color: rgba(255, 255, 255, 0.95);
}

/* Geometric Shapes Background (vintage style) */
.section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background-image: 
        /* Top left triangle */
        linear-gradient(135deg, var(--vintage-pink-muted) 0%, transparent 50%),
        /* Top right shape */
        linear-gradient(225deg, var(--vintage-pink-muted) 0%, transparent 50%),
        /* Bottom left triangle */
        linear-gradient(45deg, var(--vintage-pink-muted) 0%, transparent 50%),
        /* Bottom right shape */
        linear-gradient(315deg, var(--vintage-pink-muted) 0%, transparent 50%);
    background-size: 
        200px 200px,
        180px 180px,
        220px 220px,
        190px 190px;
    background-position:
        top left,
        top right,
        bottom left,
        bottom right;
    background-repeat: no-repeat;
    filter: blur(20px);
    mix-blend-mode: multiply;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: var(--h2-size-mobile);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--h2-size);
        margin-bottom: var(--spacing-sm);
    }
}

.section-title[style*="text-align: left"] {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    min-height: 44px;
    transition: all 0.2s ease;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .btn {
        font-size: 1rem;
        font-weight: 600;
    }
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background-color: var(--accent-link);
    color: var(--card-surface);
    box-shadow: 0 2px 4px rgba(31, 109, 115, 0.2);
}

.btn--primary:hover {
    background-color: #1a5d63;
}

.btn--ghost {
    background-color: transparent;
    border-color: var(--accent-link);
    color: var(--accent-link);
}

.btn--ghost:hover {
    background-color: rgba(31, 109, 115, 0.1);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: var(--accent-navy);
    color: #fff;
    min-height: 36px;
}

/* Hero Logo */
.hero__logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto var(--spacing-xs) auto;
    display: block;
    filter: brightness(1.05) contrast(0.95) saturate(0.8);
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .hero__logo {
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    .hero__logo {
        max-width: 500px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    overflow: hidden;
    margin: var(--spacing-md) var(--spacing-md);
    background-color: var(--card-surface);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-divider);
}

/* Geometric shapes overlay for hero (vintage style) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
    background: 
        linear-gradient(135deg, var(--vintage-pink-muted) 0%, transparent 40%),
        linear-gradient(225deg, var(--vintage-pink-muted) 0%, transparent 40%),
        linear-gradient(45deg, var(--vintage-pink-muted) 0%, transparent 40%),
        linear-gradient(315deg, var(--vintage-pink-muted) 0%, transparent 40%);
    background-size: 
        300px 300px,
        280px 280px,
        320px 320px,
        290px 290px;
    background-position:
        top left,
        top right,
        bottom left,
        bottom right;
    background-repeat: no-repeat;
    filter: blur(25px);
    mix-blend-mode: multiply;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/media/backgound.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.1) contrast(0.85) saturate(0.7) sepia(0.1);
    opacity: 0.4;
    z-index: 0;
}

.hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(201, 222, 224, 0.5) 0%,
        rgba(183, 210, 212, 0.3) 50%,
        rgba(201, 222, 224, 0.6) 100%
    );
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 700px;
    width: 100%;
}

.hero h1 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
}

.hero__subtitle {
    font-size: 16px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.hero__trust-hook {
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__trust-hook {
        font-size: 0.95rem;
    }
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    width: 100%;
}

.hero__buttons .btn {
    width: 100%;
}

@media (min-width: 600px) {
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }
    
    .hero__buttons .btn {
        width: auto;
    }
}

/* Services Grid */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid--1 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

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

/* Service Card */
.service-card {
    background-color: var(--card-surface);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-divider);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric accent on cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--vintage-pink-muted);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.4;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-brass);
}

.service-card__icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.1) contrast(0.9) saturate(0.8) sepia(0.15);
    opacity: 0.85;
}

.service-card__icon svg {
    filter: brightness(1.1) contrast(0.9) saturate(0.8) sepia(0.15);
    opacity: 0.85;
}

.service-card__title {
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: var(--h3-size-mobile);
    line-height: 1.3;
    font-weight: 600;
}

@media (min-width: 768px) {
    .service-card__title {
        font-size: var(--h3-size);
    }
}

.service-card__body {
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
}

.service-card__proof {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
    font-style: italic;
}

@media (min-width: 768px) {
    .service-card__body {
        font-size: 0.95rem;
    }
    
    .service-card__proof {
        font-size: 0.85rem;
    }
}

.service-card__actions {
    margin-top: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Service Card as Link */
.service-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 109, 115, 0.15);
    border-color: var(--accent-link);
}

/* Brand & Pillars */
.brand__pillars ul {
    list-style: none;
}

.brand__pillars li {
    margin-bottom: var(--spacing-xs);
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.brand__pillars li::before {
    content: "•";
    color: var(--accent-brass);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How It Works */
.steps-strip {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.step h3 {
    font-size: var(--h3-size-mobile);
    line-height: 1.3;
    margin-bottom: var(--spacing-xs);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .steps-strip {
        flex-direction: row;
        gap: var(--spacing-lg);
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: var(--spacing-xs);
    }
    
    .step h3 {
        font-size: var(--h3-size);
    }
    
    .step p {
        font-size: var(--body-size);
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: var(--bg-base);
    padding: var(--spacing-md);
    border-radius: 20px;
}

.step-number {
    background-color: var(--accent-navy);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-bottom: var(--spacing-xs);
}

@media (min-width: 600px) {
    .steps-strip {
        flex-direction: row;
        justify-content: space-between;
    }
    .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .step-number {
        margin-bottom: var(--spacing-xs);
    }
}

/* About Section */
.about {
    background-color: var(--bg-base);
}

.about__img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    filter: brightness(1.05) contrast(0.92) saturate(0.85) sepia(0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(183, 210, 212, 0.3) 0%, rgba(201, 222, 224, 0.3) 100%);
    backdrop-filter: blur(10px);
    text-align: center;
    padding-bottom: var(--spacing-md);
    border: 1px solid var(--border-divider);
    margin-bottom: var(--spacing-md);
}

.footer__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

@media (min-width: 600px) {
    .footer__buttons {
        flex-direction: row;
    }
    .footer {
        padding-bottom: var(--spacing-md);
    }
}

/* Modals / Bottom Sheet Style */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.modal-container[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: var(--spacing-md);
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 1001;
    display: none;
    flex-direction: column;
}

.modal-content.active {
    transform: translateY(0);
    display: flex;
}

@media (min-width: 600px) {
    .modal-container {
        align-items: center;
    }
    .modal-content {
        border-radius: 16px;
        max-height: 85vh;
        transform: scale(0.95);
        opacity: 0;
    }
    .modal-content.active {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    z-index: 2;
}

.modal-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
}

.modal-footer {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.detail-section {
    margin-bottom: var(--spacing-md);
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-divider);
    padding-bottom: var(--spacing-sm);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-main);
    cursor: pointer;
    padding: var(--spacing-sm) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding: var(--spacing-sm) 0 var(--spacing-md) 0;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

.detail-section h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
}

/* Lists (Do/Don't) */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.item-do::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231F3A30'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.item-dont::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235A2B2B'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

/* Timeline */
.timeline {
    border-left: 2px solid var(--bg-alt);
    padding-left: var(--spacing-sm);
}

.timeline-item {
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--spacing-sm) - 5px);
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-brass);
}

.timeline-item .time {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-navy);
    margin-bottom: 0.25rem;
}

.btn--text {
    background: none;
    border: none;
    color: var(--accent-navy);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.btn--full {
    width: 100%;
}

/* Media Styles */
.media-container {
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.service-video {
    width: 100%;
    border-radius: 28px;
    background-color: #000;
    max-height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: contain;
    display: block;
    max-width: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Reviews Scroll */
.reviews-scroll-wrapper {
    position: relative;
    margin: 0 calc(-1 * var(--spacing-md));
}

.reviews-scroll {
    display: flex;
    overflow-x: auto;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    padding-bottom: var(--spacing-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.reviews-scroll:active {
    cursor: grabbing;
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
}

/* Fade gradients to indicate scrollability */
.reviews-scroll-wrapper::before,
.reviews-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reviews-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--card-surface), transparent);
}

.reviews-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--card-surface), transparent);
}

.reviews-scroll-wrapper.at-start::before {
    opacity: 0;
}

.reviews-scroll-wrapper.at-end::after {
    opacity: 0;
}

.review-img {
    max-height: 400px;
    height: auto;
    width: auto;
    min-width: 280px;
    max-width: 100%;
    border-radius: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    filter: brightness(1.05) contrast(0.95) saturate(0.8) sepia(0.1);
    object-fit: contain;
    background-color: var(--card-surface);
    padding: var(--spacing-xs);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.review-img:hover {
    transform: scale(1.02);
}

/* Skin Type Selector */
.skin-type-selector {
    margin-bottom: var(--spacing-md);
    background-color: var(--bg-base);
    padding: var(--spacing-sm);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
}

.skin-type-selector label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.skin-type-selector select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
}

/* Product Recommendations */
.products-section {
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: var(--spacing-md);
}

.products-section h4 {
    margin-bottom: var(--spacing-sm);
}

.product-card {
    background-color: var(--bg-base);
    padding: var(--spacing-md);
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

.product-icon {
    display: none;
}

.product-info h5 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.product-info h5 a {
    color: var(--accent-link);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.product-info h5 a:hover {
    color: #1a5d63;
    text-decoration-color: #1a5d63;
}

.product-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Dynamic Content Display */
.dynamic-content {
    display: none;
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: rgba(31, 58, 48, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--accent-green);
    border-left: 3px solid var(--accent-green);
}

.dynamic-content.visible {
    display: block;
}

/* Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header.scrolled {
    transform: translateY(-100%);
}

.nav {
    background-color: rgba(243, 246, 245, 0.85);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-divider);
    margin-bottom: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    width: 100%;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 0.25rem;
}

.nav__logo img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.nav__links {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.nav__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
}

.nav__link:hover {
    color: var(--accent-link);
}

.nav__back {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .nav {
        padding: 10px 12px;
        border-radius: 0;
    }
    
    .nav .container {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .nav__logo {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .nav__logo img {
        max-height: 28px;
    }
    
    .nav__links {
        gap: 0.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 0.5rem;
    }
    
    .nav__links::-webkit-scrollbar {
        display: none;
    }
    
    .nav__link {
        font-size: 0.75rem;
        padding: 0.25rem 0.4rem;
        min-height: 36px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
}

/* Service Hero */
.service-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--card-surface);
    background-image: linear-gradient(to bottom, rgba(201, 222, 224, 0.5), rgba(243, 246, 245, 0.9));
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: var(--spacing-md);
    border: 1px solid var(--border-divider);
}

.service-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

/* Location Cards */
.location-card {
    background-color: var(--card-surface);
    padding: var(--spacing-md);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-divider);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.location-details {
    margin-top: var(--spacing-sm);
    flex-grow: 1;
}

.location-details ul {
    margin-top: var(--spacing-xs);
}

/* Service Link Cards */
.service-link-card {
    background-color: var(--card-surface);
    padding: var(--spacing-md);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-divider);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(31, 109, 115, 0.15);
    border-color: var(--accent-link);
}

.service-link-card__icon {
    margin-bottom: var(--spacing-sm);
}

.service-link-card h3 {
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.service-link-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Geometric Shape Decorations (vintage style) */
.geometric-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(15px);
    z-index: 0;
}

.geometric-shape--triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.geometric-shape--triangle-top-left {
    border-width: 0 150px 150px 0;
    border-color: transparent var(--vintage-pink-muted) transparent transparent;
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
}

.geometric-shape--triangle-top-right {
    border-width: 150px 0 0 150px;
    border-color: var(--vintage-pink-muted) transparent transparent transparent;
    top: -50px;
    right: -50px;
    transform: rotate(-45deg);
}

.geometric-shape--triangle-bottom-left {
    border-width: 0 0 150px 150px;
    border-color: transparent transparent var(--vintage-pink-muted) transparent;
    bottom: -50px;
    left: -50px;
    transform: rotate(-45deg);
}

.geometric-shape--triangle-bottom-right {
    border-width: 150px 150px 0 0;
    border-color: var(--vintage-pink-muted) transparent transparent transparent;
    bottom: -50px;
    right: -50px;
    transform: rotate(45deg);
}

/* Enhanced card styling with vintage aesthetic */
.location-card,
.service-link-card {
    position: relative;
    overflow: hidden;
}

.location-card::before,
.service-link-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--vintage-pink-muted) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

.location-card > *,
.service-link-card > * {
    position: relative;
    z-index: 1;
}

/* Section with coastal accent */
.section--dark-accent {
    background: linear-gradient(
        to bottom,
        rgba(183, 210, 212, 0.3) 0%,
        rgba(201, 222, 224, 0.3) 100%
    );
    position: relative;
    border: 1px solid var(--border-divider);
}

.section--dark-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(183, 210, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(201, 222, 224, 0.15) 0%, transparent 50%);
    background-size: 400px 400px, 350px 350px;
    background-position: top left, top right;
    background-repeat: no-repeat;
    opacity: 0.5;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.section--dark-accent > * {
    position: relative;
    z-index: 1;
}

/* Spray Tan Page - More Concise Spacing */
.spray-tan-page .section {
    padding: var(--spacing-sm) 0;
    margin: var(--spacing-sm) var(--spacing-md);
}

.spray-tan-page .section-title {
    margin-bottom: var(--spacing-xs);
}

.spray-tan-page .detail-section {
    margin-bottom: var(--spacing-sm);
}

.spray-tan-page .timeline-item {
    margin-bottom: var(--spacing-xs);
}

.spray-tan-page .product-card {
    margin-bottom: var(--spacing-sm);
}

.spray-tan-page .grid {
    gap: var(--spacing-sm);
}

.spray-tan-page .steps-strip {
    gap: var(--spacing-sm);
}

.spray-tan-page .check-list li {
    margin-bottom: 0.5rem;
}

/* Spray Tan Page - Image Styling */
.spray-tan-page .media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background-color: var(--card-surface);
    border-radius: 20px;
    padding: var(--spacing-xs);
}

.spray-tan-page .service-image,
.spray-tan-page .expandable-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spray-tan-page .expandable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.spray-tan-page .media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
}

.image-modal[style*="flex"],
.image-modal[style*="block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.2s ease;
}

.image-modal-close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .image-modal-close {
        top: 15px;
        right: 25px;
        font-size: 35px;
    }
    
    .image-modal {
        padding: 15px;
    }
    
    .image-modal-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media (max-width: 768px) {
    .spray-tan-page .section {
        margin: var(--spacing-xs) var(--spacing-sm);
        padding: var(--spacing-sm) 0;
    }
    
    .spray-tan-page .service-image {
        max-height: 300px;
    }
}

/* Sticky Book Button on Mobile */
.sticky-book-btn {
    display: none;
}

@media (max-width: 768px) {
    .sticky-book-btn {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: var(--card-surface);
        border-top: 1px solid var(--border-divider);
        padding: 12px 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        min-height: 64px;
        align-items: center;
    }
    
    .sticky-book-btn .btn {
        width: 100%;
        margin: 0;
        min-height: 44px;
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Add padding to body to prevent content from being hidden behind sticky button */
    body:has(.sticky-book-btn) {
        padding-bottom: 80px;
    }
}

.btn--full {
    width: 100%;
}
