/* ============================================
   BELLE HAVEN - DYNAMIC LUXURY EXPERIENCE
   WITH VISUAL SEPARATION
   ============================================ */

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

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

/* Add subtle texture to body */
body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #F5F1E8;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
    min-width: 100%;
}

/* Background image with opacity control */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/website_background/websiteBackground_20251120_v2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* Selection */
::selection {
    background: #C39795;
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(48px, 8vw, 96px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

p {
    font-size: 18px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(195, 151, 149, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    isolation: isolate;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(195, 151, 149, 0.2);
}

.nav-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
    position: relative;
}

nav.scrolled .nav-content {
    padding: 16px 80px;
}

.logo {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.logo img {
    height: 65px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}

nav.scrolled .logo img {
    height: 55px;
}

/* Company name in nav */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #C39795;
    margin-top: 2px;
}

nav.scrolled .logo-text {
    font-size: 22px;
}

nav.scrolled .logo-text span {
    font-size: 12px;
}

.nav-links {
    display: flex;
    gap: 52px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C39795, transparent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #C39795;
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 280px;
    padding: 16px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(195, 151, 149, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 28px;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.dropdown a::before {
    display: none;
}

.dropdown a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #C39795, #8F8B5E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown li {
    position: relative;
}

.dropdown a:hover {
    background: linear-gradient(90deg, rgba(242, 235, 215, 0.5), transparent);
    padding-left: 36px;
}

.dropdown li:hover a::after {
    transform: scaleY(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - PROPERLY CENTERED
   ============================================ */
.hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/photosWebsite/image14.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    box-sizing: border-box;
    isolation: isolate;
}

.hero-image {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.5) 0%, 
        rgba(195, 151, 149, 0.35) 50%,
        rgba(143, 139, 94, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1400px;
    padding: 0 60px;
    padding-top: 50px; /* Offset for fixed nav - pushes content down slightly to appear visually centered */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Company name in hero */
.hero-company-name {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 4px 16px rgba(0, 0, 0, 0.4),
                 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(32px, 8vw, 100px);
    font-weight: 200;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-content p {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 48px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-button,
.btn-secondary,
.submit-btn {
    display: inline-block;
    padding: 20px 52px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button,
.submit-btn {
    background: #C39795;
    color: white;
    box-shadow: 0 12px 40px rgba(195, 151, 149, 0.4);
}

.cta-button::before,
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.cta-button:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

.cta-button:hover,
.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(195, 151, 149, 0.4);
}

.cta-button span,
.submit-btn span,
.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: #1a1a1a;
    transform: translateY(-4px);
}

.cta-button-large {
    padding: 24px 64px;
    font-size: 14px;
}

/* Page Headers */
.page-header {
    padding: 180px 80px 120px;
    text-align: center;
    background: linear-gradient(180deg, #F8F6F3 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(195, 151, 149, 0.12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(195, 151, 149, 0.5), transparent);
}

.page-header h1 {
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C39795, transparent);
}

/* UPDATED: Increased sub-header size for better readability */
.page-header p {
    color: #C39795;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 40px;
}

/* Sections */
section {
    padding: 140px 80px;
    position: relative;
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* UPDATED: Increased section subtitle size */
.section-subtitle {
    color: #C39795;
    font-size: 16px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C39795);
}

.section-subtitle::before {
    right: calc(100% + 30px);
}

.section-subtitle::after {
    left: calc(100% + 30px);
    background: linear-gradient(90deg, #C39795, transparent);
}

/* Services Teaser */
.services-teaser {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.services-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 151, 149, 0.2), transparent);
}

.services-teaser::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 151, 149, 0.2), transparent);
}

.services-grid-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Service Cards */
.service-card {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    padding: 56px 48px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(195, 151, 149, 0.15);
    border-bottom: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08),
                4px 0 12px rgba(0, 0, 0, 0.08),
                -4px 0 12px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    will-change: transform;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C39795, #8F8B5E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #C39795, #8F8B5E);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-16px) rotateX(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 12px 32px rgba(0, 0, 0, 0.18);
    border-color: rgba(195, 151, 149, 0.25);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    transition: color 0.3s ease;
    min-height: 76px;
    display: flex;
    align-items: flex-start;
}

.service-card p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* UPDATED: Increased learn more text size */
.learn-more {
    color: #C39795;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.learn-more::after {
    content: '→';
    margin-left: 12px;
    transition: margin-left 0.3s ease;
}

.service-card:hover .learn-more {
    color: #8F8B5E;
}

.service-card:hover .learn-more::after {
    margin-left: 20px;
}

/* Portfolio Teaser */
.portfolio-teaser {
    padding: 140px 80px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.3) 85%, 
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    border-bottom: none;
}

.portfolio-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(195, 151, 149, 0.2), transparent);
}

.portfolio-grid-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    border-top: 3px solid #C39795;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
}

.portfolio-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 12px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-12px);
}

.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(195, 151, 149, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(10%);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(195, 151, 149, 0.95), rgba(26, 26, 26, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.portfolio-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

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

.portfolio-overlay h3 {
    color: white;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.03em;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.portfolio-overlay h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: white;
    margin: 24px auto 0;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay h3::after {
    opacity: 1;
}

/* Why Cards */
.why-grid-teaser {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    margin-bottom: 80px;
}

.why-card {
    text-align: center;
    padding: 56px 40px;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.75) 80%, 
        rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(10px);
    border-radius: 2px;
    border: 1px solid rgba(195, 151, 149, 0.15);
    border-bottom: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.why-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
                0 3px 10px rgba(0, 0, 0, 0.06);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C39795, transparent);
    transition: opacity 0.3s ease;
}

.why-card:hover::before {
    opacity: 0.7;
}

.why-card h3 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 32px 0 20px;
}

.why-card h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #C39795, #8F8B5E);
    margin: 24px auto 0;
}

.why-card p {
    font-size: 17px;
    line-height: 2;
}

/* CTA Section - FIXED for full width */
.cta-section {
    padding: 80px 80px 100px 80px;
    text-align: center !important;
    position: relative;
    overflow: hidden;
    background: #000;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
}

.cta-section h2,
.cta-section p {
    color: #ffffff !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 3 !important;
}

.cta-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section .cta-button,
.cta-section .cta-button-large {
    position: relative !important;
    z-index: 3 !important;
    opacity: 1 !important;
    background: #C39795 !important;
    color: white !important;
    box-shadow: 0 12px 40px rgba(195, 151, 149, 0.4) !important;
}

.about-page,
.why-us-page {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.about-page .cta-section,
.why-us-page .cta-section {
    margin-bottom: 0 !important;
}

/* CTA Background Image */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/photosWebsite/image11.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.4);
    z-index: 0;
    transform: scale(1.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(195, 151, 149, 0.2), transparent 50%);
    animation: rotate 12s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: clamp(40px, 6vw, 72px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9),
                 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* UPDATED: Increased CTA sub-text size */
.cta-section p {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 48px;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9),
                 0 1px 8px rgba(0, 0, 0, 0.7);
}

.cta-section .cta-button-large {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.cta-section .cta-button-large:hover {
    box-shadow: 0 12px 48px rgba(195, 151, 149, 0.7),
                0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Text Utility */
.text-center {
    text-align: center;
}

/* About Page */
.about-page {
    max-width: 1600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 160px;
}

.about-text {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    padding: 60px 50px;
    border-left: 3px solid #C39795;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.about-image,
.vision-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-image::before,
.vision-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 8px solid white;
    box-shadow: inset 0 0 0 1px rgba(195, 151, 149, 0.2);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-text h2 {
    font-weight: 300;
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text .cta-button {
    margin-top: 32px;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 8%,
        rgba(255, 255, 255, 1) 92%,
        rgba(255, 255, 255, 0) 100%);
    padding: 160px 0;
    margin-bottom: 160px;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border: none;
    box-shadow: none;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vision-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.vision-image:hover img {
    transform: scale(1.08);
}

.vision-text h2 {
    font-weight: 300;
    margin-bottom: 32px;
}

.vision-text p {
    margin-bottom: 24px;
}

.vision-image {
    position: relative;
    overflow: hidden !important;
}

.vision-image img:not(.vision-stamp) {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.vision-stamp {
    position: absolute !important;
    bottom: -8% !important;
    left: -3% !important;
    top: auto !important;
    right: auto !important;
    width: 25% !important;
    height: auto !important;
    transform: rotate(-15deg) !important;
    opacity: 1;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
    object-fit: contain !important;
    border: none !important;
    box-shadow: none !important;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* Founders Section */
.founders-section {
    margin-bottom: 160px;
}

.founders-section h2 {
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 60px;
}

.founder-card {
    background: white;
    padding: 64px 48px;
    text-align: center;
    border: 1px solid rgba(195, 151, 149, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04),
                0 1px 4px rgba(0, 0, 0, 0.02);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #C39795, #8F8B5E);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.founder-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(195, 151, 149, 0.2),
                0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(195, 151, 149, 0.25);
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-card h3 {
    margin-bottom: 12px;
    font-weight: 400;
}

/* UPDATED: Increased founder card subtitle */
.founder-card p:first-of-type {
    color: #C39795;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Services Page */
.services-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.service-detail {
    margin-bottom: 160px;
    padding: 100px 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 8%,
        rgba(255, 255, 255, 1) 92%,
        rgba(255, 255, 255, 0) 100%);
    display: flex;
    justify-content: center;
}

.service-detail.alt {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 8%,
        rgba(255, 255, 255, 1) 92%,
        rgba(255, 255, 255, 0) 100%);
    padding: 100px 80px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
}

.service-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    border: 8px solid white;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-text {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    padding: 60px 50px;
    border-left: 3px solid #C39795;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-text h2 {
    font-weight: 300;
    margin-bottom: 32px;
}

.service-text h3 {
    margin-top: 48px;
    margin-bottom: 24px;
    color: #C39795;
    font-weight: 400;
    font-size: 28px;
}

.service-text ul {
    list-style: none;
    margin: 32px 0;
}

.service-text li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    line-height: 1.8;
}

.service-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #C39795;
    font-weight: 400;
}

.service-text .cta-button {
    margin-top: 40px;
}

.coming-soon-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    border: none;
}

.coming-soon-text {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 400;
    display: inline-block;
    margin-left: 8px;
    position: relative;
    top: 14px;
}

/* Portfolio Page */
.portfolio-page {
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-filters,
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #C39795;
    color: white;
    box-shadow: 0 2px 8px rgba(195, 151, 149, 0.3);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 100%;
}

.filter-btn:hover {
    box-shadow: 0 6px 20px rgba(195, 151, 149, 0.4);
}

.filter-btn.active {
    background: transparent;
    border: 2px solid #C39795;
    color: #C39795;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(195, 151, 149, 0.4);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 48px;
}

.portfolio-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 92%;
    max-height: 92%;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lightbox-close {
    position: absolute;
    top: 48px;
    right: 48px;
    color: white;
    font-size: 56px;
    cursor: pointer;
    font-weight: 200;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

/* Why Us Page */
.why-us-page {
    max-width: 1600px;
    margin: 0 auto;
}

.why-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.why-intro h2 {
    font-weight: 300;
    margin-bottom: 32px;
}

.why-intro p {
    font-size: 19px;
    line-height: 2;
}

.why-features {
    margin-bottom: 160px;
}

.why-feature-block {
    padding: 72px 64px;
    margin-bottom: 60px;
    background: white;
    border: 1px solid rgba(195, 151, 149, 0.12);
    transition: all 0.5s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

.why-feature-block:hover {
    transform: translateX(12px);
    box-shadow: -4px 12px 40px rgba(195, 151, 149, 0.18),
                0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(195, 151, 149, 0.2);
}

.why-feature-block:nth-child(even) {
    background: linear-gradient(135deg, #F8F6F3, #F2EBD7);
    border-color: rgba(195, 151, 149, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
}

.feature-content h3 {
    color: #1a1a1a;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 400;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #C39795, #8F8B5E);
}

.feature-content p {
    font-size: 18px;
    line-height: 2;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, #F2EBD7, #C39795, #8F8B5E, #F2EBD7);
    background-size: 100% 400%;
    animation: verticalFlow 18s ease infinite;
    padding: 160px 80px;
    margin-bottom: 160px;
}

@keyframes verticalFlow {
    0% { background-position: 50% 0%; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 0%; }
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 52px 44px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2),
                0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 24px;
}

.testimonial-author {
    color: #C39795;
    font-weight: 500;
    text-align: right;
    letter-spacing: 0.05em;
    font-size: 16px;
}

/* Contact Page */
.contact-page {
    max-width: 1600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.contact-intro h2 {
    font-weight: 300;
    margin-bottom: 32px;
}

.contact-intro p {
    font-size: 19px;
    line-height: 2;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 100px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    display: grid;
    gap: 36px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 18px 20px;
    border: 1.5px solid rgba(195, 151, 149, 0.2);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #C39795;
    box-shadow: 0 0 0 4px rgba(195, 151, 149, 0.1),
                inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

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

.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

.error-message.show {
    display: block;
}

.submit-btn {
    justify-self: start;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #F2EBD7, rgba(195, 151, 149, 0.3));
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(195, 151, 149, 0.3);
}

.success-message.show {
    display: block;
}

.success-message h3 {
    color: #C39795;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-info {
    background: linear-gradient(135deg, #F8F6F3, #F2EBD7) !important;
    padding: 52px 44px !important;
    border: 1px solid rgba(195, 151, 149, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(0, 0, 0, 0.08) !important;
    height: fit-content !important;
}

.contact-info-card {
    background: linear-gradient(135deg, #F8F6F3, #F2EBD7);
    padding: 52px 44px;
    border: 1px solid rgba(195, 151, 149, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info-card h2 {
    color: #C39795;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-info-card .contact-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-info-card .contact-item {
    margin-bottom: 32px;
}

.contact-info-card .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .contact-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-info-card .contact-item p {
    margin-bottom: 8px;
}

.contact-info-card .contact-item a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-info-card .contact-social {
    display: flex;
    gap: 16px;
}

.contact-info-card .contact-social img {
    width: 32px;
    height: 32px;
}

/* Form Success Message */
.form-success-message {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #F8F6F3, #F2EBD7);
    border: 1px solid rgba(195, 151, 149, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.form-success-message .success-icon {
    width: 80px;
    height: 80px;
    background: #C39795;
    color: white;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.form-success-message h3 {
    font-size: 36px;
    font-weight: 400;
    color: #C39795;
    margin-bottom: 20px;
}

.form-success-message p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.form-success-message .cta-button {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card {
        padding: 32px 24px;
    }
    
    .contact-info-card h2 {
        font-size: 28px;
    }
    
    .form-success-message {
        padding: 40px 24px;
    }
    
    .form-success-message .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .form-success-message h3 {
        font-size: 28px;
    }
    
    .form-success-message p {
        font-size: 16px;
    }
}

.info-block a[href^="mailto:"] {
    color: #1a1a1a !important;
    font-weight: 500;
    padding-left: 28px;
    position: relative;
    cursor: default;
    display: block;
}

.info-block a[href^="mailto:"]::before {
    content: '✉';
    position: absolute;
    left: 0;
    font-size: 16px;
    color: #C39795;
}

.info-block a[href^="mailto:"]:hover {
    color: #1a1a1a !important;
}

.info-block {
    margin-bottom: 36px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: #C39795;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 400;
}

.info-block h4 {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 400;
}

.info-block p {
    margin-bottom: 12px;
}

.info-block a {
    color: #C39795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #8F8B5E;
}

.social-links-contact {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links-contact a {
    transition: transform 0.3s ease;
}

.social-links-contact a:hover {
    transform: translateY(-4px);
}

.social-links-contact img {
    height: 36px;
    width: 36px;
}

.contact-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-social a {
    transition: transform 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-4px);
}

.contact-social img {
    height: 32px;
    width: 32px;
}

/* Contact Page Wrapper */
.contact-page-wrapper {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    padding: 80px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    max-width: 1400px;
}

/* Why Us Page Wrapper - FIXED for full width CTA */
.why-us-page-wrapper {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    padding: 80px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    margin: 0 auto 0 auto;
    max-width: 1400px;
}

.why-features {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 80px 32px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* Company name in footer */
.footer-company-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 80px;
    justify-content: center;
}

.footer-section h4 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 400;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 17px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C39795;
}

.social-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
}

.social-links img {
    height: 28px;
    width: 28px;
    filter: brightness(0) invert(1);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.75;
    letter-spacing: 0.05em;
    font-size: 16px;
}

/* Home Page Overrides */
.home-page .services-teaser {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(0px) !important;
}

.home-page .service-card {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.5) 75%,
        rgba(255, 255, 255, 0) 100%) !important;
    backdrop-filter: blur(0px) !important;
    border-bottom: none !important;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08),
                4px 0 12px rgba(0, 0, 0, 0.08),
                -4px 0 12px rgba(0, 0, 0, 0.08) !important;
}

.home-page .portfolio-teaser {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.75) 85%, 
        rgba(255, 255, 255, 0) 100%) !important;
    backdrop-filter: blur(0px) !important;
    border-bottom: none !important;
}

.home-page .why-card {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(255, 255, 255, 0.75) 80%, 
        rgba(255, 255, 255, 0) 100%) !important;
    backdrop-filter: blur(0px) !important;
    border-bottom: none !important;
}

/* Coming Soon Stamp Overlay */
.picnics-section {
    position: relative !important;
}

.stamp-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: none !important;
    z-index: 100 !important;
}

.rubber-stamp {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 80px !important;
    font-weight: 700 !important;
    color: #C39795 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    padding: 30px 80px !important;
    border: 8px solid #C39795 !important;
    border-radius: 12px !important;
    transform: rotate(-18deg) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 
        inset 0 0 0 4px #ffffff,
        inset 0 0 0 8px #C39795,
        6px 6px 20px rgba(0, 0, 0, 0.25),
        3px 3px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Legal Pages (Terms & Privacy) */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(242, 235, 215, 0.9) 100%);
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.last-updated {
    color: #C39795;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 500;
    color: #C39795;
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    margin: 16px 0;
}

.legal-section li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.legal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #C39795;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1200px) {
    .nav-content, section, .page-header, .vision-section, footer {
        padding-left: 48px;
        padding-right: 48px;
    }
    
    .services-grid-teaser {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .portfolio-grid-teaser {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .why-grid-teaser {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .vision-content {
        padding: 0 48px;
    }
    
    /* Hide text on smaller tablets, keep logo */
    .logo-text {
        display: none;
    }
}

@media (max-width: 1024px) {
    .contact-container,
    .footer-content,
    .about-content,
    .vision-content,
    .service-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-image {
        position: static;
        height: 400px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 48px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo img {
        height: 60px;
        width: auto;
        max-width: 150px;
        object-fit: contain;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .nav-content {
        padding: 16px 20px;
    }
    
    nav.scrolled .nav-content {
        padding: 12px 20px;
    }
    
    /* Hide logo text on mobile */
    .logo-text {
        display: none;
    }
    
    section, .page-header, .vision-section, footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.4s ease;
        padding: 100px 20px 40px;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 9998;
    }
    
    .nav-links li {
        width: 100%;
        padding: 16px 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 12px;
        display: none;
        background: rgba(242, 235, 215, 0.5);
        border: none;
        width: 100%;
        min-width: unset;
        left: unset;
        padding: 16px 0;
    }
    
    .has-dropdown.dropdown-open .dropdown {
        display: block;
    }
    
    .dropdown {
        position: static !important;
        transform: none !important;
        left: unset !important;
        top: unset !important;
        min-width: unset !important;
        width: 100% !important;
        background: rgba(242, 235, 215, 0.6) !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        text-align: center;
    }
    
    .dropdown a {
        display: block;
        padding: 14px 20px !important;
        text-align: center !important;
        font-size: 14px;
    }
    
    .dropdown a:hover {
        padding-left: 20px !important;
        background: rgba(195, 151, 149, 0.15) !important;
    }
    
    .dropdown a::after {
        display: none !important;
    }
    
    .dropdown li {
        width: 100%;
    }

    /* Hero Mobile - FIXED vertical centering */
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding: 0 20px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0 10px;
        padding-top: 100px; /* Account for fixed nav on mobile */
        padding-bottom: 60px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-company-name {
        font-size: 20px;
        letter-spacing: 0.25em;
        margin-bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(28px, 8vw, 48px);
        margin-bottom: 20px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* UPDATED: Increased hero sub-text for mobile */
    .hero-content p {
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.12em;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        padding: 0;
    }
    
    .cta-button,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 16px 24px;
        font-size: 12px;
        text-align: center;
    }
    
    /* Section headers - UPDATED sizes */
    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* UPDATED: Increased section subtitle for mobile */
    .section-subtitle {
        font-size: 14px;
    }
    
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    
    /* UPDATED: Increased page header subtitle for mobile */
    .page-header p {
        font-size: 16px;
        font-weight: 500;
    }
    
    /* Grids */
    .services-grid-teaser,
    .portfolio-grid-teaser,
    .portfolio-grid,
    .why-grid-teaser,
    .founders-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Cards */
    .service-card,
    .why-card {
        padding: 32px 24px;
        min-height: auto;
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    .service-card h3,
    .service-card p,
    .service-card .learn-more {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: inherit;
    }
    
    .service-card h3 {
        min-height: auto;
        font-size: 26px;
        color: #1a1a1a !important;
    }
    
    .service-card p {
        color: #4a4a4a !important;
    }
    
    /* Mobile Image Sizing - Constrain Heights */
    .portfolio-item {
        aspect-ratio: 4/3;
        max-height: 280px;
    }
    
    .portfolio-item img {
        max-height: 280px;
    }
    
    /* Portfolio teaser images - BREAKOUT full width on mobile */
    .portfolio-teaser {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow: visible;
    }
    
    .portfolio-grid-teaser {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
        margin-bottom: 40px;
        margin-left: -5px;
        margin-right: -5px;
        width: calc(100% + 10px) !important;
        box-sizing: border-box;
    }
    
    .portfolio-grid-teaser .portfolio-item {
        aspect-ratio: 4/3;
        max-height: none !important;
        width: 100% !important;
        height: auto;
        min-height: 260px;
        padding: 6px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .portfolio-grid-teaser .portfolio-item img {
        max-height: none !important;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .portfolio-overlay h3 {
        font-size: 20px;
    }

    /* Fix Coming Soon text alignment on home page cards */
    .coming-soon-text {
        top: 0 !important;
        font-size: 18px !important;
        display: inline !important;
    }
    
    .service-card h3 {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: baseline !important;
    }
    
    /* ============================================
       MOBILE SERVICE DETAIL SECTIONS
       Image on top, text card overlapping below
       CENTERED
       ============================================ */
    .service-detail,
    .service-detail.alt {
        padding: 20px 16px 40px 16px !important;
        margin-bottom: 20px;
        margin-left: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .service-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0;
        align-items: center !important;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .service-image {
        order: 1;
        width: calc(100% - 32px) !important;
        max-width: 400px !important;
        height: 220px !important;
        max-height: 220px !important;
        margin: 0 auto !important;
        border: 4px solid white;
        left: 0 !important;
        right: 0 !important;
    }
    
    .service-image img {
        position: relative;
        max-height: 220px !important;
    }
    
    .service-text {
        order: 2;
        text-align: center !important;
        width: calc(100% - 32px) !important;
        max-width: 400px !important;
        margin: -30px auto 0 auto !important;
        padding: 32px 24px;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(250, 248, 243, 0.95) 100%) !important;
        border-left: none !important;
        border-top: 3px solid #C39795 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        position: relative;
        z-index: 5;
    }
    
    .service-text h2 {
        font-size: 24px;
        margin-bottom: 16px;
        text-align: center !important;
    }
    
    .service-text h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 16px;
        text-align: center !important;
    }
    
    .service-text p {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center !important;
    }
    
    .service-text ul,
    .service-features {
        margin: 20px auto !important;
        text-align: left;
        display: inline-block;
    }
    
    .service-text li {
        font-size: 15px;
        padding-left: 24px;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .service-text .cta-button {
        width: auto;
        text-align: center !important;
        margin: 24px auto 0 !important;
        display: block;
    }
    
    /* ============================================
       MOBILE COMING SOON STAMP - Bottom left corner
       ============================================ */
    .stamp-overlay {
        position: absolute !important;
        top: 160px !important;
        left: 30px !important;
        right: auto !important;
        bottom: auto !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        background: none !important;
        pointer-events: none !important;
        z-index: 150 !important;
    }
    
    .rubber-stamp {
        font-size: 24px !important;
        padding: 12px 28px !important;
        border-width: 4px !important;
        transform: rotate(-18deg) !important;
        white-space: nowrap !important;
        box-shadow: 
            inset 0 0 0 2px #ffffff,
            inset 0 0 0 4px #C39795,
            4px 4px 16px rgba(0, 0, 0, 0.25) !important;
    }
    
    .picnics-section .service-text {
        position: relative;
        z-index: 101;
    }
    
    /* Founders */
    .founders-section {
        margin-bottom: 60px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 40px 24px;
    }
    
    /* Contact */
    .contact-container {
        gap: 40px;
    }
    
    .contact-intro {
        margin-bottom: 40px;
    }
    
    .contact-info {
        padding: 32px 24px !important;
    }
    
    /* Why Us */
    .why-us-page-wrapper,
    .contact-page-wrapper {
        padding: 32px 20px;
        margin-bottom: 40px;
    }
    
    .why-feature-block {
        padding: 32px 20px;
        margin-bottom: 20px;
    }
    
    /* Testimonials */
    .testimonials-section {
        padding: 60px 20px;
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    /* CTA - FIXED for full width on mobile */
    .cta-section {
        padding: 60px 20px 80px 20px !important;
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .cta-content {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cta-section h2 {
        font-size: 28px !important;
    }
    
    /* UPDATED: Increased CTA sub-text for mobile */
    .cta-section p {
        font-size: 18px !important;
        font-weight: 500 !important;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* Filter buttons */
    .portfolio-filters,
    .filter-buttons {
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 0.1em;
    }
    
    /* Legal pages */
    .legal-page {
        padding: 40px 20px;
    }
    
    .legal-content {
        padding: 32px 20px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    /* Lightbox */
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    footer {
        padding: 40px 20px 32px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    /* Hide any stray hero images on non-home pages */
    .page-header ~ .hero-image,
    section .hero-image,
    .service-detail .hero-image {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Center portfolio images on mobile */
    .portfolio-page {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    .portfolio-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
    }
    
    .portfolio-item {
        width: calc(100% - 32px) !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .nav-content {
        padding: 14px 16px;
    }
    
    nav.scrolled .nav-content {
        padding: 10px 16px;
    }
    
    .logo img {
        height: 50px;
    }
    
    nav.scrolled .logo img {
        height: 45px;
    }
    
    .hero {
        padding: 0 16px;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-company-name {
        font-size: 18px;
        letter-spacing: 0.2em;
    }
    
    .hero-content h1 {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.2;
    }
    
    /* UPDATED: Increased hero sub-text for small mobile */
    .hero-content p {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.1em;
        margin-bottom: 30px;
    }
    
    .cta-button,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 11px;
        max-width: 100%;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    /* UPDATED: Page header subtitle for small mobile */
    .page-header p {
        font-size: 14px;
        font-weight: 500;
    }
    
    .cta-section h2 {
        font-size: 24px !important;
    }
    
    /* UPDATED: CTA sub-text for small mobile */
    .cta-section p {
        font-size: 16px !important;
    }
    
    .portfolio-filters,
    .filter-buttons {
        gap: 8px;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }
    
    .service-card,
    .why-card {
        padding: 24px 16px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .portfolio-overlay h3 {
        font-size: 18px;
    }

    .coming-soon-text {
        top: 0 !important;
        font-size: 16px !important;
    }

    .portfolio-item {
        width: calc(100% - 24px) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .portfolio-page {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Smaller images on tiny screens */
    .portfolio-item {
        aspect-ratio: 4/3;
        max-height: 220px;
    }
    
    .portfolio-item img {
        max-height: 220px;
    }
    
    /* Portfolio teaser images - BREAKOUT full width on small mobile */
    .portfolio-grid-teaser {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px;
        margin-left: -5px;
        margin-right: -5px;
        width: calc(100% + 10px) !important;
        box-sizing: border-box;
    }
    
    .portfolio-grid-teaser .portfolio-item {
        aspect-ratio: 4/3;
        max-height: none !important;
        width: 100% !important;
        height: auto;
        min-height: 220px;
        padding: 5px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .portfolio-grid-teaser .portfolio-item img {
        max-height: none !important;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .portfolio-grid,
    .portfolio-grid-teaser {
        gap: 12px;
    }
    
    .service-image {
        height: 180px !important;
        max-height: 180px !important;
        margin: 0 auto;
        width: calc(100% - 24px);
    }
    
    .service-image img {
        max-height: 180px !important;
    }
    
    .service-text {
        margin: -24px auto 0 auto;
        width: calc(100% - 24px);
        padding: 24px 20px;
        text-align: center !important;
    }
    
    .service-text h2 {
        font-size: 22px;
        text-align: center !important;
    }
    
    .service-text h3 {
        font-size: 16px;
        text-align: center !important;
    }
    
    .service-text p {
        text-align: center !important;
    }
    
    .service-text ul,
    .service-features {
        display: inline-block;
        text-align: left;
        margin: 16px auto !important;
    }
    
    .service-text li {
        font-size: 14px;
        padding-left: 20px;
        text-align: left;
    }
    
    .service-text .cta-button {
        margin: 20px auto 0 !important;
        display: block;
        width: auto;
    }
    
    /* Smaller stamp on tiny screens */
    .stamp-overlay {
        top: 160px !important;
        left: 80px !important;
        width: auto !important;
        background: none !important;
    }
    
    .rubber-stamp {
        font-size: 18px !important;
        padding: 8px 18px !important;
        white-space: nowrap !important;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .copyright {
        font-size: 14px;
    }
}

/* ============================================
   PREVENT HORIZONTAL SCROLL
   ============================================ */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.hero,
.hero-content,
section,
.nav-content,
.cta-section,
.service-detail,
.vision-section {
    max-width: 100%;
}

/* Ensure all images are contained properly */
img {
    max-width: 100%;
    height: auto;
}

/* Fix any floating images */
nav img:not(.logo img),
.nav-content img:not(.logo img) {
    max-width: 100%;
    height: auto;
}

/* Ensure logo stays correct size */
.logo img {
    height: 65px !important;
    width: auto !important;
    max-width: 200px !important;
}

/* Page header should not have floating images */
.page-header {
    overflow: hidden;
}

.page-header img {
    display: none;
}

/* Ensure service images are contained */
.service-image {
    overflow: hidden;
}

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

/* ============================================
   ANCHOR LINK OFFSET FOR FIXED NAV
   ============================================ */

/* Desktop offset for fixed nav */
#wedding-coordination,
#balloons,
#event-design,
#picnics {
    scroll-margin-top: 120px;
}

/* Mobile offset - nav is shorter */
@media (max-width: 768px) {
    #wedding-coordination,
    #balloons,
    #event-design,
    #picnics {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 480px) {
    #wedding-coordination,
    #balloons,
    #event-design,
    #picnics {
        scroll-margin-top: 70px;
    }
}

/* ============================================
   CRITICAL MOBILE FIXES
   ============================================ */

/* Fix CTA section on mobile - restore full width */
@media (max-width: 768px) {
    .cta-section {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: 0 !important;
        padding: 60px 20px 80px 20px !important;
        display: block !important;
        flex-direction: unset !important;
        align-items: unset !important;
    }
    
    .cta-section .cta-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Exclude CTA from portfolio grid styling */
    .cta-section,
    .cta-section * {
        flex-direction: column !important;
    }
    
    .cta-section h2,
    .cta-section p {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
}

/* ============================================
   ABOUT PAGE MOBILE - FINAL VERSION
   ============================================ */
@media (max-width: 768px) {
    /* Our Story Section */
    .about-page .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        margin-bottom: 40px !important;
        padding: 0 !important;
    }
    
    .about-page .about-image {
        width: 90% !important;
        max-width: none !important;
        margin: 0 auto !important;
        order: 1 !important;
    }
    
    .about-page .about-image img {
        height: 220px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .about-page .about-text {
        width: 100% !important;
        max-width: none !important;
        margin: -30px 16px 0 16px !important;
        order: 2 !important;
        text-align: center !important;
        border-left: none !important;
        border-top: 3px solid #C39795 !important;
        background-color: #ffffff !important;
        background-image: none !important;
        padding: 32px 24px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    .about-page .about-text h2,
    .about-page .about-text p {
        text-align: center !important;
    }
    
    /* Vision Section */
    .about-page .vision-section {
        padding: 20px 0 40px 0 !important;
        margin-bottom: 40px !important;
    }
    
    .about-page .vision-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .about-page .vision-image {
        width: 90% !important;
        max-width: none !important;
        margin: 0 auto !important;
        order: 1 !important;
    }
    
    .about-page .vision-image img:not(.vision-stamp) {
        height: 220px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .about-page .vision-text {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        margin: -30px auto 0 auto !important;
        order: 2 !important;
        text-align: center !important;
        border-left: none !important;
        border-top: 3px solid #C39795 !important;
        background-color: #ffffff !important;
        background-image: none !important;
        padding: 32px 24px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
        position: relative !important;
        z-index: 5 !important;
    }
    
    .about-page .vision-text h2,
    .about-page .vision-text p {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .about-page .about-image,
    .about-page .vision-image {
        width: 92% !important;
    }
    
    .about-page .about-text,
    .about-page .vision-text {
        width: calc(100% - 24px) !important;
        margin: -25px auto 0 auto !important;
    }
    
    .about-page .about-image img,
    .about-page .vision-image img:not(.vision-stamp) {
        height: 200px !important;
    }
}

/* ============================================
   DESKTOP FIX - Full-width breakout fix
   ============================================ */

.about-page .vision-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.about-page .cta-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Why Us Page CTA fix */
.why-us-page .cta-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ============================================
   MOBILE FIX - Image on TOP of text card
   ============================================ */
@media (max-width: 768px) {
    .about-page .about-image,
    .about-page .vision-image {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .about-page .about-text,
    .about-page .vision-text {
        z-index: 1 !important;
        margin-top: -30px !important;
        padding-top: 50px !important;
    }
}

@media (max-width: 480px) {
    .about-page .about-text,
    .about-page .vision-text {
        margin-top: -25px !important;
        padding-top: 45px !important;
    }
}

/* ============================================
   MOBILE FIX - Wider images, no gaps
   ============================================ */
@media (max-width: 768px) {
    .about-page .about-image,
    .about-page .vision-image {
        width: 95% !important;
        z-index: 10 !important;
        position: relative !important;
        padding: 0 !important;
        border: 8px solid white !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    }
    
    .about-page .about-image img,
    .about-page .vision-image img:not(.vision-stamp) {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .about-page .about-image::before,
    .about-page .vision-image::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .about-page .about-image,
    .about-page .vision-image {
        width: 94% !important;
    }
    
    .about-page .about-image img,
    .about-page .vision-image img:not(.vision-stamp) {
        height: 200px !important;
    }
}

/* ============================================
   MOBILE SERVICES PAGE - FORCE CENTERING
   ============================================ */
@media (max-width: 768px) {
    .services-page {
        padding: 40px 0 !important;
    }
    
    .services-page .service-detail,
    .service-detail,
    .service-detail.alt {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 16px !important;
    }
    
    .services-page .service-content,
    .service-detail .service-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .services-page .service-image,
    .service-detail .service-image {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
        max-width: 350px !important;
    }
    
    .services-page .service-text,
    .service-detail .service-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 90% !important;
        max-width: 350px !important;
        border-left: none !important;
        border-top: 3px solid #C39795 !important;
    }
    
    .services-page .service-text h2,
    .service-detail .service-text h2 {
        text-align: center !important;
    }
    
    .services-page .service-text p,
    .service-detail .service-text p {
        text-align: center !important;
    }
    
    .services-page .service-text h3,
    .service-detail .service-text h3 {
        text-align: center !important;
    }
    
    .services-page .service-features,
    .service-detail .service-features,
    .services-page .service-text ul,
    .service-detail .service-text ul {
        display: table !important;
        text-align: left !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
    }
    
    .services-page .service-text .cta-button,
    .service-detail .service-text .cta-button {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: fit-content !important;
    }
}

/* ============================================
   FULL WIDTH OVERRIDES - CTA AND FOOTER (DESKTOP ONLY)
   ============================================ */
@media (min-width: 769px) {
    .cta-section,
    section.cta-section {
        width: auto !important;
        max-width: none !important;
        margin-left: -80px !important;
        margin-right: -80px !important;
        padding-left: 80px !important;
        padding-right: 80px !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    footer {
        width: auto !important;
        max-width: none !important;
        margin-left: -80px !important;
        margin-right: -80px !important;
        left: auto !important;
        right: auto !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    .footer-logo {
        align-items: center !important;
        text-align: center !important;
        align-self: flex-start !important;
    }
    
    .footer-content {
        align-items: flex-end !important;
    }
    
    .social-links {
        align-self: flex-end !important;
    }
    
    .hero-content h1 {
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7) !important;
    }
    
    .hero-company-name {
        font-size: 45px !important;
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7) !important;
    }
}


/* ============================================
   PRICING TABLE STYLES
   ============================================ */
.pricing-section {
    margin-top: 40px;
}

.pricing-section h3 {
    color: #C39795;
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(195, 151, 149, 0.2);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 14px 8px;
    font-size: 17px;
}

.pricing-table td:first-child {
    font-weight: 500;
    color: #1a1a1a;
}

.pricing-table td:last-child {
    text-align: right;
    color: #C39795;
    font-weight: 500;
    font-size: 18px;
}

.pricing-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 24px;
}


/* ============================================
   VIEW DETAILS BUTTON
   ============================================ */
.view-details-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 24px auto;
    padding: 16px 32px;
    background: #C39795;
    color: white;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 151, 149, 0.3);
}

.view-details-btn:hover {
    background: #a87f7d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 151, 149, 0.4);
}

.view-details-btn.active {
    background: #1a1a1a;
}


/* ============================================
   EXPANDABLE PACKAGE DETAILS SECTION
   ============================================ */
.package-details-section {
    display: none;
    margin-top: 40px;
    animation: packageFadeIn 0.4s ease;
}

.package-details-section.show {
    display: block;
}

@keyframes packageFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.95) 100%);
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #C39795;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.package-card:last-child {
    margin-bottom: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.package-name {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.package-price {
    font-size: 24px;
    font-weight: 500;
    color: #C39795;
}

.package-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(195, 151, 149, 0.2);
}

.package-features-title {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C39795;
    margin-bottom: 16px;
    font-weight: 500;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.package-feature::before {
    content: '→';
    color: #C39795;
    font-weight: 500;
    flex-shrink: 0;
}


/* ============================================
   PRICING & PACKAGE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .pricing-section h3 {
        font-size: 20px;
    }
    
    .pricing-table td {
        padding: 12px 4px;
        font-size: 15px;
    }
    
    .pricing-table td:last-child {
        font-size: 16px;
    }
    
    .package-card {
        padding: 24px 20px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .package-price {
        font-size: 20px;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .view-details-btn {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* ============================================
   ADD THESE STYLES TO THE END OF YOUR style.css
   ============================================ */


/* ============================================
   HAMBURGER MENU ACTIVE STATE
   ============================================ */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
    overflow: hidden;
}

/* Fix hamburger menu clickability on home page */
.home-page .menu-toggle {
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    cursor: pointer;
}

.home-page nav {
    z-index: 1001;
}

.home-page .nav-content {
    position: relative;
    z-index: 1002;
}


/* ============================================
   PRICING TABLE STYLES
   ============================================ */
.pricing-section {
    margin-top: 40px;
}

.pricing-section h3 {
    color: #C39795;
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(195, 151, 149, 0.2);
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 14px 8px;
    font-size: 17px;
}

.pricing-table td:first-child {
    font-weight: 500;
    color: #1a1a1a;
}

.pricing-table td:last-child {
    text-align: right;
    color: #C39795;
    font-weight: 500;
    font-size: 18px;
}

.pricing-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 24px;
}


/* ============================================
   VIEW DETAILS BUTTON
   ============================================ */
.view-details-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 24px auto;
    padding: 16px 32px;
    background: #C39795;
    color: white;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 151, 149, 0.3);
}

.view-details-btn:hover {
    background: #a87f7d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 151, 149, 0.4);
}

.view-details-btn.active {
    background: #1a1a1a;
}


/* ============================================
   EXPANDABLE PACKAGE DETAILS SECTION
   ============================================ */
.package-details-section {
    display: none;
    margin-top: 40px;
    animation: packageFadeIn 0.4s ease;
}

.package-details-section.show {
    display: block;
}

@keyframes packageFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.95) 100%);
    padding: 32px;
    margin-bottom: 24px;
    border-left: 4px solid #C39795;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(4px);
}

.package-card:last-child {
    margin-bottom: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.package-name {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.package-price {
    font-size: 24px;
    font-weight: 500;
    color: #C39795;
}

.package-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(195, 151, 149, 0.2);
}

.package-features-title {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C39795;
    margin-bottom: 16px;
    font-weight: 500;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.package-feature::before {
    content: '→';
    color: #C39795;
    font-weight: 500;
    flex-shrink: 0;
}


/* ============================================
   PRICING & PACKAGE RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .pricing-section h3 {
        font-size: 20px;
    }
    
    .pricing-table td {
        padding: 12px 4px;
        font-size: 15px;
    }
    
    .pricing-table td:last-child {
        font-size: 16px;
    }
    
    .package-card {
        padding: 24px 20px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .package-price {
        font-size: 20px;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .view-details-btn {
        max-width: 100%;
        padding: 14px 24px;
        font-size: 13px;
    }
}


/* ============================================
   PRICING IMAGES
   ============================================ */
.pricing-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   WEDDING COORDINATION IMAGE - FIT TO IMAGE SIZE
   Add this to the END of your style.css file
   ============================================ */

/* Wedding coordination section - adjust image container for portrait image */
#wedding-coordination .service-image {
    height: auto;
    max-height: 640px;
    aspect-ratio: 427 / 640;
}

#wedding-coordination .service-image img {
    object-fit: contain;
    position: relative;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #wedding-coordination .service-image {
        height: auto !important;
        max-height: 320px !important;
        aspect-ratio: 427 / 640;
    }
    
    #wedding-coordination .service-image img {
        max-height: 320px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    #wedding-coordination .service-image {
        max-height: 280px !important;
    }
    
    #wedding-coordination .service-image img {
        max-height: 280px !important;
    }
}

/* ============================================
   MOBILE HAMBURGER MENU FIX - HOME PAGE
   ============================================ */
@media (max-width: 768px) {
    /* Remove backdrop-filter which causes stacking context issues */
    nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgb(255, 255, 255) !important;
        z-index: 9999 !important;
        transform: translateZ(0);
        pointer-events: auto !important;
    }
    
    /* Make sure menu toggle is clickable */
    .menu-toggle {
        z-index: 10000 !important;
        position: relative !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* NUCLEAR FIX: Make entire hero non-interactive on home page */
    .home-page .hero {
        pointer-events: none !important;
    }
    
    /* Also disable hero children explicitly */
    .home-page .hero * {
        pointer-events: none !important;
    }
    
    /* Re-enable pointer events ONLY for buttons */
    .home-page .hero .cta-button,
    .home-page .hero .btn-secondary,
    .home-page .hero a,
    .home-page .hero button,
    .home-page .hero-buttons,
    .home-page .hero-buttons * {
        pointer-events: auto !important;
    }
    
    /* Make sure EVERYTHING in nav is clickable */
    nav * {
        pointer-events: auto !important;
    }
    
    /* Home page specific - ensure nothing blocks the menu */
    .home-page nav {
        z-index: 9999 !important;
        pointer-events: auto !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .home-page .nav-content {
        z-index: 10000 !important;
        position: relative !important;
        pointer-events: auto !important;
    }
    
    .home-page .menu-toggle {
        z-index: 10001 !important;
        position: relative !important;
        pointer-events: auto !important;
    }
    
    /* Nav links when active needs high z-index */
    .nav-links {
        z-index: 9998 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .nav-links.active {
        z-index: 9998 !important;
    }
}