/* The Wedding Collective - Elegant Styles */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #61002f;
    --secondary-color: #61002f;
    --accent-color: #f7f1ea;
    --text-dark: #1B1717;
    --text-light: #666666;
    --background-light: #FCF9F6;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #5cb85c;
    --error-color: #d9534f;
    --warning-color: #f0ad4e;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;
    
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FCF9F6;;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.headerhomepage {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: var(--text-dark) !important;
    font-size: 3.5rem !important;
    margin-bottom: 1rem !important;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.secondheaderhomepage {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: var(--text-dark) !important;
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* ===== Header & Navigation ===== */
.main-header {
    background-color: #f3f2ef;
    border-top: 1px solid #cfcac4;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.main-header .container {
    max-width: 1440px;
    padding: 0 52px;
}

.navbar {
    background-color: transparent;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 92px;
    padding: 0;
    transition: padding 0.25s ease;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    max-width: 230px;
}

.logo-image {
    height: 64px;
    width: 100%;
    max-width: 230px;
    transition: height 0.25s ease, max-width 0.25s ease;
}

.logo-image-transparent {
    display: none;
    object-fit: cover;
    object-position: center;
}

.nav-menu {
    display: flex;
    gap: 3.1rem;
    align-items: center;
    justify-self: center;
}

.nav-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d2d2d;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: font-size 0.25s ease, padding 0.25s ease;
}

.header-cta-group {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
}

.header-cta-group .s3-btn {
    align-self: auto;
}

.header-cta-group .s3-btn,
.header-cta-group .header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
    line-height: 1;
}

.header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.68rem 1.58rem;
    background: #000000;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.header-book-btn:hover {
    color: #ffffff;
    opacity: 0.9;
}

.main-header.header-minimized {
    box-shadow: none;
}

.main-header.header-minimized .navbar {
    min-height: 92px;
}

.main-header.header-minimized .logo a {
    max-width: 230px;
}

.main-header.header-minimized .logo-image {
    height: 64px;
    max-width: 230px;
}

.main-header.header-minimized .nav-menu li a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

/* Homepage: overlay header on hero and reveal solid header on scroll */
.main-header.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f3f2ef;
    box-shadow: none;
}

.main-header.header-overlay .navbar {
    background-color: transparent;
}

.main-header.header-overlay .logo-image-default {
    display: block;
}

.main-header.header-overlay .logo-image-transparent {
    display: none;
}

.main-header.header-overlay .nav-menu li a {
    color: #2d2d2d;
    text-shadow: none;
}

.main-header.header-overlay.header-scrolled {
    background-color: #f3f2ef;
    box-shadow: none;
}

.main-header.header-overlay.header-scrolled .navbar {
    background-color: transparent;
}

.main-header.header-overlay.header-scrolled .logo-image-default {
    display: block;
}

.main-header.header-overlay.header-scrolled .logo-image-transparent {
    display: none;
}

.main-header.header-overlay.header-scrolled .nav-menu li a {
    color: #2d2d2d;
    text-shadow: none;
}

.nav-menu li a::after {
    content: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/homescreen.webp') center center / cover no-repeat;
    background-color: var(--text-dark);
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(108, 11, 38, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero.hero-reference {
    position: relative;
    background: none;
    padding: 0;
    height: auto;
    min-height: 100vh;
    display: block;
    overflow: hidden;
    --hero-reference-frame-inset: 2px;
}

.hero.hero-reference::before {
    display: none;
}

.hero-reference-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-reference-video-wrap {
    position: absolute;
    top: var(--hero-reference-frame-inset);
    bottom: var(--hero-reference-frame-inset);
    left: 30.8%;
    width: 47%;
    overflow: hidden;
    z-index: 1;
}

.hero-reference-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-reference-right-image-wrap {
    position: absolute;
    top: var(--hero-reference-frame-inset, 0);
    right: 0;
    bottom: var(--hero-reference-frame-inset, 0);
    width: 22.2%;
    overflow: hidden;
    z-index: 1;
}

.hero-reference-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-reference-panel {
    position: absolute;
    top: var(--hero-reference-frame-inset);
    left: 0;
    bottom: var(--hero-reference-frame-inset);
    width: 30.8%;
    background-color: #5d0030;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-top: clamp(76px, 8vw, 126px);
    padding-right: clamp(20px, 2.7vw, 40px);
    padding-bottom: clamp(28px, 4vw, 58px);
    padding-left: clamp(32px, 4vw, 68px);
    overflow: visible;
}

.hero-reference-panel h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(3.4rem, 7.8vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin-bottom: clamp(26px, 3.2vw, 44px);
    max-width: none;
    width: 166%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-reference-panel p {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(3.4rem, 7.8vw, 7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin-bottom: clamp(26px, 3.2vw, 44px);
    max-width: none;
    width: 166%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-reference-highlight {
    color: #efc9e6;
    transition: opacity 320ms ease;
}

.hero-reference-highlight.is-fading {
    opacity: 0.22;
}

.hero.hero-reference .hero-reference-panel h1 {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.86rem, 1.02vw, 1.08rem);
    font-weight: 500;
    line-height: 1.48;
    margin-bottom: clamp(22px, 2.6vw, 38px);
    color: #ffffff;
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-reference-btn {
    display: inline-block;
    background: #f3f1ee;
    color: #111111;
    font-size: clamp(0.83rem, 0.86vw, 0.98rem);
    font-weight: 600;
    padding: 0.86em 1.7em;
    border-radius: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-reference-btn:hover {
    opacity: 0.88;
}

.hero-reference-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .hero-reference-panel {
        width: 38.8%;
        padding-top: clamp(56px, 8vw, 92px);
        padding-left: clamp(20px, 3.4vw, 34px);
        padding-right: clamp(14px, 2.2vw, 24px);
    }

    .hero-reference-video-wrap {
        left: 38.8%;
        width: 40%;
    }

    .hero-reference-right-image-wrap {
        width: 21.2%;
    }

    .hero-reference-panel h2 {
        width: 150%;
        font-size: clamp(2.1rem, 7.2vw, 4.4rem);
    }

    .hero-reference-panel p {
        width: 150%;
        font-size: clamp(2.1rem, 7.2vw, 4.4rem);
    }

    .hero.hero-reference .hero-reference-panel h1 {
        max-width: 88%;
    }
}

@media (max-width: 640px) {
    .hero-reference-panel {
        position: static;
        width: 100%;
        padding-top: 30px;
        padding-right: 22px;
        padding-left: 22px;
    }

    .hero-reference-panel h2 {
        width: 100%;
    }

    .hero-reference-panel p {
        width: 100%;
    }

    .hero-reference-video-wrap {
        left: 0;
        width: 100%;
    }

    .hero-reference-right-image-wrap {
        display: none;
    }
}

.hero h1 {
    font-size: 7.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:disabled,
.btn-primary[disabled] {
    background-color: #c9a0a9;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.7;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== Sections ===== */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--secondary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--accent-color) 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
}

/* ===== Intro Section ===== */
.intro-section {
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--secondary-color);
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Homepage section 2: match section2.png two-column editorial layout */
.hero.hero-reference + .intro-section {
    background: #f6f5f3;
    padding-top: clamp(72px, 8vw, 120px);
    padding-bottom: clamp(72px, 8vw, 120px);
}

.hero.hero-reference + .intro-section .intro-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.35fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
}

.hero.hero-reference + .intro-section .intro-content h2 {
    margin: 0;
    color: #4b0026;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.45rem, 4.3vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    max-width: 13ch;
}

.hero.hero-reference + .intro-section .intro-content p {
    margin: 0;
    color: #2e2c2c;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1.04rem, 1.35vw, 2rem);
    line-height: 1.62;
    max-width: 58ch;
}

.twc-experience-points {
    margin: clamp(24px, 2.6vw, 36px) 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 820px;
}

.twc-experience-points li {
    position: relative;
    
    border: 1px solid #e0d4c6;
    border-radius: 14px;
    padding: 15px 16px 15px 44px;
    color: #321e2a;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.92rem, 1.08vw, 1.02rem);
    font-weight: 600;
    line-height: 1.35;
    
}

.twc-experience-points li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    transform: translateY(-50%);
    
    
}

@media (max-width: 920px) {
    .hero.hero-reference + .intro-section .intro-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero.hero-reference + .intro-section .intro-content h2 {
        max-width: 100%;
    }

    .twc-experience-points {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* ===== Section 3: Brand editorial grid ===== */
.s3-brands-section {
    background: #f6f5f3;
    padding: 0;
}

.s3-header-cell {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 56px);
    background: #f6f5f3;
}

.s3-header-cell h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    font-weight: 800;
    color: #4b0026;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

.s3-header-cell p {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.08rem);
    color: #3a3535;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 0 1.8rem;
}

.s3-btn {
    flex-shrink: 0;
    display: inline-block;
    border: 1.5px solid #4b0026;
    color: #4b0026;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.82em 1.8em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    align-self: flex-start;
}

.s3-btn:hover {
    background: #4b0026;
    color: #fff;
}

.s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.s3-brand-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #e8e4de;
}

.s3-brand-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.s3-brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.s3-brand-card:hover .s3-brand-img-wrap img {
    transform: scale(1.04);
}

.s3-brand-img-placeholder {
    background: #d4cdc5;
}

.s3-brand-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.s3-brand-arrow {
    font-size: 1.1rem;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.s3-brand-card:hover .s3-brand-arrow {
    transform: translateX(4px);
}

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

    .s3-header-cell {
        grid-column: 1 / -1;
    }
}

.designer-section {
    background: #f3f2f2;
    padding: 112px 0 128px;
}

.designer-section .container {
    max-width: 1360px;
    padding: 0 64px;
}

.designer-content {
    max-width: 1240px;
    margin: 0 auto;
    text-align: left;
}

.designer-content h2 {
    color: #4e002b;
}

.brands-home-grid {
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
}

.brand-home-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    background: var(--white);
    border: 1.5px solid #d8c4b2;
    border-radius: 999px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.brand-home-card:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.articles-content {
    max-width: 100%;
}

.articles-header-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 66px;
}

.articles-header-home h2 {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.35rem, 4.2vw, 3.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.articles-guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1.55rem;
    border: 2px solid #2f2f2f;
    color: #1f1f1f;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.articles-guide-btn:hover {
    background: #1f1f1f;
    color: #ffffff;
}

.articles-grid-home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px;
}

.article-card-home {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 0;
    box-shadow: none;
    transition: opacity 0.2s ease;
}

.article-card-home:hover {
    opacity: 0.86;
}

.article-meta-home {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0.35rem;
}

.article-tag-home {
    display: inline;
    width: auto;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 500;
    color: #565656;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.article-arrow-home {
    font-size: 1.65rem;
    line-height: 1;
    color: #4e002b;
    font-weight: 500;
}

.article-card-home h3 {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1.45rem, 1.8vw, 1.95rem);
    line-height: 1.14;
    color: #36001e;
    font-weight: 700;
}

.article-card-home p {
    margin: 0.34rem 0 0;
    color: #474040;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.99rem;
    line-height: 1.48;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .designer-section {
        padding: 92px 0 100px;
    }

    .designer-section .container {
        padding: 0 34px;
    }

    .articles-header-home {
        margin-bottom: 40px;
    }

    .articles-grid-home {
        gap: 32px;
    }

    .article-tag-home {
        font-size: 0.88rem;
    }

    .article-card-home h3 {
        font-size: 1.55rem;
    }

    .article-card-home p {
        font-size: 0.97rem;
    }
}

@media (max-width: 768px) {
    .designer-section .container {
        padding: 0 20px;
    }

    .articles-header-home {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .articles-guide-btn {
        min-height: 40px;
        font-size: 0.88rem;
        padding: 0.62rem 1.1rem;
    }
}



.experience-section {
    position: relative;
    overflow: hidden;
    background: #d6acd8;
    padding: 130px 0 120px;
}

.experience-section .container {
    max-width: 1280px;
    padding: 0 36px;
}

.locations-section .container {
    max-width: 2000px;
    padding: 0 36px;
}

.experience-marquee {
    position: absolute;
    top: 252px;
    left: 0;
    right: 0;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.18em 0 0.24em;
    pointer-events: none;
    z-index: 5;
}

.experience-marquee-track {
    display: flex;
    width: max-content;
    animation: experienceMarquee 38s linear infinite;
}

.experience-marquee-group {
    display: flex;
    flex-shrink: 0;
}

.experience-marquee-group span {
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(3.4rem, 6.4vw, 6.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #ffffff;
    padding-right: 1.8rem;
}

@keyframes experienceMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.experience-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(300px, 485px) 1fr;
    gap: 78px;
    align-items: end;
}

.experience-image-wrap {
    width: 100%;
    aspect-ratio: 485 / 520;
    overflow: hidden;
}

.experience-image-wrap img,
.experience-image-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content {
    max-width: 740px;
    padding-top: 312px;
    text-align: left;
}

.experience-content p {
    color: #24192b;
    font-size: 1.12rem;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 1.8rem;
}

.experience-btn {
    display: inline-block;
    background: #111111;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.92rem 1.6rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.experience-btn:hover {
    opacity: 0.86;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .experience-section {
        padding: 112px 0 95px;
    }

    .experience-marquee {
        top: 190px;
    }

    .experience-layout {
        gap: 44px;
        grid-template-columns: minmax(260px, 430px) 1fr;
    }

    .experience-content {
        padding-top: 246px;
    }

    .experience-content p {
        font-size: 1.06rem;
    }
}

@media (max-width: 900px) {
    .experience-section {
        padding: 96px 0 80px;
    }

    .experience-marquee {
        top: 110px;
    }

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        align-items: start;
    }

    .experience-image-wrap {
        max-width: 560px;
    }

    .experience-content {
        padding-top: 40px;
        max-width: 100%;
    }

    .experience-content p {
        font-size: 1.1rem;
        line-height: 1.65;
    }
}

/* ===== Services Section ===== */
.services-section {
    background-color: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* ===== Locations Section ===== */
.locations-section {
    background: #efeeec;
    padding: 122px 0 136px;
}

.locations-layout {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(560px, 1.45fr);
    gap: 56px;
    align-items: center;
}

.locations-copy {
    max-width: 700px;
}

.locations-copy h2 {
    font-family: 'Work Sans', sans-serif;
    color: #5c0030;
    font-size: clamp(3.35rem, 5.8vw, 4.95rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2.35rem;
}

.locations-description {
    margin: 0 0 2.4rem;
    font-family: 'Work Sans', sans-serif;
    color: #303036;
    font-size: clamp(0.94rem, 0.92vw, 1.08rem);
    line-height: 1.66;
    font-weight: 400;
    max-width: 42ch;
}

.location-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-end;
    column-gap: clamp(56px, 1vw, 96px);
    padding: 1.35rem 0 1.35rem;
    border-bottom: 1px solid #cfcfce;
}

.location-item:first-of-type {
    padding-top: 0.6rem;
}

.location-item-meta h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.15rem, 3.4vw, 2.95rem);
    line-height: 0.99;
    font-weight: 700;
    color: #34313a;
    margin-bottom: 0.45rem;
}

.location-item-meta p {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1rem, 1.04vw, 1.22rem);
    line-height: 1.1;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5a5a5a;
}

.locations-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #d7addb;
    color: #4c1838;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    line-height: 1;
    min-width: 232px;
    padding: 0.86rem 1rem;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.locations-btn span {
    font-size: 1.6rem;
    line-height: 0.7;
    transform: translateY(-1px);
}

.locations-btn:hover {
    color: #4c1838;
    filter: brightness(0.96);
}

.locations-visual {
    width: 100%;
    min-height: 900px;
    background-image: url('../images/WEDCOL-23.webp');
    background-size: cover;
    background-position: 52% center;
}

@media (max-width: 1200px) {
    .locations-section {
        padding: 92px 0 106px;
    }

    .locations-layout {
        gap: 34px;
        grid-template-columns: 1fr 1.15fr;
    }

    .locations-btn {
        min-width: 240px;
        font-size: 0.88rem;
        padding: 0.95rem 1rem;
    }

    .locations-visual {
        min-height: 700px;
    }
}

@media (max-width: 900px) {
    .locations-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .locations-copy {
        max-width: 100%;
    }

    .locations-copy h2 {
        margin-bottom: 1.2rem;
    }

    .location-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 1rem 0 1.15rem;
    }

    .locations-description {
        max-width: 100%;
    }

    .locations-btn {
        min-width: 0;
        width: 100%;
    }

    .locations-visual {
        min-height: 480px;
    }
}

/* ===== Testimonials Section ===== */
.collective-voices-section {
    background: #57002f;
    padding: 120px 0 0px;
    --voices-side-pad: 64px;
    --voices-arrow-half-width: 28px;
}

.collective-voices-section .container {
    max-width: 1320px;
    padding: 0 64px;
}

.collective-voices-section h2 {
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    color: #ffffff;
    font-size: clamp(2.9rem, 6vw, 5.5rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4.2rem;
}

.collective-voices-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
}

.collective-voices-carousel {
    position: relative;
}

.voices-arrow {
    position: absolute;
    top: 36px;
    transform: none;
    width: 56px;
    height: 68px;
    border: 0;
    border-radius: 0;
    background: #e4bedf;
    color: #4f0030;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    z-index: 3;
}

.voices-arrow:hover:not(:disabled),
.voices-arrow:focus-visible:not(:disabled) {
    background: #edd1e8;
}

.voices-arrow-left {
    left: calc(-1 * (var(--voices-side-pad) + var(--voices-arrow-half-width)));
}

.voices-arrow-right {
    right: calc(-1 * (var(--voices-side-pad) + var(--voices-arrow-half-width)));
}

.voice-card {
    display: grid;
    grid-template-columns: minmax(210px, 300px) 1fr;
    gap: 22px;
    align-items: start;
}

.voice-image-wrap {
    width: 100%;
    aspect-ratio: 300 / 394;
    overflow: hidden;
}

.voice-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.voice-copy {
    color: #ffffff;
}

.voice-quote-mark {
    margin: 0 0 0.7rem;
    color: #e4bedf;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    line-height: 0.45;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.voice-text {
    margin: 0 0 1.9rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.2vw, 2.8rem);
    line-height: 1.1;
    font-style: italic;
    font-weight: 600;
}

.voice-name {
    margin: 0;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 600;
}

.voice-location {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.72rem;
    line-height: 1.25;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .collective-voices-section {
        padding: 96px 0 90px;
        --voices-side-pad: 36px;
    }

    .collective-voices-section .container {
        padding: 0 36px;
    }

    .collective-voices-grid {
        gap: 34px;
    }

    .voices-arrow {
        top: 28px;
    }

    .voice-card {
        grid-template-columns: minmax(190px, 250px) 1fr;
        gap: 16px;
    }

    .voice-text {
        font-size: 1.9rem;
    }
}

@media (max-width: 900px) {
    .collective-voices-section .container {
        padding: 0 24px;
    }

    .collective-voices-section {
        --voices-side-pad: 24px;
    }

    .collective-voices-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .collective-voices-grid::-webkit-scrollbar {
        display: none;
    }

    .voice-card {
        grid-template-columns: minmax(170px, 220px) 1fr;
        min-width: 100%;
        scroll-snap-align: start;
    }

    .voices-arrow {
        top: 20px;
        width: 48px;
        height: 60px;
        font-size: 2rem;
    }

    .voices-arrow-left {
        left: calc(-1 * (var(--voices-side-pad) + 24px));
    }

    .voices-arrow-right {
        right: calc(-1 * (var(--voices-side-pad) + 24px));
    }

    .voice-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .collective-voices-section {
        padding: 74px 0 70px;
    }

    .collective-voices-section h2 {
        margin-bottom: 2.2rem;
    }

    .voice-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .voices-arrow {
        top: 16px;
        width: 42px;
        height: 52px;
        font-size: 1.7rem;
    }

    .voices-arrow-left {
        left: calc(-1 * (var(--voices-side-pad) + 21px));
    }

    .voices-arrow-right {
        right: calc(-1 * (var(--voices-side-pad) + 21px));
    }

    .voice-image-wrap {
        max-width: 320px;
    }

    .voice-quote-mark {
        font-size: 4.3rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--light);
    color: var(--text-dark);
    text-align: center;
}

.cta-section h2 {
    color: var(--secondary-color);
    font-size: 3rem;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-price, .cta-duration {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background-color: rgba(255,255,255,0.15);
    border-radius: 3px;
}

/* ===== Legal / Policy Pages ===== */
.legal-content {
    background-color: var(--white);
}

.legal-container {
    max-width: 880px;
}

.legal-article h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    color: var(--secondary-color);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.legal-article p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-article a {
    color: var(--primary-color);
    word-break: break-word;
}

.legal-article a:hover {
    text-decoration: underline;
}

.legal-address {
    font-style: normal;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.legal-list {
    margin: 1rem 0 1.5rem 1.25rem;
    padding-left: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

/* ===== Blog ===== */
.blog-list-section {
    background-color: var(--white);
}

.blog-empty {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 2rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--background-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-image-placeholder {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--accent-color) 100%);
}

.blog-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.blog-card-date {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0;
}

.blog-card-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.25;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.blog-card-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

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

.blog-back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-back-link:hover {
    text-decoration: underline;
}

.blog-single-image {
    margin: 1.5rem 0 2rem;
    border-radius: 6px;
    overflow: hidden;
}

.blog-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single-content {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.blog-single-content h2,
.blog-single-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single-content p {
    margin-bottom: 1.1rem;
}

.blog-single-content a {
    color: var(--primary-color);
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1rem 0;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 1rem 0 1.25rem 1.5rem;
}

.blog-single-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 0.5rem 1.25rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-style: italic;
    background-color: var(--background-light);
}

/* ===== About Page ===== */
.about-content {
    background-color: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    color: var(--secondary-color);
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-section {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 5px;
}

.about-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.about-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.philosophy-section {
    max-width: 800px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--accent-color) 100%);
    border-radius: 5px;
}

.philosophy-section h2 {
    color: var(--secondary-color);
}

.philosophy-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.team-section {
    margin-top: 4rem;
}

.team-section h2 {
    text-align: center;
    color: var(--secondary-color);
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.studio-card {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.studio-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.studio-address {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* ===== Catalogue Page ===== */
.catalogue-content {
    background-color: var(--white);
}

.catalogue-tree {
    display: grid;
    gap: 2.5rem;
}

.catalogue-brand-block {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    background: #fff;
}

.catalogue-brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.catalogue-brand-header h2 {
    margin: 0;
    color: var(--secondary-color);
}

.catalogue-brand-country {
    margin: 0.35rem 0 0;
    color: var(--text-light);
    font-style: italic;
}

.catalogue-brand-description {
    margin: 0 0 1.2rem;
    color: var(--text-light);
}

.catalogue-empty-note {
    margin: 0;
    color: var(--text-light);
}

.catalogue-collection-block {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    margin-top: 1.2rem;
}

.catalogue-collection-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.catalogue-collection-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0;
    position: relative;
    padding-right: 1.4rem;
}

.catalogue-collection-header::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.catalogue-collection-block.is-open .catalogue-collection-header::after {
    content: '-';
}

.catalogue-collection-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.catalogue-collection-header span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.catalogue-dresses-grid {
    gap: 1.5rem;
    margin-top: 1rem;
}

.catalogue-collection-content {
    display: none;
}

.catalogue-collection-content.is-open {
    display: block;
}

.catalogue-dress-card .dress-details {
    padding: 1.1rem;
}

.catalogue-dress-card .dress-name {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
}

.catalogue-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
}

.catalogue-gallery-modal.is-open {
    display: block;
}

.catalogue-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 14, 14, 0.72);
}

.catalogue-gallery-panel {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: calc(100% - 2rem);
    margin: 2.2rem auto;
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1rem 1.2rem;
}

.catalogue-gallery-panel h3 {
    margin: 0 0 0.8rem;
    color: var(--secondary-color);
    padding-right: 2rem;
}

.catalogue-gallery-close {
    position: absolute;
    top: 0.45rem;
    right: 0.5rem;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
}

.catalogue-gallery-stage {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 0.6rem;
    align-items: center;
}

.catalogue-gallery-stage img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    background: var(--background-light);
    border-radius: 8px;
}

.catalogue-gallery-nav {
    border: 0;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    height: 44px;
    width: 44px;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.catalogue-gallery-counter {
    margin: 0.65rem 0 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .catalogue-brand-block {
        padding: 1rem;
    }

    .catalogue-gallery-stage {
        grid-template-columns: 36px 1fr 36px;
    }

    .catalogue-gallery-nav {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .dress-image-placeholder {
        height: 360px;
    }

    .dress-gallery-item-page img {
        height: 420px;
        min-height: 420px;
    }
}

.catalogue-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.catalogue-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.catalogue-categories {
    margin-bottom: 5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.category-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.category-card h3 {
    padding: 1.5rem;
    color: var(--secondary-color);
}

.category-card p {
    padding: 0 1.5rem 1.5rem;
}

.silhouettes-section {
    background-color: var(--background-light);
    padding: 4rem 0;
    margin: 5rem 0;
}

.silhouettes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.silhouette-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.silhouette-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.designers-section {
    margin: 5rem 0;
}

.designers-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.designers-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.designer-badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
}

.appointment-cta {
    margin-top: 5rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-light) 100%);
    padding: 3rem;
    border-radius: 5px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-box .cta-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.detail-item {
    color: var(--text-light);
}

/* ===== Brands Showcase ===== */
.brands-showcase {
    margin-bottom: 5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.brand-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.brand-header {
    margin-bottom: 1.5rem;
}

.brand-header h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.brand-country {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.brand-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.view-collection {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.brand-card:hover .view-collection {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* ===== Brand Details Page ===== */
.brand-header-detail {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

.brand-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-origin,
.dress-count {
    font-size: 0.95rem;
    color: var(--text-light);
}

.brand-description-full {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

/* ===== Dresses Collection ===== */
.dresses-collection {
    background-color: var(--white);
    padding: 60px 20px;
}

.dresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 3rem;
}

.dress-card {
    background-color: var(--background-light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.dress-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.dress-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.dress-image-placeholder {
    height: clamp(420px, 52vw, 640px);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dress-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--background-light);
}

.dress-image-clickable {
    cursor: pointer;
}

.dress-image-link {
    display: block;
    color: inherit;
}

.dress-image-link:hover,
.dress-image-link:focus {
    color: inherit;
}

.dress-gallery-grid-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.dress-gallery-item-page {
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.dress-gallery-item-page img {
    width: 100%;
    height: clamp(520px, 78vh, 900px);
    min-height: 520px;
    object-fit: contain;
    background: var(--background-light);
    display: block;
}

.catalogue-dress-card .dress-image-placeholder {
    height: clamp(380px, 46vw, 560px);
}

.dress-card:hover .dress-image {
    transform: scale(1.05);
    transition: var(--transition);
}

.dress-silhouette-icon {
    font-size: 5rem;
    opacity: 0.3;
}

.dress-quick-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.dress-silhouette {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.dress-details {
    padding: 2rem;
}

.dress-name {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.dress-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 3px;
}

.dress-spec {
    font-size: 0.9rem;
    color: var(--text-light);
}

.dress-spec::before {
    content: '• ';
    color: var(--primary-color);
    font-weight: bold;
}

.dress-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.dress-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.dress-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.dress-sizes {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
}

.no-dresses {
    text-align: center;
    padding: 5rem 2rem;
}

.no-dresses h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.no-dresses p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== Bride Guide ===== */
.guide-content {
    background-color: var(--white);
}

.guide-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.guide-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.guide-section {
    margin-bottom: 5rem;
}

.guide-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.guide-card {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.guide-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.guide-card ul {
    list-style: none;
    padding-left: 0;
}

.guide-card ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.guide-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 5px;
    border-top: 3px solid var(--primary-color);
}

.tip-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.body-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.body-type-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 5px;
}

.body-type-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.body-type-card p {
    margin-bottom: 0.5rem;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f3f2f2;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.home-faq-section .faq-item {
    border-left: none;
    border: 0;
    border-bottom: 1px solid #d7d2cf;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    box-shadow: none;
    margin-bottom: 0;
}

.home-faq-section {
    background: #f3f2f2;
    padding-top: 104px;
    padding-bottom: 112px;
}

.home-faq-section .container {
    max-width: 1360px;
    padding: 0 64px;
}

.home-faq-section .faq-section {
    background-color: #f3f2f2;
    max-width: 100%;
}

.home-faq-section .section-title {
    background-color: #f3f2f2;
    text-align: left;
    margin-bottom: 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.15rem, 3.9vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: #4e002b;
    background-color: #f3f2f2 !important;
}

.home-faq-section .faq-question {
    background-color: #f3f2f2;
    width: 100%;
    border: 0;
    background: transparent;
    color: #2a2626;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(1rem, 1.22vw, 1.36rem);
    font-weight: 600;
    text-align: left;
    line-height: 1.38;
    letter-spacing: -0.005em;
    padding: 1.5rem 3.1rem 1.5rem 0;
    cursor: pointer;
    position: relative;
}

.home-faq-section .faq-question::after {
    background-color: #f3f2f2;
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    line-height: 1;
    color: #4e002b;
}

.home-faq-section .faq-question[aria-expanded="true"]::after {
    background-color: #f3f2f2;
    content: '-';
}

.home-faq-section .faq-answer {
    background-color: #f3f2f2;
    padding: 0 3.1rem 1.4rem 0;
}

.home-faq-section .faq-answer p {
    background-color: #f3f2f2;
    margin: 0;
    color: #474040;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.98rem;
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .home-faq-section {
        padding-top: 84px;
        padding-bottom: 92px;
    }

    .home-faq-section .container {
        padding: 0 34px;
    }

    .home-faq-section .faq-question {
        background-color: #f3f2f2;
        font-size: 1rem;
        padding-top: 1.3rem;
        padding-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {
    .home-faq-section .container {
        padding: 0 20px;
    }

    .home-faq-section .section-title {
        margin-bottom: 1.8rem;
    }

    .home-faq-section .faq-question {
        padding-right: 2.2rem;
    }

    .home-faq-section .faq-answer {
        padding-right: 2.2rem;
        padding-bottom: 1.1rem;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--background-light) 100%);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== Contact Page ===== */
.contact-content {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    background-color: var(--background-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* ===== Alerts ===== */
.alert {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
    border-left: 4px solid;
}

.alert h3 {
    margin-bottom: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    border-color: var(--error-color);
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: var(--warning-color);
    color: #856404;
}

/* ===== Booking Steps Wizard ===== */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 2.5rem;
    max-width: 700px;
}

.step-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    border: 2px solid var(--border-color);
}

.step-indicator-item.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.step-indicator-item.completed .step-circle {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.step-indicator-item .step-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s;
}

.step-indicator-item.active .step-label,
.step-indicator-item.completed .step-label {
    color: var(--primary-color);
}

.step-connector {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    margin: 0 0.25rem;
    margin-bottom: 1.4rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.step-connector.completed {
    background: var(--secondary-color);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: stepFadeIn 0.3s ease;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.25rem 2rem;
}

/* ===== Booking Page ===== */
.booking-content {
    background-color: var(--white);
}

.booking-info {
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card-small {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    background-color: var(--background-light);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.form-section h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: -1rem 0 1.5rem 0;
    font-style: italic;
}

.booking-selection-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: -0.5rem 0 1.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.booking-selection-summary--single {
    grid-template-columns: minmax(220px, 1fr);
}

.booking-selection-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.booking-selection-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.booking-selection-item strong {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ===== Location Cards ===== */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.location-card {
    background: var(--white);
    border: 3px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.location-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.location-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    box-shadow: 0 6px 16px rgba(212,175,55,0.3);
}

.location-image {
    margin-bottom: 1rem;
    padding: 1rem;
}

.location-image svg,
.location-image img {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.location-info h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.studio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.studio-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.studio-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.studio-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0.05) 100%);
    box-shadow: 0 6px 16px rgba(212,175,55,0.2);
}

.studio-card-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.studio-card strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ===== Time Slots Selection ===== */
.time-slots-container {
    margin-top: 2rem;
}

.time-slots-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 5px;
    color: var(--text-light);
    font-style: italic;
}

.time-slots-error {
    text-align: center;
    padding: 2rem;
    background-color: #f8d7da;
    border: 1px solid var(--error-color);
    border-radius: 5px;
    color: #721c24;
}

.time-slots-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.legend-dot.available {
    background-color: #d4edda;
    border-color: var(--success-color);
}

.legend-dot.taken {
    background-color: #f8d7da;
    border-color: var(--error-color);
}

.legend-dot.selected {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.time-slot {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.time-slot.available {
    background-color: #d4edda;
    border-color: var(--success-color);
}

.time-slot.available:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 184, 92, 0.3);
    border-color: var(--success-color);
}

.time-slot.taken {
    background-color: #f8d7da;
    border-color: var(--error-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.time-slot.selected .time-slot-time,
.time-slot.selected .time-slot-status {
    color: var(--white);
}

.time-slot-time {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.time-slot.taken .time-slot-time {
    color: var(--error-color);
}

.time-slot-status {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.time-slot.available .time-slot-status {
    color: var(--success-color);
}

.time-slot.taken .time-slot-status {
    color: var(--error-color);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-calendar {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.calendar-nav {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

.calendar-nav:hover:not(:disabled) {
    background: var(--accent-color);
    border-color: var(--primary-color);
}

.calendar-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-weekdays {
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.calendar-day {
    height: 42px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.calendar-day:hover:not(.is-disabled):not(.is-empty) {
    border-color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
}

.calendar-day.is-selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: var(--secondary-color);
}

.calendar-day.is-disabled {
    color: #c5c5c5;
    background: #f8f8f8;
    cursor: not-allowed;
}

.calendar-day.is-empty {
    border-color: transparent;
    background: transparent;
    cursor: default;
}

.calendar-selected-date {
    margin-top: 0.85rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.payment-option {
    cursor: pointer;
    display: block;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    background-color: var(--white);
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background-color: var(--accent-color);
}

.payment-card:hover {
    border-color: var(--primary-color);
}

.payment-card strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Payment Summary */
.payment-section {
    padding: 4rem 0;
}

.payment-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 1.25rem;
    color: var(--secondary-color);
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-total {
    font-size: 1.5rem;
}

.booking-total strong {
    color: var(--primary-color);
    font-size: 2rem;
    margin-left: 1rem;
}

/* ===== Booking Confirmation ===== */
.confirmation-content {
    background-color: var(--white);
    padding: 4rem 20px;
}

.confirmation-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 3px 30px rgba(0,0,0,0.08);
}

.success-icon,
.info-icon,
.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: bold;
}

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

.info-icon {
    background-color: #5bc0de;
    color: var(--white);
}

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

.confirmation-card h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-message,
.info-message,
.warning-message {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.booking-details {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.booking-details h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--text-light);
    font-size: 1.05rem;
}

.status-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-paid {
    background-color: var(--success-color);
    color: var(--white);
}

.status-pending {
    background-color: var(--warning-color);
    color: var(--white);
}

.status-failed {
    background-color: var(--error-color);
    color: var(--white);
}

.notes-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.notes-section strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.location-info,
.next-steps,
.contact-help {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.next-steps h3,
.location-info h3,
.contact-help p:first-child {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.next-steps ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Action Options Grid for Payment Cancel */
.action-options {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.option-card {
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.option-card h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.option-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.option-card .btn {
    width: 100%;
    text-align: center;
    display: block;
}

.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
    color: #856404;
}

.info-box p {
    color: #856404;
}

/* ===== Social Posts Page ===== */
.social-posts-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.social-posts-masonry {
    column-count: 3;
    column-gap: 2rem;
    margin: 0 auto;
}

.social-post-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.social-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.social-post-image-wrapper {
    position: relative;
    overflow: hidden;
}

.social-post-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.social-post-item:hover .social-post-image-wrapper img {
    transform: scale(1.05);
}

.social-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
}

.social-post-item:hover .social-post-overlay {
    opacity: 1;
}

.social-overlay-content {
    color: var(--white);
    width: 100%;
}

.social-platform-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.social-overlay-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.social-overlay-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.social-post-date {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.no-posts-message {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.no-posts-message h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.no-posts-message p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Social Follow CTA */
.social-follow-cta {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--accent-color) 100%);
    padding: 5rem 20px;
    text-align: center;
}

.social-follow-cta h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-follow-cta p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.social-link .social-icon {
    font-size: 2.5rem;
}

.social-link span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover span {
    color: white;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover span {
    color: white;
}

.social-link.pinterest:hover {
    background: #e60023;
    color: white;
}

.social-link.pinterest:hover span {
    color: white;
}

/* ===== Footer ===== */
.main-footer {
    background: #57002f;
    color: rgba(255, 255, 255, 0.85);
    padding: 84px 0 60px;
    margin-top: 0;
}

.main-footer .container {
    max-width: 1360px;
    padding: 0 64px;
}

.footer-brand-title {
    margin: 0 0 42px;
    text-align: center;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.35rem, 4.6vw, 4.2rem);
    letter-spacing: -0.02em;
    line-height: 1;
    font-weight: 800;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
    margin-bottom: 54px;
}

.footer-section h4 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-section ul li {
    margin-bottom: 0.95rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.08rem;
    line-height: 1.3;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-section ul li a:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-newsletter-form {
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    max-width: 280px;
}

.footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.footer-newsletter-form button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.95rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-social-links a {
    color: rgba(255, 255, 255, 0.54);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-social-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .main-footer .container {
        padding: 0 34px;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 62px 0 44px;
    }

    .main-footer .container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        margin-bottom: 34px;
    }

    .footer-section ul li a {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .dresses-grid {
        grid-template-columns: 1fr;
    }
    
    .social-posts-masonry {
        column-count: 2;
    }

    .articles-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .main-header .container {
        padding: 0 16px;
    }

    .navbar {
        display: flex;
        min-height: 84px;
        justify-content: space-between;
    }

    .logo a {
        max-width: 180px;
    }

    .logo-image {
        height: 52px;
        max-width: 180px;
    }

    .nav-menu {
        display: none;
    }

    .header-book-btn {
        display: none;
    }

    .header-cta-group {
        margin-left: auto;
        margin-right: 0.75rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 20px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .services-grid,
    .locations-grid,
    .articles-grid-home,
    .testimonials-grid,
    .categories-grid,
    .silhouettes-grid,
    .brands-grid,
    .dresses-grid,
    .experience-points {
        grid-template-columns: 1fr;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slots-legend {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .booking-total {
        text-align: center;
        width: 100%;
    }

    .calendar-day {
        height: 38px;
        font-size: 0.9rem;
    }

    .calendar-weekdays span {
        font-size: 0.75rem;
    }
    
    .social-posts-masonry {
        column-count: 1;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 100px;
        height: 100px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    .time-slot {
        padding: 1.25rem;
    }
    
    .time-slot-time {
        font-size: 1.2rem;
    }
}

@media print {
    .main-header,
    .main-footer,
    .action-buttons,
    .cta-section {
        display: none;
    }
    
    .confirmation-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}

/* ==========================================================================
   About page (Pretoria & Cape Town)
   ========================================================================== */

.about-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    max-height: 600px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.about-banner-overlay h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.about-content {
    padding: 5rem 0;
}

.about-content .container {
    max-width: 1100px;
}

.about-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-service-reverse {
    direction: rtl;
}

.about-service-reverse > * {
    direction: ltr;
}

.about-service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: block;
}

.about-service-body h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-service-body p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    color: var(--text-color, #444);
}

.about-service-body .btn {
    margin-top: 1rem;
}

.about-service:not(:has(.about-service-image)) {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-locations {
    margin: 5rem 0 4rem;
    text-align: center;
}

.about-locations > h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}

.about-locations .studios-grid {
    text-align: left;
}

.studio-contact {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color, #b08d57);
}

.about-closing {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.about-closing h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-closing p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-service,
    .about-service-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
    .about-banner {
        height: 45vh;
    }
}

/* ==========================================================================
   About page — Our Vibe section
   ========================================================================== */

.our-vibe {
    padding: 5rem 0;
    background: #faf7f3;
}

.our-vibe-header {
    text-align: center;
    margin-bottom: 3rem;
}

.our-vibe-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.our-vibe-subtitle {
    color: #888;
    font-style: italic;
    font-size: 1.05rem;
    margin: 0;
}

.our-vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vibe-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vibe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vibe-card h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    color: var(--accent-color, #b08d57);
}

.vibe-card p {
    line-height: 1.75;
    color: #555;
    margin: 0;
}

@media (max-width: 900px) {
    .our-vibe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .our-vibe {
        padding: 3.5rem 0;
    }
}

/* ==========================================================================
   Catalogue — brand tiles index
   ========================================================================== */

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0 3.5rem;
}

.brand-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
}

.brand-tile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3eee6;
}

.brand-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.brand-tile:hover .brand-tile-image img {
    transform: scale(1.04);
}

.brand-tile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-style: italic;
    font-size: 0.95rem;
}

.brand-tile-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-tile:hover .brand-tile-overlay {
    opacity: 1;
}

.brand-tile-cta {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-tile-body {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.brand-tile-name {
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-tile-country {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.catalogue-back {
    margin-bottom: 1.5rem;
}
