:root {
    /* Refined editorial color palette - Japanese-inspired, muted tones */
    --primary-charcoal: #2c2c2c;
    --primary-indigo: #5a6c7d;
    --accent-terracotta: #b88a6b;
    --accent-sage: #8a9b8f;
    --warm-beige: #f5f1eb;
    --soft-gray: #e8e6e1;
    --warm-white: #faf9f7;
    --deep-charcoal: #1a1a1a;
    --muted-text: #6b6b6b;
    --subtle-border: rgba(90, 108, 125, 0.12);
    
    /* Atmospheric gradients */
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(90, 108, 125, 0.65) 50%, rgba(184, 138, 107, 0.55) 100%);
    --gradient-subtle: linear-gradient(180deg, #faf9f7 0%, #f5f1eb 100%);
    --gradient-accent: linear-gradient(135deg, rgba(184, 138, 107, 0.08) 0%, rgba(138, 155, 143, 0.06) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(245, 241, 235, 0.95) 0%, rgba(250, 249, 247, 0.98) 100%);
    
    /* Refined shadows */
    --shadow-soft: 0 2px 20px rgba(26, 26, 26, 0.04);
    --shadow-medium: 0 8px 40px rgba(26, 26, 26, 0.06);
    --shadow-deep: 0 16px 60px rgba(26, 26, 26, 0.08);
    --shadow-card: 0 4px 24px rgba(90, 108, 125, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--primary-charcoal);
    background: var(--warm-white);
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(250, 249, 247, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--subtle-border);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-charcoal);
    text-decoration: none;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, sans-serif;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent-terracotta);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--muted-text);
    font-weight: 400;
    font-size: 15px;
    padding: 10px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: var(--primary-charcoal);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-terracotta);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    cursor: pointer;
}

.nav-dropdown .dropdown-content {
    display: none;
}

.nav-dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-content:hover {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--muted-text);
    margin-left: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.nav-dropdown.active > a::after {
    transform: rotate(180deg);
    border-top-color: var(--accent-terracotta);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-white);
    box-shadow: var(--shadow-deep);
    min-width: 360px;
    z-index: 1001;
    border-radius: 12px;
    padding: 0;
    border: 1px solid var(--subtle-border);
    opacity: 0;
    transform: translateX(-50%) translateY(-12px) scale(0.96);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.dropdown-section {
    padding: 20px 0;
}

.dropdown-section:first-child {
    padding-top: 12px;
}

.dropdown-section:last-child {
    padding-bottom: 12px;
}

.dropdown-section-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 28px 12px 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--subtle-border);
    font-family: 'Inter', -apple-system, sans-serif;
}

.dropdown-divider {
    height: 1px;
    background: var(--subtle-border);
    margin: 12px 28px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    color: var(--muted-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    margin: 0;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background: var(--gradient-accent);
    color: var(--primary-charcoal);
    border-left-color: var(--accent-terracotta);
    transform: translateX(2px);
}

.dropdown-icon {
    font-size: 18px;
    margin-right: 14px;
    width: 24px;
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    opacity: 1;
    transform: scale(1.05);
}

.dropdown-text {
    flex: 1;
}

.dropdown-title {
    font-weight: 500;
    color: var(--primary-charcoal);
    margin-bottom: 3px;
    font-size: 15px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.dropdown-subtitle {
    font-size: 13px;
    color: var(--muted-text);
    opacity: 0.75;
    font-weight: 400;
}

.dropdown-item:hover .dropdown-title {
    color: var(--primary-charcoal);
}

.dropdown-item:hover .dropdown-subtitle {
    color: var(--accent-sage);
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 138, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 155, 143, 0.12) 0%, transparent 50%);
    z-index: 2;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--warm-white);
    max-width: 720px;
    padding: 0 32px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px) saturate(120%);
    background: rgba(26, 26, 26, 0.25);
    border-radius: 16px;
    padding: 64px 48px;
    margin: 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Crimson Text', serif;
}

.hero .subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    margin-bottom: 32px;
    opacity: 0.92;
    font-weight: 300;
    letter-spacing: 0.2px;
    font-style: italic;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.85;
    opacity: 0.88;
    max-width: 580px;
    margin: 0 auto;
    font-weight: 400;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Feature Sections */
.feature-section {
    padding: 120px 0;
    position: relative;
}

.feature-section:nth-child(even) {
    background: var(--gradient-subtle);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-text {
    padding: 56px 48px;
    background: var(--warm-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--subtle-border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-text:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(184, 138, 107, 0.2);
}

.feature-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-terracotta) 0%, var(--accent-sage) 100%);
    opacity: 0.6;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--primary-charcoal);
    line-height: 1.3;
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.3px;
}

.feature-text p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--muted-text);
    margin-bottom: 0;
    font-weight: 400;
}

.feature-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image:hover {
    transform: translateY(-6px);
}

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

.feature-image:hover img {
    transform: scale(1.03);
}

/* Split Feature */
.split-feature {
    padding: 140px 0;
    background: linear-gradient(180deg, rgba(245, 241, 235, 0.4) 0%, rgba(250, 249, 247, 0.6) 100%);
    position: relative;
}

.split-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(184, 138, 107, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 155, 143, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.split-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

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

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

.split-text {
    padding: 56px 48px;
    background: var(--warm-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--subtle-border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-text:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(184, 138, 107, 0.2);
}

.split-text h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--primary-charcoal);
    line-height: 1.2;
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.5px;
}

.split-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted-text);
    margin-bottom: 0;
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    padding: 140px 0;
    text-align: center;
    background: var(--warm-white);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(184, 138, 107, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-section h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 80px;
    color: var(--primary-charcoal);
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: var(--warm-white);
    padding: 48px 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--subtle-border);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-terracotta) 0%, var(--accent-sage) 100%);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(184, 138, 107, 0.25);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-charcoal);
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.3px;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted-text);
    margin: 0;
    font-weight: 400;
}

/* Image Gallery */
.gallery-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--deep-charcoal) 0%, #252525 100%);
    color: var(--warm-white);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(184, 138, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 155, 143, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-section .content-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-grid img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Testimonials */
.testimonials-section {
    padding: 140px 0;
    background: var(--warm-white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(184, 138, 107, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section h2 {
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 80px;
    color: var(--primary-charcoal);
    text-align: center;
    font-family: 'Crimson Text', serif;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--subtle-border);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 72px;
    color: rgba(184, 138, 107, 0.15);
    font-family: 'Crimson Text', serif;
    line-height: 1;
    font-weight: 400;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(184, 138, 107, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.testimonial-stars span {
    color: var(--accent-terracotta);
    font-size: 16px;
    letter-spacing: 3px;
    opacity: 0.7;
}

.testimonial-quote {
    font-size: 17px;
    line-height: 1.85;
    color: var(--muted-text);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-charcoal);
    border-left: 2px solid var(--accent-terracotta);
    padding-left: 16px;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.3px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--deep-charcoal) 0%, #1f1f1f 100%);
    color: var(--warm-white);
    padding: 100px 0 48px 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-terracotta) 0%, var(--accent-sage) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    font-family: 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.2px;
}

.footer-nav a:hover {
    color: var(--accent-terracotta);
    border-bottom-color: rgba(184, 138, 107, 0.3);
    transform: translateX(4px);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-legal a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-terracotta);
}

.footer-disclaimer {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 400;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    margin-left: auto;
    background: rgba(184, 138, 107, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--subtle-border);
}

.burger-menu:hover {
    background: rgba(184, 138, 107, 0.12);
    transform: scale(1.05);
}

.burger-line {
    width: 22px;
    height: 2px;
    background: var(--primary-charcoal);
    margin: 4px 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.burger-menu.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.open .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, var(--deep-charcoal) 0%, #252525 100%);
    z-index: 1000;
    padding-top: 120px;
    backdrop-filter: blur(20px);
}

.mobile-menu.open {
    display: block;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu ul {
    list-style: none;
    padding: 0 32px;
}

.mobile-menu li {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInItem 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu li:nth-child(6) { animation-delay: 0.6s; }

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

.mobile-menu a {
    display: block;
    padding: 18px 24px;
    color: var(--warm-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid transparent;
    margin-bottom: 8px;
    font-family: 'Inter', -apple-system, sans-serif;
}

.mobile-menu a:hover {
    background: rgba(184, 138, 107, 0.1);
    border-left-color: var(--accent-terracotta);
    transform: translateX(8px);
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: var(--accent-terracotta);
}

/* Unique Styles for Different Pages */
.venue-page .feature-text {
    border-left: 3px solid var(--accent-sage);
}

.venue-page .split-text {
    background: linear-gradient(135deg, var(--warm-white) 0%, rgba(138, 155, 143, 0.02) 100%);
}

.contact-page .feature-section {
    background: var(--gradient-subtle);
}

.contact-page form {
    background: var(--warm-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--subtle-border);
}

.responsible-page .feature-text h2 {
    border-bottom: 2px solid var(--accent-terracotta);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.privacy-page .feature-section h2 {
    color: var(--primary-indigo);
    position: relative;
    padding-left: 24px;
}

.privacy-page .feature-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--accent-terracotta);
    border-radius: 2px;
}

/* Enhanced Gallery Styles */
.gallery-section .gallery-grid img:nth-child(1) {
    transform: rotate(-1deg);
    transition: transform 0.6s ease;
}

.gallery-section .gallery-grid img:nth-child(2) {
    transform: rotate(1deg);
    transition: transform 0.6s ease;
}

.gallery-section .gallery-grid img:nth-child(3) {
    transform: rotate(-0.5deg);
    transition: transform 0.6s ease;
}

.gallery-section .gallery-grid img:hover {
    transform: rotate(0deg) scale(1.02) translateY(-4px);
}

/* Unique Hero Variations */
.hero-variant-1 .hero-content {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(20px);
}

.hero-variant-2 .hero-content {
    background: rgba(90, 108, 125, 0.25);
    backdrop-filter: blur(16px);
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    position: relative;
    overflow: hidden;
}

.feature-card-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-terracotta) 0%, var(--accent-sage) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card-enhanced:hover::after {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.25rem, 6vw, 3.75rem);
    }

    .feature-grid,
    .split-grid {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 20px 24px;
    }

    nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .dropdown-content {
        min-width: 300px;
        left: 20px;
        right: 20px;
        transform: none;
    }

    .dropdown-item {
        padding: 16px 24px;
    }

    .dropdown-icon {
        margin-right: 12px;
    }

    .hero {
        min-height: 75vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero .subtitle {
        font-size: clamp(1.05rem, 3vw, 1.3rem);
    }

    .hero p {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    }

    .content-container {
        padding: 0 24px;
    }

    .feature-section {
        padding: 100px 0;
    }

    .feature-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-text {
        padding: 40px 32px;
    }

    .split-feature {
        padding: 100px 0;
    }

    .split-text {
        padding: 40px 32px;
    }

    .benefits-section {
        padding: 100px 0;
    }

    .benefits-section h2 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .benefits-grid {
        gap: 36px;
    }

    .benefit-item {
        padding: 40px 28px;
    }

    .gallery-section {
        padding: 100px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .gallery-grid img {
        height: 240px;
    }

    .testimonials-section {
        padding: 100px 0;
    }

    .testimonials-section h2 {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .testimonials-grid {
        gap: 36px;
    }

    .testimonial-card {
        padding: 40px 32px;
    }

    footer {
        padding: 80px 0 40px 0;
    }

    .footer-nav {
        gap: 36px;
        margin-bottom: 60px;
    }

    .footer-legal {
        gap: 36px;
    }

    .footer-disclaimer {
        font-size: 13px;
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 24px;
    }
}
