/* =========================================================
   Salento In Van — Stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --c-primary: #c45a2e;
    --c-primary-dark: #a2471f;
    --c-primary-light: #e8a782;
    --c-secondary: #4a6b3a;
    --c-secondary-dark: #334d28;
    --c-cream: #f7f1e8;
    --c-sand: #efe4d1;
    --c-ink: #1f1a15;
    --c-body: #3d362e;
    --c-muted: #7a6f63;
    --c-line: #e3d9c9;
    --c-white: #ffffff;
    --c-success: #2f7d48;
    --c-error: #b83a2e;

    --shadow-sm: 0 2px 8px rgba(31, 26, 21, .08);
    --shadow-md: 0 12px 32px rgba(31, 26, 21, .12);
    --shadow-lg: 0 24px 60px rgba(31, 26, 21, .18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --container: 1200px;
    --header-h: 78px;

    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Typography upgrade ---------- */
:root {
    --font-head: 'Fraunces', 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* ---------- LANGUAGE SWITCHER (Google Translate custom UI) ---------- */
.lang-switcher {
    position: relative;
    margin-right: 8px;
    z-index: 10;
}
.lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    color: inherit;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s var(--ease-out), border-color .2s var(--ease-out);
}
.site-header.is-scrolled .lang-switcher__toggle { border-color: var(--c-line); color: var(--c-ink); }
.lang-switcher__toggle:hover { background: rgba(255, 255, 255, .1); }
.site-header.is-scrolled .lang-switcher__toggle:hover { background: var(--c-cream); }
.lang-switcher__globe svg { display: block; }
.lang-switcher__chev { transition: transform .25s var(--ease-out); }
.lang-switcher.is-open .lang-switcher__chev { transform: rotate(180deg); }

.lang-switcher__list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    min-width: 170px;
    max-width: calc(100vw - 24px);
    max-height: 70vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 6px;
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
    z-index: 50;
}
.lang-switcher.is-open .lang-switcher__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lang-switcher__list li {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--c-ink);
    font-size: .88rem;
    transition: background .15s var(--ease-out);
}
.lang-switcher__list li:hover { background: var(--c-cream); }
.lang-switcher__list li[aria-selected="true"] { background: var(--c-cream); color: var(--c-primary); font-weight: 600; }
.lang-switcher__list li span { font-weight: 700; letter-spacing: .05em; min-width: 22px; }
.lang-switcher__list li em { font-style: normal; color: var(--c-muted); font-size: .82rem; }

/* Google Translate: container off-screen (NON display:none) */
#google_translate_element {
    position: absolute;
    left: -10000px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Banner top "This page has been translated by Google Translate".
   Google ha rinominato la classe da `.goog-te-banner-frame` (legacy) a
   `.VIpgJd-ZVi9od-ORHb-OEVmcd` (nuova). Hide entrambe.
   IMPORTANTE: NON usare il generico `iframe.skiptranslate` — colpirebbe
   anche l'iframe interno della traduzione e bloccherebbe il widget. */
.goog-te-banner-frame.skiptranslate,
[class^="VIpgJd-ZVi9od-ORHb"],
[class*=" VIpgJd-ZVi9od-ORHb"] {
    display: none !important;
}

/* Annulla l'offset del body che Google aggiunge per il banner */
body.translated-ltr,
body.translated-rtl,
body { top: 0 !important; }

/* Tooltip on hover sul testo tradotto (mostra l'originale).
   Selettori sia legacy (goog-tooltip) sia attuali (VIpgJd-yAWNEb…). */
.goog-tooltip,
.goog-tooltip:hover,
.goog-gt-tt,
.goog-te-ftab,
.goog-te-balloon-frame,
[class^="VIpgJd-yAWNEb"],
[class*=" VIpgJd-yAWNEb"],
[class^="VIpgJd-ZVi9od-xl07Ob"],
[class*=" VIpgJd-ZVi9od-xl07Ob"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Rimuovi highlight giallo / box-shadow attorno al testo tradotto */
.goog-text-highlight,
font[style*="background"] {
    background: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .lang-switcher { order: 2; margin-right: 8px; }
    .lang-switcher__toggle { padding: 6px 10px; font-size: .78rem; gap: 4px; }
    /* Su mobile: apri sempre verso sinistra dal bordo destro del toggle */
    .lang-switcher__list { right: 0; left: auto; min-width: 190px; }
}
@media (max-width: 380px) {
    /* Schermi molto stretti: full-width sotto l'header */
    .lang-switcher__list { min-width: 160px; }
}

/* ---------- VIEW TRANSITIONS (cross-document, browser-native) ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
    animation-duration: .25s;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; } }

/* ---------- NOISE / GRAIN overlay ---------- */
.noise {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 8000;
    opacity: .08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    animation: noiseShift .4s steps(4) infinite;
}
@keyframes noiseShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-3%, 2%); }
    50% { transform: translate(2%, -3%); }
    75% { transform: translate(-2%, -2%); }
    100% { transform: translate(0, 0); }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(31, 26, 21, .08);
    z-index: 200;
    pointer-events: none;
}
.scroll-progress__bar {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--c-primary), var(--c-primary-light));
    box-shadow: 0 0 10px rgba(196, 90, 46, .5);
    transition: width .08s linear;
}

/* ---------- CUSTOM CURSOR (desktop only) ---------- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9000;
    display: none;
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor--ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease-out), height .3s var(--ease-out), background-color .3s var(--ease-out), border-color .3s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cursor--dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor__label {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: opacity .2s var(--ease-out);
}
body.cursor-ready .cursor { display: flex; }
body.cursor-ready, body.cursor-ready * { cursor: none !important; }
body.cursor-ready input, body.cursor-ready textarea, body.cursor-ready select { cursor: text !important; }
body.cursor-hover .cursor--ring { width: 70px; height: 70px; background: rgba(255,255,255,.08); }
body.cursor-hover .cursor--dot { opacity: 0; }
body.cursor-view .cursor--ring { width: 96px; height: 96px; background: var(--c-primary); border-color: var(--c-primary); mix-blend-mode: normal; }
body.cursor-view .cursor__label { opacity: 1; }
body.cursor-view .cursor--dot { opacity: 0; }

/* ---------- MARQUEE ---------- */
.marquee {
    overflow: hidden;
    background: var(--c-ink);
    color: #fff;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.marquee__track {
    display: flex;
    gap: 42px;
    white-space: nowrap;
    animation: marqueeScroll 38s linear infinite;
    will-change: transform;
}
.marquee__item {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2vw + .6rem, 2.4rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -.01em;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 42px;
}
.marquee__item em {
    font-style: normal;
    color: var(--c-primary);
    font-size: .7em;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- WORDMARK (big typographic moment) ---------- */
.wordmark {
    background: var(--c-ink);
    color: #fff;
    padding: 120px 0 100px;
    overflow: hidden;
    position: relative;
}
.wordmark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.wordmark__top,
.wordmark__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--font-mono);
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .55;
    gap: 20px;
    flex-wrap: wrap;
}
.wordmark__top { margin-bottom: 20px; }
.wordmark__bottom { margin-top: 30px; align-items: center; opacity: 1; }
.wordmark__sub {
    margin: 0;
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, .75);
    font-weight: 300;
}
.wordmark__text {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 18vw, 18rem);
    font-weight: 300;
    line-height: .82;
    letter-spacing: -.04em;
    margin: 0;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 0 .2em;
    transform-origin: center;
    will-change: transform;
}
.wordmark__text span { display: inline-block; }
.wordmark__text-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--c-primary);
    font-size: .7em;
    align-self: center;
}
.wordmark__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    color: #fff;
    font-weight: 500;
    font-size: .92rem;
    transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
    font-family: var(--font-body);
    letter-spacing: .02em;
    text-transform: none;
}
.wordmark__cta:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.wordmark__cta svg { width: 20px; height: 20px; transition: transform .3s var(--ease-out); }
.wordmark__cta:hover svg { transform: translateX(4px); }

/* ---------- KINETIC text reveal ---------- */
.kinetic-line {
    display: block;
    overflow: hidden;
    padding: .08em 0;
}
.kinetic-line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s var(--ease-out);
}
.kinetic-line.is-visible > span { transform: translateY(0); }

/* ---------- MAGNETIC button hover refinement ---------- */
.js-magnetic {
    transition: transform .3s var(--ease-out);
    will-change: transform;
}

/* ---------- Gallery tilt refinement ---------- */
.gallery__item {
    transform-style: preserve-3d;
    perspective: 800px;
    will-change: transform;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.gallery__item img { transition: transform .6s var(--ease-out); }

/* ---------- Headline hover underline (awwwards-style link treatment) ---------- */
.site-footer a,
.contact-card a {
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .4s var(--ease-out), color .2s var(--ease-out);
}
.site-footer a:hover,
.contact-card a:hover { background-size: 100% 1px; }

/* Hide cursor only on devices with fine pointer */
@media (hover: none), (pointer: coarse) {
    .cursor { display: none !important; }
    html { cursor: auto !important; }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-body);
    background: var(--c-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    color: var(--c-ink);
    line-height: 1.18;
    font-weight: 600;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 5vw + .4rem, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw + .4rem, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.1vw + .6rem, 1.45rem); }
h4 { font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; }

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

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: .8rem;
}

.accent { color: var(--c-primary); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .2s var(--ease-out), background-color .2s var(--ease-out), color .2s var(--ease-out), box-shadow .2s var(--ease-out);
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--c-primary-light); outline-offset: 3px; }

.btn--lg { padding: 17px 32px; font-size: 1rem; }

.btn--primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(196, 90, 46, .35);
}
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; box-shadow: 0 14px 32px rgba(196, 90, 46, .45); }

.btn--outline {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }

.btn--ghost {
    background: transparent;
    color: var(--c-body);
    border-color: transparent;
}
.btn--ghost:hover { background: rgba(31, 26, 21, .06); color: var(--c-ink); }

.btn--ghost-light {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .22); color: #fff; }

.btn--block { width: 100%; }

.btn__loader {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2.5px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    animation: spin .7s linear infinite;
    display: none;
}
.btn.is-loading .btn__label { display: none; }
.btn.is-loading .btn__loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.link-button {
    background: none; border: none; padding: 0;
    font: inherit; color: inherit; cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px;
}
.link-button:hover { color: var(--c-primary); }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(247, 241, 232, .0);
    transition: background-color .3s var(--ease-out), box-shadow .3s var(--ease-out), backdrop-filter .3s var(--ease-out);
    padding: 18px 0;
}
.site-header.is-scrolled {
    background: rgba(247, 241, 232, .96);
    box-shadow: 0 4px 20px rgba(31, 26, 21, .08);
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-ink);
    font-weight: 700;
}
.site-header:not(.is-scrolled) .logo { color: #fff; }
.logo__mark { width: 52px; height: 32px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em; }
.logo__name em { font-style: italic; font-weight: 400; color: var(--c-primary); margin: 0 .15em; }
.logo__tag {
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .7;
    font-weight: 500;
}

/* Navigation */
.primary-nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.primary-nav a {
    display: inline-block;
    padding: 10px 14px;
    font-size: .93rem;
    font-weight: 500;
    color: var(--c-ink);
    border-radius: 999px;
    transition: background .2s var(--ease-out), color .2s var(--ease-out);
}
.site-header:not(.is-scrolled) .primary-nav a { color: #fff; }
.primary-nav a:hover { background: rgba(196, 90, 46, .12); color: var(--c-primary); }
.site-header:not(.is-scrolled) .primary-nav a:hover { background: rgba(255,255,255,.14); color: #fff; }

.primary-nav .nav-cta {
    background: var(--c-primary);
    color: #fff !important;
    padding: 10px 22px;
    margin-left: 6px;
    box-shadow: 0 6px 16px rgba(196, 90, 46, .35);
}
.primary-nav .nav-cta:hover { background: var(--c-primary-dark); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 3;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: currentColor;
    margin: 5px auto;
    transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
    border-radius: 2px;
}
.site-header:not(.is-scrolled) .nav-toggle { color: #fff; }
.site-header.is-scrolled .nav-toggle { color: var(--c-ink); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: calc(var(--header-h) + 40px) 0 60px;
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 26, 21, .55) 0%, rgba(31, 26, 21, .35) 40%, rgba(31, 26, 21, .75) 100%);
}
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}
.hero .eyebrow { color: #fff; opacity: .92; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 .accent { color: var(--c-primary-light); }
.hero__lead {
    font-size: clamp(1rem, .4vw + .9rem, 1.25rem);
    max-width: 640px;
    margin-bottom: 2rem;
    opacity: .95;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.5rem;
}
.hero__badges {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}
.hero__badges li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .88rem;
    font-weight: 500;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    flex: 0 0 auto;
}
.hero__badges i { color: var(--c-primary-light); }

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 46px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 16px;
    z-index: 1;
}
.hero__scroll span {
    display: block;
    width: 4px; height: 8px;
    background: rgba(255, 255, 255, .9);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: bob 1.6s infinite ease-in-out;
}
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: .2; } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.section--intro { background: var(--c-cream); }
.section--services { background: var(--c-sand); }
.section--story { background: var(--c-cream); }
.section--gallery { background: var(--c-white); }
.section--reviews { background: var(--c-sand); }
.section--faq { background: var(--c-white); }
.section--booking { background: linear-gradient(180deg, var(--c-cream), var(--c-sand)); }
.section--contact { background: var(--c-ink); color: #e8dfd3; padding: 60px 0; }
.section--contact h3 { color: #fff; }

.section-head { max-width: 780px; margin-bottom: 55px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: .4em; }
.section-lead { font-size: 1.08rem; color: var(--c-muted); margin: 0; }

/* ---------- Features grid ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    border: 1px solid var(--c-line);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card__icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(196, 90, 46, .3);
}
.feature-card h3 { margin-bottom: .4em; }
.feature-card p { color: var(--c-muted); font-size: .95rem; margin: 0; }

.cta-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 32px;
    margin-top: 60px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-sm);
}
.cta-inline p { margin: 0; font-size: 1.1rem; font-family: var(--font-head); color: var(--c-ink); }

/* ---------- Offer banner ---------- */
.offer-banner {
    background: linear-gradient(135deg, var(--c-secondary-dark), var(--c-secondary));
    color: #fff;
    padding: 40px 0;
}
.offer-banner__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}
.offer-banner__item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.offer-banner__badge {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
}
.offer-banner h3 { color: #fff; margin: 0 0 4px; font-size: 1.15rem; }
.offer-banner p { margin: 0; opacity: .92; font-size: .92rem; }

/* ---------- Services grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-card__body { padding: 22px 22px 26px; }
.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .4em;
    font-size: 1.15rem;
}
.service-card h3 i { color: var(--c-primary); }
.service-card p { margin: 0; color: var(--c-muted); font-size: .93rem; }

/* ---------- Story ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-grid__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.story-grid__media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.story-grid__badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--c-primary);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.story-grid__badge span { display: block; font-size: .72rem; letter-spacing: .2em; opacity: .85; text-transform: uppercase; }
.story-grid__badge strong { font-family: var(--font-head); font-size: 1.8rem; line-height: 1; }

.story-grid__facts {
    list-style: none;
    padding: 24px 0 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--c-line);
}
.story-grid__facts li { display: flex; flex-direction: column; }
.story-grid__facts strong { font-family: var(--font-head); font-size: 1.8rem; color: var(--c-primary); line-height: 1; }
.story-grid__facts span { font-size: .85rem; color: var(--c-muted); margin-top: 6px; }

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 14px;
}
.gallery__item {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease-out), box-shadow .3s var(--ease-out);
}
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.gallery__item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item::after {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    background: rgba(255,255,255,.95);
    color: var(--c-primary);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 10, .95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.lightbox button {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .2s var(--ease-out);
}
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}
.review {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-line);
}
.review__stars {
    color: #ebaa2b;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}
.review blockquote {
    font-family: var(--font-head);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--c-ink);
    margin: 0 0 18px;
    quotes: """ """;
}
.review blockquote::before { content: open-quote; opacity: .3; margin-right: 2px; }
.review blockquote::after { content: close-quote; opacity: .3; margin-left: 2px; }
.review cite { font-size: .88rem; color: var(--c-muted); font-style: normal; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow .2s var(--ease-out);
}
.faq-item[open] { box-shadow: var(--shadow-sm); background: #fff; }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 26px;
    font-weight: 600;
    color: var(--c-ink);
    font-size: 1.02rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--c-primary);
    font-weight: 300;
    line-height: 1;
    transition: transform .3s var(--ease-out);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
    padding: 0 26px 24px;
    color: var(--c-muted);
}
.faq-item__body p { margin: 0; }

/* ---------- Booking / form ---------- */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.booking-grid__intro h2 { margin-top: .3em; }
.booking-grid__perks {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.booking-grid__perks i { color: var(--c-success); margin-right: 8px; }
.booking-grid__contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-weight: 500;
    font-size: .92rem;
    color: var(--c-ink);
}
.contact-chip:hover { border-color: var(--c-primary); color: var(--c-primary); }
.contact-chip--wa { background: #25d366; color: #fff; border-color: #25d366; }
.contact-chip--wa:hover { background: #1ea952; color: #fff; border-color: #1ea952; }

.booking-form {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
}
.booking-form h3 { margin-bottom: 24px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
    font-size: .84rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 6px;
}
.form-field label span { color: var(--c-primary); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--c-ink);
    background: var(--c-cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color .2s var(--ease-out), background-color .2s var(--ease-out);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    background: #fff;
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-field input:invalid:not(:placeholder-shown),
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea { border-color: var(--c-error); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    margin: 14px 0 20px;
    color: var(--c-muted);
    cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--c-primary); }

.form-feedback {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    display: none;
}
.form-feedback.is-success { display: block; background: #e8f3ec; color: var(--c-success); border-left: 3px solid var(--c-success); }
.form-feedback.is-error { display: block; background: #fbe8e5; color: var(--c-error); border-left: 3px solid var(--c-error); }

/* ---------- Contact cards ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    text-align: center;
}
.contact-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
}
.contact-card i { font-size: 1.6rem; color: var(--c-primary-light); margin-bottom: 12px; }
.contact-card h3 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.contact-card a, .contact-card span { color: #e8dfd3; font-size: .94rem; word-break: break-word; }
.contact-card a:hover { color: var(--c-primary-light); }

/* ---------- Footer ---------- */
.site-footer {
    background: #120f0c;
    color: #a19789;
    padding: 70px 0 0;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.logo--footer { color: #fff; margin-bottom: 18px; }
.logo--footer .logo__name em { color: var(--c-primary-light); }
.site-footer p { font-size: .92rem; line-height: 1.7; }
.site-footer h4 { color: #fff; margin-bottom: 18px; font-size: .82rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a, .site-footer .link-button { color: #a19789; font-size: .93rem; }
.site-footer a:hover, .site-footer .link-button:hover { color: var(--c-primary-light); }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}
.socials a:hover { background: var(--c-primary); }

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
}
.site-footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.site-footer__bottom small { font-size: .82rem; opacity: .8; }
.site-footer__bottom i { color: var(--c-primary); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .5);
    z-index: 90;
    transition: transform .25s var(--ease-out);
    animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 24px rgba(37, 211, 102, .5); }
    50% { box-shadow: 0 10px 24px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, .08); }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    left: 20px; right: 20px; bottom: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px 26px;
    z-index: 150;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
    border: 1px solid var(--c-line);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner__content {
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 340px; }
.cookie-banner h3 { font-size: 1.05rem; margin: 0 0 6px; }
.cookie-banner p { font-size: .88rem; margin: 0; color: var(--c-muted); }
.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cookie-banner__actions .btn { padding: 10px 18px; font-size: .88rem; }

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 10, .6);
    backdrop-filter: blur(4px);
}
.modal__dialog {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px;
    max-width: 520px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: var(--c-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--c-ink);
}
.modal__close:hover { background: var(--c-line); }
.modal h2 { margin-bottom: .4em; }
.modal > p { color: var(--c-muted); margin-bottom: 20px; }

.cookie-option {
    padding: 16px 0;
    border-top: 1px solid var(--c-line);
}
.cookie-option__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.cookie-option h4 { margin: 0; text-transform: none; letter-spacing: 0; font-family: var(--font-head); font-size: 1rem; }
.cookie-option p { font-size: .85rem; color: var(--c-muted); margin: 0; }

.switch { position: relative; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
    position: absolute; inset: 0;
    background: #ccc; border-radius: 24px;
    cursor: pointer;
    transition: .25s;
}
.switch .slider::before {
    content: '';
    position: absolute;
    left: 3px; top: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: .25s;
}
.switch input:checked + .slider { background: var(--c-primary); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: .6; cursor: not-allowed; }

.modal__footer {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- Blog index ---------- */
.blog-index { padding: calc(var(--header-h) + 70px) 0 90px; background: var(--c-cream); }
.blog-index__head {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}
.blog-index__head h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: .3em; }
.blog-index__head p { font-size: 1.08rem; color: var(--c-muted); }

.blog-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.blog-filter {
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid var(--c-line);
    color: var(--c-body);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s var(--ease-out);
}
.blog-filter:hover { border-color: var(--c-primary); color: var(--c-primary); }
.blog-filter.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    display: flex;
    flex-direction: column;
    color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); color: inherit; }
.blog-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.blog-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__cat {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(31, 26, 21, .85);
    color: #fff;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}
.blog-card__body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
}
.blog-card__meta span::before { content: '·'; margin-right: 14px; color: var(--c-primary); }
.blog-card__meta span:first-child::before { display: none; margin: 0; }
.blog-card h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 12px;
}
.blog-card p { color: var(--c-muted); font-size: .94rem; margin: 0 0 18px; flex: 1; }
.blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .88rem;
    color: var(--c-primary);
}
.blog-card__more::after { content: '→'; transition: transform .25s var(--ease-out); }
.blog-card:hover .blog-card__more::after { transform: translateX(4px); }

/* ---------- Blog post ---------- */
.post-page { background: var(--c-cream); padding-top: var(--header-h); }
.post {
    background: #fff;
}
.post__hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    padding: 100px 0 50px;
    overflow: hidden;
    color: #fff;
}
.post__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.post__hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(31, 26, 21, .2) 0%, rgba(31, 26, 21, .85) 100%);
}
.post__hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.post__hero-content { position: relative; z-index: 1; max-width: 820px; }
.post__breadcrumb {
    font-family: var(--font-mono);
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 20px;
}
.post__breadcrumb a { color: #fff; }
.post__breadcrumb a:hover { color: var(--c-primary-light); }
.post__breadcrumb span { margin: 0 8px; opacity: .5; }
.post h1 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 20px;
}
.post__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .95;
    flex-wrap: wrap;
}
.post__meta-cat {
    background: var(--c-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
}

.post__body {
    max-width: 740px;
    margin: 0 auto;
    padding: 70px 22px 40px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--c-body);
}
.post__body > p:first-of-type {
    font-size: 1.3rem;
    line-height: 1.65;
    font-family: var(--font-head);
    font-weight: 400;
    color: var(--c-ink);
    margin-bottom: 34px;
}
.post__body h2 {
    font-size: 1.8rem;
    margin: 2em 0 .6em;
    letter-spacing: -.01em;
}
.post__body h3 {
    font-size: 1.25rem;
    margin: 1.6em 0 .5em;
    font-family: var(--font-head);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.post__body a {
    color: var(--c-primary);
    border-bottom: 1px solid rgba(196, 90, 46, .3);
    transition: color .2s, border-color .2s;
}
.post__body a:hover { color: var(--c-primary-dark); border-color: var(--c-primary-dark); }
.post__body ul, .post__body ol { padding-left: 22px; }
.post__body li { margin-bottom: 8px; }
.post__body blockquote {
    margin: 40px -20px;
    padding: 28px 32px;
    border-left: 3px solid var(--c-primary);
    background: var(--c-cream);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-head);
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--c-ink);
}
.post__body img { border-radius: var(--radius-md); margin: 30px 0; width: 100%; }
.post__body figure { margin: 30px 0; }
.post__body figure figcaption {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--c-muted);
    text-align: center;
    margin-top: 10px;
    letter-spacing: .05em;
}

/* Share bar */
.share-bar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    float: left;
    margin-left: -90px;
    margin-top: 10px;
}
.share-bar button {
    width: 44px; height: 44px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    color: var(--c-body);
    cursor: pointer;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease-out);
    position: relative;
}
.share-bar button:hover { border-color: var(--c-primary); color: var(--c-primary); transform: translateY(-2px); }
.share-bar button[data-copy-toast]::after {
    content: 'Copiato!';
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    background: var(--c-ink);
    color: #fff;
    padding: 4px 10px;
    font-size: .72rem;
    font-family: var(--font-mono);
    letter-spacing: .1em;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
    white-space: nowrap;
}
.share-bar button[data-copy-toast].is-copied::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Inline share (bottom of article) */
.share-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin: 40px 0;
    flex-wrap: wrap;
}
.share-inline__label {
    flex: 0 0 100%;
    margin-bottom: 6px;
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-muted);
}
.share-inline button {
    padding: 9px 18px;
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    border-radius: 999px;
    color: var(--c-body);
    cursor: pointer;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s var(--ease-out);
    font-family: var(--font-body);
}
.share-inline button:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

/* Lead magnet block */
.leadmagnet {
    background: linear-gradient(135deg, var(--c-ink), #2a241e);
    color: #fff;
    padding: 48px;
    border-radius: var(--radius-xl);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}
.leadmagnet::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--c-primary), transparent 70%);
    opacity: .25;
    pointer-events: none;
}
.leadmagnet__eyebrow {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-primary-light);
    margin-bottom: 12px;
    display: inline-block;
}
.leadmagnet h3 {
    color: #fff;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    margin-bottom: 12px;
}
.leadmagnet > p {
    opacity: .85;
    margin-bottom: 24px;
    line-height: 1.6;
}
.leadmagnet__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
.leadmagnet__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: rgba(255,255,255,.9);
    margin: 0;
}
.leadmagnet__features i { color: var(--c-primary-light); }
.leadmagnet__form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.leadmagnet__form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    border: 1.5px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    border-radius: 999px;
}
.leadmagnet__form input::placeholder { color: rgba(255,255,255,.55); }
.leadmagnet__form input:focus { outline: none; border-color: var(--c-primary); background: rgba(255,255,255,.1); }
.leadmagnet__privacy {
    display: block;
    margin-top: 14px;
    font-size: .78rem;
    opacity: .7;
}
.leadmagnet__privacy a { color: var(--c-primary-light); }
.leadmagnet__feedback {
    margin-top: 14px;
    font-size: .9rem;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
}
.leadmagnet__feedback.is-success { display: block; background: rgba(47, 125, 72, .25); color: #9ce2af; }
.leadmagnet__feedback.is-error { display: block; background: rgba(184, 58, 46, .25); color: #ffb4aa; }

/* Related posts */
.related {
    background: var(--c-cream);
    padding: 70px 0;
}
.related h3 { text-align: center; margin-bottom: 36px; font-size: 1.6rem; }
.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ---------- Legal pages ---------- */
.legal-page { padding: calc(var(--header-h) + 80px) 0 80px; background: var(--c-cream); }
.legal-page .container { max-width: 860px; }
.legal-page h1 { font-size: clamp(2rem, 3.4vw + .5rem, 2.8rem); margin-bottom: 1em; }
.legal-page h2 { font-size: 1.4rem; margin-top: 2em; }
.legal-page h3 { font-size: 1.05rem; margin-top: 1.5em; }
.legal-page p, .legal-page li { color: var(--c-body); font-size: .98rem; line-height: 1.75; }
.legal-page ul { padding-left: 20px; }
.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: .9rem;
}
.legal-page th, .legal-page td {
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    text-align: left;
}
.legal-page th { background: var(--c-sand); font-weight: 600; }

/* ---------- Thank you page ---------- */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--c-cream), var(--c-sand));
    text-align: center;
}
.thanks-card {
    background: #fff;
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 520px;
}
.thanks-card__icon {
    width: 84px; height: 84px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-success), #3faa61);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 14px 30px rgba(47, 125, 72, .3);
}
.thanks-card h1 { margin-bottom: .4em; }

/* ---------- Feature card SVG animated icons ---------- */
.feature-card__icon {
    position: relative;
    overflow: visible;
    color: #fff;
    padding: 10px;
}
.feature-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- SVG animation primitives ---------- */
@keyframes svg-draw {
    from { stroke-dasharray: 140; stroke-dashoffset: 140; }
    to { stroke-dasharray: 140; stroke-dashoffset: 0; }
}
@keyframes svg-float {
    0%, 100% { transform: translateY(0); opacity: .7; }
    50% { transform: translateY(-4px); opacity: 1; }
}
@keyframes svg-bubble {
    0% { transform: translateY(8px) scale(.6); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(-16px) scale(1); opacity: 0; }
}
@keyframes svg-spin {
    to { transform: rotate(360deg); }
}
@keyframes svg-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}
@keyframes svg-wave-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
}
@keyframes svg-twinkle {
    0%, 100% { opacity: .2; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1.1); }
}
@keyframes svg-bubble-pop {
    0% { transform: scale(.85); opacity: .6; }
    50% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes svg-blink {
    0%, 70%, 100% { opacity: 1; }
    80%, 90% { opacity: 0; }
}
@keyframes svg-drop {
    0% { transform: translateY(-6px); opacity: 0; }
    60% { transform: translateY(2px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}
@keyframes svg-ripple {
    0% { transform: scale(.7); opacity: .5; }
    100% { transform: scale(1.6); opacity: 0; }
}
@keyframes van-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@keyframes van-wheel-spin {
    to { transform: rotate(360deg); }
}
@keyframes van-lines {
    0%, 100% { transform: translateX(0); opacity: .7; }
    50% { transform: translateX(-10px); opacity: .3; }
}

.svg-anim--draw-1,
.svg-anim--draw-2 {
    stroke-dasharray: 140;
    animation: svg-draw 1.4s var(--ease-out) forwards;
}
.svg-anim--draw-2 { animation-delay: .3s; }
.svg-anim--float { animation: svg-float 2.2s ease-in-out infinite; animation-delay: var(--d, 0s); transform-origin: center; transform-box: fill-box; }
.svg-anim--bubble { animation: svg-bubble 2.4s ease-in infinite; animation-delay: var(--d, 0s); transform-origin: center; transform-box: fill-box; }
.svg-anim--spin { animation: svg-spin 6s linear infinite; transform-box: view-box; }
.svg-anim--spin-center { transform-origin: 32px 32px; }
.svg-anim--wheel-left { transform-origin: 16px 44px; animation-duration: 1.8s !important; }
.svg-anim--wheel-right { transform-origin: 56px 44px; animation-duration: 1.8s !important; }
.svg-anim--sway { animation: svg-sway 3s ease-in-out infinite; transform-origin: 18px 110px; transform-box: fill-box; }
.svg-anim--wave { animation: svg-wave-move 2.8s ease-in-out infinite; }
.svg-anim--twinkle { animation: svg-twinkle 1.8s ease-in-out infinite; }
.svg-anim--bubble-pop { animation: svg-bubble-pop .8s var(--ease-out) both; }
.svg-anim--blink { animation: svg-blink 2.4s ease-in-out infinite; }
.svg-anim--drop { animation: svg-drop .8s var(--ease-out) both; }

/* ---------- Hero van SVG ---------- */
.hero__van {
    position: absolute;
    right: 4%;
    bottom: 14%;
    width: 260px;
    max-width: 30vw;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.3));
}
.hero__van svg { width: 100%; height: auto; display: block; }
.hero__van .van-body { animation: van-bob 3.2s ease-in-out infinite; transform-origin: center; transform-box: view-box; }
.hero__van .van-wheel {
    transform-origin: var(--cx) var(--cy);
    transform-box: view-box;
    animation: van-wheel-spin 1.2s linear infinite;
}
.hero__van .van-lines { animation: van-lines 1.4s ease-in-out infinite; transform-box: view-box; }

/* ---------- Section decorative SVGs ---------- */
.section-svg {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    color: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-svg svg { width: 100%; height: 100%; }
.section-svg--faq { color: var(--c-primary); }
.section-svg--pin {
    margin: 0 0 14px;
    width: 60px;
    height: 60px;
}
.section-svg--pin .pin-ripple {
    transform-origin: 40px 52px;
    transform-box: fill-box;
    animation: svg-ripple 2.2s ease-out infinite;
}
.section-svg--pin .pin-ripple--2 { animation-delay: 1.1s; }

/* ---------- Thank-you checkmark SVG ---------- */
.thanks-card__icon--svg svg {
    width: 100%;
    height: 100%;
}
.thanks-card__icon--svg .check-circle {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: svg-draw-circle .7s var(--ease-out) forwards;
}
.thanks-card__icon--svg .check-mark {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: svg-draw-check .4s var(--ease-out) .6s forwards;
}
@keyframes svg-draw-circle { to { stroke-dashoffset: 0; } }
@keyframes svg-draw-check { to { stroke-dashoffset: 0; } }

/* ---------- Lenis smooth scroll ---------- */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

@media (max-width: 768px) {
    .hero__van { width: 180px; right: 2%; bottom: 9%; }
    .section-svg { width: 56px; height: 56px; }
    .section-svg--pin { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .hero__van { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .booking-grid, .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-grid__media { max-width: 480px; margin: 0 auto; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }

    /* Awwwards-level elements mobile tweaks */
    .wordmark { padding: 80px 0 70px; }
    .wordmark__text { font-size: clamp(3rem, 22vw, 8rem); gap: 0 .15em; }
    .wordmark__text-italic { font-size: .65em; }
    .wordmark__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
    .marquee { padding: 16px 0; }
    .marquee__track { gap: 28px; animation-duration: 28s; }
    .marquee__item { gap: 28px; }

    /* Mobile nav */
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 0; right: 0;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
        padding: 100px 30px 40px;
        transform: translateX(100%);
        transition: transform .3s var(--ease-out);
        overflow-y: auto;
    }
    .primary-nav.is-open { transform: translateX(0); }
    .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .primary-nav a {
        display: block;
        padding: 14px 18px;
        font-size: 1rem;
        color: var(--c-ink) !important;
        border-radius: var(--radius-sm);
    }
    .primary-nav a:hover { background: var(--c-cream); }
    .primary-nav .nav-cta {
        margin-top: 14px;
        text-align: center;
        color: #fff !important;
        background: var(--c-primary);
    }

    body.nav-open { overflow: hidden; }
    body.nav-open::after {
        content: '';
        position: fixed; inset: 0;
        background: rgba(0,0,0,.5);
        z-index: 99;
    }

    /* Hero */
    .hero { min-height: 88vh; }
    .hero__actions .btn { padding: 14px 22px; font-size: .92rem; }

    /* Grids */
    .services-grid, .features-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .offer-banner__grid { grid-template-columns: 1fr; }

    /* Blog */
    .blog-grid, .related__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .share-bar { float: none; margin: 0 0 28px; flex-direction: row; position: static; }
    .leadmagnet { padding: 32px 24px; }
    .post__body { padding: 44px 22px 24px; font-size: 1rem; }
    .post__body > p:first-of-type { font-size: 1.15rem; }
    .post__body blockquote { margin: 30px 0; padding: 22px 24px; font-size: 1.1rem; }

    /* Gallery */
    .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item--tall { grid-row: span 1; }

    /* Booking form */
    .booking-form { padding: 26px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-field { margin-bottom: 16px; }

    /* Footer */
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .site-footer__bottom .container { flex-direction: column; text-align: center; gap: 10px; }

    /* Cookie banner */
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px 20px; }
    .cookie-banner__actions { width: 100%; justify-content: stretch; }
    .cookie-banner__actions .btn { flex: 1; min-width: 90px; }

    .story-grid__facts { grid-template-columns: 1fr; gap: 14px; }
    .cta-inline { flex-direction: column; text-align: center; padding: 24px; }

    .wa-float { width: 52px; height: 52px; font-size: 1.4rem; right: 16px; bottom: 16px; }

    /* Hero badges: quando non entrano in 1 riga, forza griglia 2×2 */
    .hero__badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 440px;
        gap: 8px;
    }
    .hero__badges li {
        font-size: .82rem;
        padding: 7px 12px;
        justify-content: center;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .services-grid, .features-grid, .reviews-grid { grid-template-columns: 1fr; }
    .blog-grid, .related__grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .gallery__item { aspect-ratio: 4/3; }
    .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .logo__tag { display: none; }
    .hero__badges { max-width: 100%; }
    .hero__badges li { font-size: .76rem; padding: 6px 9px; }
    .booking-grid__contact { flex-direction: column; }
    .contact-chip { justify-content: center; }
}

/* ---------- Prefers reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero__scroll { display: none; }
}

/* ---------- Print ---------- */
@media print {
    .site-header, .site-footer, .cookie-banner, .wa-float, .nav-toggle, .booking-form,
    .share-bar, .share-inline, .leadmagnet, .related, .noise, .cursor, .scroll-progress,
    .marquee, .wordmark, .hero__lottie, .hero__van, .hero__scroll { display: none !important; }
    body { color: #000; background: #fff; }
    .post__hero { min-height: auto; padding: 20px 0; color: #000; }
    .post__hero-bg { display: none; }
    .post h1 { color: #000; }
    .post__body { padding: 20px 0; max-width: 100%; font-size: 11pt; }
    .post__body > p:first-of-type { font-size: 13pt; }
    .post__body a { color: #000; text-decoration: underline; }
    .post__body a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
    .post__body blockquote { background: none; border-left: 3px solid #000; margin: 20px 0; }
    .post__breadcrumb, .post__meta { color: #666; }
    .post__meta-cat { background: #000; }
}
