:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-alt: #eef2ec;
  --text: #18211b;
  --muted: #56645a;
  --border: #d9e2db;
  --accent: #284b36;
  --accent-2: #3f6b4f;
  --shadow: 0 20px 50px rgba(24, 33, 27, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.1; color: var(--text); }
h1 { font-size: clamp(2.7rem, 5vw, 4.6rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }
ul { color: var(--muted); }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 2rem), 820px); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(246, 247, 244, 0.88);
  border-bottom: 1px solid rgba(217, 226, 219, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  font-size: 1.15rem;
}

.logo-lockup {
  gap: 0.8rem;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #284b36 0%, #3f6b4f 100%);
  box-shadow: 0 12px 24px rgba(40, 75, 54, 0.18);
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
}

.logo-caz {
  color: var(--text);
  font-weight: 800;
}

.logo-biz {
  color: var(--accent-2);
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

.hero {
  padding: 6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(63, 107, 79, 0.16), transparent 26%),
    linear-gradient(180deg, #f8faf7 0%, #eef3ed 100%);
}

.hero-layout,
.two-column,
.footer-grid,
.cta-panel,
.feature-grid,
.intro-split {
  display: grid;
  gap: 2rem;
}

.hero-layout { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.two-column,
.intro-split { grid-template-columns: 1.2fr 1fr; }
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; padding: 2.5rem 0; }
.cta-panel { grid-template-columns: 1.6fr auto; align-items: center; }
.feature-grid { grid-template-columns: 1fr 1.1fr; align-items: center; }

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 58ch;
}

.hero-panel {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 226, 219, 0.7);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 180ms ease;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: var(--border);
  background: rgba(255,255,255,0.7);
}

.button:hover { transform: translateY(-1px); }

.section { padding: 5rem 0; }
.section.alt { background: var(--surface-alt); }
.page-main .section:first-of-type { padding-top: 3.5rem; }
.page-hero { padding: 4rem 0 1rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
}

.hero-visual {
  height: 420px;
}

.hero-visual img {
  height: 360px;
  object-position: center center;
  transform: scale(1.08);
}

.small-image-card {
  height: 220px;
}

.small-image-card img {
  height: 220px;
  object-position: center center;
  transform: scale(1.06);
}

.category-card {
  padding: 0;
}

.category-card img {
  height: 280px;
  object-position: center center;
  transform: scale(0.94);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.feature-image {
  height: 420px;
}

.feature-image img {
  height: 420px;
  object-position: center center;
  transform: scale(1.06);
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.visual-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  min-height: 240px;
  background: linear-gradient(180deg, #f8fbf8 0%, #edf3ee 100%);
  border: 1px dashed #aebdb1;
}

.visual-placeholder.tall {
  min-height: 520px;
}

.visual-placeholder.small {
  min-height: 210px;
  box-shadow: none;
  border-radius: 0;
}

.placeholder-label {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(40, 75, 54, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-visual-stack {
  display: grid;
  gap: 1.25rem;
}

.placeholder-card {
  padding: 0;
}

.card-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.check-list {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.trust-strip span {
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-placeholder {
  min-height: 420px;
}

.prose p,
.prose ul { font-size: 1.05rem; }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  background: #f0f3ee;
}

.site-footer a {
  display: block;
  color: var(--muted);
  margin-top: 0.45rem;
}

.footer-heading {
  font-weight: 700;
  display: block;
  margin-bottom: 0.6rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-hero-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 226, 219, 0.7);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-hero-image {
  height: 420px;
}

.about-hero-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.about-story-grid {
  align-items: start;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-support-image {
  height: 420px;
}

.about-support-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.about-principles-cards {
  grid-template-columns: 1fr;
}

.categories-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.categories-hero-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 226, 219, 0.7);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.categories-hero-image {
  height: 420px;
}

.categories-hero-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.categories-feature-grid {
  align-items: stretch;
}

.category-feature-card {
  padding: 0;
  overflow: hidden;
}

.category-feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center center;
}

.category-feature-card .card-body {
  padding: 1.3rem 1.3rem 1.5rem;
}

.partnerships-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.partnerships-hero-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 226, 219, 0.7);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.partnerships-hero-image {
  height: 420px;
}

.partnerships-hero-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.partnership-cards-grid {
  align-items: stretch;
}

.partnership-fit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.partnership-fit-image {
  height: 420px;
}

.partnership-fit-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.partnership-fit-cards {
  grid-template-columns: 1fr;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.contact-hero-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 226, 219, 0.7);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-hero-image {
  height: 420px;
}

.contact-hero-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}

.contact-grid-polished {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-side-column {
  display: grid;
  gap: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  color: #18211b;
  display: block;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #d9e2db;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-note {
  font-size: 0.95rem;
  color: #56645a;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  margin-bottom: 1rem;
  color: #56645a;
}

.detail-list strong {
  display: block;
  color: #18211b;
  margin-bottom: 0.25rem;
}

.detail-list.compact li {
  margin-bottom: 0.6rem;
}

@media (max-width: 920px) {
  .hero-layout,
  .two-column,
  .intro-split,
  .footer-grid,
  .cta-panel,
  .feature-grid,
  .cards-4,
  .cards-3,
  .cards-2,
  .about-hero-grid,
  .about-principles-grid,
  .about-principles-cards,
  .categories-hero-grid,
  .categories-feature-grid,
  .partnerships-hero-grid,
  .partnership-fit-grid,
  .partnership-fit-cards,
  .contact-hero-grid,
  .contact-grid-polished,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero { padding-top: 4rem; }
  .hero-visual,
  .feature-image,
  .visual-placeholder.tall,
  .feature-placeholder,
  .about-hero-image,
  .about-support-image,
  .categories-hero-image,
  .partnerships-hero-image,
  .partnership-fit-image,
  .contact-hero-image { height: 320px; min-height: 320px; }

  .hero-visual img,
  .feature-image img,
  .about-hero-image img,
  .about-support-image img,
  .categories-hero-image img,
  .partnerships-hero-image img,
  .partnership-fit-image img,
  .contact-hero-image img { height: 320px; }

  .small-image-card,
  .small-image-card img,
  .category-card img,
  .category-feature-card img { height: 220px; }
}
