:root {
    --paper: #fbf9f4;
    --paper-2: #f4efe5;
    --card: #ffffff;
    --ink: #1c1c1c;
    --ink-soft: #454545;
    --muted: #8a8275;
    --line: #eae3d4;
    --accent: #c05b2e;
    --accent-dark: #9f4520;
    --accent-soft: #f6e7db;
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Nunito Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 10px rgba(28, 28, 28, 0.06);
    --shadow: 0 12px 32px rgba(28, 28, 28, 0.1);
    --shadow-lg: 0 28px 70px rgba(28, 28, 28, 0.16);
    --radius: 20px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

[hidden] { display: none !important; }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

::selection { background: var(--accent); color: #fff; }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid rgba(192, 91, 46, 0.6); outline-offset: 2px; border-radius: 6px;
}

section[id] { scroll-margin-top: 84px; }

/* ===== HUVUDRUBRIK / NAV ===== */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 249, 244, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(28, 28, 28, 0.1); }

.nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 10px 20px; max-width: 1120px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); min-width: 0; }
.brand .brand-logo {
    width: 46px; height: 46px; border-radius: 14px; overflow: hidden; flex-shrink: 0;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center; padding: 4px;
}
.brand .brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; line-height: 1.1; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--sans); font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    display: block; padding: 9px 15px; text-decoration: none; color: var(--ink);
    font-weight: 700; font-size: 0.95rem; border-radius: 999px; transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink-soft); }
.nav-links a.active:not(.cta):not(.nav-ig) { color: var(--accent-dark); background: var(--accent-soft); }
.nav-links a.cta { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.nav-links a.cta:hover { background: #000; color: #fff; }

.nav-links a.nav-ig {
    width: 44px; height: 44px; padding: 0; margin-left: 6px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
    color: #fff; overflow: hidden;
    background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    box-shadow: 0 4px 14px rgba(188, 24, 136, 0.35);
    transition: transform 0.15s;
}
.nav-links a.nav-ig:hover { transform: scale(1.08); }
.nav-links a.nav-ig svg { width: 20px; height: 20px; }
.nav-links a.nav-ig span { display: none; }

.nav-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
    background: var(--card); color: var(--ink); font-size: 1.25rem; cursor: pointer;
    align-items: center; justify-content: center;
}

/* ===== HERO ===== */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(52% 70% at 88% 8%, rgba(192, 91, 46, 0.12), transparent 62%),
        radial-gradient(44% 64% at 6% 92%, rgba(52, 42, 30, 0.08), transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    border-bottom: 1px solid var(--line);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 72px 20px 88px; max-width: 1120px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #f6f1e6;
    font-size: 0.74rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 8px 16px; border-radius: 999px; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.hero-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(192,91,46,0.55); } 50% { box-shadow: 0 0 0 6px rgba(192,91,46,0); } }

.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); margin-bottom: 18px; color: var(--ink); }
.hero h1 em {
    font-style: italic; color: var(--accent-dark); font-weight: 600;
    background: linear-gradient(transparent 62%, rgba(233, 162, 111, 0.38) 0);
    border-radius: 4px; padding: 0 4px 2px;
}
.hero p.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 999px;
    font-weight: 800; font-size: 0.98rem; text-decoration: none; border: none; cursor: pointer;
    font-family: var(--sans); letter-spacing: 0.01em;
    transition: transform 0.12s, box-shadow 0.12s, background 0.12s, color 0.12s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(192, 91, 46, 0.35); }
.btn.primary:hover { background: var(--accent-dark); }
.btn.dark { background: var(--ink); color: #fff; box-shadow: 0 10px 26px rgba(28, 28, 28, 0.25); }
.btn.dark:hover { background: #000; }
.btn.ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--ink); }

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 22px; z-index: 0; }
.hero-visual::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 122%; aspect-ratio: 1;
    transform: translate(-50%, -50%); border-radius: 50%;
    background: radial-gradient(closest-side, rgba(192, 91, 46, 0.18), rgba(192, 91, 46, 0) 70%);
}
.hero-logo-card {
    position: relative; z-index: 1;
    width: min(100%, 400px); aspect-ratio: 1; border-radius: 28px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center; padding: 34px;
}
.hero-logo-card img { border-radius: 12px; }
.hero-sticker {
    position: absolute; top: 4%; left: 0; z-index: 2; width: 108px; height: 108px; border-radius: 50%;
    background: var(--accent); color: #fff; box-shadow: var(--shadow-lg);
    transform: rotate(-12deg); border: 2px solid #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    text-align: center; padding: 12px;
}
.hero-sticker .hs-star { font-size: 0.9rem; color: #ffe6d1; line-height: 1; }
.hero-sticker b { font-family: var(--serif); font-weight: 600; font-size: 0.7rem; line-height: 1.15; }
.hero-logo-card img { width: 100%; height: 100%; object-fit: contain; }
.hero-float-card {
    position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 16px;
    padding: 11px 17px; box-shadow: var(--shadow-lg); font-size: 0.92rem; font-weight: 800;
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.hero-float-card small { display: block; font-weight: 700; color: var(--muted); font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-float-card .em { width: 34px; height: 34px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-float-card.a { top: 6%; right: 0; }
.hero-float-card.b { bottom: 8%; left: 2%; }

/* ===== HERO: DAGENS MATLÅDA ===== */
.hero-today {
    position: relative; z-index: 2; width: min(100%, 400px); transform: none;
    margin: 0; background: var(--card); border: 1px solid var(--line);
    border-radius: 22px; padding: 16px 22px 14px; box-shadow: var(--shadow-lg);
    text-align: left;
}
.hero-today-row { display: flex; align-items: center; gap: 12px; }
.hero-today .em {
    width: 42px; height: 42px; border-radius: 13px; background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.hero-today-label { font-weight: 800; font-size: 0.7rem; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); line-height: 1.3; }
.hero-today-label small { display: block; letter-spacing: 0.2px; text-transform: none; color: var(--accent); font-weight: 800; font-size: 0.82rem; margin-top: 2px; }
.hero-today-dish { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--ink); margin: 13px 0 9px; line-height: 1.3; }
.hero-today-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: 0.9rem; color: var(--accent-dark); text-decoration: none; }
.hero-today-cta:hover { text-decoration: underline; }

/* ===== HERO: FÖRDELAR ===== */
.benefits { list-style: none; margin: 0 0 26px; display: flex; flex-wrap: wrap; gap: 10px 18px; }
.benefits li { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.95rem; color: var(--ink-soft); }
.benefits .v { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 800; flex-shrink: 0; }

/* ===== DÄRFÖR / EGENSKAPER ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); transition: transform 0.18s, box-shadow 0.18s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--accent-soft); color: var(--accent-dark); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 800; font-size: 1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-dark); }
.faq-plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; transition: transform 0.2s; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.95rem; }
.faq-item[open] { border-color: #d9d0bd; }

/* ===== SEKTIONER ===== */
.section { padding: 80px 20px; }
.section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin: 0 auto 42px; text-align: center; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 22px; height: 1.5px; background: var(--accent); opacity: 0.55; }
.section h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--ink); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ===== VECKANS MATLÅDA ===== */
.menu-meta { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 17px; font-weight: 800; font-size: 0.85rem; color: var(--ink-soft); }
.chip .wk { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: inherit; }
.chip.ink { background: var(--ink); color: #f6f1e6; border-color: var(--ink); }
.chip.accent { background: var(--accent); color: #fff; border-color: var(--accent); }

.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.day-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 185px;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; position: relative;
}
.day-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(90deg, var(--accent), #e9a26f); opacity: 0; transition: opacity 0.18s;
}
.day-card:hover::before, .day-card.today::before { opacity: 1; }
.day-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9d0bd; }
.day-card .day-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.day-card .day-name { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent); }
.day-card .day-index { font-family: var(--serif); font-size: 1.35rem; color: #ddd4c0; font-weight: 600; }
.day-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); flex: 0 0 auto; }
.day-card p { font-size: 0.9rem; color: var(--muted); }
.day-card.today { border-color: var(--accent); box-shadow: 0 0 0 1.5px var(--accent), var(--shadow); background: linear-gradient(180deg, #fff 0%, #fff7f1 100%); }
.day-card.today .day-pill { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: 0.62rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.day-card.today .day-name { padding-right: 46px; }
.day-card.today .day-top { padding-right: 44px; }

.menu-note { max-width: 660px; margin: 28px auto 0; text-align: center; font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--ink-soft); }
.menu-updated { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 10px; }

.menu-photo {
    margin: 34px auto 30px; max-width: 640px; border-radius: var(--radius); overflow: hidden;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.menu-photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.menu-photo-caption {
    padding: 15px 20px; font-family: var(--serif); font-style: italic; font-size: 1.05rem;
    color: var(--ink-soft); text-align: center; border-top: 1px solid var(--line); background: #fff;
}

/* ===== GALLERI ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ===== SÅ FUNKAR DET ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--serif); font-size: 1.4rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 0.94rem; }
.steps-cta { text-align: center; margin-top: 34px; }

/* Pilarna mellan stegen (skrivbord) */
@media (min-width: 881px) {
    .step-card:not(:last-child)::after {
        content: '\2192'; position: absolute; top: 50%; right: -22px; z-index: 2;
        width: 28px; height: 28px; border-radius: 50%;
        background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
        display: flex; align-items: center; justify-content: center;
        color: var(--accent); font-weight: 800; font-size: 0.82rem; line-height: 1;
        transform: translateY(-50%);
    }
    .step-card:hover::after { border-color: var(--accent); color: var(--accent-dark); }
}

/* ===== OM OSS ===== */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }
.about-visual { position: relative; }
.about-visual .photo {
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    background: #fff; border: 1px solid var(--line); aspect-ratio: 4/3; position: relative;
    display: flex; align-items: center; justify-content: center; padding: 40px;
}
.about-visual .photo img { width: 100%; height: 100%; object-fit: contain; }
.about-visual .stamp {
    position: absolute; bottom: -18px; right: -8px; background: var(--accent); color: #fff;
    border-radius: 16px; padding: 15px 20px; box-shadow: var(--shadow-lg); transform: rotate(-4deg); text-align: center;
}
.about-visual .stamp b { font-family: var(--serif); font-size: 1.5rem; display: block; line-height: 1.1; }
.about-visual .stamp span { font-size: 0.66rem; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--ink); margin-bottom: 16px; }
.about-text p { color: var(--ink-soft); margin-bottom: 14px; font-size: 1.02rem; }
.about-values { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.about-values span {
    background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 10px 17px;
    font-weight: 800; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft);
}
.about-values .v { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); align-items: center; justify-content: center; font-size: 0.7rem; color: var(--accent-dark); font-weight: 800; }

/* ===== INSTAGRAM ===== */
.ig-panel {
    max-width: 860px; margin: 0 auto; border-radius: 26px; overflow: hidden;
    background: linear-gradient(130deg, #1c1c1c 0%, #2b241c 55%, #351f16 100%);
    color: #f3ecdd; box-shadow: var(--shadow-lg); position: relative;
}
.ig-panel::before { content: ''; position: absolute; inset: 0; background: radial-gradient(40% 80% at 90% 10%, rgba(192,91,46,0.28), transparent 60%); pointer-events: none; }
.ig-panel-inner { position: relative; padding: 48px 40px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: center; }
.ig-eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #e8a17c; margin-bottom: 12px; }
.ig-panel h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; margin-bottom: 12px; }
.ig-panel p { color: #cfc3ab; font-size: 1rem; margin-bottom: 22px; max-width: 46ch; }
.ig-handles { display: flex; gap: 14px; flex-wrap: wrap; }
.ig-handle { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; padding: 10px 18px; font-weight: 800; font-size: 0.95rem; color: #fff; text-decoration: none; transition: background 0.15s, border-color 0.15s; }
.ig-handle:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.ig-big { justify-content: center; flex-direction: column; text-align: center; gap: 18px; }
.ig-big .ig-big-avatar { width: 120px; height: 120px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,0.85); box-shadow: 0 18px 50px rgba(0,0,0,0.5); background: #fff; padding: 6px; }
.ig-big .ig-big-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-big b { font-family: var(--serif); font-size: 1.5rem; display: block; }
.ig-big span { color: #cfc3ab; font-size: 0.95rem; }
.ig-big .btn { margin-top: 6px; }

/* ===== KONTAKT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); margin-bottom: 12px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 20px; }
.contact-lines { margin: 20px 0; }
.contact-line { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.contact-line:nth-child(2) .contact-icon { background: linear-gradient(45deg, #f09433, #dc2743 40%, #bc1888); color: #fff; }
.contact-line b { display: block; font-size: 0.96rem; color: var(--ink); }
.contact-line span { color: var(--muted); font-size: 0.88rem; }
.contact-line a { color: var(--ink); text-decoration: none; font-weight: 800; }
.contact-line a:hover { color: var(--accent); }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.45rem; margin-bottom: 6px; color: var(--ink); }
.form-card .form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 800; font-size: 0.86rem; margin-bottom: 7px; color: var(--ink); }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 0.98rem;
    font-family: var(--sans); background: #fff; color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,91,46,0.14); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-status { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-weight: 700; font-size: 0.92rem; display: none; }
.form-status.ok { display: block; background: #f0eee1; color: #3d3a2e; border: 1px solid #ddd6bf; }
.form-status.err { display: block; background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #eccbb4; }
.form-hint { margin-top: 14px; font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-hint a { color: var(--ink); font-weight: 800; }

/* ===== FOT ===== */
.site-footer { background: #16130d; color: #d9cfba; padding: 52px 20px 36px; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-logo { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; padding: 4px; flex-shrink: 0; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand b { font-family: var(--serif); font-size: 1.1rem; color: #fff; }
.footer-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-col h4 { color: #fff; font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #b9ad94; text-decoration: none; font-size: 0.92rem; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1120px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: #8b826f; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 50px; height: 50px;
    border-radius: 50%; border: none; cursor: pointer; background: var(--ink); color: #fff;
    font-size: 1.15rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== ADMIN ===== */
.admin-body { min-height: 100vh; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.admin-topbar { background: #16130d; color: #fff; }
.admin-top { max-width: 1120px; margin: 0 auto; padding: 13px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-top .brand { color: #fff; }
.admin-top .brand-name { color: #fff; }
.admin-top .brand-sub { color: #a99d84; }
.admin-top .brand-logo { background: #fff; border-color: rgba(255,255,255,0.2); }
.admin-top a.top-link { color: #d9cfba; text-decoration: none; font-weight: 800; font-size: 0.9rem; }
.admin-top a.top-link:hover { color: #fff; }

.admin-center { max-width: 1120px; margin: 0 auto; padding: 48px 20px; min-height: 60vh; }

.login-card { max-width: 420px; margin: 44px auto; }
.login-card .card { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-lg); }
.login-card .card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--accent), #e9a26f); }
.login-logo { width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 2px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; padding: 7px; }
.login-logo img { width: 100%; height: 100%; object-fit: contain; }
.login-card h1 { text-align: center; font-size: 1.7rem; color: var(--ink); margin-bottom: 6px; }
.login-card p { text-align: center; color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
.login-msg { margin-top: 14px; font-weight: 700; font-size: 0.9rem; min-height: 1.2em; }
.login-msg.err { color: var(--accent-dark); }
.login-msg.ok { color: #3d3a2e; }
.login-mode-hint { margin-top: 16px; padding: 12px 14px; background: var(--bg-alt, #f7efe4); border: 1px dashed var(--line, #e2d6c3); border-radius: 10px; color: var(--muted, #6b5f4a); font-size: 0.85rem; line-height: 1.55; }
.login-mode-hint code { font-family: Consolas, Menlo, monospace; font-weight: 700; color: var(--ink, #1c1c1c); }

.editor-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.editor-panel, .preview-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.editor-panel h2 { font-size: 1.4rem; color: var(--ink); margin-bottom: 4px; }
.editor-panel .hint { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; }
.editor-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.day-editor { border-top: 1px solid var(--line); padding: 16px 0 6px; }
.day-editor .day-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; display: flex; justify-content: space-between; align-items: center; }
.day-editor .day-label .del { background: none; border: none; color: #c9c0ab; cursor: pointer; font-size: 1rem; }
.day-editor .day-label .del:hover { color: var(--accent-dark); }
.day-editor input, .day-editor textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 0.95rem; font-family: var(--sans); margin-bottom: 9px; background: #fff; color: var(--ink); }
.day-editor input:focus, .day-editor textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,91,46,0.14); }
.day-editor textarea { min-height: 64px; resize: vertical; }

/* ===== ADMIN: BILDUPPLÄGGNING ===== */
.upload-block { margin-top: 22px; }
.upload-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.upload-title { display: block; font-weight: 800; font-size: 0.86rem; color: var(--ink); }
.upload-hint { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 3px; }
.upload-drop { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; background: var(--paper-2); border: 1.5px dashed #cfc4ae; border-radius: 12px; padding: 13px 20px; font-weight: 800; font-size: 0.9rem; color: var(--ink-soft); transition: border-color 0.15s, background 0.15s; }
.upload-drop:hover { border-color: var(--accent); background: var(--accent-soft); }
.upload-preview { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 12px; }
.upload-preview img { width: 150px; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.upload-preview .btn.ghost { padding: 9px 15px; font-size: 0.85rem; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.gallery-thumb { position: relative; width: 76px; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb .thumb-del { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; border-radius: 50%; border: none; cursor: pointer; background: rgba(0,0,0,0.65); color: #fff; font-size: 0.72rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.gallery-thumb .thumb-del:hover { background: var(--accent-dark); }

/* ===== ADMIN: VANLIGA FRÅGOR ===== */
.faq-editor { border-top: 1px solid var(--line); padding: 14px 0 4px; }
.faq-editor-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 9px; }
.faq-editor-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent); }
.faq-editor-head .del { background: none; border: none; color: #c9c0ab; cursor: pointer; font-size: 1rem; }
.faq-editor-head .del:hover { color: var(--accent-dark); }
.faq-editor input, .faq-editor textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
    font-size: 0.95rem; font-family: var(--sans); margin-bottom: 9px; background: #fff; color: var(--ink);
}
.faq-editor input:focus, .faq-editor textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,91,46,0.14); }
.faq-editor textarea { min-height: 64px; resize: vertical; }
.faq-empty { color: var(--muted); font-size: 0.85rem; font-style: italic; }

.editor-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.editor-actions .btn { flex: 1; justify-content: center; }
.editor-note { margin-top: 14px; font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.save-status { margin-top: 16px; padding: 13px 16px; border-radius: 12px; font-weight: 800; font-size: 0.92rem; display: none; }
.save-status.ok { display: block; background: #f0eee1; color: #3d3a2e; border: 1px solid #ddd6bf; }
.save-status.err { display: block; background: var(--accent-soft); color: var(--accent-dark); border: 1px solid #eccbb4; }

.preview-panel { position: sticky; top: 92px; }
.preview-panel h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--sans); }
.preview-panel .pp { color: var(--muted); font-size: 0.85rem; margin-bottom: 16px; }
.preview-week { display: flex; gap: 8px; margin-bottom: 16px; }
.pv-card { border: 1px solid var(--line); border-radius: 14px; padding: 14px; margin-bottom: 10px; background: var(--paper); }
.pv-card .pv-day { font-size: 0.64rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent); }
.pv-card .pv-title { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); }
.pv-card .pv-desc { font-size: 0.82rem; color: var(--muted); }
.preview-empty { color: var(--muted); font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 880px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
        background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 16px 16px;
        display: none; gap: 4px; box-shadow: 0 24px 40px rgba(28,28,28,0.12);
    }
    .nav-links.open { display: flex; }
    .nav-links a { text-align: left; padding: 13px 14px; border-radius: 12px; }
    .nav-links a.nav-ig { width: auto; height: auto; margin: 6px 0 0; border-radius: 12px; padding: 13px 14px; justify-content: flex-start; gap: 10px; }
    .nav-links a.nav-ig svg { flex-shrink: 0; }
    .nav-links a.nav-ig span { display: inline; font-size: 0.95rem; font-weight: 800; }

    .hero-inner { grid-template-columns: 1fr; padding: 40px 18px 54px; gap: 30px; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-badge { font-size: 0.68rem; padding: 7px 13px; }
    .benefits { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-card { width: min(78%, 340px); }
    .hero-today { width: min(92%, 340px); }
    .hero-float-card.a { right: 2%; }
    .hero-float-card.b { left: 2%; }

    .menu-grid { grid-template-columns: 1fr; gap: 12px; }
    .day-card { min-height: auto; }

    .steps-grid { grid-template-columns: 1fr; gap: 12px; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
    .about-visual { max-width: 460px; margin: 0 auto; }
    .ig-panel-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .ig-panel p { margin-left: auto; margin-right: auto; }
    .ig-handles { justify-content: center; }
    .ig-big { order: -1; }

    .editor-layout { grid-template-columns: 1fr; }
    .preview-panel { position: static; }
    .editor-meta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 54px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-cols { gap: 28px; }
    .editor-meta { grid-template-columns: 1fr; }
    .brand-name { font-size: 1.05rem; }
    .brand-sub { font-size: 0.6rem; }
    .nav { padding: 8px 14px; }
    .hero-inner { padding: 30px 16px 48px; gap: 26px; }
    .hero h1 { font-size: clamp(2.1rem, 8.2vw, 2.6rem); margin-bottom: 14px; }
    .hero p.lead { font-size: 1.02rem; }
    .hero-actions .btn { width: 100%; }
    .hero-logo-card { padding: 26px; border-radius: 24px; }
    .hero-today { padding: 14px 18px 13px; border-radius: 18px; }
    .hero-today-dish { font-size: 1.12rem; }
    .hero-sticker { width: 82px; height: 82px; left: -4px; }
    .hero-sticker b { font-size: 0.6rem; }
    .hero-float-card { padding: 9px 13px; font-size: 0.84rem; }
    .section-head { margin-bottom: 32px; }
    .feature-card { padding: 22px 18px; }
    .feature-icon { width: 46px; height: 46px; font-size: 1.3rem; margin-bottom: 14px; }
    .day-card { padding: 20px 18px; }
    .menu-photo { margin: 26px auto 26px; }
    .menu-note { font-size: 1.05rem; }
    .steps-cta .btn { width: 100%; justify-content: center; }
    .form-card { padding: 24px 20px; }
    .site-footer { padding: 40px 16px 28px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .ig-panel-inner { padding: 34px 20px; }
    .back-to-top { right: 14px; bottom: 14px; }
}

@media (max-width: 380px) {
    .hero-logo-card, .hero-today { width: min(94%, 300px); }
    .hero h1 { font-size: 2.05rem; }
    .hero-sticker { width: 74px; height: 74px; }
    .hero-sticker b { font-size: 0.56rem; }
    .benefits li { font-size: 0.88rem; }
    .btn { padding: 13px 20px; font-size: 0.95rem; }
    .menu-grid { gap: 10px; }
    .gallery-grid { gap: 8px; }
    .editor-panel, .preview-panel { padding: 22px 18px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    * { animation: none !important; }
    .back-to-top { transition: none; }
}