:root {
  --bg: #f6f4f1;
  --panel: #ffffff;
  --text: #161616;
  --muted: #5d5d5d;
  --line: #e3ddd7;
  --accent: #a0522d;
  --accent-dark: #7f3f23;
  --shadow: 0 12px 40px rgba(20, 20, 20, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f5f2 0%, #f3efea 100%);
  line-height: 1.55;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 244, 241, 0.84);
  border-bottom: 1px solid rgba(227, 221, 215, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}

.brand-name,
.brand-sub {
  letter-spacing: 0.18em;
  font-size: 0.88rem;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 12ch;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, border-color 120ms ease;
}

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

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
}

.hero-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel-line {
  height: 3px;
  width: 110px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(160, 82, 45, 0.15) 100%);
  border-radius: 999px;
  margin-bottom: 30px;
}

.panel-content {
  display: grid;
  gap: 20px;
}

.panel-content span {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1.12rem;
}

.section {
  padding: 72px 0;
}

.section-alt {
  padding-top: 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
#contact h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.section-heading p,
.card p,
.statement p,
.contact-block p,
.site-footer p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.statement {
  background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.62));
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.statement p {
  margin: 0;
  font-size: 1.08rem;
}

.contact-block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.site-footer {
  border-top: 1px solid rgba(227, 221, 215, 0.8);
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .contact-block,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 74px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name,
  .brand-sub {
    font-size: 0.78rem;
  }

  .section,
  .hero {
    padding-bottom: 56px;
  }
}
