:root {
  --forest: #1b3a2b;
  --forest-dark: #102319;
  --forest-light: #2c5641;
  --rust: #c1622d;
  --rust-dark: #a34f22;
  --cream: #f6f1e7;
  --cream-dark: #ece3d1;
  --charcoal: #221f1a;
  --white: #fffdf9;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1180px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(16, 35, 25, 0.12);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-rust {
  background: var(--rust);
  color: var(--white);
}
.btn-rust:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }
.full-width { width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.brand-mark.small { width: 34px; height: 34px; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  line-height: 1.1;
}
.brand-text span { display: block; font-size: 0.7rem; color: var(--rust); letter-spacing: 0.15em; }
.brand-text.light { color: var(--cream); }
.brand-text.light span { color: var(--rust); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { color: var(--rust); border-color: var(--rust); }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--forest);
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(193, 98, 45, 0.18), transparent 40%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
}
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 640px;
  height: 640px;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--rust); font-style: normal; }
.hero-sub {
  color: var(--cream-dark);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-outline { border-color: var(--cream); color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--forest); }

/* ---------- Strip ---------- */
.strip { background: var(--rust); padding: 20px 0; }
.strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.strip-inner p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
  position: relative;
  background-image: repeating-linear-gradient(120deg, rgba(27,58,43,0.025) 0px, rgba(27,58,43,0.025) 1px, transparent 1px, transparent 60px);
}
.section.alt { background-color: var(--cream); }
.section.dark {
  background-color: var(--forest-dark);
  background-image: repeating-linear-gradient(120deg, rgba(246,241,231,0.03) 0px, rgba(246,241,231,0.03) 1px, transparent 1px, transparent 60px);
}
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h2.center { text-align: center; }
h2.light, p.light { color: var(--cream); }
.section-sub {
  max-width: 560px;
  margin: 0 auto 50px;
  color: #5a5646;
}
.section-sub.center { text-align: center; }
.section-sub.light { color: var(--cream-dark); }
.about h2, .contact-copy h2 { text-align: left; }
.section.dark .contact-direct strong { color: var(--cream); }
.section.dark .contact-direct p { color: var(--cream-dark); }

/* ---------- Cards / Services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon-svg { width: 44px; height: 44px; color: var(--forest); margin-bottom: 18px; }
.card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.card p { color: #5a5646; font-size: 0.96rem; }
.card-list { margin-top: 16px; }
.card-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--forest);
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--rust);
  border-radius: 1px;
}

.card-wide {
  margin-top: 28px;
  background: var(--forest);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.card-wide .card-icon-svg { color: var(--rust); margin-bottom: 0; flex-shrink: 0; width: 40px; height: 40px; }
.card-wide-copy { flex: 1; }
.card-wide h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.card-wide p { color: var(--cream-dark); font-size: 0.94rem; margin: 0; }
.card-wide-cta { border-color: var(--cream); color: var(--cream); flex-shrink: 0; }
.card-wide-cta:hover { background: var(--cream); color: var(--forest); }

/* ---------- Process ---------- */
.process-path {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.process-step { flex: 1; }
.process-step:nth-child(1) { margin-bottom: 0; }
.process-step:nth-child(2) { margin-bottom: 26px; }
.process-step:nth-child(3) { margin-bottom: 52px; }
.process-step:nth-child(4) { margin-bottom: 78px; }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { color: #5a5646; font-size: 0.92rem; }

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}
.work-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.work-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--cream-dark);
}
.work-card.featured {
  background: var(--forest-light);
  border-color: var(--rust);
  border-left-width: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}
.work-card.featured h3, .work-card.featured p { color: var(--white); }
.work-card.featured h3 { font-size: 1.3rem; }
.work-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rust);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.work-tag.muted { background: var(--forest-light); }
.work-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.work-card p { color: #5a5646; font-size: 0.92rem; margin: 0; }
.work-card.featured p { color: var(--cream-dark); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-copy p { color: #47443a; }
.about-badge { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.about-badge img { width: 220px; height: 220px; }
.badge-caption {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-copy p { color: #47443a; }
.contact-direct { margin-top: 24px; }
.contact-direct p { margin-bottom: 6px; }
.contact-direct a { color: var(--rust); font-weight: 600; }

.contact-form {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.form-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: var(--forest);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-dark);
  color: var(--cream-dark);
  padding: 48px 0 30px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-tag { font-size: 0.9rem; max-width: 380px; }
.footer-copy { font-size: 0.8rem; color: #8c9186; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid, .work-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-badge { order: -1; }
  .about-badge img { width: 160px; height: 160px; }
  .process-path { flex-direction: column; align-items: stretch; gap: 32px; }
  .process-step:nth-child(1), .process-step:nth-child(2), .process-step:nth-child(3), .process-step:nth-child(4) { margin-bottom: 0; }
  .work-card.featured { padding: 32px 28px; }
  .hero-watermark { width: 440px; height: 440px; opacity: 0.06; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid var(--cream-dark);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--cream-dark); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 70px 0 60px; }
  .section { padding: 60px 0; }
  .strip-inner { flex-direction: column; text-align: center; }
  .card-wide { flex-direction: column; align-items: flex-start; gap: 20px; text-align: left; }
  .hero-watermark { display: none; }
}
