/* ============================================================
   JabaSup Design System
   Kleuren, typografie, spacing en componenten
   ============================================================ */

:root {
    --ink: #04557A;
    --ocean: #046995;
    --cream: #FDF3DC;
    --accent: #FE6802;
    --paper: #FDF8EA;
    --white: #ffffff;
    --ink-10: rgba(4, 85, 122, 0.1);
    --ink-20: rgba(4, 85, 122, 0.2);
    --ink-60: rgba(4, 85, 122, 0.6);
    --ink-80: rgba(4, 85, 122, 0.8);
    --cream-light: rgba(253, 243, 220, 0.5);

    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --font-serif: 'Instrument Serif', serif;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(4, 85, 122, 0.06);
    --shadow-md: 0 8px 24px rgba(4, 85, 122, 0.1);
    --shadow-lg: 0 18px 40px rgba(4, 85, 122, 0.12);
    --shadow-xl: 0 24px 60px rgba(4, 85, 122, 0.15);

    --container: 1360px;
    --gutter: clamp(20px, 4vw, 48px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
input, select, textarea { font-family: var(--font-body); }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* ============================================================
   Typography
   ============================================================ */
.t-display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}
.t-display-xl { font-size: clamp(44px, 7vw, 104px); }
.t-display-lg { font-size: clamp(32px, 4.2vw, 64px); }
.t-display-md { font-size: clamp(28px, 3.4vw, 44px); }
.t-display-sm { font-size: clamp(22px, 2.4vw, 28px); }

.t-body-lg { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; }
.t-body { font-size: 16px; line-height: 1.6; }
.t-body-sm { font-size: 14px; line-height: 1.5; }

.t-mono {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.t-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

/* ============================================================
   Eyebrow
   ============================================================ */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 150ms ease, filter 150ms ease, background 150ms ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn:hover { filter: brightness(1.05); }

.btn-sm  { padding: 10px 16px; font-size: 13px; }
.btn-md  { padding: 14px 22px; font-size: 14px; }
.btn-lg  { padding: 18px 30px; font-size: 16px; }

.btn-primary  { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-dark     { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ghost    { background: transparent; color: var(--ink); border-color: var(--ink-20); }
.btn-cream    { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-white-o  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }

/* ============================================================
   Sections
   ============================================================ */
.section      { padding: 120px 0; }
.section-lg   { padding: 96px 0; }
.section-md   { padding: 72px 0; }
.section-sm   { padding: 48px 0; }

.bg-paper  { background: var(--paper); }
.bg-cream  { background: var(--cream); }
.bg-ink    { background: var(--ink); color: var(--cream); }
.bg-accent { background: var(--accent); color: var(--white); }
.bg-white  { background: var(--white); }

/* ============================================================
   Cards
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-body { padding: 22px; }

/* ============================================================
   Grid
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }

/* ============================================================
   Image
   ============================================================ */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-rounded { border-radius: var(--radius-lg); }
.img-rounded-xl { border-radius: var(--radius-xl); }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-16-9 { aspect-ratio: 16/9; }

/* ============================================================
   Forms
   ============================================================ */
.form-input {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--ink-20);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    outline: none;
    width: 100%;
    transition: border-color 150ms;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--ink-60); }

.form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    display: block;
    margin-bottom: 8px;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: background 220ms, border-color 220ms, backdrop-filter 220ms, color 220ms;
}
.nav-header.is-hero-nav:not(.scrolled) {
    color: var(--cream);
    background: linear-gradient(to bottom, rgba(4,30,46,0.52), rgba(4,30,46,0.18), rgba(4,30,46,0));
}
.nav-header.scrolled {
    background: rgba(255,253,249,0.92);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    border-bottom: 1px solid var(--ink-10);
    color: var(--ink);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    color: inherit;
    text-decoration: none;
}
.nav-logo img { width: 72px; height: 72px; object-fit: contain; transition: width 220ms ease, height 220ms ease; }
.nav-header.is-hero-nav:not(.scrolled) .nav-logo img { width: 84px; height: 84px; }
.nav-header.scrolled .nav-logo img { width: 48px; height: 48px; }
.nav-logo-text { text-align: left; line-height: 1; min-width: 230px; }
.nav-logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 35px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: inherit;
    width: 100%;
    transition: font-size 220ms ease;
}
.nav-header.scrolled .nav-logo-name { font-size: 29px; }
.nav-logo-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.65;
    margin-top: 1px;
    white-space: nowrap;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-link {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: inherit;
    opacity: 0.75;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: opacity 150ms;
    text-decoration: none;
}
.nav-link:hover, .nav-link.active {
    opacity: 1;
    border-bottom-color: currentColor;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(4,85,122,0.16);
    border-radius: var(--radius-full);
    padding: 3px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.02em;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 20px rgba(4,30,46,0.06);
}
.lang-btn {
    background: transparent;
    color: var(--brand) !important;
    border: 0;
    cursor: pointer;
    min-width: 36px;
    height: 34px;
    padding: 0 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lang-btn.active {
    background: #98ca98;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(4,85,122,0.18);
}

/* Cart icon */
.cart-btn {
    position: relative;
    background: transparent;
    border: 1px solid rgba(127,127,127,0.25);
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu */
.nav-burger {
    display: none;
    background: transparent;
    border: 1px solid rgba(127,127,127,0.25);
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: inherit;
}
.mobile-menu {
    display: none;
    background: var(--cream);
    color: var(--ink);
    border-top: 1px solid var(--ink-10);
    padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu-lang {
    display: none;
    justify-content: center;
    padding: 6px 0 18px;
    border-bottom: 1px solid var(--ink-10);
    margin-bottom: 4px;
}
.mobile-link {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-10);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: min(92vh, 900px);
    color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img,
.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
    transform: scale(1);
}
.hero-slide-img.is-active {
    opacity: 1;
    animation: heroZoom 7s ease forwards;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(4,85,122,0.55) 0%,
        rgba(4,85,122,0.25) 45%,
        rgba(4,85,122,0.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(60px, 8vh, 100px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 6px;
    background: #9FE6A0;
    box-shadow: 0 0 12px #9FE6A0;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 880px;
}
.hero-sub {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.55;
    max-width: 560px;
    margin-top: 28px;
    opacity: 0.92;
}
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Hero slider content transitions */
.hero-slide-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding-bottom: clamp(60px, 8vh, 100px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}
.hero-slide-content.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hero indicators */
.hero-indicators {
    position: absolute;
    bottom: clamp(20px, 3vh, 36px);
    right: clamp(24px, 4vw, 80px);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-indicator {
    width: 32px;
    height: 3px;
    border: none;
    border-radius: 2px;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}
.hero-indicator.is-active {
    background: var(--white);
    width: 48px;
}
.hero-indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee-wrap {
    background: var(--cream);
    border-top: 1px solid var(--ink-10);
    border-bottom: 1px solid var(--ink-10);
    overflow: hidden;
    padding: 18px 0;
}
.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll-x 45s linear infinite;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
}
.marquee-dot { color: var(--accent); }

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); }
.footer-newsletter {
    border-bottom: 1px solid rgba(245,235,218,0.12);
    padding: 80px 0;
}
.footer-main {
    padding: 64px 0;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #fff;
    border-radius: 999px;
    padding: 2px;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream);
    text-shadow: 1px 1px 0 var(--accent);
}
.footer-col-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 18px;
}
.footer-link {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    padding: 5px 0;
    background: transparent;
    border: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}
.footer-link:hover { opacity: 1; }
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    background: rgba(245,235,218,0.08);
    border: 1px solid rgba(245,235,218,0.16);
    opacity: 0.9;
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.footer-social:hover {
    opacity: 1;
    background: rgba(245,235,218,0.16);
    transform: translateY(-1px);
}
.footer-bottom {
    border-top: 1px solid rgba(245,235,218,0.12);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.65;
}

.footer-input {
    background: transparent;
    border: 1px solid rgba(245,235,218,0.25);
    color: var(--cream);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    width: 100%;
}
.footer-input:focus { border-color: var(--accent); }
.footer-input::placeholder { color: rgba(245,235,218,0.5); }

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 56px);
    flex-wrap: nowrap;
    width: 100%;
}
.partner-logo-card {
    flex: 0 1 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 78px;
    max-width: 190px;
    color: var(--ink);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 180ms ease;
}
.partner-logo-card:hover {
    opacity: 1;
}
.partner-logo-card img {
    height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.partner-logo-card span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .partners-row { gap: 12px; }
    .partner-logo-card { flex-basis: 20%; height: 54px; max-width: 20%; }
    .partner-logo-card img { height: 36px; }
}

.booking-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none;
    align-items: center; justify-content: center;
    padding: clamp(0px, 3vw, 32px);
}
.booking-modal.is-open { display: flex; }
.booking-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(4,30,46,0.78);
    animation: bmFade 0.25s ease;
    transform: translateZ(0);
    will-change: opacity;
}
.booking-modal-dialog {
    position: relative;
    width: min(960px, 100%);
    height: min(940px, 94vh);
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
    animation: bmRise 0.3s cubic-bezier(0.16,1,0.3,1);
    transform: translateZ(0);
}
.booking-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: var(--ink);
    color: var(--cream);
    flex-shrink: 0;
}
.booking-modal-title {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
}
.booking-modal-close {
    background: transparent; border: 0;
    color: var(--cream); opacity: 0.7;
    font-size: 26px; line-height: 1;
    cursor: pointer; padding: 0 4px;
    transition: opacity 0.15s ease;
}
.booking-modal-close:hover { opacity: 1; }
.booking-modal-body {
    position: relative; flex: 1; min-height: 0;
    background: var(--cream);
}
.booking-modal-body iframe {
    width: 100%; height: 100%; border: 0;
    display: block;
}
.booking-modal-loader {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    background: var(--cream);
    z-index: 1;
}
.booking-spinner {
    width: 32px; height: 32px;
    border: 3px solid rgba(4,85,122,0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: bmSpin 0.8s linear infinite;
}
@keyframes bmSpin { to { transform: rotate(360deg); } }
@keyframes bmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bmRise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
    .booking-modal { padding: 0; }
    .booking-modal-dialog { width: 100%; height: 100%; border-radius: 0; }
}

/* ============================================================
   Cart drawer
   ============================================================ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(14,58,95,0.4);
    opacity: 0; pointer-events: none;
    transition: opacity 250ms;
    z-index: 90;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(480px, 92vw);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(14,58,95,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--ink-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--ink-10);
    background: var(--cream);
}

/* ============================================================
   Product cards
   ============================================================ */
.product-card {
    display: flex;
    flex-direction: column;
}
.product-card .card-img {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card .card-img img {
    transition: transform 400ms ease;
}
.product-card:hover .card-img img {
    transform: scale(1.03);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-layout {
    gap: 48px;
    align-items: stretch;
}
.contact-info-stack {
    display: grid;
    gap: 16px;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--ink-10);
    border-radius: var(--radius-md);
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contact-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-full);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ink-10);
    min-height: 100%;
}
.contact-map iframe {
    display: block;
    min-height: 100%;
}
@media (max-width: 900px) {
    .contact-map { min-height: 420px; }
}

/* ============================================================
   Flash messages
   ============================================================ */
.flash {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}
.flash-success { background: #DEF7EC; color: #03543F; border: 1px solid #BCF0DA; }
.flash-error   { background: #FDE8E8; color: #9B1C1C; border: 1px solid #FBD5D5; }
.flash-info    { background: #E1EFFE; color: #1E429F; border: 1px solid #C3DDFD; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-cta-desktop { display: none !important; }
    .lang-switch-desktop { display: none !important; }
    .nav-burger { display: flex !important; }

    .grid-2, .grid-3, .grid-4,
    .footer-main { grid-template-columns: 1fr !important; }

    .hero-title { font-size: clamp(36px, 10vw, 60px); }
    .section { padding: 80px 0; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .hero { min-height: 80vh; }
    .mobile-menu-lang { display: flex; }
    .section,
    .hero,
    .footer {
        text-align: center;
    }
    .section [style*="max-width"],
    .hero [style*="max-width"],
    .footer [style*="max-width"] {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-card,
    .footer-brand {
        justify-content: center;
    }
    .contact-card {
        align-items: center;
    }
    .hero-title,
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons,
    .footer-socials,
    .footer-bottom {
        justify-content: center;
    }
    .hero-buttons {
        align-items: center;
    }
    .hero-buttons .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-indicators {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    .footer-main > div,
    .footer-link,
    .mobile-link {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
    }
    .footer-brand-logo {
        width: 78px;
        height: 78px;
    }
    .pre-footer-cta .grid > div:last-child {
        text-align: center !important;
    }
    .pre-footer-cta .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-card {
        grid-template-columns: 1fr !important;
        justify-items: center;
    }
    .contact-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .grid > div,
    .grid > article,
    [class*="grid"] > div,
    [class*="grid"] > article {
        text-align: center;
    }
    .grid [style*="display:flex"],
    [class*="grid"] [style*="display:flex"] {
        justify-content: center;
    }
}
