:root {
  --navy:#0E2A4A; --navy-deep:#08182C; --navy-soft:#163A60;
  --ink:#0A1626; --ink2:#1F2A3A; --body:#374454; --muted:#6B7785; --faint:#9AA4B2;
  --hairline:rgba(14,42,74,0.12); --hairline-soft:rgba(14,42,74,0.06);
  --bg:#FAF8F4; --surface:#FFFFFF; --panel:#F2EEE7;
  --lake:#5C8BA8; --lake-soft:#DCE7EE;
  --forest:#3E5D45; --forest-soft:#E0E8DD;
  --sand:#C9A878; --sand-soft:#F2E8D5;
  --warm:#B8593A;
  --serif:"Instrument Serif","Cormorant Garamond",Georgia,serif;
  --sans:"Plus Jakarta Sans",-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  --mono:"JetBrains Mono",ui-monospace,monospace;
}

*,*::before,*::after { box-sizing:border-box; }
html,body { margin:0; padding:0; background:var(--bg); font-family:var(--sans); color:var(--ink); -webkit-font-smoothing:antialiased; scroll-behavior:smooth; }
img { display:block; max-width:100%; }
a { color:inherit; }
button { font-family:inherit; cursor:pointer; }
::-webkit-scrollbar { width:10px; height:10px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(0,0,0,0.15); border-radius:5px; }
section { position:relative; }

.container { max-width:1280px; margin:0 auto; padding:0 32px; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; margin-bottom:16px; }
.eyebrow .bar { width:24px; height:1px; background:var(--navy); }
.eyebrow span.label { font-size:12px; font-weight:600; letter-spacing:1.2px; color:var(--navy); text-transform:uppercase; }
.eyebrow.on-dark .bar { background:#fff; }
.eyebrow.on-dark span.label { color:#fff; opacity:0.85; }

h1.display { font-family:var(--serif); font-size:88px; line-height:0.96; letter-spacing:-2px; margin:0; font-weight:400; color:#fff; }
h2.section-title { font-family:var(--serif); font-size:56px; line-height:1.02; letter-spacing:-1.2px; margin:0; font-weight:400; color:var(--ink); }
h2.section-title.on-dark { color:#fff; }
.section-sub { font-size:17px; line-height:1.55; color:var(--body); margin-top:18px; max-width:640px; }
.section-sub.on-dark { color:rgba(255,255,255,0.78); }
.italic { font-style:italic; }

.btn { height:44px; padding:0 20px; border:none; border-radius:999px; font-size:14px; font-weight:600; display:inline-flex; align-items:center; gap:8px; text-decoration:none; cursor:pointer; letter-spacing:-0.1px; transition:transform 0.15s ease, opacity 0.15s ease; }
.btn:hover { transform:translateY(-1px); }
.btn-primary { background:var(--ink); color:#fff; }
.btn-primary.lg { height:56px; padding:0 28px; font-size:15px; }
.btn-light { background:#fff; color:var(--ink); }
.btn-light.lg { height:56px; padding:0 28px; font-size:15px; }
.btn-ghost { background:transparent; color:var(--ink); border:1px solid var(--hairline); font-weight:500; }
.btn-ghost.lg { height:56px; padding:0 28px; font-size:15px; }
.btn-ghost.on-dark { background:rgba(255,255,255,0.1); color:#fff; border:1px solid rgba(255,255,255,0.35); backdrop-filter:blur(8px); }

/* Header */
.site-header { position:sticky; top:0; z-index:50; background:rgba(250,248,244,0.85); backdrop-filter:saturate(180%) blur(20px); -webkit-backdrop-filter:saturate(180%) blur(20px); border-bottom:1px solid var(--hairline-soft); }
.site-header .inner { height:76px; display:flex; align-items:center; justify-content:space-between; }
.site-header .brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.site-header .brand img { height:80px; width:auto; }
.site-nav { display:flex; gap:32px; }
.site-nav a { font-size:14px; font-weight:500; color:var(--body); text-decoration:none; padding:8px 0; border-bottom:1.5px solid transparent; }
.site-nav a.active, .site-nav a:hover { color:var(--navy); border-bottom-color:var(--navy); }
.header-actions { display:flex; gap:10px; align-items:center; }
.lang { font-size:13px; color:var(--muted); text-decoration:none; }
.lang-switch { display:inline-flex; align-items:center; gap:6px; font-size:13px; color:var(--muted); }
.lang-switch .lang-opt { color:var(--muted); text-decoration:none; padding:4px 2px; font-weight:500; letter-spacing:0.4px; }
.lang-switch .lang-opt.active { color:var(--navy); font-weight:700; }
.lang-switch .lang-opt:hover { color:var(--navy); }
.lang-switch .lang-sep { color:var(--muted); opacity:0.6; }
.lang-switch.mobile { margin:18px 0 4px; font-size:18px; gap:10px; }
.lang-switch.mobile .lang-opt { padding:8px 4px; }

/* Hero */
.hero { position:relative; height:760px; overflow:hidden; background:var(--navy-deep); color:#fff; }
.hero .bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:saturate(0.92); }
.hero .grad-1 { position:absolute; inset:0; background:linear-gradient(180deg,rgba(8,24,44,0.45) 0%,rgba(8,24,44,0.25) 35%,rgba(8,24,44,0.7) 100%); }
.hero .grad-2 { position:absolute; inset:0; background:linear-gradient(95deg,rgba(8,24,44,0.55) 0%,rgba(8,24,44,0) 55%); }
.hero .inner { position:relative; height:100%; display:flex; align-items:center; }
.hero .copy { max-width:640px; }
.hero .badge { display:inline-flex; align-items:center; gap:8px; padding:6px 12px; background:rgba(255,255,255,0.12); backdrop-filter:blur(10px); border-radius:999px; border:1px solid rgba(255,255,255,0.2); margin-bottom:24px; font-size:12px; font-weight:500; letter-spacing:0.3px; }
.hero .badge .dot { width:6px; height:6px; border-radius:3px; background:#7FE0B8; }
.hero p.lede { font-size:18px; line-height:1.55; color:rgba(255,255,255,0.82); margin:24px 0 36px; max-width:520px; }
.hero .cta-row { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.hero .social-proof { display:flex; align-items:center; gap:16px; margin-top:40px; }
.hero .social-proof .avatars { display:flex; }
.hero .social-proof .avatar { width:32px; height:32px; border-radius:50%; background-size:cover; background-position:center; border:2px solid rgba(255,255,255,0.6); }
.hero .social-proof .avatar + .avatar { margin-left:-10px; }
.hero .social-proof .label { font-size:12px; color:rgba(255,255,255,0.75); line-height:1.4; }
.hero .social-proof .label strong { color:#fff; font-weight:600; display:block; }
.hero .scroll-indicator { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); color:rgba(255,255,255,0.6); font-size:11px; letter-spacing:0.5px; display:flex; flex-direction:column; align-items:center; gap:6px; }
.hero .scroll-indicator .line { width:1px; height:28px; background:rgba(255,255,255,0.4); }
.hero .phone-wrap { position:absolute; right:32px; top:50%; transform:translateY(-50%); }

/* Phone mock */
.phone { width:280px; height:580px; border-radius:36px; padding:8px; background:linear-gradient(160deg,#1a1a1a,#000); box-shadow:0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset; }
.phone-screen { width:100%; height:100%; border-radius:28px; overflow:hidden; background:var(--bg); position:relative; }
.phone-home { position:absolute; inset:0; color:var(--ink); padding:44px 14px 0; }
.phone-home .mirre { font-size:10px; color:var(--muted); font-weight:500; }
.phone-home .head { font-family:var(--serif); font-size:22px; line-height:1.05; letter-spacing:-0.4px; margin-top:2px; }
.phone-home .search { height:28px; margin-top:12px; background:var(--surface); border-radius:14px; border:0.5px solid var(--hairline); display:flex; align-items:center; padding:0 10px; gap:6px; }
.phone-home .search .circ { width:10px; height:10px; border-radius:5px; border:1.5px solid var(--faint); }
.phone-home .search .ph { font-size:10px; color:var(--faint); }
.phone-home .featured { margin-top:14px; display:flex; gap:8px; overflow:hidden; }
.phone-home .feat-card { flex-shrink:0; width:130px; height:170px; border-radius:12px; background-size:cover; background-position:center; position:relative; }
.phone-home .feat-card .grad { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.6),transparent 50%); border-radius:12px; }
.phone-home .feat-card .meta { position:absolute; bottom:8px; left:8px; right:8px; color:#fff; }
.phone-home .feat-card .meta .tag { font-size:8px; font-weight:600; opacity:0.85; text-transform:uppercase; letter-spacing:0.4px; }
.phone-home .feat-card .meta .name { font-family:var(--serif); font-size:14px; line-height:1.05; }
.phone-home .browse-title { margin-top:12px; font-family:var(--serif); font-size:14px; }
.phone-home .browse { margin-top:6px; display:grid; grid-template-columns:repeat(4,1fr); gap:6px; }
.phone-home .browse .b { height:44px; background:var(--surface); border-radius:8px; border:0.5px solid var(--hairline); display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:500; color:var(--ink); }

.phone-explore { position:absolute; inset:0; padding:44px 14px 0; }
.phone-explore .head { font-family:var(--serif); font-size:22px; line-height:1.05; }
.phone-explore .grid { margin-top:12px; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.phone-explore .cell { height:100px; border-radius:10px; background-size:cover; background-position:center; }

.phone-events { position:absolute; inset:0; padding:44px 14px 0; }
.phone-events .head { font-family:var(--serif); font-size:22px; }
.phone-events .row { margin-top:8px; display:flex; gap:8px; padding:6px; background:var(--surface); border-radius:10px; border:0.5px solid var(--hairline); }
.phone-events .row .img { width:50px; height:50px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.phone-events .row .meta { flex:1; }
.phone-events .row .meta .d { font-size:8px; color:var(--warm); font-weight:600; }
.phone-events .row .meta .t { font-family:var(--serif); font-size:11px; line-height:1.1; }
.phone-events .row .meta .l { font-size:8px; color:var(--muted); margin-top:2px; }

.phone-map { position:absolute; inset:0; background:#E8E2D6; }
.phone-map svg { position:absolute; inset:0; width:100%; height:100%; }
.phone-map .card { position:absolute; bottom:12px; left:12px; right:12px; padding:10px; background:rgba(255,255,255,0.95); backdrop-filter:blur(10px); border-radius:12px; border:0.5px solid var(--hairline); }
.phone-map .card .t { font-family:var(--serif); font-size:12px; }
.phone-map .card .l { font-size:9px; color:var(--muted); margin-top:2px; }

/* Value section */
.value { padding:120px 32px; background:var(--bg); }
.value .head-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; margin-bottom:64px; }
.value .head-row p { font-size:17px; line-height:1.6; color:var(--body); margin:0; padding-top:60px; }
.value .grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--hairline); border:1px solid var(--hairline); border-radius:4px; }
.value .item { background:var(--bg); padding:40px 36px; min-height:220px; }
.value .item .ico { width:44px; height:44px; border-radius:10px; background:var(--surface); border:1px solid var(--hairline); display:flex; align-items:center; justify-content:center; margin-bottom:24px; }
.value .item h3 { font-family:var(--serif); font-size:24px; color:var(--ink); letter-spacing:-0.4px; margin:0 0 8px; font-weight:400; }
.value .item p { font-size:14px; line-height:1.55; color:var(--body); margin:0; }

/* Explore */
.explore { padding:120px 32px; background:var(--surface); }
.explore .head-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:56px; gap:32px; flex-wrap:wrap; }
.explore .head-row .right { font-size:14px; color:var(--navy); font-weight:600; text-decoration:none; display:flex; align-items:center; gap:6px; }
.explore .grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.explore .card { border-radius:14px; overflow:hidden; position:relative; cursor:pointer; background-size:cover; background-position:center; }
.explore .card .grad { position:absolute; inset:0; background:linear-gradient(to top,rgba(8,24,44,0.78) 0%,rgba(8,24,44,0) 50%); }
.explore .card .meta { position:absolute; bottom:24px; left:24px; right:24px; color:#fff; }
.explore .card .meta .t { font-family:var(--serif); font-size:32px; letter-spacing:-0.5px; line-height:1; }
.explore .card .meta .d { font-size:13px; opacity:0.85; margin-top:6px; }
.explore .card .arrow { position:absolute; top:20px; right:20px; width:36px; height:36px; border-radius:18px; background:rgba(255,255,255,0.95); display:flex; align-items:center; justify-content:center; }
.explore .card.span-2 { grid-column:span 2; height:380px; }
.explore .card.span-3 { grid-column:span 3; height:320px; }

/* Events */
.events { padding:120px 32px; background:var(--bg); }
.events .head-row { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:56px; gap:32px; flex-wrap:wrap; }
.events .head-row .right { font-size:14px; color:var(--navy); font-weight:600; text-decoration:none; display:flex; align-items:center; gap:6px; }
.events .grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.events .card { background:var(--surface); border-radius:14px; overflow:hidden; border:1px solid var(--hairline); cursor:pointer; }
.events .card .img { height:220px; position:relative; background-size:cover; background-position:center; background-color:var(--panel); }
.events .card .date { position:absolute; top:14px; left:14px; background:#fff; border-radius:8px; padding:6px 8px; text-align:center; min-width:44px; }
.events .card .date .m { font-size:9px; color:var(--warm); font-weight:700; letter-spacing:0.6px; }
.events .card .date .d { font-family:var(--serif); font-size:24px; color:var(--ink); line-height:0.9; margin-top:2px; }
.events .card .pill { position:absolute; top:14px; right:14px; padding:4px 10px; background:rgba(255,255,255,0.95); border-radius:999px; font-size:10px; font-weight:600; color:var(--ink); letter-spacing:0.3px; text-transform:uppercase; }
.events .card .body { padding:18px 18px 22px; }
.events .card .body .t { font-family:var(--serif); font-size:22px; color:var(--ink); letter-spacing:-0.3px; line-height:1.1; }
.events .card .body .l { display:flex; align-items:center; gap:6px; margin-top:8px; font-size:13px; color:var(--muted); }

/* Businesses */
.businesses { padding:120px 32px; background:var(--navy); color:#fff; overflow:hidden; }
.businesses::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%,rgba(92,139,168,0.25),transparent 50%); pointer-events:none; }
.businesses .inner { position:relative; display:grid; grid-template-columns:1fr 1.2fr; gap:80px; }
.businesses h2 { color:#fff; }
.businesses .cta-card { margin-top:36px; padding:28px; background:rgba(255,255,255,0.06); backdrop-filter:blur(10px); border-radius:14px; border:1px solid rgba(255,255,255,0.12); }
.businesses .cta-card .t { font-family:var(--serif); font-size:24px; color:#fff; letter-spacing:-0.3px; }
.businesses .cta-card .d { font-size:14px; color:rgba(255,255,255,0.75); margin-top:8px; margin-bottom:20px; line-height:1.55; }
.businesses .cta-card .btn-light { height:48px; padding:0 22px; }
.businesses .cats { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.businesses .cat { padding:28px 24px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; display:flex; align-items:center; justify-content:space-between; cursor:pointer; }
.businesses .cat .left { display:flex; align-items:center; gap:16px; }
.businesses .cat .name { font-family:var(--serif); font-size:22px; color:#fff; letter-spacing:-0.3px; }
.businesses .cat .count { font-family:var(--mono); font-size:13px; color:rgba(255,255,255,0.55); }

/* Featured businesses (DB) */
.fb { padding:120px 32px; background:var(--bg); }
.fb .head-row { margin-bottom:56px; }
.fb .grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.fb .card { background:var(--surface); border-radius:14px; overflow:hidden; border:1px solid var(--hairline); }
.fb .card .img { height:220px; background-size:cover; background-position:center; background-color:var(--panel); }
.fb .card .body { padding:22px 22px 24px; }
.fb .card .body .t { font-family:var(--serif); font-size:24px; color:var(--ink); letter-spacing:-0.3px; line-height:1.1; }
.fb .card .body .tag { font-size:13px; color:var(--muted); margin-top:6px; }
.fb .card .body .d { font-size:14px; color:var(--body); line-height:1.55; margin-top:10px; }

/* Attractions */
.attractions { padding:120px 32px; background:var(--bg); }
.attractions .head-row { margin-bottom:56px; }
.attractions .grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.attractions .item { cursor:pointer; }
.attractions .item .img { height:280px; border-radius:12px; overflow:hidden; background-size:cover; background-position:center; background-color:var(--panel); position:relative; }
.attractions .item .pill { position:absolute; top:14px; left:14px; padding:4px 10px; background:rgba(255,255,255,0.95); border-radius:999px; font-size:10px; font-weight:600; color:var(--ink); letter-spacing:0.3px; display:flex; align-items:center; gap:4px; }
.attractions .item .body { padding:18px 4px 0; }
.attractions .item .body h3 { font-family:var(--serif); font-size:26px; color:var(--ink); letter-spacing:-0.4px; line-height:1.05; margin:0; font-weight:400; }
.attractions .item .body p { font-size:14px; color:var(--body); line-height:1.55; margin-top:8px; }

/* App preview */
.app-preview { padding:140px 32px; background:var(--surface); overflow:hidden; }
.app-preview .head { text-align:center; margin-bottom:80px; max-width:720px; margin-left:auto; margin-right:auto; }
.app-preview .head .eyebrow { justify-content:center; }
.app-preview .head h2 { text-align:center; }
.app-preview .head p { margin-left:auto; margin-right:auto; text-align:center; }
.app-preview .stores { display:flex; gap:12px; justify-content:center; margin-top:32px; flex-wrap:wrap; }
.app-preview .stores .btn { background:var(--ink); color:#fff; height:52px; padding:0 22px; }
.app-preview .phones { display:flex; justify-content:center; align-items:flex-end; gap:32px; perspective:1500px; }
.app-preview .phone-col { display:flex; flex-direction:column; align-items:center; gap:18px; }
.app-preview .phone-col .label { font-size:13px; font-weight:500; color:var(--muted); letter-spacing:0.3px; }
.app-preview .phone-col.l { transform:translateY(-30px) rotateY(6deg); }
.app-preview .phone-col.lc { transform:translateY(-60px); }
.app-preview .phone-col.rc { transform:translateY(-60px); }
.app-preview .phone-col.r { transform:translateY(-30px) rotateY(-6deg); }

/* Story */
.story { padding:140px 32px; background:var(--bg); }
.story .inner { display:grid; grid-template-columns:1.1fr 1fr; gap:80px; align-items:center; }
.story .images { position:relative; }
.story .images .main { height:540px; border-radius:14px; overflow:hidden; background-size:cover; background-position:center; }
.story .images .accent { position:absolute; bottom:-32px; right:-32px; width:220px; height:280px; border-radius:12px; overflow:hidden; box-shadow:0 30px 60px rgba(0,0,0,0.18); background-size:cover; background-position:center; border:8px solid var(--bg); }
.story .copy h2 { font-size:64px; line-height:1; letter-spacing:-1.4px; }
.story .copy p { font-size:16px; line-height:1.7; color:var(--body); margin-top:24px; }
.story .stats { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; padding-top:32px; border-top:1px solid var(--hairline); }
.story .stats .stat .n { font-family:var(--serif); font-size:36px; color:var(--navy); letter-spacing:-0.6px; line-height:1; }
.story .stats .stat .l { font-size:12px; color:var(--muted); margin-top:6px; letter-spacing:0.3px; text-transform:uppercase; }

/* Final CTA */
.final-cta { padding:32px; }
.final-cta .inner { max-width:1280px; margin:0 auto; border-radius:24px; overflow:hidden; position:relative; background:var(--navy-deep); padding:120px 64px; }
.final-cta .bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0.35; }
.final-cta .grad { position:absolute; inset:0; background:linear-gradient(120deg,rgba(8,24,44,0.85) 0%,rgba(8,24,44,0.55) 100%); }
.final-cta .copy { position:relative; text-align:center; max-width:800px; margin:0 auto; color:#fff; }
.final-cta .copy h2 { font-size:80px; line-height:0.98; letter-spacing:-1.8px; color:#fff; margin:0; font-family:var(--serif); font-weight:400; }
.final-cta .copy p { font-size:17px; color:rgba(255,255,255,0.78); margin-top:24px; line-height:1.55; }
.final-cta .copy .actions { display:flex; justify-content:center; gap:12px; margin-top:40px; flex-wrap:wrap; }
.final-cta .copy .eyebrow { justify-content:center; }

/* Contact */
.contact { padding:120px 32px; background:var(--bg); }
.contact .contact-grid { display:grid; grid-template-columns:1fr 1.15fr; gap:64px; align-items:start; }
.contact .contact-intro h2 { margin-top:0; }
.contact .contact-intro .section-sub { margin-top:18px; }
.contact .contact-meta { list-style:none; padding:0; margin:36px 0 0; border-top:1px solid var(--hairline); }
.contact .contact-meta li { display:flex; align-items:baseline; gap:18px; padding:16px 0; border-bottom:1px solid var(--hairline); }
.contact .contact-meta .ck { font-size:11px; font-weight:700; color:var(--muted); letter-spacing:1px; text-transform:uppercase; min-width:70px; }
.contact .contact-meta a { color:var(--ink); text-decoration:none; font-weight:500; }
.contact .contact-meta a:hover { color:var(--navy); }

.contact-card { background:var(--surface); border:1px solid var(--hairline); border-radius:18px; padding:36px; box-shadow:0 30px 60px rgba(8,24,44,0.06); }

.cf-form .cf-row { margin-bottom:18px; }
.cf-form .cf-row.two { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.cf-field { display:flex; flex-direction:column; gap:6px; }
.cf-field label { font-size:12px; font-weight:600; color:var(--ink); letter-spacing:0.4px; text-transform:uppercase; }
.cf-field label .opt { color:var(--muted); font-weight:500; text-transform:none; letter-spacing:0; margin-left:4px; }
.cf-input { width:100%; height:48px; padding:0 16px; border:1px solid var(--hairline); border-radius:10px; background:var(--bg); font-family:var(--sans); font-size:15px; color:var(--ink); transition:border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease; }
.cf-input:hover { border-color:rgba(14,42,74,0.24); }
.cf-input:focus { outline:none; border-color:var(--navy); background:#fff; box-shadow:0 0 0 4px rgba(14,42,74,0.08); }
.cf-textarea { height:auto; min-height:140px; padding:14px 16px; resize:vertical; line-height:1.55; }
.cf-err { font-size:12px; color:#B8593A; margin-top:2px; }
.cf-error-summary { padding:12px 14px; background:#FBE9E2; color:#7B2E18; border-radius:10px; margin-bottom:16px; font-size:14px; }
.cf-success { padding:14px 16px; background:#E0E8DD; color:#1F3A24; border-radius:10px; margin-bottom:18px; display:flex; flex-direction:column; gap:2px; font-size:14px; }
.cf-success strong { font-size:15px; }
.cf-actions { display:flex; align-items:center; gap:18px; margin-top:8px; flex-wrap:wrap; }
.cf-foot { font-size:12px; color:var(--muted); }

/* Mobile menu */
.menu-toggle { display:none; width:44px; height:44px; border:1px solid var(--hairline); border-radius:999px; background:transparent; align-items:center; justify-content:center; cursor:pointer; padding:0; }
.menu-toggle .bars { display:flex; flex-direction:column; gap:4px; }
.menu-toggle .bars span { width:18px; height:1.5px; background:var(--ink); border-radius:2px; transition:transform 0.2s ease, opacity 0.2s ease; }
body.menu-open { overflow:hidden; }
.mobile-menu { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(250,248,244,0.97); backdrop-filter:blur(20px); z-index:60; display:none; flex-direction:column; padding:96px 32px 32px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { display:block; font-family:var(--serif); font-size:34px; color:var(--ink); text-decoration:none; padding:14px 0; border-bottom:1px solid var(--hairline); letter-spacing:-0.4px; }
.mobile-menu .actions { margin-top:auto; display:flex; flex-direction:column; gap:12px; }
.mobile-menu .actions .btn { justify-content:center; }
.menu-close { position:absolute; top:18px; right:24px; width:44px; height:44px; border:1px solid var(--hairline); border-radius:999px; background:transparent; cursor:pointer; }
.menu-close::before, .menu-close::after { content:""; position:absolute; top:50%; left:50%; width:18px; height:1.5px; background:var(--ink); }
.menu-close::before { transform:translate(-50%,-50%) rotate(45deg); }
.menu-close::after { transform:translate(-50%,-50%) rotate(-45deg); }

/* Footer */
.footer { padding:80px 32px 32px; background:var(--surface); border-top:1px solid var(--hairline); }
.footer .grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:56px; }
.footer .brand img { height:80px; width:auto; }
.footer .brand p { font-size:14px; line-height:1.6; color:var(--body); max-width:280px; margin:16px 0 0; }
.footer .brand .social { display:flex; gap:8px; margin-top:24px; }
.footer .brand .social a { width:36px; height:36px; border-radius:18px; background:var(--bg); border:1px solid var(--hairline); display:flex; align-items:center; justify-content:center; }
.footer .col h4 { font-size:12px; font-weight:700; color:var(--ink); letter-spacing:1px; text-transform:uppercase; margin:0 0 18px; }
.footer .col a { display:block; font-size:14px; color:var(--body); text-decoration:none; margin-bottom:10px; }
.footer .col a:hover { color:var(--navy); }
.footer .bottom { max-width:1280px; margin:64px auto 0; padding-top:24px; border-top:1px solid var(--hairline); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--muted); }
.footer .bottom .legal { display:flex; gap:18px; }
.footer .bottom a { color:var(--muted); text-decoration:none; }

/* Legal pages (Privacy / Terms / Account Deletion) */
.legal-page { padding:80px 32px 96px; background:var(--bg); }
.legal-container { max-width:760px; margin:0 auto; padding:0; }
.legal-back { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:600; color:var(--navy); text-decoration:none; letter-spacing:0.2px; }
.legal-back:hover { opacity:0.75; }
.legal-header { margin:24px 0 40px; padding-bottom:32px; border-bottom:1px solid var(--hairline); }
.legal-header .eyebrow { margin-bottom:14px; }
.legal-title { font-family:var(--serif); font-size:56px; line-height:1.05; letter-spacing:-1.2px; color:var(--ink); margin:0; font-weight:400; }
.legal-meta { margin-top:14px; font-size:13px; color:var(--muted); letter-spacing:0.3px; text-transform:uppercase; font-weight:600; }
.legal-intro { margin-top:20px; font-size:18px; line-height:1.6; color:var(--body); max-width:660px; }
.legal-content { font-size:16px; line-height:1.7; color:var(--body); }
.legal-section { margin-top:36px; }
.legal-section:first-child { margin-top:0; }
.legal-section h2 { font-family:var(--serif); font-size:28px; line-height:1.15; letter-spacing:-0.5px; color:var(--ink); font-weight:400; margin:0 0 14px; }
.legal-section p { margin:0 0 14px; }
.legal-section p:last-child { margin-bottom:0; }
.legal-section ul { margin:6px 0 14px; padding-left:22px; }
.legal-section ul li { margin-bottom:6px; }
.legal-contact-box { margin-top:48px; padding:24px 28px; background:var(--surface); border:1px solid var(--hairline); border-radius:14px; box-shadow:0 20px 40px rgba(8,24,44,0.04); }
.legal-contact-box .lead { font-size:14px; color:var(--body); margin:0 0 8px; }
.legal-contact-box .email { font-family:var(--mono); font-size:16px; color:var(--navy); font-weight:600; text-decoration:none; word-break:break-all; }
.legal-contact-box .email:hover { text-decoration:underline; }
.legal-form-block { margin-top:48px; padding:32px; background:var(--surface); border:1px solid var(--hairline); border-radius:18px; box-shadow:0 30px 60px rgba(8,24,44,0.06); scroll-margin-top:96px; }
.legal-form-block h2 { font-family:var(--serif); font-size:28px; line-height:1.15; letter-spacing:-0.5px; color:var(--ink); font-weight:400; margin:0 0 10px; }
.legal-form-intro { font-size:15px; line-height:1.6; color:var(--body); margin:0 0 22px; }

/* Responsive */
@media (max-width: 1024px) {
  h1.display { font-size:64px; }
  h2.section-title { font-size:42px; }
  .hero { height:auto; padding:120px 0 100px; }
  .hero .phone-wrap { display:none; }
  .value .head-row { grid-template-columns:1fr; gap:24px; }
  .value .head-row p { padding-top:0; }
  .value .grid { grid-template-columns:repeat(2,1fr); }
  .explore .grid { grid-template-columns:repeat(4,1fr); }
  .explore .card.span-2 { grid-column:span 2; }
  .explore .card.span-3 { grid-column:span 4; }
  .events .grid { grid-template-columns:repeat(2,1fr); }
  .businesses .inner { grid-template-columns:1fr; gap:48px; }
  .fb .grid { grid-template-columns:repeat(2,1fr); }
  .attractions .grid { grid-template-columns:repeat(2,1fr); }
  .story .inner { grid-template-columns:1fr; gap:64px; }
  .story .images .accent { right:0; }
  .story .copy h2 { font-size:48px; }
  .app-preview .phones { flex-wrap:wrap; }
  .app-preview .phone-col.l, .app-preview .phone-col.r, .app-preview .phone-col.lc, .app-preview .phone-col.rc { transform:none; }
  .final-cta .inner { padding:80px 32px; }
  .final-cta .copy h2 { font-size:56px; letter-spacing:-1.2px; }
  .footer .grid { grid-template-columns:1fr 1fr; }
  .contact .contact-grid { grid-template-columns:1fr; gap:48px; }
}

@media (max-width: 1024px) and (min-width: 721px) {
  .legal-title { font-size:44px; }
}

@media (max-width: 720px) {
  h1.display { font-size:48px; letter-spacing:-1.5px; }
  .legal-page { padding:48px 20px 72px; }
  .legal-title { font-size:34px; letter-spacing:-0.6px; }
  .legal-section h2 { font-size:22px; }
  .legal-intro { font-size:16px; }
  .legal-contact-box { padding:20px; }
  .legal-form-block { padding:22px; border-radius:14px; }
  h2.section-title { font-size:34px; letter-spacing:-0.8px; }
  .container, .value, .explore, .events, .businesses, .fb, .attractions, .app-preview, .story { padding-left:20px; padding-right:20px; }
  .value, .explore, .events, .businesses, .fb, .attractions { padding-top:80px; padding-bottom:80px; }
  .app-preview, .story { padding-top:80px; padding-bottom:80px; }
  .site-nav { display:none; }
  .header-actions .lang,
  .header-actions .lang-switch { display:none; }
  .menu-toggle { display:inline-flex; }
  .contact { padding:80px 20px; }
  .contact-card { padding:24px; border-radius:14px; }
  .cf-form .cf-row.two { grid-template-columns:1fr; gap:18px; }
  .value .grid { grid-template-columns:1fr; }
  .explore .grid { grid-template-columns:1fr; }
  .explore .card.span-2, .explore .card.span-3 { grid-column:span 1; height:280px; }
  .events .grid, .fb .grid, .attractions .grid { grid-template-columns:1fr; }
  .businesses .cats { grid-template-columns:1fr; }
  .story .copy h2 { font-size:38px; }
  .final-cta { padding:20px; }
  .final-cta .inner { padding:64px 24px; }
  .final-cta .copy h2 { font-size:40px; letter-spacing:-1px; }
  .footer .grid { grid-template-columns:1fr; gap:32px; }
  .hero .cta-row { flex-direction:column; align-items:stretch; }
  .hero .cta-row .btn { justify-content:center; }
}
