/* FORE - Detroit forward design system
   Ink: deep forest green / Paper: warm white / Accent: FORE gold */

:root {
  --ink: #17372a;
  --ink-2: #1e4534;
  --ink-soft: #43584d;
  --paper: #faf9f5;
  --paper-deep: #f0eee5;
  --line: #e0ddd0;
  --line-dark: rgba(234, 230, 218, 0.16);
  --brass: #b0821f;
  --brass-deep: #93690f;
  --cream: #ece7d9;
  --cream-muted: #a4b3a8;

  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', -apple-system, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 2px rgba(23, 55, 42, 0.05), 0 12px 32px rgba(23, 55, 42, 0.09);
  --shadow-photo: 0 2px 6px rgba(23, 55, 42, 0.12), 0 24px 48px rgba(23, 55, 42, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.14;
  color: var(--ink);
}

/* height:auto is load-bearing: width/height attributes reserve layout space
   (CLS), but without it a grid-narrowed image keeps its attribute height and
   stretches. */
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1160px; margin-inline: auto; padding-inline: 28px; }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.overline::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ---------- header ---------- */

header.site {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}
.brand .mark {
  width: 11px;
  height: 11px;
  background: var(--brass);
  transform: translateY(-1px) rotate(45deg);
}
.brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--cream);
  letter-spacing: 0.14em;
}
.brand .tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
}
.head-phone {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.head-phone:hover { border-color: var(--brass); background: rgba(176, 130, 31, 0.16); }
.head-phone svg { width: 15px; height: 15px; }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--cream);
  overflow: visible;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 6.4fr 5.6fr;
  gap: 56px;
  align-items: center;
  padding-block: 96px 120px;
}
.hero .overline { color: var(--brass); filter: brightness(1.4); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-top: 22px;
}
.hero h1 em {
  font-style: normal;
  color: #d9a733;
}
.hero .sub {
  margin-top: 24px;
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--cream-muted);
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 15px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:active { transform: translateY(0); transition-duration: 0.1s; }
.btn-brass { background: var(--brass); color: #fdfbf6; }
.btn-brass:hover {
  background: var(--brass-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}
.btn-ghost-dark {
  color: var(--cream);
  border: 1px solid var(--line-dark);
}
.btn-ghost-dark:hover { border-color: var(--cream-muted); transform: translateY(-2px); }
.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--cream-muted);
}
.hero-trust svg { width: 15px; height: 15px; color: var(--brass); filter: brightness(1.35); flex-shrink: 0; }

.hero-photo { position: relative; }
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--brass);
  opacity: 0.5;
  border-radius: 4px;
}
.hero-photo img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-photo);
}
.hero-photo .badge {
  position: absolute;
  left: -18px;
  bottom: 30px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-photo .badge svg { width: 16px; height: 16px; color: var(--brass); }

/* ---------- sections ---------- */

section { padding-block: clamp(4.5rem, 9vh, 7rem); }
section h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.lede { color: var(--ink-soft); max-width: 36rem; margin-top: 16px; font-size: 1.125rem; }

/* situations: asymmetric 5/7 */
.situations .wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.situations .overline { color: var(--brass); }
.situations h2 { margin-top: 18px; }
.situation-list { border-top: 1px solid var(--line); }
.situation {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.situation svg { width: 24px; height: 24px; color: var(--brass); margin-top: 3px; }
.situation h3 { font-size: 1.125rem; font-weight: 700; }
.situation p { color: var(--ink-soft); font-size: 0.9875rem; margin-top: 4px; line-height: 1.6; }

/* how it works: timeline + photo */
.process { background: var(--paper-deep); }
.process .wrap {
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  gap: 72px;
  align-items: center;
}
.process .overline { color: var(--brass); }
.process h2 { margin-top: 18px; }
.timeline { margin-top: 44px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}
.tstep {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 26px;
  padding-bottom: 40px;
}
.tstep:last-child { padding-bottom: 0; }
.tstep .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--brass);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.tstep h3 { font-size: 1.25rem; padding-top: 12px; }
.tstep p { color: var(--ink-soft); margin-top: 8px; max-width: 30rem; }
.process-photo { position: relative; }
.process-photo::after {
  content: '';
  position: absolute;
  inset: -22px -22px 22px 22px;
  background: var(--paper);
  border-radius: 4px;
  z-index: -1;
}
.process-photo img { border-radius: 4px; box-shadow: var(--shadow-card); }

/* local band: drenched ink */
.local { background: var(--ink); color: var(--cream); }
.local .wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.local-photo { position: relative; }
.local-photo img {
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.local .overline { color: var(--brass); filter: brightness(1.4); }
.local h2 { color: var(--paper); margin-top: 18px; }
.local p { color: var(--cream-muted); margin-top: 18px; max-width: 34rem; font-size: 1.0938rem; }
.local .btn { margin-top: 30px; }

/* contact + form */
.inquiry-section { background: var(--paper); }
.inquiry-section .wrap {
  display: grid;
  grid-template-columns: 4.6fr 7.4fr;
  gap: 64px;
  align-items: start;
}
.inquiry-section .overline { color: var(--brass); }
.inquiry-section h2 { margin-top: 18px; }
.contact-stack { margin-top: 38px; border-top: 1px solid var(--line); }
.contact-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
}
.contact-row svg { width: 20px; height: 20px; color: var(--brass); margin-top: 3px; }
.contact-row .k {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-row a, .contact-row .v {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.0313rem;
}
.contact-row a:hover { color: var(--brass); }

.form-card {
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px;
  box-shadow: var(--shadow-card);
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-weight: 600; font-size: 0.9063rem; margin-bottom: 7px; }
.field { margin-bottom: 20px; }
input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d3cfbe;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 130, 31, 0.14);
}
.consent {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 17px;
  margin-bottom: 20px;
}
.consent input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--brass); }
.consent .consent-copy { font-size: 0.8438rem; color: var(--ink-soft); line-height: 1.55; }
.consent label { display: inline; font-weight: 400; font-size: inherit; color: inherit; margin: 0; }
.consent a { color: var(--ink); }
.finePrint { font-size: 0.8125rem; color: #878f85; margin-top: 16px; line-height: 1.55; }
.submit {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 15px 34px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.submit:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 55, 42, 0.24);
}
.submit:active { transform: translateY(0); }
.form-error {
  display: none;
  background: #fbefe9;
  border: 1px solid #e3c0ad;
  color: #7e4123;
  border-radius: 8px;
  padding: 13px 15px;
  margin-bottom: 20px;
  font-size: 0.9063rem;
}
.hp-field {
  position: absolute;
  left: -6000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* faq */
.faq { background: var(--paper-deep); }
.faq .inner { max-width: 760px; margin-inline: auto; }
.faq .overline { color: var(--brass); }
.faq h2 { margin-top: 18px; margin-bottom: 34px; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding: 0 2px 24px; max-width: 42rem; }

/* footer */
footer.site {
  background: var(--ink);
  color: var(--cream-muted);
  padding-block: 52px;
  font-size: 0.9375rem;
}
footer.site .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}
footer.site .brand .name { font-size: 1.25rem; }
footer.site .tagline {
  margin-top: 8px;
  color: var(--brass);
  filter: brightness(1.4);
  font-size: 0.8438rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
footer.site .addr { margin-top: 14px; line-height: 1.7; }
footer.site a { color: var(--cream); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site nav { display: flex; gap: 24px; }
footer.site .legalline {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  margin-top: 10px;
  font-size: 0.8438rem;
}

/* notice + legal pages */
.notice {
  background: #fffefb;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 52px;
  max-width: 640px;
  margin: 88px auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.notice h1 { font-size: 2rem; margin-bottom: 16px; }
.notice p { color: var(--ink-soft); margin-bottom: 10px; }
.notice a { color: var(--brass); font-weight: 600; }

.legal { max-width: 760px; margin-inline: auto; padding: 64px 28px; }
.legal h1 { font-size: 2.125rem; margin-bottom: 8px; }
.legal .updated { color: #878f85; font-size: 0.875rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.3125rem; margin-top: 36px; margin-bottom: 10px; }
.legal p { margin-bottom: 14px; color: var(--ink-2); }
.legal a { color: var(--brass); }

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* responsive */
@media (max-width: 900px) {
  .hero .wrap,
  .situations .wrap,
  .process .wrap,
  .local .wrap,
  .inquiry-section .wrap { grid-template-columns: 1fr; }
  .hero .wrap { padding-block: 64px 84px; gap: 48px; }
  .hero-photo::before { inset: 16px -14px -14px 16px; }
  .process .wrap { gap: 48px; }
  .process-photo { order: 2; }
  .local .wrap { gap: 44px; }
  .local-photo { max-width: 460px; }
  footer.site .wrap { grid-template-columns: 1fr; }
  footer.site nav { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .grid2 { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 26px; }
  section { padding-block: 3.5rem; }
  .hero-photo .badge { left: 10px; }
  .timeline::before { left: 23px; }
  .tstep { grid-template-columns: 48px 1fr; gap: 18px; }
  .tstep .num { width: 48px; height: 48px; font-size: 1.25rem; }
}
