*, *::before, *::after { box-sizing: border-box; }
:root {
  --pine: #14351f;
  --pine-2: #1f5130;
  --leaf: #4f9a55;
  --clay: #b87333;
  --clay-2: #d89a58;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --ink: #1c211d;
  --muted: #60685f;
  --line: rgba(28, 33, 29, .12);
  --shadow: 0 18px 70px rgba(25, 38, 26, .14);
  --radius: 8px;
  --max: 1180px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 10px 28px rgba(184, 115, 51, .24); }
.btn-primary:hover { background: #a9652d; }
.btn-dark { background: var(--pine); color: #fff; }
.btn-light { background: #fff; color: var(--pine); border-color: var(--line); }
.page-hero {
  padding: 138px 0 70px;
  background: linear-gradient(180deg, #f7f3eb 0%, #fffdf8 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 48px;
  align-items: center;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: var(--pine);
  line-height: 1.05;
}
h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}
h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.lead { max-width: 720px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-card div { padding: 22px; }
.crew-photo-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(20, 53, 31, .08), rgba(184, 115, 51, .14)),
    var(--cream);
  border: 1px dashed rgba(20, 53, 31, .28);
  border-radius: var(--radius);
  color: var(--pine);
  text-align: center;
  font-weight: 900;
  line-height: 1.45;
}
.crew-photo-placeholder span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.about-hero-card {
  align-self: stretch;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(247, 243, 235, .94)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-hero-card .crew-photo-placeholder {
  min-height: 260px;
  box-shadow: none;
}
.about-hero-note {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.about-hero-note strong {
  color: var(--pine);
  font-size: 18px;
}
.about-story {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(20, 53, 31, .94), rgba(20, 53, 31, .72) 52%, rgba(20, 53, 31, .18)),
    url("mendez-legacy-yard.jpg") center/cover;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-story-panel {
  max-width: 650px;
}
.about-story h2,
.about-story h3 { color: #fff; }
.about-story p { color: rgba(255,255,255,.78); }
.about-story .eyebrow { color: var(--clay-2); }
.about-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}
.about-principles {
  display: grid;
  gap: 14px;
}
.principle {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.principle h3 {
  margin-bottom: 6px;
  font-size: 22px;
}
.principle p {
  margin: 0;
  font-size: 16px;
}
.about-dark-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.about-dark-list .card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.about-dark-list .tag { color: var(--clay-2); }
.about-background-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(20, 53, 31, .93), rgba(20, 53, 31, .72)),
    url("mendez-legacy-yard.jpg") center/cover;
  color: #fff;
}
.about-background-card h2,
.about-background-card h3 { color: #fff; }
.about-background-card p { color: rgba(255,255,255,.78); }
.proof-strip {
  background: var(--pine);
  color: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255,255,255,.1);
}
.proof-item {
  padding: 26px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.proof-item strong {
  display: block;
  color: var(--clay-2);
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1;
}
.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.4;
}
.section { padding: 76px 0; }
.section.alt { background: linear-gradient(180deg, var(--cream), #fffdf8); }
.section.dark { background: var(--pine); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: rgba(255,255,255,.72); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .74fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}
.section-head p { margin: 0; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card p { margin-bottom: 0; }
.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}
.card li + li { margin-top: 8px; }
.card .tag {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dark .card {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.feature-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-panel.clay {
  background: linear-gradient(180deg, var(--cream), #fff);
}
.feature-panel.dark {
  background: var(--pine);
  color: #fff;
}
.feature-panel.dark h2,
.feature-panel.dark h3 { color: #fff; }
.feature-panel.dark p,
.feature-panel.dark li { color: rgba(255,255,255,.74); }
.split-copy {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.quote-block {
  padding: 32px;
  background: var(--cream);
  border-left: 4px solid var(--clay);
  border-radius: var(--radius);
}
.quote-block p {
  margin: 0;
  color: var(--pine);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.25;
}
.process-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-weight: 900;
}
.process-step h3 {
  margin-bottom: 4px;
  font-size: 22px;
}
.process-step p {
  margin: 0;
  font-size: 16px;
}
.factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.factor {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--pine);
  font-weight: 800;
}
.number-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
}
.number-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--pine);
  color: #fff;
  font-weight: 900;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.area-list span {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--pine);
  font-weight: 800;
  font-size: 14px;
}
.list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.55;
}
.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--clay);
}
.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}
.photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.photo-grid img:first-child {
  grid-row: span 2;
  height: 534px;
}
.cta-band {
  padding: 44px;
  background: var(--pine);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: rgba(255,255,255,.72); margin: 0; }
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
summary {
  color: var(--pine);
  cursor: pointer;
  font-weight: 800;
}
details p { margin-bottom: 0; }
form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label { color: var(--pine); font-weight: 800; font-size: 14px; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
.full { grid-column: 1 / -1; }
.hidden-field { display: none; }
.form-note { margin: 0; font-size: 14px; }
button.full {
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: var(--clay);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
footer {
  padding: 34px 0;
  background: #0f2415;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) {
  .hero-grid, .grid, .grid.two, .section-head, .split-copy, .factor-grid, form { grid-template-columns: 1fr; }
  .about-split, .about-dark-list { grid-template-columns: 1fr; }
  .about-story {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(20, 53, 31, .94), rgba(20, 53, 31, .8)),
      url("mendez-legacy-yard.jpg") center/cover;
  }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img, .photo-grid img:first-child { height: 260px; grid-row: auto; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 30px; }
  .footer-row { flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 30px)); }
  .page-hero { padding: 112px 0 54px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.1rem); }
  .about-story { padding: 28px; }
  .about-hero-card { min-height: auto; padding: 22px; }
  .hero-actions .btn { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; border-left: 0; }
  .proof-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
}
