/* ViviAdora — charcoal + teal, deliberately un-glowy.
   Flat colour, 1px rules, serif headlines, no gradients, no glass, no glow. */

:root {
  --ink: #22272a;        /* charcoal text */
  --ink-soft: #4c5457;
  --paper: #f6f5f1;      /* warm off-white */
  --paper-dark: #edece6;
  --charcoal: #22272a;   /* dark section background */
  --charcoal-text: #e8e7e2;
  --teal: #12706e;       /* muted teal accent */
  --teal-dark: #0c5654;
  --line: #d4d1c8;
  --line-dark: #3a4144;
  --max: 1060px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}

a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.wordmark span { color: var(--teal); }

.header-nav { display: flex; align-items: center; gap: 26px; }

.header-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
}

.header-nav a:hover { color: var(--ink); }

.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  cursor: pointer;
}

.btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- hero ---------- */

.hero { padding: 84px 0 72px; border-bottom: 1px solid var(--line); }

.hero .kicker {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  max-width: 17ch;
  margin-bottom: 22px;
}

.hero .sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 32px;
}

.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.trust-line {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

.trust-line b { color: var(--ink); font-weight: 500; }

/* ---------- sections ---------- */

section { padding: 72px 0; }

section + section { border-top: 1px solid var(--line); }

.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 40px;
}

/* steps */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); background: #fff; }

.step { padding: 30px 26px; border-left: 1px solid var(--line); }

.step:first-child { border-left: none; }

.step .num {
  font-family: Georgia, serif;
  font-size: 15px;
  color: var(--teal);
  margin-bottom: 12px;
}

.step h3 { font-size: 21px; margin-bottom: 10px; }

.step p { font-size: 15.5px; color: var(--ink-soft); }

/* work */

.work-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.work-card h3 { font-size: 24px; margin-bottom: 8px; }

.work-card p { color: var(--ink-soft); max-width: 58ch; }

.work-card .meta { font-size: 14px; color: var(--teal); margin-bottom: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

/* dark band */

.band {
  background: var(--charcoal);
  color: var(--charcoal-text);
  border-top: 1px solid var(--charcoal);
}

.band .section-title { color: #fff; }

.band p { color: #b9bdb9; }

.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

.band-grid h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }

.band-grid p { font-size: 15.5px; }

.band-grid .cell { border-top: 1px solid var(--line-dark); padding-top: 18px; }

/* faq */

.faq details {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}

.faq details:last-child { border-bottom: 1px solid var(--line); }

.faq summary {
  font-family: Georgia, serif;
  font-size: 20px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after { content: "+"; color: var(--teal); font-family: Georgia, serif; font-size: 22px; }

.faq details[open] summary::after { content: "\2212"; }

.faq details p { color: var(--ink-soft); padding: 0 0 20px; max-width: 66ch; }

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

.enquiry { background: var(--paper-dark); }

.enquiry-inner { max-width: 640px; }

form.lead-form { background: #fff; border: 1px solid var(--line); padding: 34px; }

.q-block { margin-bottom: 26px; }

.q-block > .q-label {
  display: block;
  font-family: Georgia, serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.choices { display: flex; flex-wrap: wrap; gap: 10px; }

.choices label {
  border: 1px solid var(--line);
  padding: 9px 16px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 2px;
  background: var(--paper);
}

.choices input { position: absolute; opacity: 0; pointer-events: none; }

.choices label:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.field { margin-bottom: 18px; }

.field label { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 6px; }

.field input {
  width: 100%;
  padding: 11px 12px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.field input:focus { outline: none; border-color: var(--teal); }

.form-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; }

.contact-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: #b9bdb9;
  padding: 44px 0;
  font-size: 14px;
}

.site-footer a { color: #d8d7d2; }

.footer-cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }

.footer-legal { max-width: 62ch; line-height: 1.7; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

/* ---------- cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: #fff;
  border-top: 2px solid var(--ink);
  padding: 20px 0;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p { font-size: 14.5px; max-width: 62ch; color: var(--ink-soft); }

.cookie-actions { display: flex; gap: 10px; }

.cookie-actions .btn, .cookie-actions .btn-ghost { font-size: 14.5px; padding: 9px 20px; }

/* ---------- legal pages ---------- */

.legal { padding: 64px 0; }

.legal .wrap { max-width: 760px; }

.legal h1 { font-size: 36px; margin-bottom: 8px; }

.legal .updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 36px; }

.legal h2 { font-size: 24px; margin: 36px 0 12px; }

.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }

.legal ul { padding-left: 22px; margin-bottom: 16px; }

.legal table { border-collapse: collapse; width: 100%; margin: 16px 0 24px; font-size: 15px; }

.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }

.legal th { background: var(--paper-dark); font-weight: 500; }

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--line); }
  .step:first-child { border-top: none; }
  .band-grid { grid-template-columns: 1fr; }
  .work-card { grid-template-columns: 1fr; }
  .header-nav a.nav-anchor { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 60px 0 52px; }
}
