:root {
    --color-primary: #1C1917;
    --color-bg: #FAF9F7;
    --color-text: #44403C;
    --color-border: #A8A29E;
    --color-light: #F5F5F0;
    --color-white: #FFFFFF;
    --color-accent: #A67C52;
    --color-gold: #B8860B;
    --color-gold-light: #D4AF37;
    --color-charcoal: #0D0D0D;
    --color-cream: #F7F5F2;
    --color-warm-muted: #78716C;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    --shadow-sm: 0 2px 12px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.08);
    --shadow-lg: 0 16px 48px rgba(28, 25, 23, 0.12);
    --shadow-luxury: 0 24px 64px rgba(13, 13, 13, 0.08);

    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-luxury: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container-fluid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-smooth);
}

.header-main.scrolled {
    position: fixed;
    background: rgba(247, 245, 242, 0.97);
    backdrop-filter: blur(14px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 rgba(28, 25, 23, 0.06);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-primary {
    display: flex;
    gap: var(--space-md);
}

.nav-primary a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gold);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-primary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav-primary a:hover::after {
    width: 100%;
}

.burger-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    padding: var(--space-xs);
}

.burger-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-fast);
}

.burger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

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

.burger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.hero-canvas {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(13, 13, 13, 0.75) 0%, rgba(28, 25, 23, 0.5) 50%, rgba(13, 13, 13, 0.4) 100%);
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero-title {
    font-size: 3.75rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    line-height: 1.05;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(247, 245, 242, 0.88);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.btn-primary {
    background: var(--color-cream);
    color: var(--color-charcoal);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold-light);
    color: var(--color-charcoal);
}

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

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

section {
    padding: var(--space-xl) 0;
}

.section-intro:nth-of-type(odd) {
    background: var(--color-cream);
}

.section-intro:nth-of-type(even) {
    background: var(--color-bg);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: var(--space-sm) auto 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.intro-visual:hover img {
    transform: scale(1.05);
}

.intro-text p {
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.8;
}

.section-features {
    background: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    text-align: center;
    border: 1px solid rgba(28, 25, 23, 0.06);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(184, 134, 11, 0.15);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.section-showcase {
    background: var(--color-bg);
}

.section-stats {
    background: var(--color-white);
}

.section-location {
    background: var(--color-cream);
}

.showcase-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.showcase-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.showcase-small {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    transform: translateY(var(--space-lg));
}

.showcase-medium {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.showcase-asymmetric img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.showcase-asymmetric>div:hover img {
    transform: scale(1.08);
}

.showcase-label {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: rgba(247, 245, 242, 0.92);
    padding: var(--space-sm) var(--space-md);
    border-radius: 0;
    backdrop-filter: blur(12px);
    border-left: 3px solid var(--color-gold);
}

.showcase-label h3 {
    font-size: 1rem;
    margin: 0;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-item {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(28, 25, 23, 0.06);
    border-left: 3px solid var(--color-gold);
}

.testimonial-item:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-warm-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-warm-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-cta {
    background: var(--color-charcoal);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(184, 134, 11, 0.06) 100%);
    pointer-events: none;
}

.cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.section-cta .btn-primary {
    color: var(--color-charcoal);
    background: var(--color-cream);
    border-color: var(--color-gold-light);
}

.section-cta .btn-primary:hover {
    background: var(--color-white);
    border-color: var(--color-gold);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.location-info p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.location-info i {
    color: var(--color-gold);
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.footer-compact {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-nav {
    display: flex;
    gap: var(--space-md);
}

.footer-nav a {
    font-size: 0.8rem;
    color: rgba(247, 245, 242, 0.75);
    transition: color var(--transition-fast);
    letter-spacing: 0.03em;
}

.footer-nav a:hover {
    color: var(--color-gold-light);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(247, 245, 242, 0.6);
    letter-spacing: 0.02em;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-cream);
    box-shadow: 0 -4px 24px rgba(13, 13, 13, 0.08);
    padding: var(--space-md);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
    border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.privacy-popup.show {
    transform: translateY(0);
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.popup-content p {
    flex: 1;
    font-size: 0.85rem;
    margin: 0;
}

.popup-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.popup-link {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-decoration: underline;
}

.popup-accept {
    padding: 0.65rem 1.5rem;
    background: var(--color-charcoal);
    color: var(--color-cream);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.popup-accept:hover {
    background: var(--color-primary);
    color: var(--color-cream);
}

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-luxury);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(28, 25, 23, 0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(184, 134, 11, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: var(--space-md);
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.product-description {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: var(--space-lg) auto;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(28, 25, 23, 0.06);
}

.contact-form-wrapper .section-heading::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin-top: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.form-checkbox input {
    margin-top: 0.2rem;
}

.form-checkbox label {
    font-size: 0.8rem;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--color-charcoal);
    color: var(--color-cream);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.form-submit:hover {
    background: var(--color-primary);
    color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.thankyou-wrapper {
    text-align: center;
    max-width: 600px;
    margin: var(--space-xl) auto;
    padding: var(--space-lg);
}

.thankyou-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.thankyou-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.thankyou-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.error-wrapper {
    text-align: center;
    max-width: 600px;
    margin: var(--space-xl) auto;
    padding: var(--space-lg);
}

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-wrapper h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.error-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.policy-content ul {
    margin-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.policy-content li {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

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

@media (max-width: 1024px) {

    .intro-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .showcase-asymmetric {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .showcase-large,
    .showcase-small,
    .showcase-medium {
        grid-column: 1;
        grid-row: auto;
        transform: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-primary {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: black;
        flex-direction: column;
        padding: var(--space-xl) var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-smooth);
    }

    .nav-primary.active {
        right: 0;
    }

    .burger-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }

    .popup-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .features-grid,
    .product-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.luxury-thanks {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-bg) 100%);
}

.thanks-luxury-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.thanks-icon-luxury {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    animation: scaleIn 0.6s ease-out;
}

.thanks-title-luxury {
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.thanks-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: var(--space-md) auto;
}

.thanks-text-luxury {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.thanks-subtext {
    font-size: 0.95rem;
    color: var(--color-border);
    margin-bottom: var(--space-lg);
}

.thanks-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.luxury-error {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-bg) 100%);
}

.error-luxury-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.error-code-luxury {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.1;
}

.error-title-luxury {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.error-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: var(--space-md) auto;
}

.error-text-luxury {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.error-subtext {
    font-size: 0.95rem;
    color: var(--color-border);
    margin-bottom: var(--space-lg);
}

.error-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.luxury-policy {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-bg) 100%);
}

.policy-luxury-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.policy-hero-luxury {
    text-align: center;
    background: var(--color-white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.policy-title-luxury {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.policy-divider-luxury {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: var(--space-md) auto;
}

.policy-date-luxury {
    font-size: 0.9rem;
    color: var(--color-border);
}

.policy-content-luxury {
    background: var(--color-white);
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.policy-heading-luxury {
    font-size: 2rem;
    color: var(--color-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-light);
}

.policy-heading-luxury:first-child {
    margin-top: 0;
}

.policy-text-luxury {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.policy-list-luxury {
    margin-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.policy-list-luxury li {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-xs);
}

.policy-contact-luxury {
    background: var(--color-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.policy-contact-luxury p {
    margin: 0;
    line-height: 1.8;
}

.policy-contact-luxury a {
    color: var(--color-primary);
    font-weight: 500;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Best responsive experience at 320px (small phones) */
@media (max-width: 320px) {
    html {
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        min-width: 280px;
        overflow-x: hidden;
        -webkit-text-size-adjust: 100%;
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    }

    .container-fluid {
        width: 92%;
        max-width: 320px;
        padding-left: max(0.5rem, env(safe-area-inset-left, 0));
        padding-right: max(0.5rem, env(safe-area-inset-right, 0));
    }

    /* Header & nav (with safe-area for notched devices) */
    .header-main {
        padding: 0.6rem max(0.5rem, env(safe-area-inset-right, 0)) 0.6rem max(0.5rem, env(safe-area-inset-left, 0));
    }

    .privacy-popup {
        padding: 1rem max(0.5rem, env(safe-area-inset-right, 0)) max(1rem, env(safe-area-inset-bottom, 0)) max(0.5rem, env(safe-area-inset-left, 0));
    }

    .logo-brand a {
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .nav-primary {
        width: 85%;
        max-width: 280px;
        padding: 3rem 1rem 2rem;
    }

    .nav-primary a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .burger-toggle {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }

    /* Hero */
    .hero-canvas {
        min-height: 320px;
    }

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

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        letter-spacing: 0.02em;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    /* Sections */
    section {
        padding: 2rem 0;
    }

    .section-heading {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .section-heading.centered::after {
        width: 32px;
        margin-top: 0.5rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Intro grid */
    .intro-grid {
        gap: 1.5rem;
    }

    .intro-text p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .intro-visual {
        border-radius: var(--radius-md);
    }

    /* Features */
    .features-grid {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .feature-card {
        padding: 1rem;
        min-width: 0;
    }

    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.8125rem;
        line-height: 1.55;
    }

    /* Product grid */
    .product-grid {
        gap: 1.5rem;
        margin-top: 1.25rem;
    }

    .product-card {
        min-width: 0;
    }

    .product-image {
        height: 260px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .product-price {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .product-info .btn-primary {
        width: 100%;
    }

    /* Showcase */
    .showcase-asymmetric {
        gap: 0.75rem;
    }

    .showcase-label {
        padding: 0.5rem 0.75rem;
        bottom: 0.5rem;
        left: 0.5rem;
    }

    .showcase-label h3 {
        font-size: 0.875rem;
        letter-spacing: 0.04em;
    }

    /* Testimonials */
    .testimonials-slider {
        gap: 1rem;
        margin-top: 1.25rem;
    }

    .testimonial-item {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    /* Stats */
    .stats-grid {
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.6875rem;
        letter-spacing: 0.06em;
    }

    /* CTA */
    .cta-heading {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    /* Location */
    .location-grid {
        gap: 1.25rem;
        margin-top: 1.25rem;
    }

    .location-info h3 {
        font-size: 1.2rem;
    }

    .location-info p {
        font-size: 0.8125rem;
        flex-wrap: wrap;
    }

    .location-map iframe {
        min-height: 280px;
    }

    .location-info .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Contact form */
    .contact-form-wrapper {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .contact-form-wrapper .section-heading {
        font-size: 1.35rem;
    }

    .contact-form-wrapper .section-heading::after {
        width: 32px;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
        /* prevents zoom on focus in iOS */
    }

    .form-submit {
        padding: 0.875rem 1rem;
        font-size: 0.6875rem;
        letter-spacing: 0.08em;
        min-height: 48px;
    }

    /* Footer */
    .footer-compact {
        padding: 1.25rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-nav a {
        font-size: 0.8125rem;
        min-height: 44px;
        align-items: center;
        display: inline-flex;
    }

    .footer-brand {
        font-size: 0.9375rem;
        letter-spacing: 0.05em;
    }

    .footer-copy {
        font-size: 0.6875rem;
    }

    .footer-copy p {
        word-break: break-word;
    }

    /* Privacy popup */
    .privacy-popup {
        padding: 1rem 0.5rem;
    }

    .popup-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .popup-content p {
        font-size: 0.8125rem;
    }

    .popup-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .popup-accept {
        padding: 0.75rem;
        min-height: 44px;
    }

    .popup-link {
        font-size: 0.75rem;
    }

    /* Policy / thank you / error (luxury variants) */
    .policy-title-luxury {
        font-size: 2rem;
    }

    .policy-heading-luxury {
        font-size: 1.35rem;
    }

    .policy-content-luxury,
    .policy-hero-luxury {
        padding: 1.25rem 1rem;
    }

    .thanks-title-luxury {
        font-size: 1.5rem;
    }

    .thanks-luxury-wrapper,
    .error-luxury-wrapper {
        padding: 1.5rem 1rem;
    }

    .error-code-luxury {
        font-size: 5rem;
    }

    .error-title-luxury {
        font-size: 1.5rem;
    }

    /* Prevent overflow */
    h1,
    h2,
    h3,
    .hero-title,
    .cta-heading,
    .section-heading {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Scroll margin for anchor links (fixed header) */
    main section[id] {
        scroll-margin-top: 4rem;
    }

    /* Footer safe-area on devices with home indicator */
    .footer-compact {
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
    }
}