/* Masters Multi Trade — hybrid preview
   Grok Build editorial layout + our cream / rust / charcoal + real logos */

:root {
  --paper: #f2ede3;
  --paper-2: #e8e1d4;
  --ink: #161513;
  --muted: #5c574e;
  --subtle: #8a8376;
  --rust: #b4451a;
  --rust-hover: #933612;
  --line: #d4ccbc;
  --cream: #f2ede3;
  --card: #f7f3ea;
  --max: 72rem;
  --pad: clamp(1.15rem, 4vw, 2.25rem);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 0.85rem;
  --header-h: 4.75rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 400;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--rust); }

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 0.85rem;
  font-weight: 600;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex: none;
}
.brand:hover { color: var(--ink); }

.brand-logo {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: min(15.5rem, 52vw);
}
@media (min-width: 768px) {
  .brand-logo { height: 3.15rem; max-width: 16.25rem; }
}
@media (min-width: 1400px) {
  .brand-logo { height: 3.5rem; max-width: 18.5rem; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.78rem;
  font-size: 0.86rem;
  font-weight: 600;
}
.header-nav a { text-decoration: none; color: var(--muted); }
.header-nav a:hover,
.header-nav a.is-active { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem var(--pad) 1.15rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}
.mobile-nav-ctas {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (min-width: 1100px) {
  .header-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav, .mobile-nav.is-open { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.45rem;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--rust);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--rust-hover); color: #fff; border-color: var(--rust-hover); }
.btn svg { width: 1.05rem; height: 1.05rem; flex: none; }

.btn-ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.btn-ink:hover { background: #2a2723; color: var(--cream); border-color: #2a2723; }

.btn-outline {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--paper-2); color: var(--ink); }

.btn-sm {
  min-height: 2.55rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.92rem;
}

.btn-block { width: 100%; }

.call-header { display: none; }
.walk-header { display: none; }
@media (min-width: 640px) {
  .call-header { display: inline-flex; }
}
@media (min-width: 1100px) {
  .walk-header { display: inline-flex; }
}

/* Hero */
.hero {
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
}
@media (min-width: 960px) {
  .hero { padding: 3.25rem 0 4rem; }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-lockup {
  margin: 1.1rem 0 0;
}
.hero-lockup img {
  width: min(28rem, 92vw);
  height: auto;
}
@media (min-width: 960px) {
  .hero-lockup img { width: min(30rem, 100%); }
}

.lede {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-body {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin: 1.15rem 0 0;
  max-width: 32rem;
  font-size: 0.92rem;
  color: var(--subtle);
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
@media (min-width: 960px) {
  .hero-photo img { aspect-ratio: 4 / 5; }
}

.page-hero .hero-photo img {
  aspect-ratio: 4 / 3;
}
@media (min-width: 960px) {
  .page-hero .hero-photo img { aspect-ratio: 5 / 6; }
}

.page-h1 {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}

/* Stats strip */
.strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.strip-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 720px) {
  .strip-grid { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.5rem; }
}
.strip h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}
.strip p {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 960px) {
  .section { padding: 4.5rem 0; }
}
.section-alt { background: var(--paper-2); }

.kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h2, .h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: start;
  }
  .split-eq { grid-template-columns: 1fr 1fr; align-items: center; }
  .split-form { grid-template-columns: 5fr 7fr; }
}

.muted { color: var(--muted); }
.lede-p {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.rule-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.rule-list li {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
}
.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  min-height: 2.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.text-link:hover { color: var(--rust); }

/* Trades */
.trade-intro { max-width: 40rem; }

.trade-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .trade-grid { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
}
.section:not(.section-alt) .card { background: var(--paper-2); }
.card-wide { grid-column: 1 / -1; }

.card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}
.card p { margin: 0.55rem 0 0; color: var(--muted); }

.trade-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0 1.5rem;
}
@media (min-width: 640px) {
  .trade-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .card-wide .trade-list { grid-template-columns: 1fr 1fr 1fr; }
}
.trade-list li {
  border-top: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  padding: 0.55rem 0;
  font-size: 0.95rem;
}

.page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-list li {
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 0;
  margin: 0 0 0.7rem;
}

/* Process */
.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.step-n {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--subtle);
}
.steps h3 { margin-top: 0.4rem; }
.steps p {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.cities {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}
.cities li {
  border-top: 1px solid var(--line);
  padding: 0.55rem 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: 4fr 8fr; gap: 3rem; }
}
.faq-list { margin: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.05rem 0 0;
  margin: 0 0 1.35rem;
}
.faq-item dt { font-weight: 700; }
.faq-item dd {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

/* Area cards */
.area-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .area-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.area-card h3 { font-size: 1.35rem; }
.area-card p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.95rem; }

/* Forms */
.form-card {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 10%, transparent);
}
@media (min-width: 640px) {
  .form-card { padding: 1.85rem; }
}

.form-grid { display: grid; gap: 0.95rem; }
.form-row {
  display: grid;
  gap: 0.95rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.35rem; }
.field label {
  font-size: 0.92rem;
  font-weight: 600;
}
.req { color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--rust);
  border-color: var(--ink);
}

.thanks {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.form-note {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 2.75rem 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .cta-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 0;
}
.site-footer a { color: color-mix(in srgb, var(--cream) 82%, transparent); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; gap: 2.5rem; }
}
.footer-brand {
  width: min(14rem, 70%);
  margin-bottom: 0.85rem;
  filter: invert(1) brightness(1.15);
}
.footer-copy {
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}
.footer-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 50%, transparent);
}
.footer-links {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}
.footer-phone {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream) !important;
}
.footer-meta {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
}
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, #fff 12%, transparent);
  padding: 1rem 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--cream) 45%, transparent);
}
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem max(0.5rem, env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 95%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { min-height: 3rem; }
@media (min-width: 640px) {
  .mobile-bar { display: none; }
}
body { padding-bottom: 4.5rem; }
@media (min-width: 640px) {
  body { padding-bottom: 0; }
}

.hours { margin: 0.85rem 0 0; color: var(--muted); }
.hours strong { color: var(--ink); display: block; font-size: 0.95rem; }
.license-note {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: var(--subtle);
}
/* Mobile layout fix */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; }

@media (max-width: 639px) {
  :root { --header-h: 3.65rem; --pad: 1rem; }
  html { scroll-padding-top: 4.25rem; }
  body { padding-bottom: 5.85rem; }

  .header-inner { min-height: var(--header-h); gap: 0.5rem; }
  .brand-logo { height: 2.35rem; max-width: 9.5rem; }

  .hero { padding: 1.15rem 0 1.4rem; }
  .hero-lockup { margin: 0.7rem 0 0; }
  .hero-lockup img { width: min(13.5rem, 62vw); margin-inline: auto; }
  .hero-grid > div { text-align: center; }
  .hero-body, .hero-meta { margin-inline: auto; }
  .lede { font-size: 1.35rem; }
  .hero-actions { display: none; }

  .hero-photo img { aspect-ratio: 16 / 11; }

  .btn { white-space: normal; text-align: center; }
  .mobile-bar .btn { white-space: nowrap; font-size: 0.95rem; padding: 0.55rem 0.5rem; }

  .section { padding: 2.15rem 0; }
  .page-h1 { font-size: 1.65rem; }
}

@media (min-width: 640px) and (max-width: 959px) {
  .hero-lockup img { width: min(18rem, 70vw); }
}
