/* ================================
   TerraToit — Light & Warm Theme
   ================================ */

:root {
    /* Tła — ciepłe, kremowe, świetliste */
    --bg: #FFFBF5;
    --bg-soft: #FFF4E6;
    --bg-mint: #F0F7EE;
    --bg-peach: #FCE7D3;
    --bg-card: #FFFFFF;

    /* Kolory marki */
    --primary: #7BAE7F;          /* szałwiowa zieleń */
    --primary-dark: #5F9466;
    --primary-soft: #C8E0C9;
    --accent: #F4A261;           /* ciepły bursztyn */
    --accent-2: #E9C46A;         /* musztardowy */
    --coral: #E76F51;            /* używany bardzo oszczędnie */
    --berry: #C9839B;

    /* Typografia */
    --text: #3D5147;             /* miękki ciemny zielono-szary, nie czarny */
    --text-soft: #6B7B72;
    --text-mute: #9AA6A0;

    --border: #ECE3D2;
    --border-soft: #F5EEE0;

    /* Cienie miękkie, bez agresji */
    --shadow-sm: 0 2px 8px rgba(123, 138, 110, 0.06);
    --shadow-md: 0 8px 24px rgba(123, 138, 110, 0.08);
    --shadow-lg: 0 16px 40px rgba(123, 138, 110, 0.10);

    /* Promienie */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 24px;
    --r-pill: 999px;

    /* Layout */
    --container: 1200px;
    --container-narrow: 920px;

    /* Czcionki */
    --font-serif: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--accent);
}

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

/* ====== Typografia ====== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== Plashka "Treści reklamowe" ====== */
.ad-bar {
    background: var(--bg-peach);
    color: var(--text);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--border-soft);
}

/* ====== Header ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 251, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 400;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 15px;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background: #E08F4A;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ====== Mobile menu ====== */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--r-pill);
    background: var(--bg-soft);
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ====== Hero ====== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, var(--bg-soft) 0%, transparent 55%),
        radial-gradient(ellipse at bottom left, var(--bg-mint) 0%, transparent 50%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.hero h1 {
    margin-bottom: 22px;
}

.hero h1 .highlight {
    color: var(--primary-dark);
    font-style: italic;
    position: relative;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-soft);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px dashed var(--border);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--primary-dark);
    line-height: 1;
}

.hero-stat span {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 4px;
    display: block;
}

.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--r-lg);
    background: var(--bg-soft);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-visual .img-placeholder {
    height: 100%;
    border-radius: 0;
}

.hero-floating {
    position: absolute;
    background: white;
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.hero-floating .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-floating-1 {
    top: 24px;
    left: -24px;
    animation: float 5s ease-in-out infinite;
}

.hero-floating-2 {
    bottom: 32px;
    right: -20px;
    animation: float 5s ease-in-out infinite 2s;
}

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

/* ====== Image placeholder ====== */
.img-placeholder {
    background:
        repeating-linear-gradient(
            45deg,
            var(--bg-soft),
            var(--bg-soft) 14px,
            var(--bg-mint) 14px,
            var(--bg-mint) 28px
        );
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--text-soft);
    padding: 32px;
    min-height: 200px;
    border: 1px dashed var(--border);
    position: relative;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--border-soft);
    border-radius: calc(var(--r-md) - 6px);
    pointer-events: none;
}

.img-placeholder .img-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-dark);
    background: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.img-placeholder .img-desc {
    font-size: 12px;
    max-width: 90%;
    line-height: 1.5;
    color: var(--text-mute);
}

/* ====== Sections ====== */
section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.08rem;
}

/* ====== Audience cards (Komu pomagamy) ====== */
.audience {
    background: var(--bg-mint);
}

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

.aud-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    border: 1px solid transparent;
}

.aud-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.aud-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-soft), var(--bg-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.aud-card h3 {
    margin-bottom: 10px;
    color: var(--text);
}

.aud-card p {
    font-size: 15px;
}

/* ====== Advantages ====== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.adv-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: var(--r-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    transition: all .3s ease;
}

.adv-card:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
}

.adv-card .num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--bg-mint);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
}

.adv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 15px;
    margin: 0;
}

/* ====== Menu/offers ====== */
.menus {
    background: var(--bg-soft);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

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

.menu-card .img-placeholder {
    aspect-ratio: 4/3;
    border-radius: 0;
    border: none;
    border-bottom: 1px dashed var(--border);
    min-height: auto;
}

.menu-card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-card .tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-mint);
    color: var(--primary-dark);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
}

.menu-card h3 {
    margin-bottom: 10px;
}

.menu-card p {
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.menu-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.menu-card li {
    font-size: 14px;
    color: var(--text-soft);
    padding: 6px 0 6px 24px;
    position: relative;
}

.menu-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ====== Pricing ====== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-soft);
    transition: all .3s ease;
    position: relative;
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.price-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 18px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.price-card h3 {
    margin-bottom: 8px;
}

.price-card .desc {
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 42px;
}

.price-card .price {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--text);
    line-height: 1;
}

.price-card .price small {
    font-size: 14px;
    color: var(--text-soft);
    font-family: var(--font-sans);
    margin-left: 6px;
}

.price-card .per {
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 24px;
    margin-top: 4px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.price-card li {
    font-size: 14px;
    color: var(--text-soft);
    padding: 8px 0 8px 28px;
    position: relative;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.price-card .btn {
    width: 100%;
}

/* ====== Process ====== */
.process {
    background: var(--bg-mint);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step {
    text-align: center;
    counter-increment: step;
    position: relative;
}

.step::before {
    content: counter(step, decimal-leading-zero);
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
}

/* ====== FAQ ====== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--r-md);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: all .25s ease;
}

.faq-item.open {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-md);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

.faq-q .toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-mint);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: transform .25s ease;
}

.faq-item.open .toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 26px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 600px;
    padding: 0 26px 24px;
}

/* ====== Testimonials ====== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.t-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.t-card .quote-mark {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    color: var(--accent);
    line-height: 0.6;
    margin-bottom: 16px;
}

.t-card p {
    font-size: 15px;
    color: var(--text);
    flex-grow: 1;
    margin-bottom: 22px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
}

.t-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-mint), var(--bg-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.t-meta strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

.t-meta span {
    font-size: 13px;
    color: var(--text-mute);
}

.stars {
    color: var(--accent-2);
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 2px;
}

/* ====== CTA Banner ====== */
.cta-banner {
    background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-soft) 100%);
    border-radius: var(--r-lg);
    padding: 60px 50px;
    text-align: center;
    margin: 60px auto;
    max-width: var(--container);
    position: relative;
    overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.cta-banner::before {
    width: 200px;
    height: 200px;
    background: var(--primary-soft);
    top: -80px;
    left: -60px;
}

.cta-banner::after {
    width: 240px;
    height: 240px;
    background: var(--bg-peach);
    bottom: -100px;
    right: -80px;
}

.cta-banner > * {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    margin-bottom: 14px;
}

.cta-banner p {
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Forms ====== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: var(--bg-mint);
    border-radius: var(--r-lg);
    padding: 36px;
}

.info-block {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border);
}

.info-block:last-child { border-bottom: none; }

.info-block .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.info-block strong {
    display: block;
    font-size: 14px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-block a,
.info-block span {
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}

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

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

/* If a row ends up with a single field, make it full-width */
.form-row > .form-group:only-child {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--bg);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: all .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(123, 174, 127, 0.12);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.form-success {
    display: none;
    padding: 18px 22px;
    background: var(--bg-mint);
    border: 1px solid var(--primary-soft);
    border-radius: var(--r-sm);
    color: var(--primary-dark);
    font-size: 14px;
    margin-bottom: 16px;
}

.form-success.show { display: block; }

/* ====== Page hero (inner pages) ====== */
.page-hero {
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at top, var(--bg-soft) 0%, transparent 60%),
        var(--bg);
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 18px;
}

.breadcrumb a { color: var(--text-soft); }
.breadcrumb .sep { color: var(--text-mute); }

.page-hero h1 {
    margin-bottom: 14px;
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.08rem;
}

/* ====== About sections ====== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro h2 {
    margin-bottom: 18px;
}

.about-intro p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

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

.value-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--border-soft);
    text-align: center;
}

.value-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
}

.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 14px; }

/* ====== Legal pages ====== */
.legal {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 50px 56px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
}

.legal-content h2 {
    margin: 36px 0 14px;
    font-size: 1.5rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    margin: 24px 0 10px;
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-content li { margin-bottom: 6px; }

.legal-content .updated {
    color: var(--text-mute);
    font-size: 13px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}

.legal-content th,
.legal-content td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.legal-content th {
    background: var(--bg-mint);
    color: var(--text);
    font-weight: 600;
}

.legal-contact-card {
    margin-top: 44px;
    padding: 26px 28px;
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
    border: 1px solid var(--border-soft);
    text-align: center;
}

.legal-contact-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: var(--text);
}

.legal-contact-card p {
    margin: 6px 0;
}

.disclaimer-box {
    background: var(--bg-soft);
    border-left: 3px solid var(--accent);
    padding: 18px 22px;
    border-radius: var(--r-sm);
    margin: 24px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}

/* ====== References list ====== */
.refs-list {
    list-style: none;
    counter-reset: refnum;
}

.refs-list li {
    counter-increment: refnum;
    padding: 14px 0 14px 44px;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
    position: relative;
    line-height: 1.6;
}

.refs-list li::before {
    content: counter(refnum);
    position: absolute;
    left: 0;
    top: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-mint);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    font-family: var(--font-serif);
}

.refs-list li:last-child { border-bottom: none; }

.refs-list a {
    word-break: break-word;
}

/* ====== Footer ====== */
.site-footer {
    background: var(--bg-mint);
    padding: 70px 0 0;
    border-top: 1px solid var(--border-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 14px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-soft);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--primary-dark);
}

.footer-refs-strip {
    padding-bottom: 44px;
    border-top: 1px solid var(--border-soft);
    padding-top: 22px;
}

.footer-refs-strip-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin: 0 0 12px;
}

.footer-refs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 8px;
    align-items: center;
}

.footer-refs-chips a {
    display: inline-block;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-soft);
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    white-space: nowrap;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.footer-refs-chips a:hover {
    color: var(--primary-dark);
    border-color: rgba(45, 90, 74, 0.35);
    background: rgba(255, 255, 255, 0.85);
}

.footer-refs-strip-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-mute);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-refs-strip-more:hover {
    color: var(--primary-dark);
}

.footer-disclaimer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-soft);
    padding: 24px 0;
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.6;
}

.footer-disclaimer .container {
    max-width: var(--container);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding: 22px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--text-mute);
}

.footer-bottom > span {
    flex: 1 1 100%;
    text-align: center;
}

.footer-bottom .legal-mini {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom .legal-mini a {
    color: var(--text-mute);
    font-size: 13px;
}

.footer-bottom .legal-mini a:hover {
    color: var(--primary-dark);
}

/* ====== Cookie banner ====== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 540px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 22px 26px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 200;
    transform: translateY(120%);
    transition: transform .4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.cookie-banner p {
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.55;
}

.cookie-banner .actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner .btn {
    padding: 10px 18px;
    font-size: 13px;
}

/* ====== Reviews page ====== */
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ====== Responsiveness ====== */
@media (max-width: 1024px) {
    section { padding: 70px 0; }
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .audience-grid,
    .menu-grid,
    .testimonials-grid,
    .pricing-grid,
    .values-grid,
    .reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-intro,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border);
        gap: 14px;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 10px 0; }
    .menu-toggle { display: inline-flex; }
    .nav .btn-header { display: none; }

    .audience-grid,
    .advantages-grid,
    .menu-grid,
    .testimonials-grid,
    .pricing-grid,
    .values-grid,
    .reviews-page-grid,
    .process-steps,
    .footer-grid,
    .form-row { grid-template-columns: 1fr; }

    .legal-content { padding: 32px 24px; }
    .contact-form { padding: 26px; }
    .cta-banner { padding: 40px 24px; }
    .hero-floating-1 { left: 10px; }
    .hero-floating-2 { right: 10px; }

    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .footer-refs-chips a {
        white-space: normal;
        text-align: center;
    }
}

/* ====== Reveal-on-scroll ====== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* ====== Utility ====== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ---- Wygenerowane zdjęcia (flatlay) ---- */
.collage-item > img,
.ingredient-disc > img,
.zig-image .frame > img,
.menu-poly > img,
.mag-img > img,
.gallery-strip > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mag-img > img {
    border-radius: var(--r-sm);
}

.collage-item > img { min-height: 0; }

.menu-poly > img {
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 16px;
    border-radius: var(--r-sm);
}

.team-photo-round {
    max-width: 240px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.team-photo-round img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================================================================
   ---- RICH FLATLAY UPGRADES ----
   Decorative blobs, magazine layouts, ingredient circles,
   marquee, polaroid-style frames, curved timeline, wavy dividers,
   tape stickers, hand-drawn doodle accents.
   ================================================================ */

/* ---- Decorative SVG / svg leaves ---- */
.deco {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.deco svg { display: block; width: 100%; height: 100%; }

.deco-leaf-1 { width: 110px; height: 110px; opacity: 0.55; transform: rotate(-15deg); }
.deco-leaf-2 { width: 80px; height: 80px; opacity: 0.5; transform: rotate(35deg); }
.deco-leaf-3 { width: 140px; height: 140px; opacity: 0.4; transform: rotate(160deg); }
.deco-citrus { width: 130px; height: 130px; opacity: 0.85; }
.deco-seed   { width: 18px; height: 18px; opacity: 0.6; }
.deco-spark  { width: 28px; height: 28px; opacity: 0.8; }

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
    50% { transform: translateY(-14px) rotate(calc(var(--r, 0deg) + 4deg)); }
}
.deco.drift { animation: drift 8s ease-in-out infinite; }
.deco.drift-slow { animation: drift 12s ease-in-out infinite; }

/* ---- Organic blob backgrounds ---- */
.blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    filter: blur(40px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.blob-1 { background: var(--bg-mint); }
.blob-2 { background: var(--bg-peach); }
.blob-3 { background: #FFEFD3; }
.blob-4 { background: var(--primary-soft); }

/* Wavy section divider */
.wave-divider {
    position: relative;
    height: 60px;
    margin-top: -1px;
}
.wave-divider svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* ---- Hero collage (richer flatlay layout) ---- */
.hero-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.collage-item {
    position: absolute;
    background: white;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid white;
    transition: transform .4s ease, box-shadow .4s ease;
}
.collage-item:hover {
    transform: scale(1.03) rotate(0deg) !important;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}
.collage-item .img-placeholder {
    border-radius: 0;
    border: none;
    height: 100%;
    min-height: auto;
}
.collage-main {
    inset: 6% 18% 18% 4%;
    border-radius: var(--r-lg);
    transform: rotate(-2deg);
    z-index: 2;
}
.collage-sec {
    width: 40%;
    aspect-ratio: 4/5;
    right: 0;
    top: 0;
    transform: rotate(4deg);
    z-index: 3;
}
.collage-tert {
    width: 38%;
    aspect-ratio: 1/1;
    bottom: 0;
    right: 6%;
    transform: rotate(-3deg);
    z-index: 4;
}

/* Tape sticker (washi tape effect) */
.tape {
    position: absolute;
    top: -8px;
    left: 30%;
    width: 70px;
    height: 18px;
    background: linear-gradient(135deg, rgba(244,162,97,0.55), rgba(233,196,106,0.55));
    transform: rotate(-6deg);
    z-index: 6;
    border-radius: 2px;
}
.tape::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.4) 100%);
}

/* ---- Hero floating badges (richer) ---- */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-soft);
}
.badge-pill .emoji { font-size: 16px; }

/* ---- Marquee strip (running ingredients) ---- */
.marquee {
    background: var(--bg-mint);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: scroll-x 40s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text);
    white-space: nowrap;
}
.marquee-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Ingredient circles section ---- */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}
.ingredient {
    text-align: center;
    transition: transform .3s ease;
}
.ingredient:hover { transform: translateY(-6px); }
.ingredient-disc {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-md);
    border: 5px solid white;
    background: var(--bg-soft);
    position: relative;
}
.ingredient-disc .img-placeholder {
    border-radius: 0;
    border: none;
    min-height: auto;
    height: 100%;
    padding: 18px;
}
.ingredient-disc .img-placeholder .img-num {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.ingredient-disc .img-placeholder .img-desc { font-size: 11px; }
.ingredient h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.ingredient p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* ---- Magazine split (zigzag) ---- */
.zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.zigzag:last-child { margin-bottom: 0; }
.zigzag.flip > .zig-text { order: 2; }
.zigzag.flip > .zig-image { order: 1; }

.zig-image {
    position: relative;
}
.zig-image .frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    background: white;
    padding: 10px;
}
.zigzag.flip .zig-image .frame { transform: rotate(2deg); }
.zig-image .frame .img-placeholder {
    border-radius: var(--r-md);
    height: 100%;
    min-height: auto;
}

.zig-image .floater {
    position: absolute;
    background: white;
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.zig-image .floater .dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.floater-tl { top: -16px; left: -22px; transform: rotate(-3deg); }
.floater-br { bottom: 8%; right: -28px; transform: rotate(4deg); }

.zig-text .section-eyebrow { display: inline-block; }
.zig-text h2 { margin-bottom: 18px; }
.zig-text > p { font-size: 1.05rem; margin-bottom: 18px; }

.bullets {
    list-style: none;
    margin-top: 24px;
}
.bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 15px;
    color: var(--text);
}
.bullets li:last-child { border-bottom: none; }
.bullets li .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-mint);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* ---- Polaroid menu cards (asymmetric) ---- */
.menu-stack {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
    align-items: start;
    position: relative;
}
.menu-poly {
    position: relative;
    background: white;
    border-radius: var(--r-md);
    padding: 12px 12px 24px;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease, box-shadow .3s ease;
}
.menu-poly:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-poly .img-placeholder {
    aspect-ratio: 1/1;
    margin-bottom: 16px;
    border-radius: var(--r-sm);
}
.menu-poly h3 {
    padding: 0 8px;
    margin-bottom: 6px;
    font-size: 1.4rem;
}
.menu-poly p { padding: 0 8px; font-size: 14px; }
.menu-poly .price-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: white;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
    transform: rotate(8deg);
}
.menu-poly-1 { grid-column: 1 / span 5; transform: rotate(-2deg); margin-top: 30px; }
.menu-poly-2 { grid-column: 6 / span 4; transform: rotate(1deg); }
.menu-poly-3 { grid-column: 10 / span 3; transform: rotate(-1deg); margin-top: 60px; }

/* Pull quote */
.pullquote {
    max-width: 760px;
    margin: 80px auto;
    text-align: center;
    position: relative;
    padding: 0 30px;
}
.pullquote::before, .pullquote::after {
    content: '“';
    position: absolute;
    font-family: var(--font-serif);
    font-size: 7rem;
    line-height: 0.6;
    color: var(--bg-peach);
    z-index: 0;
}
.pullquote::before { top: -20px; left: -10px; }
.pullquote::after { content: '”'; bottom: -50px; right: -10px; }
.pullquote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.9rem;
    line-height: 1.4;
    color: var(--text);
    position: relative;
    z-index: 1;
}
.pullquote cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---- Kroki procesu (równy układ) ---- */
.timeline {
    position: relative;
    max-width: 1120px;
    margin: 48px auto 0;
    padding: 0 4px;
}

.timeline-track {
    display: none;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.tline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 26px 16px 22px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.tline:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.tline .num-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin: 0;
    border: 3px solid var(--bg-mint);
    position: relative;
    flex-shrink: 0;
}

.tline .num-circle::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px dashed var(--primary-soft);
    opacity: 0.65;
}

.tline h3 {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.35;
    color: var(--text);
}

.tline p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: var(--text-soft);
}

/* ---- Stats hero strip ---- */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    margin: -60px auto 0;
    max-width: var(--container);
    position: relative;
    z-index: 5;
    border: 1px solid var(--border-soft);
}
.stats-strip .stat {
    text-align: center;
    border-right: 1px dashed var(--border);
    padding: 6px 12px;
}
.stats-strip .stat:last-child { border-right: none; }
.stats-strip .stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary-dark);
    line-height: 1;
}
.stats-strip .stat span {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 6px;
    display: block;
}

/* ---- Polaroid testimonials ---- */
.t-card.polaroid {
    background: white;
    padding: 14px 14px 28px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
}
.t-card.polaroid:nth-child(odd) { transform: rotate(-1.5deg); }
.t-card.polaroid:nth-child(even) { transform: rotate(1.2deg); }
.t-card.polaroid::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 70px;
    height: 16px;
    background: linear-gradient(135deg, rgba(244,162,97,0.5), rgba(233,196,106,0.5));
    transform: rotate(-3deg);
}

/* ---- Gallery flatlay strip ---- */
.gallery-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 14px;
    margin: 40px 0 0;
}
.gallery-strip .img-placeholder {
    aspect-ratio: 1/1;
    min-height: auto;
}
.gallery-strip .img-placeholder:nth-child(1) { aspect-ratio: 1/1.2; }
.gallery-strip .img-placeholder:nth-child(2) { aspect-ratio: 1/1; transform: translateY(20px); }
.gallery-strip .img-placeholder:nth-child(3) { aspect-ratio: 1/1; transform: translateY(-10px); }
.gallery-strip .img-placeholder:nth-child(4) { aspect-ratio: 1/1.2; }

/* ---- Hand-drawn underline ---- */
.scribble {
    position: relative;
    display: inline-block;
}
.scribble::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: -8px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 50 1, 100 6 T 198 6' stroke='%23F4A261' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Sticker */
.sticker {
    position: absolute;
    background: var(--accent);
    color: white;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.1;
    transform: rotate(-12deg);
    box-shadow: var(--shadow-md);
    padding: 8px;
    z-index: 4;
}
.sticker.green { background: var(--primary); }
.sticker.berry { background: var(--berry); }

/* ---- Newsletter / pre-footer band ---- */
.pre-footer {
    background:
        radial-gradient(ellipse at top left, var(--bg-peach) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, var(--bg-mint) 0%, transparent 55%),
        var(--bg-soft);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.pre-footer .container { position: relative; z-index: 1; }
.pre-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}
.pre-footer h2 { margin-bottom: 14px; }
.pre-footer-form {
    background: white;
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}
.pre-footer-form .form-row { gap: 12px; }

/* ---- Background dot pattern ---- */
.dot-bg {
    background-image: radial-gradient(circle, var(--border) 1px, transparent 1.2px);
    background-size: 22px 22px;
}

/* ---- Tag chips ---- */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 6px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: white;
    border: 1px solid var(--border-soft);
    font-size: 13px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: all .2s ease;
}
.chip:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.chip:hover .dot { background: white; }

/* ---- Section bg variants ---- */
.bg-mint { background: var(--bg-mint); }
.bg-soft { background: var(--bg-soft); }
.bg-peach { background: var(--bg-peach); }
.bg-card  { background: var(--bg-card); }

/* relative wrapper for placing decorations */
.rel { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---- Magazine about layout ---- */
.mag-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: start;
}
.mag-img-1 { grid-column: 1 / span 5; aspect-ratio: 4/5; }
.mag-text-1 { grid-column: 7 / span 6; padding-top: 60px; }
.mag-img-2 { grid-column: 8 / span 4; aspect-ratio: 1/1; }
.mag-text-2 { grid-column: 2 / span 5; padding-top: 60px; }
.mag-text-2 h3, .mag-text-1 h3 { font-size: 2rem; margin-bottom: 14px; }
.mag-text-2 p, .mag-text-1 p { font-size: 1.05rem; }

.mag-img {
    background: white;
    padding: 12px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    transition: transform .4s ease;
    overflow: hidden;
}
.mag-img.tilt-l { transform: rotate(-2deg); }
.mag-img.tilt-r { transform: rotate(2deg); }
.mag-img:hover { transform: rotate(0deg) scale(1.02); }
.mag-img .img-placeholder {
    border-radius: var(--r-sm);
    height: 100%;
    min-height: auto;
}

/* Drop cap */
.dropcap p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.85;
    color: var(--primary-dark);
    padding: 6px 12px 0 0;
    font-style: italic;
}

/* ---- Responsiveness for new components ---- */
@media (max-width: 1024px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stats-strip .stat:nth-child(2) { border-right: none; }
    .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
    .menu-stack { display: flex; flex-direction: column; gap: 32px; }
    .menu-poly-1, .menu-poly-2, .menu-poly-3 {
        grid-column: auto;
        transform: none;
        margin-top: 0;
        max-width: 480px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .menu-poly:nth-child(2) { transform: rotate(0); }
    .zigzag { grid-template-columns: 1fr; gap: 50px; margin-bottom: 70px; }
    .zigzag.flip > .zig-text { order: 1; }
    .zigzag.flip > .zig-image { order: 2; }
    .pre-footer-grid { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .mag-grid { display: flex; flex-direction: column; gap: 30px; }
    .mag-img, .mag-img-2 { max-width: 480px; align-self: center; aspect-ratio: 4/5; }
    .mag-text-1, .mag-text-2 { padding-top: 0; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .gallery-strip .img-placeholder { transform: none !important; }
    .pullquote blockquote { font-size: 1.4rem; }
}

@media (max-width: 720px) {
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-grid { grid-template-columns: 1fr; }
    .gallery-strip { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: 1fr; gap: 0; padding: 18px; }
    .stats-strip .stat {
        border-right: none;
        border-bottom: 1px dashed var(--border);
        padding: 16px 0;
    }
    .stats-strip .stat:last-child { border-bottom: none; }
    .collage-main { inset: 4% 14% 14% 2%; }
    .collage-sec { width: 36%; }
    .collage-tert { width: 34%; right: 4%; }
    .marquee-item { font-size: 1.05rem; }
    .pullquote { margin: 50px auto; }
    .pullquote blockquote { font-size: 1.15rem; }
    .deco-leaf-1, .deco-leaf-3, .deco-citrus { display: none; }
}

