/* Swift Web Presence — "white runway, amber wingbeat"
   Palette sampled from the wing logo:
   amber #F4C003 -> orange #F28C00 -> deep #F06F07 -> ember #E85217 */

:root {
  --amber:  #F4C003;
  --orange: #F28C00;
  --deep:   #F06F07;
  --ember:  #E85217;
  --ink:    #1C1710;
  --muted:  #6E6558;
  --paper:  #FFFFFF;
  --warm:   #FBF8F3;
  --rule:   #EDE6DB;
  --wing:   linear-gradient(118deg, var(--amber) 0%, var(--orange) 46%, var(--deep) 78%, var(--ember) 100%);
  --disp:   "Bricolage Grotesque", "Inter", sans-serif;
  --body:   "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- header ---------- */
.site-head {
  display: flex; align-items: center; gap: 2.2rem;
  max-width: 72rem; margin: 0 auto; padding: 1.1rem 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-name {
  font-family: var(--disp); font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em;
}
.brand-name em { font-style: normal; color: var(--deep); }
.site-nav { margin-left: auto; display: flex; gap: 1.6rem; }
.site-nav a {
  text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--muted);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--orange); }
.head-cta {
  font-family: var(--disp); font-weight: 600; font-size: .95rem;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid var(--ink); border-radius: 3px; padding: .45rem .95rem;
}
.head-cta:hover { background: var(--ink); color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  max-width: 72rem; margin: 0 auto; padding: 5.5rem 1.5rem 6rem;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: center; gap: 2rem;
}
.kicker {
  font-family: var(--disp); font-weight: 600; font-size: .95rem;
  letter-spacing: .14em; text-transform: uppercase; color: #A84E05;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--disp); font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.04; margin-bottom: 1.4rem;
}
.ink-sweep {
  background: var(--wing);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { max-width: 34rem; font-size: 1.15rem; color: var(--muted); margin-bottom: 2.2rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn {
  font-family: var(--disp); font-weight: 600; font-size: 1rem; text-decoration: none;
  padding: .85rem 1.5rem; border-radius: 3px; display: inline-block;
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--deep); }
.btn-line { border: 1.5px solid var(--ink); }
.btn-line:hover { border-color: var(--deep); color: var(--deep); }
.hero-note { margin-top: 1.3rem; font-size: .9rem; color: var(--muted); }
.hero-wing { justify-self: end; }
.hero-wing img {
  width: min(30vw, 460px); opacity: .96;
  filter: drop-shadow(0 18px 36px rgba(232, 82, 23, .10));
}

/* ---------- creed strip ---------- */
.creed {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--warm);
}
.creed {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 72rem; margin: 0 auto; padding: 0 1.5rem;
}
.creed-item { padding: 2.6rem 2rem 2.6rem 0; }
.creed-item + .creed-item { border-left: 1px solid var(--rule); padding-left: 2rem; }
.creed-item h2 {
  font-family: var(--disp); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.creed-item h2::after {
  content: ""; display: block; width: 2.2rem; height: 4px; margin-top: .55rem;
  background: var(--wing); border-radius: 2px;
}
.creed-item p { font-size: .98rem; color: var(--muted); }

/* ---------- sections ---------- */
.how, .services { max-width: 72rem; margin: 0 auto; padding: 5.5rem 1.5rem 3rem; }
.sec-head { max-width: 40rem; margin-bottom: 3.2rem; }
.sec-head h2 {
  font-family: var(--disp); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.12; margin-bottom: .8rem;
}
.sec-head p { color: var(--muted); }

/* how: numbered flight plan */
.steps { list-style: none; }
.steps li {
  display: grid; grid-template-columns: 6rem 1fr; gap: 1.5rem;
  padding: 2.2rem 0; border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.step-no {
  font-family: var(--disp); font-weight: 800; font-size: 2.4rem; line-height: 1;
  background: var(--wing);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.steps h3 {
  font-family: var(--disp); font-weight: 600; font-size: 1.3rem; margin-bottom: .45rem;
}
.steps p { color: var(--muted); max-width: 44rem; }

/* services: editorial two-col rows, not cards */
.svc-list {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem;
}
.svc { padding: 1.9rem 0; border-top: 1px solid var(--rule); }
.svc h3 {
  font-family: var(--disp); font-weight: 600; font-size: 1.22rem; margin-bottom: .4rem;
}
.svc h3::before {
  content: "◤"; color: var(--orange); font-size: .7em; margin-right: .55rem;
  vertical-align: .12em;
}
.svc p { color: var(--muted); font-size: .99rem; }

/* ---------- contact ---------- */
.contact { background: var(--ink); color: #fff; margin-top: 3rem; }
.contact-inner {
  max-width: 72rem; margin: 0 auto; padding: 5rem 1.5rem;
  position: relative; overflow: hidden;
}
.contact h2 {
  font-family: var(--disp); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .9rem;
}
.contact p { color: rgba(255,255,255,.72); max-width: 36rem; margin-bottom: 2rem; }
.contact .btn-solid { background: var(--wing); color: var(--ink); font-weight: 800; }
.contact .btn-solid:hover { filter: brightness(1.06); }
.contact .btn-line { border-color: rgba(255,255,255,.5); color: #fff; }
.contact .btn-line:hover { border-color: var(--amber); color: var(--amber); }

/* ---------- footer ---------- */
.site-foot {
  display: flex; align-items: center; gap: .7rem; justify-content: center;
  padding: 2rem 1.5rem; font-size: .88rem; color: var(--muted);
}

/* ---------- motion: single wingbeat reveal, flight direction ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-x { opacity: 0; transform: translateX(-22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal-x.in { opacity: 1; transform: none; }
  .hero-wing img { animation: drift 7s ease-in-out infinite alternate; }
  @keyframes drift { from { transform: translateY(0); } to { transform: translateY(-14px); } }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .site-head { flex-wrap: wrap; gap: 1rem; }
  .site-nav { order: 3; width: 100%; margin-left: 0; gap: 1.2rem; }
  .hero { grid-template-columns: 1fr; padding-top: 3rem; padding-bottom: 3.5rem; }
  .hero-wing { display: none; }
  .creed { grid-template-columns: 1fr; }
  .creed-item { padding: 1.8rem 0; }
  .creed-item + .creed-item { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; }
  .svc-list { grid-template-columns: 1fr; column-gap: 0; }
  .steps li { grid-template-columns: 3.4rem 1fr; gap: 1rem; }
  .step-no { font-size: 1.7rem; }
}
