:root {
  --brand-orange: #f07204;
  --brand-copper: #c85d00;
  --brand-black: #000000;
  --ink: #151515;
  --muted: #63605b;
  --line: #ded8cf;
  --paper: #fffdf9;
  --panel: #f5f1ea;
  --deep: #202726;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(24, 22, 19, 0.12);
}

* {
  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(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(222, 216, 207, 0.75);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 162px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2a2926;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--brand-orange);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 8vw, 108px) clamp(20px, 5vw, 76px) clamp(36px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(240, 114, 4, 0.08), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #f2ede4 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7.8rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--brand-orange);
  box-shadow: 0 16px 34px rgba(240, 114, 4, 0.24);
}

.button.primary:hover {
  background: var(--brand-copper);
}

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

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-left: 1px solid rgba(200, 93, 0, 0.18);
}

.hero-visual img {
  width: min(520px, 100%);
  filter: drop-shadow(0 24px 32px rgba(21, 21, 21, 0.12));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--deep);
  color: var(--white);
}

.trust-strip div {
  min-height: 128px;
  padding: 28px clamp(20px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: #ffae68;
  font-size: 1.02rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.section,
.process,
.founder,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

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

.service-card {
  min-height: 236px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(22, 20, 17, 0.05);
}

.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brand-orange);
  font-weight: 900;
}

.service-card p,
.process-list p,
.founder-copy p,
.founder-panel p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.process {
  background: var(--panel);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
}

.process-list div {
  padding: 30px;
  background: var(--paper);
}

.process-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-copper);
  font-size: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
}

.founder-copy {
  max-width: 780px;
}

.quote {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 4px solid var(--brand-orange);
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.founder-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-panel img {
  width: 220px;
  margin-bottom: 30px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 80px);
  background: var(--deep);
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.hidden-field {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(240, 114, 4, 0.18);
}

.lead-form select option {
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ffbd80;
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.site-footer img {
  width: 140px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .founder,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
    border-left: 0;
  }

  .trust-strip,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 740px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 138px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .process,
  .founder,
  .contact-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
