/* Culturely — culturely.co.uk
   Single stylesheet, no build step. */

:root {
  --ink: #1E1B2E;
  --ink-soft: #3D3752;
  --muted: #6B6580;
  --paper: #FCFAF7;
  --paper-2: #F5F0E9;
  --line: #E4DCD2;
  --accent: #E4573D;
  --accent-deep: #C7452D;
  --teal: #2E8E82;
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1140px;
  --pad: 24px;
  --shadow-sm: 0 1px 2px rgba(30, 27, 46, .05), 0 6px 18px rgba(30, 27, 46, .05);
  --shadow-lg: 0 24px 60px rgba(30, 27, 46, .14);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 20, "opsz" 40;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 500;
  padding: 14px 26px;
  border: 0; border-radius: 999px;
  background: var(--accent); color: #fff;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }

/* ---------- Header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 250, 247, .86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-head.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 22px rgba(30, 27, 46, .05);
}

.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}

.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--ink);
}
.brand-mark { width: 34px; height: 34px; flex: none; color: var(--ink); }
.brand-word {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  font-variation-settings: "SOFT" 40, "opsz" 30;
  letter-spacing: -.02em;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; font-size: 15.5px; color: var(--ink-soft);
  transition: color .16s ease;
}
.nav a:hover { color: var(--ink); }
.nav a.btn { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px;
  background: transparent; cursor: pointer;
  padding: 12px 11px;
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: 76px;
  background:
    radial-gradient(1100px 460px at 12% -6%, rgba(228, 87, 61, .12), transparent 62%),
    radial-gradient(900px 420px at 92% 4%, rgba(46, 142, 130, .12), transparent 60%);
}

.hero-inner { max-width: 820px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  margin: 0 0 26px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 142, 130, .16);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.1rem);
  margin-bottom: .38em;
}

.lede {
  font-size: clamp(1.06rem, 1.9vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 34px;
}

/* ---------- Signup form ---------- */

.signup {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
  max-width: 560px;
}
.signup input[type="email"] {
  flex: 1 1 260px;
  font: inherit; font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  min-width: 0;
}
.signup input::placeholder { color: #9C95A8; }
.signup input:focus { border-color: var(--accent); }
.signup-note {
  flex: 1 0 100%;
  font-size: 14px; color: var(--muted);
  margin: 4px 0 0 4px;
}
.signup-note a { color: inherit; }
.signup-note.is-error { color: var(--accent-deep); }

/* ---------- Hero mock ---------- */

.hero-art { padding: 60px 0 84px; }

.mock {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: #D6CCC0; }
.mock-title {
  margin-left: 12px; font-size: 13px; color: var(--muted);
  font-family: var(--font-display); font-weight: 500;
}
.mock-body { display: grid; grid-template-columns: 190px 1fr; min-height: 320px; }
.mock-side {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: #FDFCFA;
}
.mock-nav {
  font-size: 14px; color: var(--muted);
  padding: 9px 13px; border-radius: 9px;
}
.mock-nav.is-on { background: rgba(228, 87, 61, .1); color: var(--accent-deep); font-weight: 500; }
.mock-main { padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mock-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; display: flex; flex-direction: column; gap: 2px;
  background: #fff;
}
.mock-label { font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }
.mock-stat { font-family: var(--font-display); font-size: 30px; font-weight: 600; line-height: 1.1; }
.mock-trend { font-size: 12.5px; color: var(--teal); }
.mock-spark { display: flex; align-items: flex-end; gap: 7px; height: 62px; margin-top: 12px; }
.mock-spark span {
  flex: 1;
  background: linear-gradient(180deg, rgba(46,142,130,.7), rgba(46,142,130,.18));
  border-radius: 4px 4px 2px 2px;
}
.mock-spark span:last-child { background: linear-gradient(180deg, var(--teal), rgba(46,142,130,.4)); }
.mock-bars { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.mock-bars div { height: 7px; border-radius: 4px; background: var(--paper-2); overflow: hidden; }
.mock-bars i { display: block; height: 100%; background: rgba(228, 87, 61, .55); border-radius: 4px; }
.mock-list { display: flex; flex-direction: column; gap: 9px; }
.mock-item {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 16px;
}
.mock-pill {
  font-size: 11.5px; font-weight: 500; padding: 4px 10px; border-radius: 999px;
  background: rgba(30, 27, 46, .06); color: var(--ink-soft); white-space: nowrap;
}
.mock-pill.alt { background: rgba(46, 142, 130, .14); color: #216B62; }
.mock-line { flex: 1; height: 8px; border-radius: 4px; background: var(--paper-2); }
.mock-line.short { flex: .55; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.band { padding: 96px 0; background: var(--paper-2); }
.band-dark { background: var(--ink); color: var(--paper); }
.band-dark .section-title { color: var(--paper); }
.band-dark .kicker { color: rgba(252, 250, 247, .6); }

.kicker {
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  max-width: 20ch;
  margin-bottom: .5em;
}
.section-lede {
  font-size: 1.08rem; color: var(--ink-soft);
  max-width: 60ch; margin-bottom: 0;
}
.band-dark .section-lede { color: rgba(252, 250, 247, .78); }

.grid-3 {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.24rem; margin-bottom: .55em; }
.card p { color: var(--ink-soft); font-size: 16px; margin: 0; }

/* ---------- Features ---------- */

.features {
  display: grid; gap: 2px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.feature {
  display: grid; grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500;
  color: var(--accent);
  font-variation-settings: "SOFT" 40;
}
.feature h3 { font-size: 1.4rem; margin-bottom: .4em; }
.feature p { color: var(--ink-soft); max-width: 68ch; margin: 0; }

/* ---------- Steps ---------- */

.steps {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  counter-reset: step;
}
.steps li {
  background: rgba(252, 250, 247, .06);
  border: 1px solid rgba(252, 250, 247, .14);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  margin-bottom: 18px;
}
.steps h3 { font-size: 1.22rem; color: var(--paper); margin-bottom: .5em; }
.steps p { color: rgba(252, 250, 247, .76); font-size: 16px; margin: 0; }

/* ---------- Who ---------- */

.who-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
}
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li {
  position: relative;
  padding: 16px 20px 16px 54px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 16px;
}
.ticks li::before {
  content: "";
  position: absolute; left: 20px; top: 50%;
  width: 18px; height: 10px; margin-top: -7px;
  border-left: 2.5px solid var(--teal);
  border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* ---------- CTA ---------- */

.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  background-image:
    radial-gradient(760px 320px at 82% 8%, rgba(228, 87, 61, .26), transparent 62%),
    radial-gradient(620px 300px at 6% 96%, rgba(46, 142, 130, .22), transparent 60%);
}
.cta-inner { max-width: 720px; }
.cta h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); color: var(--paper); }
.cta p { color: rgba(252, 250, 247, .8); max-width: 58ch; margin-bottom: 32px; }
.cta .signup-note { color: rgba(252, 250, 247, .6); }
.cta .signup-note a { color: var(--paper); }
.cta .signup-note.is-error { color: #FFB4A2; }
.cta .signup input[type="email"] { border-color: rgba(252, 250, 247, .22); background: rgba(252, 250, 247, .07); color: var(--paper); }
.cta .signup input::placeholder { color: rgba(252, 250, 247, .45); }
.signup-lg input[type="email"] { padding: 16px 20px; }
.signup-lg .btn { padding: 16px 28px; }

/* ---------- Footer ---------- */

.site-foot {
  background: var(--ink);
  color: rgba(252, 250, 247, .68);
  border-top: 1px solid rgba(252, 250, 247, .12);
  padding: 40px 0;
  font-size: 15px;
}
.foot-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px 32px;
}
.foot-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--paper);
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
}
.foot-brand .brand-mark { width: 28px; height: 28px; color: var(--paper); }
.foot-nav { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.foot-nav a { text-decoration: none; transition: color .16s ease; }
.foot-nav a:hover { color: var(--paper); }
.foot-legal { flex: 1 0 100%; margin: 0; font-size: 13.5px; color: rgba(252, 250, 247, .45); }

/* ---------- Simple content pages ---------- */

.doc { padding: 64px 0 96px; }
.doc .wrap { max-width: 760px; }
.doc h1 { font-size: clamp(2rem, 4.4vw, 2.8rem); margin-bottom: .3em; }
.doc h2 { font-size: 1.35rem; margin-top: 1.8em; }
.doc p, .doc li { color: var(--ink-soft); }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: .5em; }
.doc .updated { color: var(--muted); font-size: 15px; margin-bottom: 2.4em; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .mock-body { grid-template-columns: 150px 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .section, .band, .cta { padding: 68px 0; }
  .hero { padding-top: 52px; }
  .hero-art { padding-top: 44px; }

  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: var(--pad); right: var(--pad); top: calc(100% + 8px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 10px; }
  .nav a.btn { margin-top: 6px; justify-content: center; }

  .mock-body { grid-template-columns: 1fr; }
  .mock-side { flex-direction: row; overflow: hidden; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px; }
  .mock-row { grid-template-columns: 1fr; }

  .feature { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .section-title { max-width: none; }
  .foot-nav { margin-left: 0; }
}
