/* Honey Bee Construction — stylesheet
   Palette derives from the original honeycomb/bee identity: honey amber on charcoal. */

:root {
  --honey: #e09a2b;
  --honey-dark: #b8791a;
  --honey-tint: #fdf6e8;
  --charcoal: #1b1d21;
  --charcoal-soft: #2a2d33;
  --ink: #23262b;
  --slate: #5a6169;
  --line: #e4e1da;
  --paper: #ffffff;
  --sand: #f8f7f4;
  --radius: 4px;
  --wrap: 1240px;
  --shadow: 0 1px 2px rgba(27, 29, 33, .06), 0 8px 24px rgba(27, 29, 33, .07);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--honey-dark); }

h1, h2 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.15rem, 4.6vw, 3.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.15rem); text-transform: uppercase; }
h3 { font-size: 1.06rem; font-weight: 700; margin: 0 0 .45em; color: var(--charcoal); line-height: 1.35; }
p { margin: 0 0 .8em; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section--sand { background: var(--sand); }
.section--tight { padding: 40px 0; }

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin: 0 0 .6em;
}
.lede { font-size: 1.05rem; color: var(--slate); max-width: 62ch; }
.muted { color: var(--slate); }
.section-head { max-width: 70ch; margin-bottom: 30px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 14px 26px;
  font-weight: 600; font-size: .98rem;
  text-decoration: none; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn--primary { background: var(--honey); color: var(--charcoal); border-color: var(--honey); }
.btn--primary:hover { background: var(--honey-dark); border-color: var(--honey-dark); color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--charcoal); background: transparent; }
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--onDark { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--onDark:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* ---------- header ---------- */
.topbar {
  background: var(--charcoal); color: rgba(255,255,255,.72);
  font-size: .86rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.86); text-decoration: none; }
.topbar a:hover { color: var(--honey); }
.topbar__creds { display: flex; gap: 18px; flex-wrap: wrap; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand__name {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 1.42rem; text-transform: uppercase; letter-spacing: .01em;
  color: var(--charcoal); line-height: 1;
}
.brand__name span { color: var(--honey-dark); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none; color: var(--charcoal); font-weight: 500; font-size: .97rem;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { border-color: var(--honey); }
.nav a[aria-current="page"] { border-color: var(--honey); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 9px 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--charcoal); margin: 4px 0; }

/* ---------- hero ---------- */
.hero { padding: 48px 0 54px; background: linear-gradient(180deg, var(--honey-tint) 0%, #fff 78%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero h1 { margin-bottom: .38em; }
.hero h1 em { font-style: normal; color: var(--honey-dark); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__badge {
  position: absolute; left: -22px; bottom: -22px;
  background: var(--charcoal); color: #fff; padding: 18px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow); max-width: 230px;
}
.hero__badge strong {
  display: block; font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem; line-height: 1; color: var(--honey);
}
.hero__badge span { font-size: .84rem; color: rgba(255,255,255,.8); line-height: 1.4; display: block; margin-top: 4px; }

.chips { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  font-size: .84rem; font-weight: 600; letter-spacing: .02em;
  background: #fff; border: 1px solid var(--line); color: var(--slate);
  padding: 7px 14px; border-radius: 100px;
}
.chip b { color: var(--charcoal); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: #fff; padding: 22px 22px; }
.stat strong {
  display: block; font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 2.35rem; line-height: 1; color: var(--charcoal);
}
.stat span { display: block; margin-top: 5px; font-size: .93rem; color: var(--slate); }

/* ---------- cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px; }
.card__icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--honey-tint); color: var(--honey-dark);
  display: grid; place-items: center; margin-bottom: 12px;
}
.card__icon svg { width: 22px; height: 22px; }
.card p { font-size: .97rem; color: var(--slate); }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { position: relative; padding-left: 26px; margin-bottom: 6px; color: var(--slate); }
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; background: var(--honey); border-radius: 2px; transform: rotate(45deg);
}
.list-check li:last-child { margin-bottom: 0; }

/* ---------- projects ---------- */
.project { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.project img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.project__body { padding: 16px 18px 18px; flex: 1; }
.project__tag {
  font-family: "Barlow Condensed", sans-serif; font-size: .88rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--honey-dark); display: block; margin-bottom: 6px;
}
.project__body p { font-size: .95rem; color: var(--slate); margin: 0; }
.project__meta { font-size: .84rem; color: var(--slate); margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--line); }

/* ---------- dark band ---------- */
.band { background: var(--charcoal); color: rgba(255,255,255,.78); padding: 58px 0; }
.band h2 { color: #fff; }
.band .eyebrow { color: var(--honey); }
.band .lede { color: rgba(255,255,255,.78); }
.band .list-check li { color: rgba(255,255,255,.78); }

.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.cred { background: var(--charcoal); padding: 16px 18px; }
.cred span { display: block; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 5px; }
.cred strong { color: #fff; font-size: 1.04rem; font-weight: 600; }

/* ---------- CTA ---------- */
.cta { background: var(--honey); padding: 44px 0; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { margin: 0 0 .25em; }
.cta p { color: rgba(27,29,33,.78); margin: 0; max-width: 52ch; }
.cta .btn--primary { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.cta .btn--primary:hover { background: #000; border-color: #000; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.detail { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.detail:first-of-type { padding-top: 0; }
.detail__icon { color: var(--honey-dark); flex: none; margin-top: 3px; }
.detail__icon svg { width: 20px; height: 20px; }
.detail span { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-bottom: 3px; }
.detail a, .detail strong { color: var(--charcoal); font-weight: 600; text-decoration: none; font-size: 1.02rem; }
.detail a:hover { color: var(--honey-dark); }

.field { margin-bottom: 13px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
.field input, .field textarea, .field select {
  width: 100%; padding: 10px 13px; font: inherit; font-size: .98rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--honey); box-shadow: 0 0 0 3px rgba(224,154,43,.18);
}
.field textarea { min-height: 108px; resize: vertical; }
.form-note { font-size: .86rem; color: var(--slate); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius); font-size: .93rem; display: none; }
.form-status.is-error { display: block; background: #fdecec; color: #96262b; border: 1px solid #f3c9c9; }
.form-status.is-ok { display: block; background: #eaf6ec; color: #1f6b35; border: 1px solid #c6e6cf; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.map-embed iframe { display: block; width: 100%; height: 260px; border: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shot { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.shot figcaption { padding: 12px 14px 14px; font-size: .92rem; color: var(--slate); }
.shot figcaption b { display: block; color: var(--charcoal); font-size: .98rem; margin-bottom: 3px; }

/* ---------- page header ---------- */
.page-head { background: var(--charcoal); color: rgba(255,255,255,.76); padding: 42px 0 46px; }
.page-head h1 { color: #fff; margin-bottom: .25em; font-size: clamp(2.3rem, 5vw, 3.4rem); }
.page-head p { max-width: 62ch; margin: 0; color: rgba(255,255,255,.76); font-size: 1.02rem; }
.page-head .eyebrow { color: var(--honey); }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal-soft); color: rgba(255,255,255,.62); padding: 44px 0 0; font-size: .92rem; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: var(--honey); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 36px; padding-bottom: 30px; }
.site-footer h3 { color: #fff; font-size: .88rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand { margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .87rem;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__badge { left: auto; right: 14px; bottom: -18px; }
  .grid--3, .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .site-header .wrap { position: relative; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 42px 0; }
  .band { padding: 42px 0; }
  .grid--3, .grid--2, .gallery, .creds { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat strong { font-size: 2.3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar__creds { display: none; }
  .hero { padding: 34px 0 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
