/* =========================================================
   Frank AI for Real Business — styles
   Dark, industrial, plainspoken. Mobile-first.
   Accent: #E85A2A
   ========================================================= */

:root {
  --bg:        #141210;   /* near-black, warm */
  --bg-2:      #1c1917;   /* raised panels */
  --bg-3:      #232019;   /* cards */
  --line:      #35302a;   /* borders */
  --ink:       #f4efe8;   /* primary text */
  --ink-soft:  #c3bab0;   /* secondary text */
  --ink-mute:  #8c837a;   /* muted / notes */
  --accent:    #E85A2A;   /* the orange */
  --accent-2:  #ff7a4d;   /* lighter hover */
  --accent-ink:#141210;   /* text on orange */
  --radius:    10px;
  --wrap:      1120px;
  --shadow:    0 18px 40px -20px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 .4em;
  text-transform: uppercase;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 72px 0; }

.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 14px;
}

.accent { color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(30px, 5vw, 46px); }
.section-sub { color: var(--ink-soft); font-size: 18px; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-2); color: var(--accent-ink); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20,18,16,.86);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 7px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.brand-text {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 19px;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav > a {
  color: var(--ink-soft);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 14px;
  font-weight: 500;
}
.nav > a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--accent);
  color: var(--accent-ink) !important;
  padding: 9px 16px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--accent-2); }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(232,90,42,.16), transparent 55%),
    linear-gradient(180deg, #1a1714, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero-title {
  font-size: clamp(40px, 8vw, 78px);
  margin-bottom: 22px;
}
.hero-lead {
  font-size: clamp(18px, 2.6vw, 23px);
  color: var(--ink);
  max-width: 620px;
  margin: 0 0 18px;
  line-height: 1.5;
}
.hero-who {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 0 34px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-note {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- Story ---------- */
.story { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.story-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.story-copy h2 { font-size: clamp(28px, 4.5vw, 42px); }
.story-copy p { color: var(--ink-soft); margin: 0 0 16px; }

.photo-placeholder {
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg, rgba(232,90,42,.05), rgba(232,90,42,.05) 12px,
    transparent 12px, transparent 24px);
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
}
.photo-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.ph-icon { font-size: 34px; }
.photo-placeholder strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  font-size: 16px;
}
.ph-note { font-size: 13px; color: var(--ink-mute); line-height: 1.4; }

/* ---------- Offers ---------- */
.offers { background: var(--bg); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.offer-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offer-kicker {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--ink-mute);
  margin: 0 0 6px;
}
.offer-card h3 { font-size: 30px; margin-bottom: 8px; }
.offer-price { margin: 0 0 16px; }
.offer-price .price-amt {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--ink);
}
/* Placeholder price gets a subtle dashed underline so it's obvious it's a fill-in */
.offer-price[data-placeholder-price] .price-amt {
  border-bottom: 2px dashed var(--accent);
  padding-bottom: 2px;
  color: var(--accent);
}
.offer-desc { color: var(--ink-soft); margin: 0 0 18px; }
.offer-desc strong { color: var(--ink); }
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
  font-weight: 900;
}
.offer-card .btn { margin-top: auto; }

/* Featured — The FIX Session gets the visual weight */
.offer-featured {
  background: linear-gradient(180deg, #2a1c14, var(--bg-3));
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateY(-10px);
}
.offer-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.offer-featured .offer-kicker { color: var(--accent-2); }
.offer-featured h3 { font-size: 34px; }

/* ---------- Who it's for ---------- */
.fit { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trades {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trades li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 15px;
  font-weight: 500;
}
.fit-note {
  max-width: 760px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.fit-note p { margin: 0; color: var(--ink-soft); font-size: 18px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  margin: 0;
}
.quote-card.is-placeholder { border-style: dashed; }
.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
}
.quote-card.is-placeholder blockquote { color: var(--ink-mute); font-style: italic; }
.quote-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.q-name {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  font-weight: 600;
}
.q-trade { font-size: 14px; color: var(--ink-mute); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(28px, 4.5vw, 42px); }
.contact-copy > p { color: var(--ink-soft); margin: 0 0 28px; }
.contact-details { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; flex-direction: column; gap: 2px; }
.cd-label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: var(--ink-mute);
}
.contact-details a, .contact-details span:not(.cd-label) { color: var(--ink); font-size: 18px; }
.contact-details a { color: var(--accent-2); }

/* Form */
.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field .opt { color: var(--ink-mute); text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.hp-field { position: absolute; left: -9999px; }
.form-fineprint {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 14px 0 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
}
.footer-brand span { color: var(--ink-mute); font-size: 14px; }
.footer-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-meta a, .footer-meta span { color: var(--ink-soft); font-size: 14px; }
.footer-meta a { color: var(--accent-2); }
.copyright { color: var(--ink-mute) !important; margin-top: 6px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .nav { gap: 16px; }
  .nav > a:not(.nav-cta) { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 30px; }
  .photo-placeholder { max-width: 320px; margin: 0 auto; }
  .offer-grid { grid-template-columns: 1fr; gap: 30px; }
  .offer-featured { transform: none; order: -1; }
  .quote-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .trades { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 54px 0; }
  .hero { padding: 60px 0 54px; }
  .field-row { grid-template-columns: 1fr; }
  .trades { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .brand-sub { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
