:root {
  --bg: #f6f3ed;
  --bg-alt: #ebe6dc;
  --text: #13231f;
  --muted: #61716b;
  --line: rgba(19, 35, 31, 0.14);
  --green: #0f2a23;
  --green-2: #173b32;
  --gold: #b48a4a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 42, 35, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(246, 243, 237, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 270px);
  height: auto;
}

.nav { display: flex; gap: 24px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--green); }

.section { padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 138, 74, 0.22), transparent 28%),
    radial-gradient(circle at 85% 72%, rgba(15, 42, 35, 0.12), transparent 30%);
}

eyebrow {}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 { line-height: 1.1; margin: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.035em; }
h1 { max-width: 940px; font-size: clamp(48px, 8vw, 98px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: 21px; letter-spacing: -0.02em; }

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.button.primary { background: var(--green); color: var(--white); border-color: var(--green); }
.button.secondary { background: rgba(255,255,255,0.42); color: var(--green); }
.button:hover { transform: translateY(-1px); }

.hero-card {
  padding: 36px;
  border-radius: 28px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}
.card-label {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 800;
}
.hero-card h2 { font-size: clamp(29px, 3vw, 42px); }
.hero-card p { margin: 24px 0 0; color: rgba(255,255,255,0.76); }

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  background: var(--green);
  color: var(--white);
}
.intro .eyebrow { color: var(--gold); }
.intro p { margin: 0; color: rgba(255,255,255,0.78); font-size: 20px; }

.section-heading { max-width: 980px; margin-bottom: 36px; }
.section-heading.narrow { max-width: 820px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.panel {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.48);
}
.panel.highlight { background: var(--green); color: var(--white); }
.panel p { color: var(--muted); margin: 18px 0 0; }
.panel.highlight p { color: rgba(255,255,255,0.76); }
.panel .pt { padding-top: 14px; border-top: 1px solid var(--line); font-size: 14px; }
.panel.highlight .pt { border-top-color: rgba(255,255,255,0.18); }

.approach { background: var(--bg-alt); }
.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 82px 0.85fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step span { color: var(--gold); font-weight: 800; letter-spacing: 0.08em; }
.step p { margin: 0; color: var(--muted); }

.statement {
  background: var(--green-2);
  color: var(--white);
  text-align: center;
}
.statement p {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.contact p { color: var(--muted); font-size: 19px; }
.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-card a {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-card a:hover { background: var(--green); color: var(--white); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.site-footer a { font-weight: 700; color: var(--green); }

@media (max-width: 980px) {
  .hero, .intro, .contact { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step { grid-template-columns: 56px 1fr; }
  .step p { grid-column: 2; }
}

@media (max-width: 680px) {
  .site-header { position: static; align-items: flex-start; gap: 18px; flex-direction: column; }
  .nav { flex-wrap: wrap; gap: 14px; }
  .hero { min-height: auto; }
  .grid { grid-template-columns: 1fr; }
  .panel { min-height: auto; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step p { grid-column: auto; }
  .site-footer { flex-direction: column; }
}


/* Integrated logo treatment */
.hero-logo {
  display: none;
}
