/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --primary: #D6A99D;
    --secondary: #9CAFAA;
    --accent-cream: #FBF3D5;
    --sage: #D6DAC8;
    --dark-color: #3d4845;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(214, 169, 157, 0.15);
    --shadow-lg: 0 20px 60px rgba(214, 169, 157, 0.2);
    --gradient: linear-gradient(135deg, #D6A99D 0%, #9CAFAA 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    opacity: 0;
    animation: fadeInPage 0.6s ease-in forwards;
}

body.nav-open {
    overflow: hidden;
}

@keyframes fadeInPage {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 56px);
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.navbar.scrolled {
    background: var(--accent-cream);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(214, 169, 157, 0.2);
}

.nav-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.1s ease;
    z-index: 10;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.navbar.scrolled .logo-img {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(214, 169, 157, 0.2));
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
    text-shadow: none;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    letter-spacing: 1px;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link::after {
    background: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.btn-order {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-order:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .btn-order {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.navbar.scrolled .btn-order:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.nav-close {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding: clamp(100px, 15vh, 150px) 0 clamp(80px, 12vh, 120px);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.35) 0%, rgba(156, 175, 170, 0.25) 50%, rgba(214, 169, 157, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.8s ease;
    letter-spacing: clamp(1.5px, 0.3vw, 3px);
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-logo {
    max-width: clamp(180px, 30vw, 420px);
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both, subtleFloat 4s ease-in-out 2s infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) brightness(1.05);
    transition: all 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8)) brightness(1.15);
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.hero-title {
    margin-bottom: 0;
    animation: fadeInUp 1s ease 0.4s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.6s both;
    letter-spacing: 2px;
    text-transform: none;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-typed-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    min-height: 1.4em;
}

.hero-typed-text {
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 600;
}

.hero-typed-cursor {
    width: 2px;
    height: 1.3em;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    animation: blink 0.9s steps(2, start) infinite;
    margin-left: 2px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.hero-description {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.8s both;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(10px, 3vh, 25px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 1vh, 8px);
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.55rem, 0.8vw, 0.65rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 3;
    animation: fadeIn 1s ease 1.5s both;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.8);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* btn-primary on light backgrounds */
.order .btn-primary,
.contact .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    backdrop-filter: none;
}

.order .btn-primary:hover,
.contact .btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(214, 169, 157, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Input Focus States */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}



/* Section Title */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
}

.section-title::after {
    content: '✦';
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 1.5rem auto 0;
    opacity: 0.6;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Menu Section */
.menu {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--accent-cream) 100%);
    position: relative;
}

.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.menu-tagline {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(214, 169, 157, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.menu-item {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(214, 169, 157, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(214, 169, 157, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(214, 169, 157, 0.25);
    border-color: var(--primary);
}

.menu-item-image {
    height: 320px;
    overflow: hidden;
    background: var(--sage);
    position: relative;
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(214, 169, 157, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.menu-hover-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-item:hover .menu-hover-text {
    transform: translateY(0);
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    filter: brightness(1.05) saturate(1.15);
}

.menu-item:hover .menu-img {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.menu-item-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
}

.menu-item-content p {
    color: #5a6662;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(214, 169, 157, 0.15);
}

.menu-tag {
    background: var(--gradient);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(214, 169, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.menu-tag::before {
    content: '✦';
    margin-right: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.8;
}

.menu-item:hover .menu-tag {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 169, 157, 0.4);
}

.menu-pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(214, 169, 157, 0.12);
    border: 2px solid rgba(214, 169, 157, 0.15);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(214, 169, 157, 0.2);
}

.pricing-icon {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.1), rgba(156, 175, 170, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(214, 169, 157, 0.2), rgba(156, 175, 170, 0.2));
}

.pricing-icon svg {
    color: var(--primary);
    stroke: var(--primary);
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.pricing-card p {
    margin: 0.5rem 0;
}

.pricing-card strong {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-subtext {
    color: #5a6662;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}



.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-cream) 0%, rgba(251, 243, 213, 0.5) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(214, 169, 157, 0.2);
}

.feature-icon-circle svg {
    color: var(--primary);
    stroke: var(--primary);
}

.about-feature-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.about-feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(214, 169, 157, 0.2);
}

.stat {
    text-align: center;
    position: relative;
}

.stat::before {
    content: '✦';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.4;
}

.stat h3 {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Image Carousel */
.about-images {
    position: relative;
}

.about-image-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(214, 169, 157, 0.3);
}

.carousel-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: var(--accent-cream);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

/* Order Section */
.order {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--white);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(214, 169, 157, 0.15);
    border: 2px solid rgba(214, 169, 157, 0.1);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--secondary);
    font-size: 0.95rem;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(214, 169, 157, 0.2);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--accent-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(214, 169, 157, 0.1);
}



.btn-submit {
    width: 100%;
    margin-top: 1rem;
}



/* Testimonials Section */
.testimonials {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 20rem;
    color: rgba(214, 169, 157, 0.05);
    font-family: 'Cormorant Garamond', serif;
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--accent-cream);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(214, 169, 157, 0.12);
    border: 2px solid rgba(214, 169, 157, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(214, 169, 157, 0.2);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: var(--accent-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    position: relative;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(214, 169, 157, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(214, 169, 157, 0.15);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--secondary) 50%,
            var(--primary) 100%);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    width: 100%;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(214, 169, 157, 0.3);
    border-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.dev-credit {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    margin-top: 0.3rem;
}

.dev-credit a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-credit a:hover {
    color: var(--primary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}


/* Small Laptop / Short Viewport */
@media (max-height: 800px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-logo {
        max-width: clamp(160px, 25vw, 300px);
        margin-bottom: 1rem;
    }

    .hero-badge {
        margin-bottom: 0.75rem;
        padding: 0.35rem 1.2rem;
        font-size: 0.6rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-buttons {
        margin-bottom: 0;
    }

    .scroll-indicator {
        bottom: 6px;
        gap: 3px;
        font-size: 0.5rem;
    }

    .scroll-line {
        height: 20px;
    }
}

/* Tablet / Small Laptop Width */
@media (max-width: 1024px) {
    .hero-description {
        max-width: 480px;
        font-size: 0.85rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hide logo on mobile until scrolled */
    .logo-img {
        opacity: 0;
        pointer-events: none;
    }

    .navbar.scrolled .logo-img {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        background: rgba(251, 243, 213, 0.95);
        backdrop-filter: blur(22px);
        width: 100%;
        text-align: center;
        transition: transform 0.45s ease, opacity 0.45s ease;
        box-shadow: none;
        padding: 6rem 2rem 3rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
        height: 100vh;
        align-items: center;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-close {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.4);
        align-items: center;
        justify-content: center;
        z-index: 1001;
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .nav-close span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--white);
    }

    .nav-close span:first-child {
        transform: rotate(45deg);
    }

    .nav-close span:last-child {
        transform: rotate(-45deg);
    }

    .nav-menu.active~.nav-close {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0.25rem 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 0.75rem 0;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(50, 50, 50, 0.9);
        text-shadow: none;
    }

    .nav-menu .btn-order {
        display: inline-flex;
        justify-content: center;
        margin-top: 1.5rem;
        font-size: 1rem;
        letter-spacing: 2px;
        width: auto;
        padding: 1rem 3rem;
        border-width: 2px;
        border-color: rgba(50, 50, 50, 0.4);
        color: rgba(50, 50, 50, 0.85);
        background: transparent;
        backdrop-filter: none;
    }

    .hero-subtitle {
        letter-spacing: 1px;
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
        font-size: 1.1rem;
    }

    .hero-logo {
        margin-bottom: 1.25rem;
    }

    .hero-description {
        padding: 0 0.5rem;
        font-size: 1rem;
        line-height: 1.8;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        margin-bottom: 2rem;
    }

    .hero-typed-wrapper {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 0.85rem;
        margin: 0 auto;
    }

    .scroll-line {
        height: 25px;
    }

    .scroll-indicator {
        bottom: 8px;
        font-size: 0.5rem;
        gap: 3px;
    }

    .hero-badge {
        padding: 0.5rem 1.4rem;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
    }

    .order-form {
        padding: 2rem 1rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about-features {
        padding: 1.5rem;
    }

    .about-feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .about-stats {
        gap: 1rem;
        padding-top: 2rem;
    }

    .stat::before {
        top: -20px;
        font-size: 0.8rem;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .carousel-container {
        padding-bottom: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}



/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
    z-index: 1001;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Disabled submit button while a form is being submitted */
.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* Launch overrides */
:root {
    --font-sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
.hero-badge,
.hero-subtitle,
.hero-description,
.btn,
.menu-tagline,
.pricing-card p,
.section-subtitle,
.section-tagline,
.faq-question,
.testimonial-text,
.testimonial-author span,
.contact-kicker,
.contact-meta,
.footer-contact,
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
}

.section-title,
.logo-text,
.menu-item-content h3,
.stat h3,
.bespoke-card-content h3,
.privacy-card h3,
.contact-value,
.footer-col h4 {
    font-family: var(--font-serif);
}

.section-title,
.hero-title,
.bespoke-card-content h3,
.contact-value {
    text-wrap: balance;
}

.section-subtitle,
.hero-description,
.testimonial-text,
.faq-answer p,
.contact-meta {
    text-wrap: pretty;
}

.hero-subtitle {
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-typed-text {
    letter-spacing: 0.04em;
}

.hero-description {
    max-width: 44rem;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.82;
    font-weight: 400;
}

.btn {
    letter-spacing: 0.11em;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.15rem, 4.8vw, 3.85rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
}

.section-title::after {
    content: "\2022";
}

.section-title::after {
    content: "•";
    margin-top: 1rem;
}

.section-subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.45vw, 1.12rem);
    line-height: 1.75;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-tagline {
    letter-spacing: 0.18em;
    font-size: 0.76rem;
}

.menu-tagline {
    letter-spacing: 0.14em;
}

.nav-link {
    letter-spacing: 0.06em;
}

.contact-info {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.contact-item {
    display: block;
}

.contact-link {
    display: block;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(214, 169, 157, 0.28);
    border-radius: 24px;
    padding: 1.35rem 1.4rem 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 14px 36px rgba(214, 169, 157, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(214, 169, 157, 0.16);
    border-color: rgba(214, 169, 157, 0.44);
    background: rgba(255, 255, 255, 0.92);
}

.contact-link-static {
    cursor: default;
}

.contact-link-static:hover,
.contact-link-static:focus-visible {
    transform: none;
}

.contact-kicker {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-value {
    display: block;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    line-height: 1.08;
    margin-bottom: 0.4rem;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-meta {
    display: block;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.65;
}

.contact-form {
    border-radius: 24px;
    border: 1px solid rgba(214, 169, 157, 0.18);
    box-shadow: 0 20px 52px rgba(214, 169, 157, 0.14);
}

.footer-contact {
    display: grid;
    gap: 0.7rem;
}

.footer-contact li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    font-weight: 700;
}

.testimonial-text {
    font-size: 1.04rem;
    line-height: 1.85;
}

[hidden] {
    display: none !important;
}

.skip-link-wrapper {
    position: relative;
    z-index: 2000;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    background: var(--dark-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.hamburger,
.footer-legal-button,
.carousel-dot {
    border: 0;
    background: transparent;
}

.hamburger {
    padding: 0;
}

.contact-item a,
.footer-contact a,
.privacy-card a {
    color: inherit;
}

.bespoke-section {
    overflow: hidden;
}

.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bespoke-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(214, 169, 157, 0.14);
    border: 1px solid rgba(214, 169, 157, 0.18);
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
}

.bespoke-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.bespoke-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(214, 169, 157, 0.2);
}

.bespoke-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.bespoke-card-content {
    padding: 2rem;
}

.bespoke-card-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2vw, 2rem);
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.bespoke-card-content p {
    color: var(--text-light);
}

.bespoke-cta {
    margin-top: 1.25rem;
}

.bespoke-pricing {
    margin-top: 2.5rem;
}

.faq-answer ul {
    padding: 0 2rem 1.5rem 3rem;
    color: var(--text-light);
}

.privacy-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, rgba(251, 243, 213, 0.55), rgba(255, 255, 255, 0.96));
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(214, 169, 157, 0.2);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(214, 169, 157, 0.08);
}

.privacy-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.privacy-card p {
    color: var(--text-light);
}

.privacy-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.cookie-banner {
    position: fixed;
    inset: auto 20px 20px;
    z-index: 2000;
    display: flex;
    justify-content: center;
}

.cookie-banner__content {
    max-width: 760px;
    background: rgba(61, 72, 69, 0.96);
    color: var(--white);
    border-radius: 24px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-banner__content p {
    flex: 1;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-button {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font: inherit;
}

.footer-legal-button:hover,
.footer-legal-button:focus-visible {
    color: var(--primary);
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: min(420px, calc(100vw - 40px));
}

.success-message.is-error {
    background: #b84034;
}

.success-message.is-exiting {
    animation: slideOut 0.5s ease forwards;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .bespoke-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        line-height: 1.04;
    }

    .section-subtitle {
        margin-bottom: 2.5rem;
    }

    .cookie-banner {
        inset: auto 12px 12px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 0.85rem;
    }

    .contact-link {
        border-radius: 20px;
        padding: 1.15rem 1.05rem 1.05rem;
    }

    .contact-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .contact-value {
        font-size: clamp(1.35rem, 7vw, 1.75rem);
    }

    .contact-meta {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .nav-menu a {
        font-size: 1.16rem;
        letter-spacing: 0.12em;
        text-transform: none;
    }

    .nav-menu .btn-order {
        letter-spacing: 0.1em;
    }

    .faq-answer ul {
        padding: 0 1.5rem 1.5rem 2.5rem;
    }
}
