:root {
  --orange: #f26318;
  --orange-dark: #d94f08;
  --ink: #15191d;
  --muted: #656b70;
  --line: #e7e4df;
  --paper: #fff;
  --soft: #f7f6f3;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(26, 22, 18, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: relative;
  z-index: 5;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: min(460px, 72vw); height: 88px; object-fit: contain; object-position: left center; }
.header-link {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
}
.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(242,99,24,.14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  padding: 70px 0 76px;
}
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2 { margin: 0; line-height: 1.09; letter-spacing: -.035em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); max-width: 760px; }
h1 span { color: var(--orange); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
.hero-claim {
  max-width: 620px;
  margin: 19px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
}
.lead { display: grid; gap: 3px; max-width: 650px; margin: 28px 0 0; font-size: clamp(1.45rem, 2.8vw, 2.1rem); font-weight: 900; line-height: 1.13; letter-spacing: -.02em; }
.lead strong { color: var(--ink); }
.lead span { color: var(--orange); }
.hero-text { max-width: 650px; margin: 18px 0 0; color: #4d5256; font-size: 1.02rem; }
.primary-cta, .light-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.primary-cta:hover { background: var(--orange-dark); }
.benefits { display: grid; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; font-weight: 750; }
.benefits li { position: relative; padding-left: 30px; }
.benefits li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--orange);
  font-size: 1.15rem; font-weight: 900;
}
.approach {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,.72);
}
.approach strong { font-size: 1.06rem; }
.approach p { margin: 5px 0 0; color: var(--orange-dark); font-weight: 900; }
.hero-photo { position: relative; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); background: #c8874b; }
.hero-photo > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; }
.hero-photo-cutout { overflow: visible; background: transparent; box-shadow: none; }
.hero-photo-cutout > img { display: block; aspect-ratio: auto; object-fit: contain; }
.hero-photo-cutout .photo-caption { align-items: center; padding-top: 12px; text-align: center; background: transparent; border-top: 3px solid var(--orange); }
.photo-caption {
  display: flex; flex-direction: column; gap: 2px; padding: 19px 22px 21px;
  background: #fff; border-top: 4px solid var(--orange);
}
.photo-caption strong { font-size: 1.13rem; }
.photo-caption span { color: var(--muted); }
.info-section { padding: 92px 0; background: var(--soft); }
.info-heading { max-width: 900px; }
.info-heading h2 span, .method-band h2 span { color: var(--orange); }
.info-heading > p:not(.eyebrow) { max-width: 820px; margin: 24px 0 0; color: var(--muted); font-size: 1.1rem; }
.info-heading .origin-statement {
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
}
.info-heading .five-topics { margin-top: 16px; color: var(--ink); }
.five-topics strong { color: var(--orange-dark); }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.topic-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(26, 22, 18, .06);
}
.topic-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-dark);
  font-weight: 900;
}
.topic-card h3 { margin: 0; font-size: 1.28rem; text-transform: uppercase; }
.topic-card p { margin: 10px 0 0; color: var(--muted); }
.method-band {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: 52px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}
.method-band::after {
  content: "M";
  position: absolute;
  right: -20px;
  bottom: -95px;
  color: rgba(242,99,24,.13);
  font-size: 22rem;
  font-weight: 900;
  line-height: 1;
}
.method-band > * { position: relative; z-index: 1; }
.method-band .eyebrow { color: #ff965e; }
.method-band h2 { max-width: 800px; }
.method-band > p:not(.eyebrow) { max-width: 760px; margin: 22px 0 0; color: #d5d7d9; font-size: 1.07rem; }
.light-cta { background: var(--orange); }
.light-cta:hover { background: #ff7b35; }
.contact-section { padding: 92px 0; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-intro > p:not(.eyebrow) { margin: 22px 0; color: var(--muted); font-size: 1.08rem; }
.contact-intro .not-schema { color: var(--ink) !important; }
.not-schema strong { color: var(--orange-dark); }
.service-card { display: flex; align-items: center; gap: 17px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.service-card img { width: 78px; height: 78px; object-fit: contain; }
.service-card div { display: grid; gap: 4px; }
.service-card span { color: var(--muted); font-size: .93rem; }
.form-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
label { display: block; font-weight: 800; }
label > span[aria-hidden] { color: var(--orange-dark); }
input, textarea {
  width: 100%; margin-top: 7px; border: 1.5px solid #c9c7c3; border-radius: 10px;
  background: #fff; color: var(--ink); font: inherit; padding: 13px 14px; transition: .16s ease;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, textarea:focus { outline: 3px solid rgba(242,99,24,.18); border-color: var(--orange); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; margin: 3px 0 21px; font-size: .91rem; font-weight: 500; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--orange); }
.consent a { color: var(--orange-dark); font-weight: 800; }
.consent b { color: var(--orange-dark); }
button {
  width: 100%; border: 0; border-radius: 11px; padding: 16px 20px; cursor: pointer;
  background: var(--orange); color: #fff; font: inherit; font-size: 1.04rem; font-weight: 900;
  box-shadow: 0 8px 20px rgba(242,99,24,.22); transition: .16s ease;
}
button:hover { background: var(--orange-dark); transform: translateY(-1px); }
button:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.required-note { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .82rem; }
.notice { display: none; gap: 3px; margin-bottom: 22px; padding: 15px 17px; border-radius: 10px; }
.status-success .notice.success, .status-error .notice.error { display: grid; }
.notice.success { background: #edf8f0; color: #185c2b; border: 1px solid #b9dfc2; }
.notice.error { background: #fff1ed; color: #8b2f19; border: 1px solid #f0c2b5; }
footer { padding: 27px 0; border-top: 1px solid var(--line); background: var(--soft); }
.footer-inner { font-size: .88rem; }
.footer-contact { display: grid; gap: 5px; }
.footer-contact span { color: var(--muted); }
.footer-contact span:not(.locations) { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-contact a { color: var(--muted); }
.footer-contact i { font-style: normal; color: #aaa59e; }
.locations { margin-top: 3px; color: var(--ink) !important; }
.locations b { color: var(--orange-dark); }
.legal { padding: 70px 0 90px; }
.legal article { max-width: 800px; }
.legal h1 { margin-bottom: 30px; }
.legal h2 { margin: 34px 0 10px; font-size: 1.35rem; letter-spacing: -.01em; }
.legal p, .legal li { color: #4d5256; }
.back { display: inline-block; margin-bottom: 30px; color: var(--orange-dark); font-weight: 800; }
.placeholder { padding: 15px; border-left: 4px solid var(--orange); background: #fff5ef; }
@media (max-width: 850px) {
  .hero { padding-top: 45px; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-photo { max-width: 620px; }
  .topic-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 65px 0; }
}
@media (max-width: 580px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 72px; }
  .brand { width: min(250px, 78vw); height: 72px; }
  .header-link { display: none; }
  .hero { padding: 38px 0 52px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.15rem); }
  .lead { font-size: 1.03rem; }
  .hero-grid { gap: 34px; }
  .hero-photo { border-radius: 20px; }
  .info-section { padding: 62px 0; }
  .topic-grid { margin-top: 34px; }
  .topic-card { min-height: 0; padding: 24px; }
  .method-band { margin-top: 38px; padding: 32px 22px; border-radius: 18px; }
  .method-band::after { display: none; }
  .primary-cta, .light-cta { width: 100%; justify-content: center; text-align: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 25px 18px; margin-inline: -3px; }
  .footer-contact span:not(.locations) { gap: 4px 7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
