/* ============================================
   ANIKA'S SWEET CAKES — STYLESHEET
   Plum + Amber | Vibrant Modern | Geometric
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-deep: #3D1A36;
    --plum: #6B2D5B;
    --plum-light: #8B4578;
    --plum-muted: #A86294;
    --plum-pale: #E8D5E4;
    --plum-bg: #FDF5FA;
    
    --amber: #F5A623;
    --amber-light: #F7C060;
    --amber-pale: #FFF3D6;
    --amber-glow: #FFD97D;
    
    --cream: #FFFBF5;
    --warm-white: #FFF9F0;
    --off-white: #FAF5F0;
    
    --text-dark: #1A0A14;
    --text-body: #3D2035;
    --text-muted: #7A5070;
    --text-light: #A8809A;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(107, 45, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 45, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 45, 91, 0.15);
    --shadow-xl: 0 30px 80px rgba(107, 45, 91, 0.18);
    
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

ul {
    list-style: none;
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: 10%;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 208px solid var(--plum);
    opacity: 0.04;
    top: 40%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    opacity: 0.05;
}

.geo-square--1 {
    width: 100px;
    height: 100px;
    background: var(--amber);
    top: 60%;
    left: 8%;
    transform: rotate(45deg);
}

.geo-square--2 {
    width: 60px;
    height: 60px;
    background: var(--plum);
    top: 20%;
    left: 15%;
    transform: rotate(20deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--amber) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.15;
    bottom: 30%;
    right: 10%;
}

/* --- Typography --- */
.text-gradient {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 50%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Tag --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-pale);
    padding: 0.4em 1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.9em 1.8em;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(107, 45, 91, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(107, 45, 91, 0.45);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

.btn--large {
    padding: 1em 2.2em;
    font-size: 1rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-icon {
    font-size: 1.6rem;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--plum);
}

.nav-logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    padding: 0.5em 1em;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: #fff !important;
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 45, 91, 0.3);
    background: linear-gradient(135deg, var(--plum-light) 0%, var(--plum) 100%);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--plum);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--plum-deep) 0%, 
        var(--plum) 30%, 
        var(--plum-light) 60%, 
        var(--amber) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 69, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5em 1.2em;
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-headline-accent {
    display: block;
    font-size: 0.55em;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--amber-glow);
    margin-top: 0.3em;
    line-height: 1.4;
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber-glow);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 500px;
    height: 620px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-xl) + 3px);
    background: linear-gradient(135deg, var(--amber) 0%, var(--plum) 100%);
    z-index: -1;
    opacity: 0.6;
}

.hero-floating-card {
    position: absolute;
    bottom: 3rem;
    left: -2rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    font-size: 1.8rem;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.floating-card-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--plum);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- About Section --- */
.about {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-geometric {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--plum-pale);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    position: relative;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Images */
.about-image {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

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

.about-image-secondary {
    position: relative;
    margin-top: 3rem;
}

.about-image-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--text-dark);
    padding: 0.6em 1.2em;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    display: block;
    text-align: center;
    opacity: 0.7;
}

.about-badge-text {
    display: block;
    text-align: center;
}

.about-geo-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--amber);
    opacity: 0.15;
    top: 1rem;
    right: -1rem;
    transform: rotate(30deg);
    border-radius: var(--radius-sm);
}

/* --- Menu Section --- */
.menu {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.menu-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 0.6em 1.5em;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 2px solid var(--plum-pale);
    transition: all var(--transition-fast);
}

.menu-cat-btn:hover {
    color: var(--plum);
    border-color: var(--plum);
}

.menu-cat-btn--active {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: #fff;
    border-color: var(--plum);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(107, 45, 91, 0.06);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.menu-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--amber);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3em 0.8em;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-card-tag--new {
    background: var(--plum);
    color: #fff;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.menu-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.menu-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--plum);
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    transition: gap var(--transition-fast);
}

.menu-card-link:hover {
    gap: 0.6em;
}

/* Menu CTA */
.menu-cta {
    margin-top: 2rem;
}

.menu-cta-card {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--plum-light) 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.menu-cta-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.menu-cta-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -80px;
    left: 10%;
}

.menu-cta-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.menu-cta-text h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.menu-cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 400px;
}

.menu-cta .btn--primary {
    background: var(--amber);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.menu-cta .btn--primary:hover {
    background: var(--amber-light);
}

/* --- Gallery Section --- */
.gallery {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 26, 54, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-overlay span {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
    overflow: hidden;
}

.testimonials-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(245, 166, 35, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.testimonials-content {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-content .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-card--featured {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--amber);
    transform: scale(1.03);
}

.testimonial-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Contact Section --- */
.contact {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
    background: var(--off-white);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2em;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 500;
}

.contact-detail-value a {
    color: var(--plum);
}

.contact-detail-value a:hover {
    color: var(--plum-light);
    text-decoration: underline;
}

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

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 45, 91, 0.06);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 0.4em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85em 1em;
    border: 2px solid var(--plum-pale);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107, 45, 91, 0.1);
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 1rem;
    font-weight: 700;
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* --- Footer --- */
.footer {
    background: var(--plum-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    font-size: 1.6rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-link-group h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber);
    margin-bottom: 1rem;
}

.footer-link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-group li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-link-group li a:hover {
    color: #fff;
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-location {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image-wrapper img {
        width: 380px;
        height: 470px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .gallery-item--tall {
        grid-row: span 1;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-card--featured {
        transform: none;
    }
    
    .testimonial-card--featured:hover {
        transform: translateY(-4px);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        sticky: none;
        top: auto;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem;
    }
    
    .menu-cta .btn--primary {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0.3rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        padding: 0.8em 1em;
        border-radius: var(--radius-md);
    }
    
    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }
    
    .hero-image-wrapper img {
        width: 100%;
        height: 400px;
    }
    
    .hero-floating-card {
        left: 1rem;
        bottom: 1rem;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .menu-categories {
        gap: 0.4rem;
    }
    
    .menu-cat-btn {
        padding: 0.5em 1em;
        font-size: 0.82rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
