:root {
  /* LocalShags: warm near-black + coral-red (from the moody bedroom hero + coral logo). */
  --black: #100b09;
  --ink: #16100e;
  --surface: #1f1713;
  --surface-2: #271c17;
  --line: rgba(239, 77, 67, 0.20);
  --line-soft: rgba(255, 255, 255, 0.08);

  --bone: #f6efe9;
  --bone-soft: #ccbfb6;
  --muted: #93857b;

  --coral: #ef4d43;
  --coral-deep: #cf3a30;
  --coral-bright: #ff6252;

  --chrome: #ffffff;
  --chrome-ink: #1a1310;
  --chrome-line: #e6e0da;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--bone);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, opacity .25s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; z-index: 999; background: var(--coral); color: #fff; padding: 10px 16px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--head); font-weight: 700; line-height: 1.14; letter-spacing: -0.015em; color: var(--bone); }
h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
.red, i.red { color: var(--coral-bright); font-style: normal; }
p { color: var(--bone-soft); }

.eyebrow {
  display: inline-block; font-family: var(--body);
  font-size: .74rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--coral-bright);
}
.rule { width: 60px; height: 3px; border-radius: 2px; background: var(--coral); margin: 16px 0; }
.rule.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; white-space: nowrap;
  font-family: var(--head); font-weight: 600; font-size: .86rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 32px; border: 2px solid transparent; border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-join { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 12px 32px -12px rgba(239, 77, 67, 0.85); }
.btn-join:hover { background: var(--coral-deep); border-color: var(--coral-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 17px 40px; font-size: .92rem; }

/* Header (white chrome so the dark-text logo is visible) */
.site-header {
  position: relative; z-index: 40; background: var(--chrome);
  border-bottom: 1px solid var(--chrome-line); box-shadow: 0 2px 18px -8px rgba(0, 0, 0, 0.4);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand img { display: block; width: clamp(160px, 21vw, 240px); height: auto; }
.header-right { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
.login-link { font-family: var(--body); font-size: .82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--chrome-ink); }
.login-link:hover { color: var(--coral); }
.header-right .btn { padding: 12px 26px; font-size: .82rem; }

/* Hero (bedroom image on the right, dark scrim on the left for white text) */
.hero {
  position: relative; min-height: min(76vh, 680px); display: flex; align-items: center;
  padding: clamp(52px, 9vw, 96px) 0;
  background:
    linear-gradient(95deg, rgba(16,11,9,0.94) 0%, rgba(16,11,9,0.78) 40%, rgba(16,11,9,0.30) 66%, rgba(16,11,9,0) 100%),
    url('/images/hero-desktop.jpg?v=3') right center / cover no-repeat,
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 640px; }
.hero .rule { margin: 16px 0 20px; }
.hero-heading {
  font-family: var(--head); font-weight: 800; line-height: 1.04; color: #fff;
  font-size: clamp(2.4rem, 5.8vw, 4.1rem); letter-spacing: -0.02em; margin-bottom: 18px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.6);
}
.hero-heading .accent { color: var(--coral-bright); }
.hero-sub { font-size: 1.18rem; color: rgba(255,255,255,0.92); margin-bottom: 30px; max-width: 46ch; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust bar */
.trustbar {
  padding: clamp(18px, 3vw, 26px) 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
}
.trustbar ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px clamp(22px, 5vw, 54px); }
.trustbar li {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: .92rem; font-weight: 600; color: var(--bone);
}
.trustbar .t-ico {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(239, 77, 67, 0.16); color: var(--coral-bright); font-size: .72rem;
}

/* Editorial long-form */
.editorial { padding: clamp(58px, 9vw, 104px) 0 clamp(30px, 5vw, 50px); }
.editorial .container { max-width: 980px; }
.prose-block { margin-bottom: clamp(42px, 6vw, 72px); position: relative; }
.prose-block:last-child { margin-bottom: 0; }
.prose-block h1 { margin-bottom: 20px; }
.prose-block h2, .prose-block h3 { margin-bottom: 16px; position: relative; padding-bottom: 14px; }
.prose-block h2::after, .prose-block h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; border-radius: 2px; background: var(--coral); }
.prose-block p { font-size: 1.1rem; line-height: 1.9; color: var(--bone-soft); margin-bottom: 16px; }
.prose-block p:last-child { margin-bottom: 0; }
.prose-block p.lead { font-size: 1.2rem; color: var(--bone); }
.prose-block.alt { padding-left: clamp(18px, 3vw, 34px); border-left: 2px solid var(--line); }

/* CTA band */
.cta-band {
  text-align: center; padding: clamp(60px, 9vw, 108px) 0;
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 60%, #a82c22 100%);
  color: #fff;
}
.cta-band .eyebrow { color: #fff; opacity: .92; }
.cta-band .rule { background: rgba(255,255,255,0.8); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { max-width: 48ch; margin: 0 auto 28px; color: rgba(255,255,255,0.94); font-size: 1.12rem; }
.cta-band .btn-join { background: #fff; color: var(--coral-deep); border-color: #fff; box-shadow: 0 14px 40px -14px rgba(0,0,0,0.5); }
.cta-band .btn-join:hover { background: #fff; color: var(--coral-deep); transform: translateY(-2px); }

/* Footer (white chrome so the dark-text logo is visible) */
.site-footer { background: var(--chrome); color: var(--chrome-ink); padding: 48px 0 32px; text-align: center; border-top: 1px solid var(--chrome-line); }
.footer-top { display: flex; justify-content: center; margin-bottom: 26px; }
.footer-top img { width: clamp(190px, 24vw, 240px); height: auto; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; padding: 22px 0; border-top: 1px solid var(--chrome-line); border-bottom: 1px solid var(--chrome-line); }
.footer-links a { font-size: .9rem; color: #5f5850; text-decoration: underline; }
.footer-links a:hover { color: var(--coral); }
.footer-copy { margin-top: 18px; font-size: .85rem; color: #8a7f76; }

/* Cookie consent */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #17110e; border-top: 1px solid rgba(239,77,67,0.5);
  padding: 16px var(--gutter);
  transform: translateY(120%); transition: transform .4s ease;
}
.cookie.show { transform: translateY(0); }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 18px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie p { font-size: .92rem; color: var(--bone-soft); margin: 0; flex: 1; min-width: 240px; }
.cookie a { color: var(--coral-bright); text-decoration: underline; }
.cookie .btn { padding: 12px 26px; background: var(--coral); color: #fff; border-color: var(--coral); }

/* Reveal-on-scroll: visible by default; only hidden/animated when JS is active. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 860px) {
  .hero {
    min-height: 0; align-items: flex-end; padding: 0;
    background: var(--ink); display: block;
  }
  .hero::before {
    content: ''; display: block; width: 100%; aspect-ratio: 767 / 710;
    background: url('/images/hero-mobile.jpg?v=3') center top / cover no-repeat;
  }
  .hero .container { padding-top: 22px; padding-bottom: 28px; }
  .hero-inner { max-width: 100%; }
  .hero-heading { font-size: clamp(1.9rem, 8vw, 2.6rem); margin-bottom: 14px; }
  .hero-sub { font-size: 1.04rem; margin-bottom: 20px; }
  .hero .rule { margin: 12px 0 16px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1; padding: 14px 12px; font-size: .8rem; }
  .brand img { width: clamp(140px, 42vw, 190px); }
  .header-right .btn { padding: 10px 18px; font-size: .78rem; }
  .login-link { font-size: .8rem; }
}
@media (max-width: 440px) {
  .header-right .login-link { display: none; }
}
