/* ========================================
   PEENUT WAFFLE – AWARD-WINNING LUXURY
   Apple Minimalism × Futuristic Maximalism
   Dark Obsidian + Champagne Gold + Blush Pink
   Glassmorphism • Micro-interactions • Lenis
   ======================================== */

@import url('https://api.fontshare.com/v2/css?f[]=crimson-pro@700&display=swap');

/* ========================================
   CSS Variables – Dual Theme
   ======================================== */
:root {
    /* Light Palette */
    --bg: #fff5ee;
    --bg-alt: #f8f8ff;
    --bg-warm: #ffffff;

    /* Dark Palette */
    --dark: #1a1a1a;
    --dark-surface: #242424;
    --dark-elevated: #2f2f2f;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-text: rgba(255, 255, 255, 0.9);
    --dark-text-muted: rgba(255, 255, 255, 0.6);

    /* Brand */
    --primary: #000000;
    --primary-dark: #333333;
    --primary-light: #e0e0e0;
    --gold: #000000;
    --gold-light: #e0e0e0;

    /* Text */
    --text-dark: #1f1f1f;
    --text-muted: #555555;
    --text-light: #999999;
    --white: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(0, 0, 0, 0.12);

    /* Fonts */
    --font-display: 'Crimson Pro', serif;
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Helvetica', Arial, sans-serif;
    --font-sans: 'Helvetica', Arial, sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-pink: 0 8px 32px rgba(255, 22, 108, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 22, 108, 0.15);

    /* Glass */
    --glass-light: rgba(255, 255, 255, 0.6);
    --glass-dark: rgba(255, 255, 255, 0.04);
    --glass-border-light: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(255, 255, 255, 0.08);

    /* Timing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background: var(--bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.4s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: var(--font-body);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* ========================================
   Loading Screen – Premium
   ======================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s var(--ease-out-expo), visibility 1.2s var(--ease-out-expo);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    animation: logo-pulse 2s ease-in-out infinite;
}

.loading-bar {
    width: 160px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-top: 2.5rem;
}

.loading-bar-progress {
    height: 100%;
    background: var(--primary);
    animation: loader-progress 2s ease-out forwards;
}

/* ========================================
   Navbar – Glassmorphism
   ======================================== */
.navbar {
    position: fixed;
    top: 40px;
    /* Offset for topbar */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.6s var(--ease-out-expo);
    background: #e9e3dc !important;
    /* Forces cream color matching image 1 */
}

.navbar.scrolled {
    background: #e9e3dc !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    top: 0;
}

.navbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 60;
}

.navbar-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.5s;
    animation: logo-shimmer 3s ease-in-out infinite;
}

.navbar-logo:hover span {
    opacity: .8;
    transform: scale(1.02);
}

@keyframes logo-shimmer {

    0%,
    100% {
        opacity: 1;
        filter: brightness(1);
    }

    50% {
        opacity: .85;
        filter: brightness(1.15);
    }
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar-links a {
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s ease;
    padding: 4px 0;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all 0.5s var(--ease-out-expo);
    transform: translateX(-50%);
}

.navbar-links a:hover {
    color: var(--text-dark);
}

.navbar-links a:hover::after {
    width: 100%;
}

/* Navbar CTA – Micro-interaction */
.navbar-cta {
    position: relative;
    padding: 0.65rem 1.8rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    background: transparent;
}

.navbar-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: -1;
}

.navbar-cta:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.navbar-cta:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    z-index: 60;
    padding: 4px 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu – Dark Glass */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 55;
    width: 320px;
    height: 100vh;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform 0.7s var(--ease-out-expo);
    padding: 10rem 3rem 2rem;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    display: block;
    color: var(--dark-text);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-border);
    transition: all 0.5s ease;
    transform: translateX(40px);
    opacity: 0;
}

.mobile-menu.active a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 1rem;
}

.mobile-menu-cta {
    margin-top: 2rem !important;
    color: var(--white) !important;
    border-bottom: 1px solid var(--white) !important;
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ========================================
   Hero – Full Image, Cinematic
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 20s linear;
    filter: brightness(0.6) contrast(1.1);
}

.hero:hover .hero-bg img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.3) 0%,
            rgba(10, 10, 10, 0.1) 40%,
            rgba(10, 10, 10, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6em;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) forwards 0.5s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) forwards 0.7s;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) forwards 1.1s;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2.5s;
}

.hero-scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse-subtle 2.5s ease-in-out infinite;
}

/* ========================================
   Buttons – Micro-Interactions
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 1.2s var(--ease-out-expo);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 1.4s var(--ease-out-expo);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-primary .btn-text {
    position: relative;
    z-index: 1;
    transition: transform 0.8s var(--ease-out-expo);
}

.btn-primary:hover .btn-text {
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    transition: all 1.2s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s var(--ease-out-expo);
    z-index: 0;
}

.btn-outline:hover {
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* Light Section Buttons */
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 1.2s var(--ease-out-expo);
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s var(--ease-out-expo);
    z-index: 0;
}

.btn-dark:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-dark span {
    position: relative;
    z-index: 1;
}

.btn-pink-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all 1.2s var(--ease-out-expo);
}

.btn-pink-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.2s var(--ease-out-expo);
    z-index: 0;
}

.btn-pink-outline:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.btn-pink-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-pink-outline span {
    position: relative;
    z-index: 1;
}

/* ========================================
   Product Marquee
   ======================================== */
.marquee-section {
    background: var(--dark);
    padding: 1.2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2.5rem;
    white-space: nowrap;
}

.marquee-item span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    transition: color 0.4s;
}

.marquee-item span:hover {
    color: var(--gold-light);
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
}

/* ========================================
   Section Common
   ======================================== */
.section {
    padding: 5rem 2.5rem;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 550px;
}

.section-alt {
    background: var(--bg-alt);
}

/* ========================================
   DARK ACCENT SECTIONS – Compact
   ======================================== */
.section-dark {
    background: var(--dark);
    color: var(--dark-text);
    padding: 2.5rem 2.5rem;
}

.section-dark .section-label {
    color: var(--primary);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--dark-text-muted);
}

.section-dark p {
    color: var(--dark-text-muted);
}

.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

/* Glassmorphism Cards (for dark sections) */
.glass-card {
    background: var(--glass-dark);
    border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    transition: all 0.6s var(--ease-out-expo);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* ========================================
   Signature Section
   ======================================== */
.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.signature-card {
    overflow: hidden;
    transition: all 0.7s var(--ease-out-expo);
}

.signature-card:hover {
    transform: translateY(-8px);
}

.signature-card-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.signature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.signature-card:hover .signature-card-img img {
    transform: scale(1.08);
}

.signature-card-img .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
}

.signature-card-body {
    padding: 1.5rem 0;
}

.signature-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.signature-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* ========================================
   Value Proposition – Text Only
   ======================================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.value-divider {
    width: 30px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
}

/* Dark variant */
.section-dark .value-item h3 {
    color: var(--white);
}

.section-dark .value-item p {
    color: var(--dark-text-muted);
}

.section-dark .value-divider {
    background: var(--primary);
}

/* ========================================
   Story / Video Section
   ======================================== */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.story-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.8s var(--ease-out-expo), filter 1s ease;
}

.story-image:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.story-content .story-quote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--primary);
    line-height: 1.8;
}

.story-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* ========================================
   Reviews
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.review-card {
    padding: 2.5rem 2rem;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.6;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}

.review-stars .star {
    color: var(--primary);
    font-size: 0.7rem;
}

.review-card p {
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.review-author {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
}

.review-source {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Dark variant reviews */
.section-dark .review-card {
    border-top: 1px solid var(--dark-border);
}

.section-dark .review-card p {
    color: var(--dark-text-muted);
}

.section-dark .review-author {
    color: var(--white);
}

.section-dark .review-source {
    color: var(--dark-text-muted);
}

/* ========================================
   Corporate Teaser – Glassmorphism
   ======================================== */
.corporate-teaser {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.corporate-teaser::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 22, 108, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.corporate-teaser h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.corporate-teaser p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 300;
}

/* ========================================
   Footer – Dark Premium
   ======================================== */
.footer {
    background: var(--dark);
    color: var(--dark-text);
    padding-bottom: 1rem;
    border-top: none;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-border);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--dark-text-muted);
    transition: all 0.4s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    font-size: 0.85rem;
    color: var(--dark-text-muted);
    line-height: 2;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    display: none;
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: var(--dark-text-muted);
    font-weight: 300;
}

.footer-bottom a {
    color: var(--primary);
    font-weight: 500;
}

/* ========================================
   Menu Page
   ======================================== */
.menu-hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.menu-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.menu-hero-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.menu-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.menu-hero-image:hover img {
    transform: scale(1.04);
}

/* Category Filter – Glass */
.category-filter {
    position: sticky;
    top: 55px;
    z-index: 40;
    background: rgba(254, 252, 251, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.category-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-filter-inner::-webkit-scrollbar {
    display: none;
}

.category-btn {
    position: relative;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
    transition: all 0.4s ease;
    letter-spacing: 0.08em;
}

.category-btn:hover {
    color: var(--text-dark);
}

.category-btn.active {
    color: var(--text-dark);
    font-weight: 600;
}

.category-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    cursor: pointer;
    transition: all 0.7s var(--ease-out-expo);
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--bg-alt);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s var(--ease-out-expo);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-img .shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 1s;
    pointer-events: none;
}

.product-card:hover .product-card-img .shine {
    transform: translateX(100%);
}

.product-card-img .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.9rem;
    backdrop-filter: blur(8px);
}

.product-badge.featured {
    background: rgba(10, 10, 10, 0.75);
    color: var(--white);
}

.product-card-img .hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 22, 108, 0.3), transparent, transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-card:hover .hover-overlay {
    opacity: 1;
}

.product-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.4s;
}

.product-card:hover .product-card-info h3 {
    color: var(--primary);
}

.product-card-info .desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 300;
}

.product-card-info .price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.4s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.product-card:hover .product-card-info .price {
    color: var(--primary);
}

.product-card-line {
    margin-top: 0.75rem;
    height: 1px;
    background: var(--primary);
    width: 0;
    transition: width 0.6s var(--ease-out-expo);
}

.product-card:hover .product-card-line {
    width: 100%;
}

/* Drink */
.drink-pairing {
    text-align: center;
}

.drink-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.drink-tag {
    padding: 0.65rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-dark);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: all 0.5s var(--ease-out-expo);
}

.drink-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 22, 108, 0.1);
}

/* ========================================
   Page Hero (Inner Pages) – Elegant Light
   ======================================== */
.page-hero {
    padding: 12rem 2.5rem 5rem;
    text-align: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) forwards 0.3s;
}

.page-hero p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) forwards 0.5s;
    font-weight: 400;
}

/* ========================================
   Quote Section
   ======================================== */
.quote-section {
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--dark);
}

.quote-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.4;
    max-width: 750px;
    margin: 0 auto;
}

.quote-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto 0;
}

/* ========================================
   Hikayemiz Story Blocks
   ======================================== */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-block.reverse {
    direction: rtl;
}

.story-block.reverse>* {
    direction: ltr;
}

.story-block-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.story-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--ease-out-expo);
}

.story-block-img:hover img {
    transform: scale(1.04);
}

.story-block-text h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-block-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

/* ========================================
   Kurumsal
   ======================================== */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.advantage-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.advantage-divider {
    width: 30px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
}

/* Dark variant advantages */
.section-dark .advantage-item h3 {
    color: var(--white);
}

.section-dark .advantage-item p {
    color: var(--dark-text-muted);
}

.section-dark .advantage-divider {
    background: var(--gold);
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 220px;
}

.process-step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Form – Minimal */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: transparent;
    transition: border-color 0.4s ease;
    outline: none;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ========================================
   İletişim
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.map-container {
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    transition: filter 1s ease;
}

.map-container:hover iframe {
    filter: grayscale(30%) contrast(1.05);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-subtle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes logo-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes loader-progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   Scroll Animation Utilities
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.animate-on-scroll.from-left {
    transform: translateX(-80px);
}

.animate-on-scroll.from-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.from-right {
    transform: translateX(80px);
}

.animate-on-scroll.from-right.visible {
    transform: translateX(0);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.scale-in.visible {
    transform: scale(1);
}

.animate-on-scroll.fade-only {
    transform: none;
}

.animate-on-scroll.fade-only.visible {
    opacity: 1;
}

.animate-on-scroll.clip-reveal {
    transform: none;
    clip-path: inset(0 100% 0 0);
    transition: all 1.4s var(--ease-out-expo);
}

.animate-on-scroll.clip-reveal.visible {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

/* Stagger */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}

.delay-6 {
    transition-delay: 0.6s !important;
}

.delay-7 {
    transition-delay: 0.7s !important;
}

.delay-8 {
    transition-delay: 0.8s !important;
}

/* ========================================
   Enhanced Premium Animations
   ======================================== */

/* Subtle float animation for images */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Glow pulse for section labels */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: none;
    }

    50% {
        opacity: .9;
        text-shadow: 0 0 20px rgba(255, 22, 108, 0.3);
    }
}

/* Underline grow for section titles */
@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

/* Slide-in rotate for cards */
@keyframes slideInRotate {
    from {
        opacity: 0;
        transform: translateY(40px) rotate(2deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Parallax drift for background */
@keyframes parallaxDrift {

    0%,
    100% {
        transform: scale(1.05) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }
}

/* Shimmer effect for text */
@keyframes textShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Section label animation */
.section-label {
    animation: glowPulse 4s ease-in-out infinite;
}

/* Section title underline animation on visible */
.animate-on-scroll.visible .section-title::after,
.animate-on-scroll.visible.section-title-animate::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-top: 0.8rem;
    animation: underlineGrow 1s var(--ease-out-expo) forwards;
}

.animate-on-scroll.visible [style*="text-align:center"] .section-title::after,
.animate-on-scroll.visible .section-title[style*="text-align:center"]::after {
    margin-left: auto;
    margin-right: auto;
}

/* Story section image float on hover */
.story-image:hover {
    animation: floatImage 3s ease-in-out infinite;
}

/* Hero background slow drift */
.hero-bg img {
    animation: parallaxDrift 20s ease-in-out infinite;
}

/* Review card hover lift */
.review-card {
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Product card enhanced hover */
.product-card {
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-card:hover .product-card-line {
    transform: scaleX(1);
    background: var(--primary);
}

/* Hero content stagger animation */
.hero-content .hero-subtitle {
    animation: fadeSlideDown 1s ease-out 0.3s both;
}

.hero-content .hero-title {
    animation: fadeSlideDown 1s ease-out 0.5s both;
}

.hero-content .hero-slogan {
    animation: fadeSlideDown 1s ease-out 0.7s both;
}

.hero-content .hero-buttons {
    animation: fadeSlideDown 1s ease-out 0.9s both;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button pulse on hover */
.btn-primary:hover,
.btn-dark:hover,
.btn-outline:hover {
    animation: buttonPulse 0.4s ease;
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Gallery image subtle tilt on hover */
.animate-on-scroll[style*="overflow:hidden"]:hover img {
    transition: transform 0.8s ease;
}

/* Stars twinkling in reviews */
.review-stars .star {
    display: inline-block;
    animation: starTwinkle 2s ease-in-out infinite;
}

.review-stars .star:nth-child(2) {
    animation-delay: 0.2s;
}

.review-stars .star:nth-child(3) {
    animation-delay: 0.4s;
}

.review-stars .star:nth-child(4) {
    animation-delay: 0.6s;
}

.review-stars .star:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }
}

/* Marquee items hover glow */
.marquee-item span {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.marquee-item span:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 22, 108, 0.4);
}

/* Counter number animation pulse */
[data-counter] {
    transition: transform 0.3s ease;
}

[data-counter]:hover {
    transform: scale(1.1);
}

/* Footer links hover slide */
.footer-col a {
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
    padding-left: 8px;
    color: var(--primary);
}

/* Navbar link underline animation */
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
}

.navbar-links a:hover::after {
    width: 100%;
    left: 0;
}

/* ========================================
   Responsive – Ultra Mobile Friendly
   ======================================== */
@media (max-width: 1024px) {

    .signature-grid,
    .value-grid,
    .reviews-grid,
    .advantage-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section,
    .story-block,
    .menu-hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-block.reverse {
        direction: ltr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 3.5rem;
    }

    .quote-text {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
    }

    .corporate-teaser {
        padding: 2.5rem 2rem;
    }

    .corporate-teaser h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .navbar-links,
    .navbar-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-inner {
        padding: 0 1.2rem;
    }

    .hero {
        min-height: 50vh !important;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-slogan {
        font-size: .9rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: .65rem;
        letter-spacing: .4em;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Sections – compact */
    .section {
        padding: 3rem 1.2rem;
    }

    .section-dark {
        padding: 2rem 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-label {
        font-size: .6rem;
        letter-spacing: .3em;
        margin-bottom: .6rem;
    }

    /* Grids – single column */
    .signature-grid,
    .value-grid,
    .reviews-grid,
    .advantage-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-section,
    .story-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-block.reverse {
        direction: ltr;
    }

    .story-image {
        aspect-ratio: 16/9;
    }

    .story-content p {
        font-size: .9rem;
        line-height: 1.8;
    }

    /* Page hero */
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 8rem 1.2rem 3rem;
    }

    /* Quote */
    .quote-text {
        font-size: 1.5rem;
    }

    .quote-section {
        padding: 2rem 1.2rem;
    }

    /* Footer – single column */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 2rem 1.2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: .75rem;
        text-align: center;
        padding: 1.5rem 1.2rem;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: .5rem;
        text-align: center !important;
        padding: 1rem 1.2rem;
    }

    .footer-social {
        justify-content: center;
    }

    /* Corporate teaser */
    .corporate-teaser {
        padding: 2rem 1.2rem;
    }

    .corporate-teaser h3 {
        font-size: 1.6rem;
    }

    /* Process */
    .process-steps {
        gap: 1.5rem;
    }

    .process-step-num {
        font-size: 2rem;
    }

    /* Contact form */
    .contact-form {
        padding: 0;
    }

    /* Buttons */
    .btn-primary,
    .btn-outline,
    .btn-dark,
    .btn-pink-outline {
        padding: .75rem 1.8rem;
        font-size: .65rem;
    }

    /* Menu page */
    .menu-hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .menu-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-filter-inner {
        padding: 0 1.2rem;
        gap: 1.5rem;
    }

    /* Map */
    .map-container {
        height: 250px !important;
    }

    /* Story blocks */
    .story-block {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .story-block-text h2 {
        font-size: 2rem;
    }

    /* Advantage items */
    .advantage-item {
        padding: 1.2rem 1rem;
    }

    /* Marquee */
    .marquee-item {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .marquee-item span {
        font-size: .8rem;
    }

    /* Hero logo top-left - mobile adjust */
    .hero>div[style*="position:absolute;top:2rem;left:2.5rem"] {
        top: 1rem !important;
        left: 1.2rem !important;
    }

    .hero>div[style*="position:absolute;top:2rem;left:2.5rem"] span {
        font-size: 1.5rem !important;
    }

    /* Inline grid forms to single column */
    .contact-form div[style*="grid-template-columns:1fr 1fr"],
    .contact-form div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* 4-column contact info → 2 columns */
    div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    /* 2-column event grid → single */
    div[style*="grid-template-columns:1fr 1fr;gap:1.5rem"] {
        grid-template-columns: 1fr !important;
    }

    /* Process steps 2x2 → 1 column */
    .process-steps[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Mobile menu */
    .mobile-menu {
        width: 85vw;
        max-width: 320px;
        padding: 5rem 2rem 2rem;
    }

    .mobile-menu a {
        font-size: 1.1rem;
        padding: .8rem 0;
    }

    /* Reviews */
    .review-card {
        padding: 1.5rem 1rem;
    }

    /* Loading */
    .loading-logo {
        font-size: 2rem;
    }

    .loading-bar {
        width: 120px;
        margin-top: 1.5rem;
    }

    /* Drink tags */
    .drink-tags {
        gap: .6rem;
    }

    .drink-tag {
        padding: .5rem 1rem;
        font-size: .75rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-dark {
        padding: 1.5rem 1rem;
    }

    .process-steps {
        gap: 1rem;
    }

    .process-step {
        max-width: 100%;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .quote-section {
        padding: 1.5rem 1rem;
    }

    /* Footer ultra compact */
    .footer-grid {
        padding: 1.5rem 1rem;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col p,
    .footer-col a {
        font-size: .8rem;
    }

    /* Signature cards aspect */
    .signature-card-img {
        aspect-ratio: 16/9;
    }

    /* Product cards */
    .product-card-img {
        aspect-ratio: 16/9;
    }

    /* Story blocks */
    .story-block-img {
        aspect-ratio: 16/9;
    }

    .story-block-text h2 {
        font-size: 1.6rem;
    }

    .story-block-text p {
        font-size: .88rem;
        line-height: 1.8;
    }

    /* Contact grid column → stacked */
    .contact-grid {
        gap: 1.5rem;
    }

    /* Buttons full width */
    .btn-primary,
    .btn-dark,
    .btn-outline,
    .btn-pink-outline {
        padding: .7rem 1.5rem;
        font-size: .62rem;
    }

    .corporate-teaser h3 {
        font-size: 1.4rem;
    }

    .corporate-teaser p {
        font-size: .85rem;
    }

    /* Loading screen */
    .loading-logo {
        font-size: 1.6rem;
    }

    .loading-bar {
        width: 100px;
        margin-top: 1rem;
    }

    /* Navbar */
    .navbar-logo span {
        font-size: 1.2rem;
    }
}

/* ========================================
   AYAN TESİSAT CUSTOM STYLES
   ======================================== */

/* Top Bar */
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 2.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-item span {
    color: var(--primary);
    font-weight: 600;
}

/* Sticky Call Button */
.sticky-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.sticky-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s var(--ease-out-expo);
}

.sticky-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.sticky-btn.phone {
    background: #007AFF;
    /* Generic blue phone color, matches typical phone icons */
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.sticky-btn.phone:hover {
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.5);
}

.sticky-btn.whatsapp {
    background: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.sticky-btn.whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* Services Grid (3x3 Oval Pyramid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-oval {
    background: var(--white);
    border-radius: 20px 20px 80px 80px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.6s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    border-bottom: 5px solid var(--primary);
}

.service-card-oval:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 40px 40px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.service-card-oval:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2rem 1.5rem 3rem;
    text-align: center;
}

.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card-body .btn-explore {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.service-card-oval:hover .service-card-body .btn-explore {
    border-color: var(--primary);
}

/* Service Modal */
.service-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: var(--bg);
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.service-modal-overlay.active .service-modal {
    transform: translateY(0) scale(1);
}

.service-modal-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-modal-close:hover {
    background: var(--primary);
}

.service-modal-body {
    padding: 2.5rem;
    text-align: center;
}

.service-modal-body h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-modal-body p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}


/* Responsive Topbar Update */
.topbar {
    justify-content: flex-start;
    padding: 0.5rem 2.5rem;
    background: #e9e3dc;
    /* Cream color */
    color: var(--white);
    /* White text request, though background is light. We'll use white text but give background a darker overlay or apply to an inner container? Wait, if background is #e9e3dc (light), white text won't be visible. I'll make the topbar dark or as requested "topbar yazıları beyaz yap" */
    background: var(--dark);
    /* Kept dark but changed text to white */
    color: var(--white);
}


/* Square Image Service Grid (Image 1 Style) */
.services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card-square {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border);
    transition: all 0.6s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.service-card-square:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card-img-square {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.service-card-img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.service-card-square:hover .service-card-img-square img {
    transform: scale(1.05);
}

.service-card-body-square {
    padding: 1.5rem 1rem;
    text-align: left;
    background: var(--white);
}

.service-card-body-square h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-card-body-square p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.btn-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.service-card-square:hover .btn-arrow::after {
    transform: translateX(5px);
}

/* Modal Style (Image 2) Update */
.service-modal {
    display: flex !important;
    flex-direction: row;
    width: 60vw;
    max-width: 1000px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    min-height: 500px;
}

.service-modal-img-container {
    flex: 0 0 50%;
    position: relative;
}

.service-modal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-body-container {
    flex: 0 0 50%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7f7f7;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.3s;
}

.service-modal-close:hover {
    background: #e5e5e5;
}

/* Service List Item (Image Left, Text Right, Large) */
.service-list-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-list-img {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 16px;
}

.service-list-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.service-list-item:hover .service-list-img img {
    transform: scale(1.08);
}

.service-list-content {
    flex: 1;
    padding-right: 1.5rem;
}

.service-list-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-list-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.05rem;
}

@media (max-width: 768px) {

    /* Global Mobile Resets */
    html,
    body {
        overflow-x: hidden;
    }

    /* Navbar & Mobile Menu */
    .navbar-links {
        display: none !important;
    }

    .navbar-cta {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .mobile-menu {
        padding-top: 140px !important;
    }

    .mobile-menu-cta {
        background: var(--white) !important;
        color: var(--dark) !important;
        padding: 1rem 2rem !important;
        border-radius: 30px !important;
        text-align: center;
        margin-top: 2rem !important;
        display: block !important;
        border: none !important;
    }

    /* Modals */
    .service-modal {
        flex-direction: column !important;
        width: 95vw !important;
        min-height: auto !important;
        margin: 1rem auto;
    }

    .service-modal-img-container {
        flex: none !important;
        min-height: 200px !important;
        height: 250px;
    }

    .service-modal-body-container {
        flex: none !important;
        padding: 2rem 1.5rem !important;
    }

    .service-modal-body-container h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }

    .service-modal-body-container p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .service-modal-body-container a {
        padding: 1rem 2rem !important;
        font-size: 0.8rem !important;
        width: 100%;
        text-align: center;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-grid,
    .contact-grid,
    .story-section,
    .value-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    div[style*="grid-template-columns:repeat(4,1fr)"],
    div[style*="grid-template-columns:repeat(3,1fr)"],
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Mobile Animations */
    .animate-on-scroll {
        transform: translateY(20px) !important;
    }

    .from-left,
    .from-right {
        transform: translateY(20px) !important;
    }

    .animate-on-scroll.visible {
        transform: translateY(0) !important;
    }

    /* Topbar */
    .topbar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .topbar-item {
        font-size: 0.85rem;
    }

    /* Columns */
    .responsive-columns {
        column-count: 1 !important;
    }

    /* Service List Items */
    .service-list-item {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }

    .service-list-img {
        flex: 0 0 auto;
        width: 100%;
    }

    .service-list-img img {
        height: 260px;
    }

    .service-list-content {
        padding-right: 0;
        padding: 0 1rem 1rem 1rem;
    }

    .service-list-content h3 {
        font-size: 1.5rem;
    }

    .service-list-content p {
        font-size: 0.95rem;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 1rem 2rem !important;
    }

    .hero-bg {
        inset: 0.5rem !important;
        border-radius: 20px !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }

    .hero-slogan {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* Global Typography */
    .section-title {
        font-size: 1.8rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2.5rem;
    }

    /* Sticky Buttons */
    .sticky-actions {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }

    .sticky-btn {
        width: 55px !important;
        height: 55px !important;
    }

    .sticky-btn img {
        width: 38px !important;
        height: 38px !important;
    }
}