/* ============================================
   Fish & Fish Ã¢â‚¬â€ Premium Design System
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors Ã¢â‚¬â€ Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f0f6fc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(30, 136, 229, 0.05);
    --bg-glass-border: rgba(30, 136, 229, 0.12);

    --accent-primary: #1565c0;
    --accent-secondary: #1e88e5;
    --accent-glow: rgba(30, 136, 229, 0.2);
    --accent-gradient: linear-gradient(135deg, #0d47a1, #1e88e5, #42a5f5);
    --accent-gradient-hover: linear-gradient(135deg, #1565c0, #42a5f5, #64b5f6);

    --text-primary: #1a2332;
    --text-secondary: #4a5c6e;
    --text-muted: #8a9bb0;
    --text-light: #ffffff;

    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.25);

    /* Brand Colors */
    --brand-dark: #0a2e52;
    --brand-blue: #0d3c6e;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 10px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Common ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-secondary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title em {
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
    max-width: 1140px;
}

.section-header .section-desc strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.about,
.menu,
.gallery,
.contact,
.franchise-content,
.franchise-cta {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

/* ---------- Parallax Sections ---------- */
.parallax-window {
    position: relative;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax-window.parallax-cover {
    background-size: cover;
}

.parallax-window--freshness {
    background-position: center 52%;
}

.parallax-window.parallax-logo {
    background-size: contain;
}

.parallax-window.parallax-logo::before {
    background: transparent;
}

.parallax-window:not(.parallax-logo) {
    background-attachment: fixed;
}

.parallax-window::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 50, 0.5);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 700;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1;
    position: relative;
    top: -30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Homepage Performance Tuning ---------- */
.home-page .animate-on-scroll {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-page .parallax-window {
    content-visibility: auto;
    contain-intrinsic-size: 1px 400px;
}

.home-page .parallax-window:not(.parallax-logo) {
    background-attachment: fixed;
}

.home-page .hero::before {
    inset: 0;
    background-image: url('fish-webp/home-hero-soft.webp');
    filter: none;
    transform: none;
}

.home-page .hero-wordmark-image {
    filter: drop-shadow(0 12px 26px rgba(6, 20, 36, 0.28));
}

.home-page .hero-scroll-indicator,
.home-page .fab-whatsapp,
.home-page .whatsapp-order-badge,
.home-page .fab-whatsapp::after {
    animation: none;
}

.home-page .image-frame {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.home-page .image-frame img {
    transition: transform 0.35s ease;
}

.home-page .about-badge {
    box-shadow: 0 6px 22px var(--accent-glow);
}

.home-page .feature {
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.04);
}

.home-page .menu-cat {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.home-page .menu-cat.active {
    box-shadow: 0 3px 14px var(--accent-glow);
}

.home-page .menu-card {
    transition: transform 0.25s ease;
}

.home-page .menu-card-image img {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.home-page .menu-card:hover .menu-card-image img {
    transform: scale(1.03) translateY(-2px);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}

.home-page .fab-whatsapp {
    box-shadow: 0 10px 22px rgba(18, 140, 126, 0.24);
}

.home-page .whatsapp-order-badge {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.home-page .whatsapp-order-badge-icon {
    filter: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    box-shadow: 0 6px 30px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 39, 67, 0.4);
}

.btn:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.form-feedback {
    min-height: 1.5rem;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.form-feedback[data-state="success"] {
    color: #2e7d32;
}

.form-feedback[data-state="error"] {
    color: #c62828;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--bg-glass-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .logo-fish {
    color: #1a2332;
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.about-page .navbar,
.fr-page .navbar,
.order-page .navbar {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--bg-glass-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.about-page .nav-link,
.fr-page .nav-link,
.order-page .nav-link {
    color: var(--text-secondary);
}

.about-page .nav-link:hover,
.about-page .nav-link.active,
.fr-page .nav-link:hover,
.fr-page .nav-link.active,
.order-page .nav-link:hover,
.order-page .nav-link.active {
    color: var(--accent-secondary);
    background: var(--bg-glass);
}

.about-page .nav-toggle span,
.fr-page .nav-toggle span,
.order-page .nav-toggle span {
    background: var(--text-primary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--accent-secondary);
    background: var(--bg-glass);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.35px;
}

.logo-fish {
    color: #ffffff;
}

.logo-amp {
    color: #9fd8ff;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    margin: 0 0.1em;
    font-size: 0.74em;
    display: inline-block;
    transform: translateY(-0.03em);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1f31 0%, #12324c 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 70, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 20px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0 auto 24px;
    background: var(--gold-glow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 8vw, 5.1rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -1.1px;
}

.hero-title--brand {
    width: min(100%, 470px);
    max-width: none;
    margin-bottom: 18px;
}

.hero-wordmark-image {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 42px rgba(6, 20, 36, 0.34));
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(10deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-title.active .char {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.hero-fish {
    color: #ffffff;
}

.hero-amp {
    color: rgba(236, 246, 255, 0.96);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-style: normal;
    -webkit-text-fill-color: currentColor;
    font-size: 0.62em;
    font-weight: 600;
    margin: 0 0.16em;
    text-shadow: none;
    letter-spacing: -0.02em;
    transform: translateY(-0.04em);
    display: inline-block;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--accent-secondary);
    margin: 0 auto 20px;
    max-width: 18ch;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 6px 18px rgba(5, 24, 44, 0.24);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(215, 235, 255, 0.85);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto 36px;
    text-shadow: 0 4px 16px rgba(4, 20, 40, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-hours {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 16px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.hours-item svg {
    color: #64b5f6;
    flex-shrink: 0;
}

.hours-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: clamp(28px, 3.5vw, 42px) 0 clamp(24px, 3vw, 38px);
    background: var(--bg-secondary);
    position: relative;
}

.about .container {
    max-width: 1360px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.about-image {
    position: relative;
    padding-right: clamp(8px, 1vw, 18px);
}

.about-collage-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(34px, 1fr));
    gap: 12px;
    min-height: clamp(340px, 31vw, 430px);
}

.image-frame {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-frame--primary {
    grid-column: 1 / span 7;
    grid-row: 1 / span 5;
}

.image-frame--top {
    grid-column: 8 / -1;
    grid-row: 1 / span 4;
}

.image-frame--wide {
    grid-column: 1 / span 7;
    grid-row: 6 / span 3;
}

.image-frame--bottom {
    grid-column: 8 / -1;
    grid-row: 5 / span 4;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--bg-glass-border);
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--accent-glow);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.badge-text {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.3;
    margin-top: 2px;
}

.about-content {
    min-width: 0;
}

.about-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    gap: 12px;
    margin: 0 0 18px;
}

.about-heading .section-label {
    margin-bottom: 0;
    padding: 0;
    position: static;
    border-radius: 0;
    border: 0;
    background: transparent;
    letter-spacing: 3px;
}

.about-content .section-title {
    margin: 0;
    width: auto;
    max-width: none;
    text-align: left;
    line-height: 0.98;
    letter-spacing: -0.03em;
    padding-left: 0;
}

.about-title-main {
    display: block;
    white-space: nowrap;
}

.about-content .section-title em {
    display: block;
    margin-top: 6px;
    margin-left: 44px;
    font-size: 0.88em;
    white-space: nowrap;
}

.about-heading::after {
    content: '';
    width: min(170px, 100%);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(30, 136, 229, 0.95), rgba(30, 136, 229, 0.22));
}

.about-copy {
    margin-bottom: 24px;
}

.about-text {
    font-size: clamp(0.96rem, 0.18vw + 0.92rem, 1.02rem);
    color: var(--text-secondary);
    line-height: 1.64;
    margin-bottom: 12px;
    break-inside: avoid;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }
}

.feature {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(30, 136, 229, 0.1);
    box-shadow: 0 10px 28px rgba(13, 71, 161, 0.05);
    min-width: 0;
}

.feature>div {
    min-width: 0;
    display: grid;
    gap: 2px;
    align-content: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.feature h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.25;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.38;
    text-wrap: balance;
}

/* ============================================
   MENU — Floating Design
   ============================================ */
.menu {
    padding: clamp(48px, 6vw, 80px) 20px;
    padding-bottom: clamp(56px, 7vw, 96px);
    margin-top: -80px;
    background: linear-gradient(180deg, #0a1b2b 0%, #102a42 42%, #153855 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 136, 229, 0.11), transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(66, 165, 245, 0.09), transparent 38%);
    pointer-events: none;
}

.menu .section-header .section-title,
.menu .section-header .section-label {
    color: #ffffff;
}

.menu .section-header .section-title em {
    -webkit-text-fill-color: transparent;
}

.menu .section-header .section-desc {
    color: rgba(255, 255, 255, 0.74);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.menu-cat {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(8px);
}

.menu-cat:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.menu-cat.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 48px;
    position: relative;
    z-index: 2;
}

/* --- Floating Card (No Frame) --- */
.menu-card {
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: visible;
    transition: transform var(--transition-medium);
    text-align: center;
}

.menu-card:hover {
    background: transparent;
    transform: translateY(-6px);
    box-shadow: none;
    border-color: transparent;
}

.menu-card-image {
    position: relative;
    overflow: visible;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.menu-card-image::after {
    display: none;
}

.menu-card-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45));
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.menu-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 12px var(--accent-glow);
    z-index: 2;
    transition: transform var(--transition-medium);
}

.menu-card:hover .menu-card-badge {
    transform: scale(1.05);
}

.menu-card-badge.popular {
    background: linear-gradient(135deg, #d4a853, #f0c97e);
    color: #1a1a1a;
    box-shadow: 0 4px 12px var(--gold-glow);
}

.menu-card-badge.new {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.menu-card-content {
    padding: 0 4px;
}

.menu-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    gap: 2px;
}

.menu-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.menu-card-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin-bottom: 4px;
}

.menu-price,
.menu-card-prices {
    display: none !important;
}

/* --- Menu Image Lightbox --- */
.menu-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 19, 31, 0);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: none;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.menu-lightbox-overlay.is-active {
    background: rgba(6, 19, 31, 0.85);
    pointer-events: auto;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.menu-lightbox-overlay img {
    max-width: 35vw;
    max-height: 45vh;
    object-fit: contain;
    transform: scale(0.3);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.menu-lightbox-overlay.is-active img {
    transform: scale(1);
    opacity: 1;
}

.menu-card-image {
    cursor: pointer;
}

/* --- Ekmek / Servis Toggle --- */
.menu-variant-toggle {
    display: inline-flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 3px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-variant-btn {
    padding: 6px 16px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-variant-btn.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.menu-variant-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Price Display --- */
.menu-card-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
}

.menu-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.menu-price-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

.menu-price-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #f0c97e;
}

.menu-prices-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
}

.menu-card--text {
    position: relative;
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 12px 24px 12px 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.menu-card--text::before {
    display: none;
}

.menu-card--drink {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1) 0%, rgba(13, 71, 161, 0.05) 100%);
    border-color: rgba(66, 165, 245, 0.25);
}

.menu-card--extra {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 140, 0, 0.03) 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

.menu-card--text:hover {
    transform: translateY(-3px) scale(1.02);
}

.menu-card--drink:hover {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.12) 0%, rgba(13, 71, 161, 0.08) 100%);
    border-color: rgba(66, 165, 245, 0.3);
    box-shadow: 0 6px 16px rgba(30, 136, 229, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-card--extra:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-card-content--text {
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-height: 0;
}

.menu-card-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.menu-card-topline::before {
    display: none;
}

.menu-card-topline-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid transparent;
}

.menu-card--drink .menu-card-topline-tag {
    background: rgba(30, 136, 229, 0.15);
    color: #64b5f6;
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: none;
}

.menu-card--extra .menu-card-topline-tag {
    background: rgba(240, 201, 126, 0.15);
    color: #f0c97e;
    border-color: rgba(240, 201, 126, 0.3);
    box-shadow: none;
}

.menu-card--text .menu-card-header {
    align-items: center;
    margin-bottom: 0;
    gap: 0;
}

.menu-card--text .menu-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-left: 4px;
    line-height: 1;
    white-space: nowrap;
}

.menu-card--text .menu-card-content p {
    display: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--section-padding);
    padding-top: clamp(56px, 7vw, 72px);
    background: var(--bg-secondary);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.15;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 20, 50, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   FRANCHISE
   ============================================ */
.franchise {
    padding: var(--section-padding);
    background: var(--brand-blue);
    position: relative;
    color: #fff;
}

.franchise .section-title {
    color: #fff;
}

.franchise .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.franchise::before {
    display: none;
}

.franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.franchise-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.franchise-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
}

.franchise-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.franchise-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    margin-bottom: 16px;
}

.franchise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.franchise-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.franchise-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Steps */
.franchise-steps {
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.franchise-steps h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 0;
    position: relative;
}

.step:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #64b5f6;
    flex-shrink: 0;
    width: 36px;
    line-height: 1.2;
}

.step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
}

.step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Form */
.franchise-form-wrapper {
    padding: 28px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
}

.franchise-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-fast);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(30, 136, 229, 0.06);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: clamp(20px, 3vw, 40px) 20px;
    margin-top: -60px;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.contact .section-header .section-desc {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
    /* Mobilde alt alta olması için */
}

.contact-info {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
    display: flex;
    flex-direction: column;
    max-height: 500px;
    border-radius: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.elfsight-app-a024cba3-fe86-4399-8235-a7f0a901e1cd {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transform-origin: top left;
}

.contact-map {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: 100%;
    position: relative;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {

    .contact-info,
    .contact-map {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 28px;
    background: var(--brand-blue);
    border-top: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.footer .logo-fish {
    color: #ffffff;
}

.footer .logo-amp {
    color: #9fd8ff;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-style: normal;
    font-weight: 600;
    margin: 0 0.1em;
    font-size: 0.74em;
    display: inline-block;
    transform: translateY(-0.03em);
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about-grid {
        gap: 32px;
    }

    .about-collage-grid {
        min-height: 320px;
    }

    .about-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 12px;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
    }

    .franchise-grid {
        gap: 32px;
    }

    .franchise-advantages {
        gap: 16px;
    }

    .contact-grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.6rem, 8vw, 5.1rem);
        font-weight: 700;
        line-height: 1;
        margin-bottom: 16px;
        letter-spacing: -1.1px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-image {
        padding-right: 0;
        max-width: 760px;
    }

    .about-collage-grid {
        min-height: 360px;
    }

    .about-copy {
        column-count: 1;
        margin-bottom: 16px;
    }

    .about-heading {
        margin: 0 auto 16px;
    }

    .about-content .section-title {
        max-width: 10ch;
    }

    .about-title-main,
    .about-content .section-title em {
        white-space: normal;
    }

    .about-content .section-title em {
        margin-left: 28px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .franchise-grid {
        grid-template-columns: 1fr;
    }

    .franchise-advantages {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--bg-glass-border);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 8px;
        color: var(--text-primary);
        font-weight: 500;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-primary);
        color: #fff;
    }

    /* Hero */
    .hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.6rem, 8vw, 5.1rem);
        font-weight: 700;
        line-height: 1;
        margin-bottom: 16px;
        letter-spacing: -1.1px;
    }

    .hero-hours {
        flex-direction: column;
        gap: 8px;
        border-radius: var(--border-radius);
        padding: 16px 24px;
    }

    .hours-divider {
        width: 60px;
        height: 1px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-badge {
        bottom: 12px;
        left: 12px;
        width: 82px;
        height: 82px;
    }

    .about-collage-grid {
        min-height: 300px;
        gap: 8px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-heading {
        margin: 0 auto 12px;
    }

    .about-content .section-title {
        max-width: 100%;
        font-size: clamp(1.9rem, 7vw, 2.6rem);
    }

    .about-content .section-title em {
        margin-left: 18px;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
    }

    .menu-categories {
        gap: 6px;
    }

    .menu-cat {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    /* Franchise */
    .franchise-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-desc br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .menu-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .franchise-advantages {
        grid-template-columns: 1fr;
    }
}

/* ---------- WhatsApp FAB ---------- */
.fab-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    animation: whatsapp-glow 2.9s ease-in-out infinite;
    transform-origin: center center;
    overflow: visible;
}

/* WhatsApp Badge - Sipariş Balonu */
.whatsapp-order-badge {
    position: fixed;
    right: 96px;
    bottom: 34px;
    z-index: 998;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: badgeFloat 3s ease-in-out infinite, badgeSlide 0.5s ease 1s both;
    pointer-events: none;
    border: 2px solid rgba(37, 211, 102, 0.2);
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-order-badge::before {
    content: '';
    position: absolute;
    right: -10px;
    bottom: 18px;
    width: 0;
    height: 0;
    border-left: 12px solid rgba(37, 211, 102, 0.2);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.whatsapp-order-badge::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 19px;
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.whatsapp-order-badge-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.whatsapp-order-badge-icon {
    width: 28px;
    height: 28px;
    color: #25d366;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.3));
}

@media (max-width: 768px) {
    .whatsapp-order-badge {
        display: none;
    }
}

.fab-whatsapp:hover,
.fab-whatsapp:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(18, 140, 126, 0.34);
    filter: saturate(1.05);
}

.fab-whatsapp svg {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
}

.fab-whatsapp::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.42);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.08);
    opacity: 0;
    transform: scale(0.88);
    pointer-events: none;
    animation: whatsapp-ring 2.9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes whatsapp-glow {

    0%,
    58%,
    100% {
        box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
        filter: saturate(1);
    }

    66% {
        box-shadow: 0 14px 30px rgba(18, 140, 126, 0.34), 0 0 0 6px rgba(37, 211, 102, 0.14);
        filter: saturate(1.08);
    }

    78% {
        box-shadow: 0 16px 34px rgba(18, 140, 126, 0.36), 0 0 0 10px rgba(37, 211, 102, 0.08);
        filter: saturate(1.1);
    }
}

@keyframes whatsapp-ring {

    0%,
    58% {
        opacity: 0;
        transform: scale(0.88);
    }

    66% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.48);
    }
}



@media (max-width: 480px) {
    .fab-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
}

.fab-whatsapp {
    will-change: transform, box-shadow;
}






/* ---------- About Page ---------- */
.subpage-hero {
    padding: 156px 0 88px;
    background:
        radial-gradient(circle at top right, rgba(30, 136, 229, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(240, 246, 252, 0.96), rgba(255, 255, 255, 1));
}

.subpage-hero .section-desc {
    max-width: 680px;
}

.about-page-main {
    padding-top: 72px;
}

.about-page-main .about-grid {
    gap: 64px;
}

.about-values {
    padding: 0 0 120px;
    background: var(--bg-primary);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: 0 14px 36px rgba(30, 136, 229, 0.08);
}

.about-value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about-value-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 960px) {
    .subpage-hero {
        padding: 136px 0 72px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Hero atmospheric polish ---------- */
.hero {
    background: linear-gradient(180deg, #0a1f31 0%, #12324c 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('fish-webp/home-hero-soft.webp') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(8, 28, 48, 0.46), rgba(6, 24, 42, 0.62));
    z-index: 1;
}

.hero-title {
    text-shadow: 0 18px 40px rgba(6, 20, 36, 0.42), 0 4px 12px rgba(6, 20, 36, 0.22);
}

.hero-fish {
    color: var(--accent-secondary);
}

.hero-amp {
    color: #ffffff;
}

/* ---------- Logo integration overrides ---------- */

.navbar.scrolled .nav-logo-mark {
    background: linear-gradient(180deg, rgba(7, 39, 72, 0.98), rgba(18, 96, 164, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(13, 71, 161, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    filter: saturate(1.08) brightness(1.04) contrast(1.06);
}

.navbar.scrolled .nav-logo-name {
    color: #1a2332;
}

.navbar.scrolled .nav-logo-subtitle {
    color: var(--text-muted);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.nav-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(8, 28, 52, 0.18);
    flex-shrink: 0;
}

.nav-logo-mark--full {
    width: 196px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    object-fit: contain;
}

.nav-logo-copy {
    display: grid;
    gap: 2px;
}

.nav-logo-name {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
}

.nav-logo-subtitle {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .nav-logo-mark--full {
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: none;
}


.hero-title {
    font-size: clamp(2.3rem, 6.1vw, 4.35rem);
    letter-spacing: -0.05em;
    color: #ffffff;
    display: block;
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    text-wrap: balance;
    text-align: center;
}

.hero-title--brand {
    width: min(100%, 440px);
    max-width: min(100%, 440px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(6, 22, 44, 0.18);
    flex-shrink: 0;
}

.footer-brand-copy {
    display: grid;
    gap: 4px;
}

.footer-brand-copy strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.footer-brand p {
    margin-top: 0;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: clamp(2rem, 9vw, 3.6rem);
        max-width: 10ch;
    }

    .hero-title--brand {
        width: min(100%, 380px);
        max-width: min(100%, 380px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.85rem, 10vw, 3rem);
        max-width: 9ch;
    }

    .hero-title--brand {
        width: min(100%, 290px);
        max-width: min(100%, 290px);
        margin-bottom: 16px;
    }

    .nav-logo-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.14em;
    }
}

/* ---------- Franchise page refresh ---------- */
.fr-page {
    background:
        radial-gradient(circle at top left, rgba(30, 136, 229, 0.08), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.fr-page-main {
    padding-top: 72px;
}

.fr-hero {
    position: relative;
    min-height: min(calc(100vh - 72px), 700px);
    padding: 12px 0 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fr-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(66, 165, 245, 0.18), transparent 26%),
        radial-gradient(circle at 15% 20%, rgba(13, 71, 161, 0.1), transparent 22%);
    pointer-events: none;
}

.fr-hero-grid,
.fr-section-grid,
.fr-process-grid,
.fr-application-grid {
    display: grid;
    gap: 28px;
}

.fr-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 14px;
}

.fr-hero-copy {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.fr-kicker {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.12);
    border: 1px solid rgba(30, 136, 229, 0.18);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fr-hero-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.fr-hero-center .fr-title {
    max-width: none;
}

.fr-hero-center .fr-desc {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.fr-hero-center .fr-title em {
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fr-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4.2vw, 3.65rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.fr-title-main {
    display: block;
    white-space: nowrap;
}

.fr-hero-copy .fr-title em {
    display: block;
    margin-top: 6px;
    margin-left: 44px;
    font-size: 0.88em;
    white-space: nowrap;
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fr-desc {
    max-width: 60ch;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.58;
}

.fr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.fr-actions--compact {
    margin-top: 0;
    justify-content: flex-end;
}

.fr-metrics,
.fr-cards {
    display: grid;
    gap: 16px;
}

.fr-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
}

.fr-metric-card,
.fr-card,
.fr-side-card,
.fr-step,
.fr-criteria-card,
.fr-form-panel,
.fr-showcase-badge,
.fr-cta-band-inner {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--bg-glass-border);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(10, 46, 82, 0.08);
    backdrop-filter: blur(18px);
}

.fr-metric-card {
    padding: 18px 20px;
}

.fr-metric-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.fr-metric-card span {
    color: var(--text-secondary);
    line-height: 1.5;
}

.fr-showcase {
    position: relative;
}

.fr-showcase--hero {
    padding-bottom: 24px;
}

.fr-showcase-media {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 22px 60px rgba(10, 46, 82, 0.18);
}

.fr-showcase-media img {
    width: 100%;
    aspect-ratio: 0.96;
    object-fit: cover;
}

.fr-showcase--hero .fr-showcase-media img {
    aspect-ratio: 1.2;
    object-position: center 20%;
}

.fr-showcase-float,
.fr-inline-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 40px rgba(10, 46, 82, 0.14);
}

.fr-showcase-float {
    position: absolute;
    left: -10px;
    bottom: 0;
    width: min(34%, 168px);
    background: rgba(255, 255, 255, 0.96);
    padding: 5px;
}

.fr-showcase-float img {
    width: 100%;
    aspect-ratio: 1.08;
    object-fit: cover;
    border-radius: 18px;
}

.fr-showcase-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 22px;
}

.fr-showcase-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--accent-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fr-showcase-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.fr-showcase-badge p,
.fr-proof-item,
.fr-card p,
.fr-side-card p,
.fr-step p,
.fr-form-note,
.fr-criteria-item {
    color: var(--text-secondary);
}

.fr-proof-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.fr-proof-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.fr-proof-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-secondary);
    margin-top: 6px;
    flex: 0 0 auto;
}

.fr-section {
    padding: 32px 0 24px;
}

.fr-section--soft {
    background: linear-gradient(180deg, rgba(240, 246, 252, 0.74), rgba(255, 255, 255, 0.96));
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.fr-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.fr-section-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: start;
}

.fr-card,
.fr-side-card,
.fr-criteria-card {
    padding: 22px;
}

.fr-form-panel {
    padding: 36px 30px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 252, 0.85));
    border: 1px solid rgba(30, 136, 229, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(10, 46, 82, 0.1), 0 1px 3px rgba(30, 136, 229, 0.06);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.fr-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-secondary), #42a5f5, var(--accent-secondary));
    border-radius: 28px 28px 0 0;
}

.fr-form .btn-primary {
    background: linear-gradient(135deg, #1565c0 0%, #1e88e5 50%, #42a5f5 100%);
    border: none;
    border-radius: 14px;
    padding: 13px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fr-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(21, 101, 192, 0.35);
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1e88e5 100%);
}

.fr-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.fr-card-icon,
.fr-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 700;
    flex: 0 0 auto;
    box-shadow: 0 10px 24px rgba(30, 136, 229, 0.18);
}

.fr-card h3,
.fr-side-card h3,
.fr-step h3,
.fr-criteria-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.fr-checklist,
.fr-step-list,
.fr-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fr-check,
.fr-criteria-item {
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
}

.fr-check+.fr-check,
.fr-criteria-item+.fr-criteria-item {
    margin-top: 12px;
}

.fr-check::before,
.fr-criteria-item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-secondary);
}

.fr-process-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
}

.fr-step-list {
    display: grid;
    gap: 16px;
}

.fr-step {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
}

.fr-application-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 20px;
}

.fr-form-intro-wrap {
    display: grid;
    gap: 16px;
}

.fr-inline-visual {
    max-height: 160px;
}

.fr-inline-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fr-form {
    display: grid;
    gap: 18px;
}

.fr-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fr-field {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.fr-field input,
.fr-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-left: 3px solid rgba(30, 136, 229, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 252, 0.6));
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    resize: vertical;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(10, 46, 82, 0.04);
}

.fr-field input:hover,
.fr-field textarea:hover {
    border-left-color: rgba(30, 136, 229, 0.5);
    box-shadow: 0 4px 12px rgba(10, 46, 82, 0.08);
}

.fr-field input:focus,
.fr-field textarea:focus {
    outline: none;
    border-color: rgba(30, 136, 229, 0.35);
    border-left-color: var(--accent-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.08), 0 4px 16px rgba(10, 46, 82, 0.06);
}

.fr-field input::placeholder,
.fr-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.32);
    font-style: italic;
}

.fr-form-note {
    min-height: 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.fr-form-note[data-state="success"] {
    color: #127c65;
}

.fr-form-note[data-state="error"] {
    color: #b42318;
}

.fr-form-note[data-state="info"] {
    color: var(--text-secondary);
}

.fr-cta-band {
    padding: 0 0 96px;
}

.fr-cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

.fr-cta-band-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.18;
    max-width: 16ch;
}

@media (max-width: 1080px) {

    .fr-hero-grid,
    .fr-section-grid,
    .fr-process-grid,
    .fr-application-grid {
        grid-template-columns: 1fr;
    }

    .fr-showcase {
        max-width: 720px;
        margin: 0 auto;
    }

    .fr-actions--compact {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .fr-page-main {
        padding-top: 68px;
    }

    .fr-hero {
        min-height: auto;
        padding: 18px 0 14px;
    }

    .fr-metrics,
    .fr-form-row {
        grid-template-columns: 1fr;
    }

    .fr-title {
        max-width: 100%;
    }

    .fr-title-main,
    .fr-hero-copy .fr-title em {
        white-space: normal;
    }

    .fr-hero-copy .fr-title em {
        margin-left: 28px;
    }

    .fr-showcase-badge {
        position: static;
        margin-top: 16px;
    }

    .fr-showcase--hero {
        padding-bottom: 24px;
    }

    .fr-showcase-float {
        width: min(38%, 148px);
        left: 10px;
        bottom: 10px;
        padding: 5px;
    }

    .fr-cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fr-cta-band-inner h2 {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .fr-hero {
        padding: 14px 0 10px;
    }

    .fr-hero-copy .fr-title em {
        margin-left: 18px;
    }

    .fr-showcase--hero {
        padding-bottom: 0;
    }

    .fr-showcase-float {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .fr-inline-visual img {
        aspect-ratio: 1.1;
    }
}

/* ---------- Franchise page refresh end ---------- */

/* --- Franchise form intro polish --- */
.fr-application-grid {
    align-items: center;
}

.fr-form-intro {
    padding-right: 40px;
}

.fr-inline-visual img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    object-position: center;
}

.fr-form-intro .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.fr-form-intro .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
}

.fr-form-intro .section-desc {
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: none;
    color: var(--text-secondary);
}

.fr-form-intro .section-desc+.section-desc {
    margin-top: 18px;
}

.fr-form-intro .section-desc strong {
    color: var(--text-primary);
}

@media (max-width: 1080px) {
    .fr-form-intro {
        padding-right: 0;
    }

    .fr-showcase--hero {
        max-width: 640px;
        margin: 0 auto;
    }

    .fr-showcase-float {
        left: 18px;
        bottom: 18px;
    }
}

/* ---------- Order page ---------- */
.order-page {
    background:
        radial-gradient(circle at top left, rgba(30, 136, 229, 0.08), transparent 26%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.order-page-main {
    padding-top: 72px;
}

.order-hero {
    position: relative;
    padding: 84px 0 56px;
    overflow: hidden;
}

.order-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(66, 165, 245, 0.18), transparent 24%),
        radial-gradient(circle at 14% 22%, rgba(13, 71, 161, 0.12), transparent 22%);
    pointer-events: none;
}

.order-hero-grid,
.order-layout,
.order-fields {
    display: grid;
    gap: 28px;
}

.order-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
}

.order-kicker {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.12);
    border: 1px solid rgba(30, 136, 229, 0.18);
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.order-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 18px;
    max-width: 11ch;
}

.order-desc {
    max-width: 60ch;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.order-hero-points,
.order-guide-list {
    display: grid;
    gap: 14px;
}

.order-hero-points {
    margin-top: 26px;
}

.order-hero-point,
.order-guide-item,
.order-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(19, 70, 120, 0.08);
    box-shadow: 0 12px 28px rgba(10, 46, 82, 0.06);
}

.order-hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    padding: 16px 18px;
    color: var(--text-primary);
    font-weight: 500;
}

.order-hero-point::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-secondary);
    box-shadow: 0 0 0 6px rgba(30, 136, 229, 0.12);
    flex: 0 0 auto;
}

.order-hero-card,
.order-panel {
    border-radius: 28px;
    overflow: hidden;
}

.order-hero-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(19, 70, 120, 0.08);
    box-shadow: 0 18px 36px rgba(10, 46, 82, 0.08);
    contain: layout paint;
}

.order-hero-card img {
    width: 100%;
    aspect-ratio: 1.04;
    object-fit: cover;
    display: block;
}

.order-hero-card-copy {
    padding: 24px;
}

.order-hero-card-copy strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.order-hero-card-copy p,
.order-guide-item p,
.order-help,
.order-feedback {
    color: var(--text-secondary);
}

.order-section {
    padding: 20px 0 96px;
    content-visibility: auto;
    contain-intrinsic-size: 960px;
}

.order-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    align-items: start;
}

.order-panel {
    padding: 30px;
    contain: layout paint;
}

.order-panel--info .section-desc {
    max-width: none;
    margin-bottom: 24px;
}

.order-guide-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 22px;
}

.order-guide-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(30, 136, 229, 0.18);
}

.order-guide-item h3,
.order-items-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.order-form {
    display: grid;
    gap: 18px;
}

.order-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-field {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.order-field input,
.order-field textarea,
.order-field select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(30, 136, 229, 0.14);
    background: rgba(255, 255, 255, 0.92);
    padding: 14px 16px;
    color: var(--text-primary);
    resize: vertical;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.order-field input:focus,
.order-field textarea:focus,
.order-field select:focus {
    outline: none;
    border-color: rgba(30, 136, 229, 0.42);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.08);
    background: #ffffff;
}

.order-items-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.order-add-item,
.order-remove-item {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.order-add-item {
    padding: 12px 18px;
    background: rgba(30, 136, 229, 0.12);
    color: var(--accent-primary);
    box-shadow: inset 0 0 0 1px rgba(30, 136, 229, 0.16);
}

.order-add-item:hover,
.order-add-item:focus-visible {
    transform: translateY(-1px);
    background: rgba(30, 136, 229, 0.18);
}

.order-items {
    display: grid;
    gap: 14px;
}

.order-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 110px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
    border-radius: 22px;
    background: rgba(240, 246, 252, 0.96);
    border: 1px solid rgba(30, 136, 229, 0.1);
    contain: layout paint;
}

.order-field--qty input {
    text-align: center;
}

.order-remove-item {
    min-height: 52px;
    padding: 0 18px;
    background: rgba(217, 48, 37, 0.1);
    color: #b42318;
    box-shadow: inset 0 0 0 1px rgba(217, 48, 37, 0.12);
}

.order-remove-item:hover,
.order-remove-item:focus-visible {
    transform: translateY(-1px);
    background: rgba(217, 48, 37, 0.16);
}

.order-remove-item:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.order-help,
.order-feedback {
    min-height: 24px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.order-feedback[data-state="error"] {
    color: #b42318;
}

.order-feedback[data-state="success"] {
    color: #127c65;
}

.order-submit {
    justify-content: center;
    width: 100%;
}

@media (max-width: 1080px) {

    .order-hero-grid,
    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-hero-card {
        max-width: 720px;
    }
}

@media (max-width: 820px) {
    .order-page-main {
        padding-top: 68px;
    }

    .order-hero {
        padding: 64px 0 42px;
    }

    .order-fields,
    .order-item-row {
        grid-template-columns: 1fr;
    }

    .order-items-header {
        flex-direction: column;
        align-items: stretch;
    }

    .order-add-item,
    .order-remove-item {
        min-height: 48px;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .order-panel {
        padding: 22px;
    }

    .order-guide-item {
        grid-template-columns: 1fr;
    }

    .order-guide-index {
        width: 48px;
        height: 48px;
    }

    .order-title {
        max-width: 100%;
    }
}

.order-hero-copy,
.order-panel--form,
.order-field--note {
    min-width: 0;
}

.order-hero-copy,
.order-panel--form {
    position: relative;
    z-index: 1;
}

/* ---------- Mobile polish ---------- */
@media (max-width: 768px) {

    .navbar,
    .about-page .navbar,
    .fr-page .navbar,
    .order-page .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-logo-mark--full {
        width: 146px;
    }

    .nav-toggle {
        padding: 6px;
        gap: 4px;
    }

    .nav-toggle span {
        width: 22px;
    }

    .nav-links {
        width: min(82vw, 280px);
        padding: 82px 20px 20px;
    }

    .hero {
        min-height: auto;
        padding: 92px 0 28px;
        align-items: flex-start;
    }

    .hero::before {
        inset: 0;
    }

    .hero-content {
        max-width: 360px;
        padding: 0 18px;
    }

    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 14px;
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }

    .hero-title--brand {
        width: min(100%, 248px);
        max-width: min(100%, 248px);
        margin-bottom: 12px;
    }

    .hero-desc {
        max-width: 20ch;
        font-size: 0.94rem;
        line-height: 1.55;
        margin: 0 auto 18px;
    }

    .hero-buttons {
        width: 100%;
        gap: 10px;
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
        min-height: 46px;
        padding: 12px 20px;
        font-size: 0.92rem;
        justify-content: center;
    }

    .hero-hours {
        width: 100%;
        max-width: 320px;
        padding: 12px 16px;
        gap: 8px;
    }

    .hours-item {
        font-size: 0.8rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about {
        padding: 12px 0 18px;
    }

    .about .container,
    .menu .container,
    .contact .container,
    .footer .container {
        padding: 0 16px;
    }

    .about-grid {
        gap: 18px;
    }

    .about-image {
        max-width: 330px;
        margin: 0 auto;
    }

    .about-collage-grid {
        min-height: 220px;
        gap: 6px;
    }

    .about-badge {
        width: 68px;
        height: 68px;
        left: 8px;
        bottom: 8px;
    }

    .badge-number {
        font-size: 1.05rem;
    }

    .badge-text {
        font-size: 0.54rem;
    }

    .about-heading {
        gap: 8px;
        margin: 0 auto 10px;
    }

    .about-heading::after {
        width: min(120px, 100%);
    }

    .about-content .section-title {
        font-size: clamp(1.95rem, 8vw, 2.45rem);
        line-height: 1.02;
    }

    .about-content .section-title em {
        margin-left: 12px;
        margin-top: 2px;
    }

    .about-copy {
        margin-bottom: 12px;
    }

    .about-text {
        font-size: 0.94rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .about-features {
        gap: 8px;
        margin-top: 12px;
    }

    .feature {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: auto;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature h4 {
        font-size: 0.92rem;
    }

    .feature p {
        font-size: 0.8rem;
    }

    .parallax-window {
        height: 220px;
    }

    .parallax-content {
        padding: 0 16px;
    }

    .parallax-content h2 {
        font-size: clamp(1.8rem, 7vw, 2.35rem);
        top: -12px;
    }

    .section-header {
        margin-bottom: 22px;
    }

    .section-label {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: clamp(1.95rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }

    .section-desc {
        font-size: 0.96rem;
        line-height: 1.68;
    }

    .menu {
        padding: 32px 0 36px;
        margin-top: 0;
    }

    .menu .section-header .section-desc {
        max-width: 30ch;
    }

    .menu-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        max-width: 320px;
        margin: 0 auto 20px;
        justify-content: center;
    }

    .menu-cat {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;
    }

    .menu-card-image {
        aspect-ratio: 1 / 1;
    }

    .menu-card--text {
        min-height: 156px;
        padding: 18px 14px 16px;
    }

    .menu-card-topline {
        margin-bottom: 14px;
    }

    .menu-card-topline-tag {
        padding: 5px 10px;
        font-size: 0.64rem;
    }

    .menu-card-badge {
        top: 4px;
        right: 4px;
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .menu-card-header h3 {
        font-size: 0.95rem;
    }

    .menu-card-content p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .menu-card--text .menu-card-content p {
        max-width: none;
    }

    .menu-price-value {
        font-size: 0.95rem;
    }

    .menu-variant-btn {
        padding: 5px 12px;
        font-size: 0.72rem;
    }

    .contact {
        padding: 18px 0 24px;
        margin-top: 0;
    }

    .contact-grid {
        gap: 18px;
    }

    .contact-info {
        max-height: 340px;
        border-radius: 18px;
    }

    .contact-map {
        min-height: 260px;
        border-radius: 18px;
    }

    .footer {
        padding: 30px 0 18px;
    }

    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        text-align: center !important;
        padding-bottom: 18px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-mark {
        width: 44px;
        height: 44px;
    }

    .footer-brand-copy strong {
        font-size: 1rem;
    }

    .footer-links {
        align-items: center !important;
        gap: 10px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 10px !important;
    }

    .footer-bottom {
        padding-top: 18px;
    }

    .fab-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
        box-shadow: 0 10px 22px rgba(18, 140, 126, 0.24);
    }

    .fab-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 84px;
        padding-bottom: 22px;
    }

    .hero-content {
        max-width: 330px;
        padding: 0 14px;
    }

    .hero-title--brand {
        width: min(100%, 220px);
        max-width: min(100%, 220px);
    }

    .hero-desc {
        max-width: 19ch;
        font-size: 0.92rem;
    }

    .hero-buttons .btn {
        max-width: 208px;
    }

    .hero-hours {
        max-width: 286px;
        padding: 10px 14px;
    }

    .hours-item {
        font-size: 0.76rem;
    }

    .about-image {
        max-width: 300px;
    }

    .about-collage-grid {
        min-height: 196px;
    }

    .menu .section-header .section-desc,
    .contact .section-header .section-desc {
        max-width: 27ch;
    }

    .menu-categories {
        max-width: 100%;
    }

    .menu-card-image {
        aspect-ratio: 1.5;
    }

    .contact-info {
        max-height: 300px;
    }

    .contact-map {
        min-height: 230px;
    }
}
