:root {
  --chalk: #F5F2EA;
  --fairway: #2F4A3D;
  --graphite: #2A2823;
  --red: #B6442E;

  --chalk-2: #EFEADD;          /* faint alt-section fill, not a new color, just chalk shaded */
  --hairline: rgba(47, 74, 61, 0.16);

  --display: "Oswald", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--chalk);
  color: var(--graphite);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

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

h1, h2, h3 {
  font-family: var(--display);
  color: var(--fairway);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--chalk);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 4px;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: #9e3825; transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 234, 0.92);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fairway);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--red); }
.header-inner .btn-sm { margin-left: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fairway);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(1.4rem, 5.2vw, 3.7rem);
  margin-bottom: 22px;
  overflow-wrap: break-word;
}
.hero .lede {
  font-size: 1.18rem;
  max-width: 30ch;
  margin-bottom: 30px;
}
.hero-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(42, 40, 35, 0.18);
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-alt { background: var(--chalk-2); }
.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 44px;
}

/* ---------- Founders ---------- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.founders > *, .cards > * { min-width: 0; }
.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(42, 40, 35, 0.14);
}
.founder-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.founder-name span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0.7;
  margin-top: 6px;
}
.founder-bio { margin-bottom: 26px; }

/* Signature element: stat-strip */
.statstrip {
  list-style: none;
  margin: 0 0 18px;
  padding: 20px 0 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statstrip li {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.statstrip li + li { border-left: 1px solid var(--hairline); }
.stat-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--red);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fairway);
  font-weight: 600;
}
.hobbies {
  font-style: italic;
  color: var(--graphite);
  opacity: 0.82;
  margin: 0;
}

/* ---------- Offer cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.card {
  background: #FCFAF4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(42, 40, 35, 0.10);
  display: flex;
  flex-direction: column;
}
.card-media {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  background: var(--graphite);
}
.card-body { padding: 28px 28px 30px; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card-tagline {
  font-family: var(--display);
  font-weight: 600;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pricing {
  list-style: none;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hairline);
}
.pricing li {
  margin-bottom: 10px;
  font-size: 0.98rem;
}
.pricing .price {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--red);
  margin-right: 8px;
}
.offer-note {
  text-align: center;
  margin: 40px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--fairway);
}

/* ---------- Project gallery ---------- */
.gallery {
  column-count: 3;
  column-gap: 18px;
}
.gallery-item {
  margin: 0 0 18px;
  break-inside: avoid;
}
.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(42, 40, 35, 0.12);
}
.gallery-item figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: var(--fairway);
  font-weight: 500;
}

/* ---------- How it works ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.steps h3 { font-size: 1.3rem; margin-bottom: 8px; }
.steps p { margin: 0; }

/* ---------- Contact / Inquiry ---------- */
.apply-note {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 60ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.form-embed {
  background: #FCFAF4;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(42, 40, 35, 0.10);
}
.form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
}
.inquiry-contact {
  padding: 36px 28px;
  background: var(--fairway);
  border-radius: 10px;
  color: var(--chalk);
}
.inquiry-contact p { color: var(--chalk); }
.inquiry-contact-heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.contact-link {
  display: block;
  color: var(--chalk);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  margin-top: 14px;
}
.contact-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--fairway);
  color: var(--chalk);
  padding: 52px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer p { margin: 0 0 6px; }
.footer-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-contact { text-align: right; }
.site-footer a { color: var(--chalk); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.copyright {
  max-width: var(--wrap);
  margin: 36px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid rgba(245, 242, 234, 0.18);
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; max-width: 460px; }
  .founders { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
  .gallery { column-count: 2; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .inquiry-contact { order: -1; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 52px; }
  .gallery { column-count: 1; }
  .statstrip { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .statstrip li { padding: 0 16px; }
  .statstrip li:nth-child(3) { border-left: 0; }
  .statstrip li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .footer-inner { flex-direction: column; }
  .footer-contact { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
