/* Heystay — static rebuild. Brand kit + layout matched to live heystay.eu (Framer). */
:root {
  --burgundy: #3b121e;
  --burgundy-soft: #4d1826;
  --cream: #faf6ec;
  --white: #ffffff;
  --blue: #dce4ff;
  --taupe: #d1ccbc;
  --ink: #271a29;
  --muted: #6b5a60;
  --amber: #f3ad1c;
  --radius: 18px;
  --maxw: 1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Recoleta", Georgia, "Times New Roman", serif;
}

@font-face {
  font-family: "Recoleta";
  src: url("/fonts/recoleta-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}
h1, h2, h3, .brand, .footer-brand {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */
.site-header { background: var(--burgundy); color: var(--white); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-weight: 700; font-size: 23px; letter-spacing: -0.02em; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--white); }
.lang-switch { border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }
.lang-switch:hover { background: rgba(255,255,255,0.1); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform .12s, box-shadow .12s, background .15s; cursor: pointer; border: none; }
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,18,30,0.28); }
.btn-ghost { background: transparent; color: var(--burgundy); border: 1.5px solid var(--burgundy); }
.btn-ghost:hover { background: var(--burgundy); color: var(--white); }
.btn-light { background: var(--amber); color: var(--burgundy); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(243,173,28,0.4); }

/* ---------- Hero (full-bleed right image) ---------- */
.hero { position: relative; background: var(--burgundy); color: var(--white); overflow: hidden; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; min-height: 600px; align-items: center; }
.hero-content { padding: 76px 0; max-width: 530px; }
.hero h1 { font-size: clamp(40px, 5vw, 62px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; margin-bottom: 22px; }
.hero p.lead { font-size: clamp(17px, 2.1vw, 20px); color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: 50vw; z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--burgundy) 0%, rgba(59,18,30,0.0) 24%); }

/* Newsletter signup */
.signup { display: flex; gap: 10px; max-width: 440px; }
.signup input { flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.10); color: var(--white); font-size: 15px; font-family: inherit; }
.signup input::placeholder { color: rgba(255,255,255,0.6); }
.signup input:focus { outline: none; border-color: rgba(255,255,255,0.6); }
.signup button { white-space: nowrap; }
.hero-sub { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); }
.hero-sub a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ---------- Sections ---------- */
section.block { padding: 88px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; font-weight: 700; color: var(--burgundy); opacity: 0.7; margin-bottom: 14px; }
h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -0.02em; }
.block p.intro { font-size: 18px; color: var(--muted); max-width: 620px; }

/* Two-column: text + collage */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .col-text { max-width: 480px; }
.split .col-text h2 { margin-bottom: 18px; }
.split .col-text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.split .col-text .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 22px; }
.collage figure { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 12px 30px rgba(59,18,30,0.10); }
.collage figure:nth-child(odd) { transform: translateY(18px); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage .tag { position: absolute; left: 10px; bottom: 10px; background: rgba(255,255,255,0.95); color: var(--burgundy); padding: 6px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.14); }

/* Listings */
.listings-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.listings-head a.all { font-weight: 600; color: var(--burgundy); font-size: 15px; white-space: nowrap; }
.listings-head a.all:hover { text-decoration: underline; }
.sr-sprite { position: absolute; width: 0; height: 0; }
.ic { width: 15px; height: 15px; flex-shrink: 0; vertical-align: -2px; }
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(59,18,30,0.08); box-shadow: 0 10px 30px rgba(59,18,30,0.05); transition: transform .15s, box-shadow .15s; }
.listing:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(59,18,30,0.12); }
.listing .photo { height: 210px; overflow: hidden; background: var(--taupe); }
.listing .photo img { width: 100%; height: 100%; object-fit: cover; }
.listing .body { padding: 16px 18px 18px; }
.listing .head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.listing .price { font-weight: 700; font-size: 15px; color: var(--burgundy); white-space: nowrap; }
.listing .loc { font-family: var(--serif); font-size: 18px; line-height: 1.15; color: var(--ink); text-align: right; }
.listing .stats { display: flex; gap: 14px; flex-wrap: wrap; border-top: 1px solid rgba(59,18,30,0.08); padding-top: 12px; color: var(--muted); font-size: 13px; }
.listing .stats span { display: inline-flex; align-items: center; gap: 5px; }
.dream-cards { display: flex; flex-direction: column; gap: 20px; }
.dream-cards .listing:nth-child(2) { margin-left: 44px; }

/* How-it-works periwinkle band */
.howband { background: var(--blue); color: var(--ink); }
.howband .container { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 50px; align-items: center; }
.howband h2 { margin-bottom: 16px; }
.howband p { color: #45506b; font-size: 17px; margin-bottom: 26px; max-width: 440px; }
.howband .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.howband-media { display: flex; justify-content: center; }
.howband-media img { width: 290px; max-width: 100%; border-radius: 28px; }

/* Steps (sub-page) */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 28px; border: 1px solid rgba(59,18,30,0.07); display: flex; gap: 20px; }
.step .num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--burgundy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; }
.step h3 { font-size: 19px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Footer (light) ---------- */
.site-footer { background: var(--cream); color: var(--ink); border-top: 1px solid rgba(59,18,30,0.10); padding: 60px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px; margin-bottom: 40px; }
.footer-brand { font-size: 23px; font-weight: 700; color: var(--burgundy); margin-bottom: 10px; }
.footer-about { font-size: 14px; color: var(--muted); max-width: 280px; }
.footer-col h4 { color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 9px; color: var(--muted); }
.footer-col a:hover { color: var(--burgundy); }
.footer-news p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.footer-news form { display: flex; gap: 8px; }
.footer-news input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 999px; border: 1px solid rgba(59,18,30,0.2); background: var(--white); font-size: 14px; font-family: inherit; }
.footer-news input:focus { outline: none; border-color: var(--burgundy); }
.footer-news button { padding: 11px 18px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(59,18,30,0.12); padding-top: 22px; font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- A11y & motion ---------- */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.btn:focus-visible { outline-color: #fff; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .collage figure:nth-child(odd) { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .hero-content { padding: 56px 0 0; max-width: none; }
  .signup { flex-direction: column; max-width: 360px; }
  .signup button { width: 100%; }
  .hero-media { position: static; width: 100%; height: 300px; margin-top: 36px; }
  .hero-media::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .collage figure:nth-child(odd) { transform: none; }
  .howband .container { grid-template-columns: 1fr; gap: 36px; }
  .howband-media { order: 2; }
  .listings { grid-template-columns: 1fr; }
  .dream-cards .listing:nth-child(2) { margin-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  section.block { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; }
}
