/* =============================================================
   Bird Design — website refresh (BETA preview)
   Modern, responsive replacement styling for the 2015 WP site.
   Self-contained: no framework, no build step.
   ============================================================= */

:root {
  --ink:        #1c2024;   /* near-black charcoal */
  --ink-soft:   #2a2f35;
  --paper:      #ffffff;
  --bg:         #f6f5f2;   /* warm off-white */
  --muted:      #6b7280;
  --line:       #e3e1dc;
  --accent:     #b07d3f;   /* warm bronze — architectural, upmarket */
  --accent-dk:  #8a5f2c;
  --maxw:       1400px;
  --radius:     14px;
  --shadow:     0 10px 30px rgba(20,24,28,.10);
  --shadow-sm:  0 4px 14px rgba(20,24,28,.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* Fluid container: fills modern/wide monitors, scales side padding with the
   viewport, and keeps comfortable margins on phones. */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 64px); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent-dk);
  margin: 0 0 .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28,32,36,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 48px; width: auto; }
.brand .brand-text { color: #fff; font-family: "Fraunces", serif; font-size: 1.15rem; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #e9e7e2; font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a.active { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: .9rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,24,28,.82) 0%, rgba(20,24,28,.55) 55%, rgba(20,24,28,.30) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero-lead { font-size: 1.18rem; max-width: 46ch; color: #ece9e3; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ---------- Generic section ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section.center .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #f3f1ec; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: "Fraunces", serif; font-size: 2.6rem; color: var(--accent); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .95rem; margin-top: .4rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.card .body { padding: 1.3rem 1.4rem 1.6rem; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin: 0 auto .6rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 1.8rem; color: #d9d6cf; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.contact-list .k { font-weight: 600; min-width: 84px; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; padding: .75rem .85rem; border: 1.5px solid var(--line);
  border-radius: 10px; font: inherit; background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: .85rem; color: var(--muted); }
.cf-turnstile { margin: 0 0 1rem; }
/* Honeypot — kept out of sight without display:none (bots ignore hidden fields). */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c7c4bd; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 .9rem; }
.site-footer a { color: #c7c4bd; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .85rem; color: #8d8a83;
}

/* launch-gated content flag (internal preview only) */
.launch-flag {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .75rem; border-radius: 999px; margin-bottom: 1.2rem;
}

/* preview banner */
.preview-banner {
  background: var(--accent); color: #fff; text-align: center;
  font-size: .82rem; font-weight: 600; padding: 6px 12px; letter-spacing: .02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.1);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links li { border-top: 1px solid rgba(255,255,255,.07); }
  .nav-links a { display: block; padding: 1rem 22px; }
  .nav.open .nav-links { max-height: 420px; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; gap: 1.6rem; }
}
