/* One Step Closer — concept redesign · Portfolio tier
   Palette drawn from the real brand logo (amber → orange → red bubbles, charcoal type) */
:root {
  --ink: #26221f;
  --ink-soft: #55504a;
  --paper: #faf6f0;
  --paper-2: #f3ece2;
  --card: #ffffff;
  --red: #c8321f;
  --red-deep: #a02517;
  --orange: #e2701d;
  --amber: #f0a428;
  --line: #e6dccc;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
p a { text-decoration: underline; text-underline-offset: 3px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 800px; margin: 0 auto; padding: 0 28px; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav .brand img { height: 44px; width: auto; }
.nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav ul a {
  font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav ul a:hover, .nav ul a.active { color: var(--red); border-color: var(--red); }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .02em;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px -8px rgba(200,50,31,.55); }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.nav .btn { padding: 10px 22px; font-size: 13px; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 108px 0 96px;
  background:
    radial-gradient(700px 420px at 88% -10%, rgba(240,164,40,.20), transparent 60%),
    radial-gradient(620px 420px at -8% 110%, rgba(226,112,29,.14), transparent 60%),
    var(--paper);
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 22px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.hero h1, .page-head h1 {
  font-family: var(--serif); font-weight: 560;
  font-size: clamp(40px, 5.6vw, 68px); line-height: 1.06;
  letter-spacing: -.015em; max-width: 15ch;
}
.hero h1 em, .page-head h1 em, h2 em {
  font-style: italic; color: var(--red);
}
.hero p.lede { margin: 26px 0 36px; font-size: 19px; color: var(--ink-soft); max-width: 54ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 92px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head h2, h2 {
  font-family: var(--serif); font-weight: 560;
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -.01em;
}
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 18px; }

/* stat band */
.stats {
  background: var(--ink); color: var(--paper);
  padding: 58px 0;
}
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat b { display: block; font-family: var(--serif); font-size: 44px; font-weight: 560; color: var(--amber); line-height: 1.1; }
.stat span { font-size: 13.5px; letter-spacing: .1em; text-transform: uppercase; color: #b8b0a5; }

/* cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 30px; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(38,34,31,.28); }
.card .num {
  font-family: var(--serif); font-size: 15px; color: var(--orange);
  letter-spacing: .08em; display: block; margin-bottom: 14px;
}
.card h3 { font-family: var(--serif); font-size: 23px; font-weight: 560; margin-bottom: 12px; }
.card p { font-size: 15.5px; color: var(--ink-soft); }
.card .more { display: inline-block; margin-top: 18px; font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.card .more::after { content: " →"; }

/* split (image/text) */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center; }
.split .panel {
  border-radius: 22px; min-height: 430px; position: relative; overflow: hidden;
  background:
    radial-gradient(340px 260px at 78% 18%, rgba(240,164,40,.9), transparent 65%),
    radial-gradient(420px 340px at 20% 85%, rgba(200,50,31,.92), transparent 70%),
    linear-gradient(150deg, #e2701d, #c8321f);
}
.split .panel .bubble {
  position: absolute; border-radius: 50%;
  border: 5px solid rgba(255,255,255,.85);
}
.split .panel .b1 { width: 150px; height: 150px; top: 16%; left: 12%; }
.split .panel .b2 { width: 96px; height: 96px; top: 30%; left: 34%; border-color: rgba(255,244,224,.7); }
.split .panel .panel-quote {
  position: absolute; left: 34px; right: 34px; bottom: 34px;
  font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.4;
  color: #fff;
}
.split .panel .panel-quote footer { font-family: var(--sans); font-style: normal; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-top: 14px; color: rgba(255,244,224,.85); }

/* quote */
.pull {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.42; max-width: 30ch;
}
.pull-byline { margin-top: 22px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.pull-byline b { color: var(--red); }

/* testimonials */
.t-card blockquote { font-size: 15.5px; color: var(--ink-soft); }
.t-card .who { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.t-card .who b { display: block; font-size: 16px; }
.t-card .who span { font-size: 13.5px; color: var(--ink-soft); }
.t-card::before {
  content: "\201C"; font-family: var(--serif); font-size: 64px; line-height: 1;
  color: var(--orange); display: block; margin-bottom: 6px;
}

/* checklist */
.check-list { list-style: none; margin: 26px 0; }
.check-list li { padding: 13px 0 13px 40px; position: relative; border-bottom: 1px solid var(--line); font-size: 16.5px; }
.check-list li::before {
  content: "→"; position: absolute; left: 4px; top: 12px;
  color: var(--orange); font-weight: 700;
}

/* news */
.news-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; }
.news-card time { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.news-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 560; margin: 12px 0 10px; }
.news-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.news-card .more { margin-top: 18px; font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: .05em; }

/* article body */
.article { font-size: 18px; }
.article p { margin: 22px 0; }
.article h2 { font-size: 28px; margin: 44px 0 6px; }
.article ul { margin: 18px 0 18px 24px; }
.article li { margin: 8px 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red-deep), var(--red) 55%, var(--orange));
  color: #fff; padding: 84px 0; text-align: center;
}
.cta-band h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,244,224,.92); max-width: 56ch; margin: 0 auto 34px; font-size: 18px; }
.cta-band .btn { background: #fff; color: var(--red); }
.cta-band .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }

/* page head (interior pages) */
.page-head { padding: 84px 0 72px; background:
  radial-gradient(600px 320px at 92% -20%, rgba(240,164,40,.18), transparent 60%), var(--paper);
}
.page-head p.lede { margin-top: 22px; font-size: 19px; color: var(--ink-soft); max-width: 60ch; }

/* contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 7px; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; font: inherit; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--orange); border-color: transparent; }
fieldset.interests { border: 0; margin: 8px 0 20px; }
fieldset.interests legend { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips label {
  margin: 0; padding: 9px 18px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--ink);
  cursor: pointer; transition: all .15s;
}
.chips input { display: none; }
.chips input:checked + span { color: var(--red); }
.chips label:has(input:checked) { border-color: var(--red); background: #fbeae7; color: var(--red); }
.form-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-soft); }

/* footer */
footer.site { background: var(--ink); color: #cfc8be; padding: 66px 0 34px; font-size: 14.5px; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
footer.site img { height: 38px; margin-bottom: 18px; }
footer.site h4 { color: var(--paper); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
footer.site ul { list-style: none; }
footer.site li { margin: 7px 0; }
footer.site a { color: #cfc8be; }
footer.site a:hover { color: var(--amber); }
footer.site .legal { border-top: 1px solid #3d3833; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #93897c; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 900px) {
  .grid-3, .grid-2, .stats .grid, .split, footer.site .cols { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .split { gap: 40px; }
  .nav ul {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 22px 28px; gap: 16px; align-items: flex-start;
  }
  .nav ul.open { display: flex; }
  .nav-toggle { display: block; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--ink); }
  .nav .btn { display: none; }
  section { padding: 64px 0; }
}
