/* Shoop's Construction & Development — landing page
   Fonts: Fraunces (display/serif), Inter (body/sans) */

:root {
  --ink: #1c211d;
  --forest: #26332a;
  --forest-deep: #1a231c;
  --amber: #c17f4e;
  --amber-light: #e0a877;
  --cream: #faf7f1;
  --stone: #efe9df;
  --stone-line: #ddd4c4;
  --text-muted: #6b6b62;
  --radius: 6px;
  --max: 1120px;
}

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark, .wordmark-footer {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--stone-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.wordmark {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wordmark-mark {
  height: 42px;
  width: 42px;
  display: block;
  flex-shrink: 0;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wordmark-text span {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:not(.nav-cta):hover { color: var(--amber); }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.nav-cta:hover { background: var(--forest); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }

.btn-primary { background: var(--amber); color: var(--ink); }
.btn-ghost {
  border: 1px solid rgba(250, 247, 241, 0.45);
  color: inherit;
}
.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(193, 127, 78, 0.35), transparent 55%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 55%, var(--ink) 100%);
  color: var(--cream);
  padding: 120px 0 96px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  max-width: 16ch;
  margin-bottom: 26px;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1.08rem;
  color: rgba(250, 247, 241, 0.82);
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Intro / pillars ---------- */

.intro { padding: 96px 0; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-label-light { color: var(--amber-light); }

.intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 20ch;
  margin-bottom: 22px;
}

.lede {
  max-width: 62ch;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.lede-light { color: rgba(250, 247, 241, 0.78); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}

.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { color: var(--text-muted); font-size: 0.96rem; margin: 0; }

/* ---------- Launch ---------- */

.launch {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 96px 0;
}

.launch-inner { max-width: 760px; }
.launch h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 22px; }

/* ---------- Join / form ---------- */

.join { padding: 96px 0 108px; }

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.join-copy h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 18px; max-width: 22ch; }

.join-form {
  background: var(--stone);
  border: 1px solid var(--stone-line);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.join-form label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
}
.join-form label .optional { font-weight: 400; color: var(--text-muted); }

.join-form input,
.join-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 13px;
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.join-form input:focus,
.join-form textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}

.join-form button { margin-top: 24px; }
.hp-field { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 241, 0.75);
  padding: 56px 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
  margin-bottom: 24px;
}

.wordmark-footer {
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.wordmark-footer span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
  margin-top: 4px;
}

.footer-tag { font-size: 0.85rem; margin: 0; }

.footer-links { display: flex; gap: 24px; font-size: 0.88rem; font-weight: 500; }
.footer-links a:hover { color: var(--amber-light); }

.footer-legal { font-size: 0.78rem; color: rgba(250, 247, 241, 0.5); margin: 0; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; gap: 32px; }
  .join-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 88px 0 72px; }
  .intro, .launch, .join { padding: 72px 0; }
}

@media (max-width: 560px) {
  .site-nav { gap: 14px; font-size: 0.82rem; }
  .header-inner { flex-wrap: wrap; row-gap: 10px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; }
}
