:root {
    --color-plum: #6B2F5B;
    --color-plum-dark: #4E1F42;
    --color-plum-light: #8B4578;
    --color-plum-deep: #3D1736;
    --color-amber: #E8963E;
    --color-amber-light: #F5B872;
    --color-amber-dark: #C47A28;
    --color-cream: #FFF8F0;
    --color-warm-white: #FFFAF5;
    --color-dark: #1A0A14;
    --color-text: #2D1525;
    --color-text-light: #6B4A60;
    --color-border: rgba(107, 47, 91, 0.15);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 47, 91, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 47, 91, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-plum);
}

.logo--light {
    color: var(--color-cream);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--color-amber);
}

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

.logo--light .logo-accent {
    color: var(--color-amber-light);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--color-plum);
    background: rgba(107, 47, 91, 0.06);
}

.nav-link--cta {
    background: var(--color-plum);
    color: var(--color-cream) !important;
    margin-left: 8px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--color-plum);
    overflow: hidden;
    padding: 120px 0 0;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape--circle-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 150, 62, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.shape--circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 184, 114, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
}

.shape--rect-1 {
    width: 200px;
    height: 200px;
    background: rgba(232, 150, 62, 0.08);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    top: 200px;
    left: 5%;
}

.shape--tri-1 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(232, 150, 62, 0.06);
    top: 300px;
    right: 10%;
    transform: rotate(-15deg);
}

.shape--dots {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-magazine {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 120px);
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-amber-light);
    margin-bottom: 24px;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--color-amber);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-cream);
    margin-bottom: 24px;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--color-amber);
    font-style: italic;
}

.headline-highlight {
    background: linear-gradient(135deg, var(--color-amber-light) 0%, var(--color-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subhead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 248, 240, 0.75);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--color-amber);
    color: var(--color-dark);
    border-color: var(--color-amber);
}

.btn--primary:hover {
    background: var(--color-amber-light);
    border-color: var(--color-amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 150, 62, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(255, 248, 240, 0.4);
}

.btn--outline:hover {
    border-color: var(--color-cream);
    background: rgba(255, 248, 240, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img--main {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
}

.hero-img--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--accent {
    width: 220px;
    height: 260px;
    bottom: 40px;
    left: 0;
    border: 4px solid var(--color-plum);
}

.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 280px;
    right: 20px;
    background: var(--color-amber);
    color: var(--color-dark);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── FEATURES ── */
.features {
    padding: 100px 0;
    background: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card--amber {
    background: var(--color-amber);
    color: var(--color-dark);
}

.feature-card--plum {
    background: var(--color-plum);
    color: var(--color-cream);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    opacity: 0.85;
}

/* ── MENU ── */
.menu {
    position: relative;
    padding: 100px 0;
    background: var(--color-warm-white);
    overflow: hidden;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(107, 47, 91, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 150, 62, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-amber-dark);
    background: rgba(232, 150, 62, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--color-cream);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-plum);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--color-cream);
}

.section-title--dark {
    color: var(--color-plum-deep);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-subtitle--dark {
    color: rgba(45, 21, 37, 0.65);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.menu-item--reverse .menu-item-image {
    order: 2;
}

.menu-item--reverse .menu-item-content {
    order: 1;
}

.menu-item-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-item-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 47, 91, 0.1) 0%, transparent 60%);
}

.menu-item-content {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.menu-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-plum);
}

.menu-item-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-amber);
    color: var(--color-dark);
    padding: 4px 12px;
    border-radius: 50px;
}

.menu-item-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding: 20px 28px;
    background: rgba(107, 47, 91, 0.06);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-amber);
    font-size: 0.9rem;
    color: var(--color-text-light);
    position: relative;
    z-index: 1;
}

.menu-note svg {
    width: 20px;
    height: 20px;
    color: var(--color-amber-dark);
    flex-shrink: 0;
}

/* ── ABOUT ── */
.about {
    padding: 100px 0;
    background: var(--color-plum);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.about-visual {
    position: relative;
    height: 580px;
}

.about-img-main {
    position: absolute;
    width: 75%;
    height: 420px;
    top: 0;
    left: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    width: 55%;
    height: 280px;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-plum);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -20px;
    right: 30%;
    background-image: radial-gradient(var(--color-amber) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.4;
    pointer-events: none;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.78);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 248, 240, 0.15);
}

.signature-name {
    display: block;
    font-family: var(--font-display), serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-amber);
    margin-bottom: 4px;
}

.signature-role {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── FLAVORS ── */
.flavors {
    padding: 100px 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.flavors-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 80%, rgba(107, 47, 91, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(232, 150, 62, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.flavors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.flavor-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-warm-white);
    border: 2px solid var(--color-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.25s ease;
    cursor: default;
}

.flavor-chip:hover {
    border-color: var(--color-plum);
    background: rgba(107, 47, 91, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.flavor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.flavor-dot--grape { background: #7B2D8B; }
.flavor-dot--cherry { background: #C41E3A; }
.flavor-dot--lemon { background: #F5D840; }
.flavor-dot--watermelon { background: #FF6B6B; }
.flavor-dot--blue { background: #4A90D9; }
.flavor-dot--orange { background: #E8963E; }
.flavor-dot--strawberry { background: #E84393; }
.flavor-dot--lime { background: #7BC74D; }
.flavor-dot--cola { background: #3D1C02; }
.flavor-dot--mango { background: #FF9F1C; }
.flavor-dot--coconut { background: #E8DCC8; border: 1px solid #ccc; }
.flavor-dot--bubblegum { background: #FF8EC4; }
.flavor-dot--mixed { background: linear-gradient(135deg, #E84393, #7B2D8B); }
.flavor-dot--secret { background: var(--color-plum); animation: pulse 2s infinite; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.flavors-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.flavors-cta p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.flavors-cta strong {
    color: var(--color-plum);
}

/* ── VISIT ── */
.visit {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    padding: 48px;
    background: var(--color-plum);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.visit-info::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(232, 150, 62, 0.08);
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
    pointer-events: none;
}

.visit-info .section-tag {
    margin-bottom: 16px;
}

.visit-info .section-title {
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(232, 150, 62, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber-light);
}

.visit-detail-icon svg {
    width: 22px;
    height: 22px;
}

.visit-detail-text strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber-light);
    margin-bottom: 4px;
}

.visit-detail-text p {
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
    line-height: 1.6;
}

.visit-detail-text a {
    color: rgba(255, 248, 240, 0.8);
    transition: color 0.2s;
}

.visit-detail-text a:hover {
    color: var(--color-amber-light);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

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

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

/* ── CONTACT ── */
.contact {
    padding: 100px 0;
    background: var(--color-plum-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

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

.contact-left .section-tag {
    margin-bottom: 16px;
}

.contact-left .section-title {
    margin-bottom: 16px;
}

.contact-text {
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 248, 240, 0.8);
    transition: color 0.2s, transform 0.2s;
}

.contact-link:hover {
    color: var(--color-amber-light);
    transform: translateX(4px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-amber);
    flex-shrink: 0;
}

.contact-right {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 248, 240, 0.6);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-cream);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder {
    color: rgba(255, 248, 240, 0.35);
}

.form-input:focus {
    border-color: var(--color-amber);
    background: rgba(255, 255, 255, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius-sm);
    color: #81C784;
    font-size: 0.9rem;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-plum-deep);
    color: var(--color-cream);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-amber-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-amber-light);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(255, 248, 240, 0.6);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--color-amber-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.4);
}

.footer-bottom a {
    color: rgba(255, 248, 240, 0.4);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--color-amber-light);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-magazine {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 400px;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        grid-template-columns: 1fr;
    }

    .menu-item--reverse .menu-item-image {
        order: 0;
    }

    .menu-item--reverse .menu-item-content {
        order: 0;
    }

    .menu-item-image {
        height: 240px;
    }

    .about-visual {
        height: 320px;
    }

    .about-img-main {
        width: 80%;
        height: 300px;
    }

    .about-img-secondary {
        width: 60%;
        height: 200px;
    }

    .visit-info {
        padding: 32px;
    }

    .contact-right {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

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

    .flavor-chip {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}
