/* Yorcleans: shared styles (dark brand theme) */
:root {
  --bg: #111111;
  --panel: #1a1a1a;
  --panel-2: #202020;
  --ink: #f6f5f2;
  --ink-soft: #b8b6b0;
  --amber: #e5a025;
  --amber-dark: #c98716;
  --line: #2c2c2c;
  --radius: 14px;
  --max: 1180px;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  flex: none;
}
.logo .dot { color: var(--amber); font-weight: 800; }

nav.links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding-left: 12px;
}
nav.links > a {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 9px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
nav.links > a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
nav.links > a.active { color: var(--ink); }

.has-dropdown { position: relative; }
.has-dropdown > .dd-trigger {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-family: var(--font);
  padding: 10px 14px;
  border-radius: 9px;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.has-dropdown > .dd-trigger .caret {
  width: 7px; height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
  margin-top: -3px;
  opacity: 0.75;
}
.has-dropdown:hover > .dd-trigger,
.has-dropdown:focus-within > .dd-trigger {
  color: var(--ink);
  background: rgba(255,255,255,0.05);
}
.has-dropdown:hover > .dd-trigger .caret,
.has-dropdown:focus-within > .dd-trigger .caret {
  transform: rotate(225deg) translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--panel-2);
  border: 1px solid #333230;
  border-radius: 16px;
  padding: 10px;
  min-width: 260px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu .dd-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7c7a74;
  padding: 8px 12px 6px;
  font-weight: 700;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.dropdown-menu a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
  transition: background .15s ease;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.dropdown-menu a:hover::before { background: var(--amber); }
.dropdown-menu a.dd-all {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  margin-bottom: 6px;
  padding-bottom: 13px;
}
.dropdown-menu a.dd-all::before { background: var(--amber); }

.nav-toggle { display: none; }
.burger-label { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #111;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--amber); border-color: var(--amber); color: #111; transform: translateY(-1px); }
.btn.outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn.outline:hover { background: var(--ink); color: #111; border-color: var(--ink); }
.btn.amber { background: var(--amber); border-color: var(--amber); color: #111; }
.btn.amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 84px;
  background: radial-gradient(circle at 85% 0%, rgba(229,160,37,0.10), transparent 55%), var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(229,160,37,0.12);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .dotsm { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); display: inline-block; }
h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
h1 .accent { color: var(--amber); }
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat b { display: block; font-size: 26px; font-weight: 800; color: var(--ink); }
.stat span { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: var(--amber);
  opacity: 0.14;
  border-radius: 50%;
  right: -90px; top: -90px;
}
.hero-photo {
  width: 100%;
  height: auto;
  margin: 0 0 24px;
  border-radius: 14px;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-card h3 { font-size: 20px; margin: 0 0 18px; font-weight: 700; }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.hero-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.hero-card li .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 0 48px; }
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-head p { font-size: 17px; color: var(--ink-soft); margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.35); border-color: #3a3a3a; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  transition: border-color .18s ease, transform .18s ease;
}
.card .icon::after {
  content: "";
  position: absolute;
  right: 7px; bottom: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
}
.card:hover .icon { border-color: var(--amber); transform: translateY(-1px); }
.icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.card h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; color: var(--ink); }
.card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }
.card .taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 999px;
}
.card a.more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; margin-top: 6px; color: var(--amber); }

.panel-section { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.strip {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 24px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.strip h2 { margin: 0 0 8px; }
.strip p { margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 46ch; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ph-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--panel) 0%, #262626 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.ph-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(229,160,37,0.22), transparent 60%);
}
.ph-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.check-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink); }
.check-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(229,160,37,0.14); color: var(--amber); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step .num {
  font-size: 42px; font-weight: 800; line-height: 1;
  margin-bottom: 14px; -webkit-text-stroke: 1.5px var(--amber); color: transparent;
}
.step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
}
.info-card h4 { margin: 0 0 6px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--amber); }
.info-card p, .info-card a { margin: 0; font-size: 17px; font-weight: 600; color: var(--ink); }

form.contact { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-family: var(--font);
  font-size: 15px;
  background: var(--panel);
  color: var(--ink);
}
.field input::placeholder, .field textarea::placeholder { color: #7c7a74; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form.contact button { justify-self: start; margin-top: 8px; }

/* ---------- Footer ---------- */
footer.site {
  background: #0b0b0b;
  color: var(--ink-soft);
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
footer .logo { color: var(--ink); }
.footer-grid p { font-size: 14.5px; color: #a9a7a1; margin: 14px 0 0; max-width: 32ch; }
.footer-col h5 { color: var(--ink); font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; color: #c9c7c1; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: #706e68; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: #928f89; }
.footer-bottom a:hover { color: var(--amber); }
.footer-legal { display: flex; gap: 6px; align-items: center; }

/* ---------- Form consent note ---------- */
.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  line-height: 1.5;
}
.form-note a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--amber); }

/* ---------- Form success / error states ---------- */
.form-success {
  background: var(--panel-2);
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
}
.form-success h3 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.form-success p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.form-error {
  color: #e5695f;
  font-size: 13.5px;
  margin: 10px 0 0;
}

/* ---------- Legal pages ---------- */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 24px; margin: 40px 0 14px; color: var(--ink); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.legal-content ul { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0 0 14px; padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--amber); }
.legal-updated { color: #706e68; font-size: 13.5px; margin-bottom: 32px; }

/* ---------- Contact band (on every page) ---------- */
.contact-band {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cb-text p.kicker { margin-bottom: 8px; }
.cb-text h2 { margin-bottom: 6px; }
.cb-text p:last-child { color: var(--ink-soft); font-size: 15.5px; max-width: 42ch; margin: 0; }
.cb-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cb-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 18px;
  transition: border-color .15s ease, transform .15s ease;
}
.cb-tile:hover { border-color: var(--amber); transform: translateY(-2px); }
.cb-tile .icon {
  margin-bottom: 0;
  width: 44px; height: 44px;
  font-size: 13px;
  flex: none;
}
.cb-tile .icon svg { width: 18px; height: 18px; }
.cb-tile .cb-copy strong { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; }
.cb-tile .cb-copy small { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

@media (max-width: 900px) {
  .cb-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cb-actions { flex-direction: column; align-items: stretch; }
  .cb-tile { width: 100%; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 64px 0 56px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 46px); margin: 0 0 14px; }
.page-hero p { font-size: 17px; color: var(--ink-soft); max-width: 60ch; margin: 0; }
.crumb { font-size: 13px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 30px;
}
.audience-card.hi { border-color: var(--amber); background: var(--panel-2); }
.audience-card h3 { font-size: 20px; margin: 0 0 10px; color: var(--ink); }
.audience-card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 16px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  list-style: none;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { font-size: 22px; color: var(--amber); font-weight: 700; flex: none; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); margin: 14px 0 0; font-size: 15px; }

/* ---------- Callout / note ---------- */
.callout {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.callout strong { color: var(--ink); }

/* ---------- Footer sitemap ---------- */
.footer-grid.wide { grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr 0.9fr 0.9fr; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-row span {
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split .ph-box, .split .ph-photo { order: -1; }
  .grid-3, .grid-4, .grid-5, .audience-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid, .footer-grid.wide { grid-template-columns: 1fr 1fr; }
  .strip { flex-direction: column; align-items: flex-start; }

  .burger-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
    order: 3;
  }
  .nav-cta .btn.outline { display: none; }

  nav.links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    height: calc(100vh - 78px);
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 32px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-toggle:checked ~ nav.links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  nav.links > a, .has-dropdown > .dd-trigger {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    width: 100%;
    justify-content: space-between;
  }
  .has-dropdown { width: 100%; }
  .has-dropdown > .dd-trigger { pointer-events: none; }
  .has-dropdown > .dd-trigger .caret { display: none; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    box-shadow: none;
    margin-top: 0;
    padding: 4px 0 8px;
    background: transparent;
    border: none;
  }
  .dropdown-menu a { padding: 10px 4px 10px 16px; border-radius: 0; }
}
@media (max-width: 640px) {
  .grid-3, .grid-4, .grid-5, .grid-2, .audience-grid, .row-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid.wide { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  section { padding: 60px 0; }
  .strip { padding: 36px; border-radius: 18px; }
}
