:root {
    --ink: #0d0d0d;
    --paper: #ffffff;
    --smoke: #f4f3f0;
    --muted: #6e6e6e;
    --line: rgba(0, 0, 0, .14);
    --line-soft: rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -.01em;
    margin: 0;
}

a { color: inherit; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 26px; }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 26px;
}
.eyebrow--light { color: rgba(255, 255, 255, .7); }

.kicker {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.muted { color: var(--muted); }

/* ---------- Ticker ---------- */
.ticker {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
}
.ticker__track {
    display: inline-flex;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .26em;
    padding: 9px 0;
    animation: scroll 34s linear infinite;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Nav ---------- */
.nav {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; gap: 24px;
    padding: 20px 34px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.nav__brand {
    font-family: "Fraunces", serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.01em;
    text-decoration: none;
}
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
    text-decoration: none; font-size: 14px; font-weight: 500;
    color: var(--ink); position: relative; padding-bottom: 3px;
}
.nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--ink); transition: width .25s;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
    border: 1px solid var(--ink); color: var(--ink);
    text-decoration: none; font-size: 13px; font-weight: 600;
    letter-spacing: .04em; padding: 11px 22px; border-radius: 100px;
    transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; letter-spacing: .02em;
    text-decoration: none; cursor: pointer;
    padding: 14px 30px; border-radius: 100px;
    border: 1px solid var(--ink);
    transition: background .2s, color .2s, transform .15s;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- Hero ---------- */
.hero { max-width: 1120px; margin: 0 auto; padding: 96px 26px 70px; }
.hero__inner { max-width: 760px; }
.hero h1 { font-size: clamp(48px, 9vw, 116px); }
.hero h1 em { font-style: italic; font-weight: 300; }
.hero__lead { font-size: 20px; max-width: 480px; margin: 30px 0 38px; color: #2b2b2b; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line-soft);
    font-size: 13px; letter-spacing: .04em; color: var(--muted);
}
.hero__meta .dot { color: var(--line); }

/* ---------- Statement band ---------- */
.band {
    background: var(--ink); color: var(--paper);
    padding: 90px 26px; text-align: center; margin: 30px 0 70px;
}
.band p {
    font-family: "Fraunces", serif; font-weight: 300;
    font-size: clamp(28px, 5vw, 60px); line-height: 1.1;
    max-width: 900px; margin: 0 auto;
}
.band p em { font-style: italic; color: #cfcfcf; }

/* ---------- Sections ---------- */
.section { padding: 40px 0 80px; }
.section__head { max-width: 620px; margin-bottom: 50px; }
.section__head h2 { font-size: clamp(32px, 5vw, 58px); }
.section__head p { font-size: 18px; color: var(--muted); margin-top: 18px; }

/* ---------- Tiles ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.tile { padding: 44px 30px 50px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.tile:first-child { border-left: 1px solid var(--line); }
.tile__num { font-size: 13px; letter-spacing: .1em; color: var(--muted); }
.tile h3 { font-size: 30px; margin: 22px 0 12px; }
.tile p { color: var(--muted); font-size: 15px; }

/* ---------- Split (visit + map) ---------- */
.split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
    margin: 20px 0 0;
}
.split__text { padding: 70px clamp(26px, 5vw, 80px); }
.split__text h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.split__text > p { color: var(--muted); font-size: 17px; max-width: 440px; }
.facts { list-style: none; padding: 0; margin: 32px 0 0; }
.facts li {
    display: grid; grid-template-columns: 110px 1fr; gap: 16px;
    padding: 16px 0; border-top: 1px solid var(--line-soft); font-size: 15px;
}
.facts li span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.split__map { border-left: 1px solid var(--ink); min-height: 420px; }
#map { width: 100%; height: 100%; min-height: 420px; background: var(--smoke); z-index: 0; }
#map .leaflet-tile-pane { filter: grayscale(1) contrast(1.03); }
#map .leaflet-popup-content-wrapper, #map .leaflet-popup-tip { border-radius: 2px; box-shadow: 0 4px 18px rgba(0,0,0,.18); }
#map .leaflet-popup-content { font-family: "Inter", sans-serif; font-size: 13px; line-height: 1.5; }
#map .leaflet-popup-content strong { font-family: "Fraunces", serif; font-weight: 500; font-size: 16px; }
.lg-pin { background: transparent; border: 0; display: grid; place-items: start center; }
.lg-pin i {
    display: grid; place-items: center;
    width: 40px; height: 40px;
    background: #fff; border: 2px solid var(--ink);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 5px 12px rgba(0,0,0,.4);
    font-style: normal;
}
.lg-pin i > span { display: block; transform: rotate(45deg); font-size: 20px; line-height: 1; }

/* ---------- Wordmark ---------- */
.wordmark { text-align: center; padding: 80px 0 30px; overflow: hidden; }
.wordmark span {
    font-family: "Fraunces", serif; font-weight: 300;
    font-size: clamp(64px, 20vw, 260px); line-height: .82;
    letter-spacing: -.02em; color: var(--ink);
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 80px 26px 30px; }
.footer__grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand { font-family: "Fraunces", serif; font-weight: 400; font-size: 34px; margin-bottom: 14px; }
.footer h4 { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 14px; }
.footer p { color: rgba(255, 255, 255, .82); margin: 0 0 10px; font-size: 15px; }
.footer a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.footer__base {
    max-width: 1120px; margin: 56px auto 0; padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: 12px; letter-spacing: .04em; color: rgba(255, 255, 255, .6);
}

/* ---------- Page header ---------- */
.page-head { background: var(--ink); color: var(--paper); padding: 90px 26px 80px; text-align: center; }
.page-head h1 { font-size: clamp(44px, 8vw, 92px); }
.page-head p { color: rgba(255, 255, 255, .72); margin: 18px auto 0; max-width: 520px; font-size: 18px; }

/* ---------- Carta "soon" ---------- */
.soon { max-width: 720px; margin: 0 auto; text-align: center; }
.soon__mark { display: inline-block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 7px 16px; border-radius: 100px; }
.soon h2 { font-size: clamp(30px, 5vw, 52px); margin: 26px 0 18px; }
.soon p { color: var(--muted); font-size: 18px; }
.soon__cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.soon__cats span { font-size: 13px; letter-spacing: .04em; border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact__info h3 { font-size: 34px; }
.contact__info dl { margin: 28px 0 0; }
.contact__info dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 22px; }
.contact__info dd { margin: 6px 0 0; font-size: 16px; }
.contact__info a { color: var(--ink); }

.contact__cta { border: 1px solid var(--line); padding: 48px 40px; }
.contact__cta h2 { font-size: clamp(28px, 4vw, 42px); }
.contact__cta > p { color: var(--muted); font-size: 17px; margin: 16px 0 30px; max-width: 380px; }
.btn--wsp { background: var(--ink); color: var(--paper); }
.btn--wsp:hover { transform: translateY(-2px); }
.btn--wsp svg { flex-shrink: 0; }
.contact__alt { margin-top: 24px; font-size: 14px; color: var(--muted); }
.contact__alt a { color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }

/* ---------- Form ---------- */
.form-wrap { border: 1px solid var(--line); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; display: flex; flex-direction: column; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field textarea {
    font-family: inherit; font-size: 15px; padding: 13px 14px;
    border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.text-danger { color: #b00020; font-size: 13px; margin-top: 6px; }
.alert-success { background: var(--smoke); border: 1px solid var(--line); padding: 16px 20px; margin-bottom: 26px; font-size: 15px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .nav { padding: 16px 22px; }
    .nav__links { display: none; }
    .grid-3 { grid-template-columns: 1fr; }
    .tile { border-left: 1px solid var(--line); }
    .split { grid-template-columns: 1fr; }
    .split__map { border-left: 0; border-top: 1px solid var(--ink); }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 26px; }
}
