:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #556070;
  --line: #d9e1ea;
  --surface: #ffffff;
  --soft: #f3f6f8;
  --accent: #c8a24a;
  --accent-strong: #8c6a21;
  --green: #0f6b58;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: min(760px, calc(100vh - 72px));
  padding: clamp(44px, 6vw, 76px) clamp(18px, 5vw, 32px);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 850px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-strip a,
.footer-links a {
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  min-height: 42px;
  padding: 9px 13px;
  text-decoration: none;
}

.contact-strip a {
  background: white;
}

.price-note {
  background: #fff;
  border-left: 4px solid var(--green);
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
  display: grid;
  gap: 4px;
  margin-top: 22px;
  max-width: 620px;
  padding: 18px 20px;
}

.price-note strong {
  color: var(--ink);
  font-size: 20px;
}

.price-note span {
  color: var(--muted);
  font-size: 15px;
}

.button {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  text-decoration: none;
}

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

.button.secondary {
  background: white;
  border-color: var(--line);
}

.button:hover {
  filter: brightness(0.96);
}

.hero-panel {
  align-self: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
  display: grid;
}

.hero-panel > div {
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.hero-panel > div:last-child {
  border-bottom: 0;
}

.metric {
  display: block;
  font-size: 28px;
  font-weight: 850;
  margin-bottom: 6px;
}

.hero-panel p,
.feature-grid p,
.section-heading p,
.site-footer p {
  color: var(--muted);
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px clamp(18px, 5vw, 32px);
}

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

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

.inquiry-section {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 33, 61, 0.08);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 750;
  gap: 7px;
}

input,
select,
textarea {
  background: #fbfcfd;
  border: 1px solid #c9d4df;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(15, 107, 88, 0.16);
}

.form-status {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
  min-height: 24px;
}

.form-status.error {
  color: #9f1d1d;
}

.form-status.success {
  color: var(--green);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 32px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    width: 100%;
  }

  .hero,
  .inquiry-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}
