/* =========================================
   Franklin Timber Co. — Styles
   A local, trustworthy, down-to-earth feel.
   ========================================= */

:root {
  --green-dark: #1a3a0a;
  --green: #2D5016;
  --green-light: #3d6b1e;
  --green-muted: #4a7c2e;
  --cream: #FAF7F0;
  --cream-dark: #F0EBE0;
  --brown: #8B6914;
  --brown-light: #A67C1A;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --text-lighter: #7A7A7A;
  --white: #FFFFFF;
  --border: #E5E0D5;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --radius: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.3;
  color: var(--green-dark);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--green-light); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-ghost:hover {
  color: var(--green-light);
  background: transparent;
}

.btn-call {
  /* same as btn-outline, but hidden on desktop */
  display: none;
}

.btn-full { width: 100%; }

/* ---- Top Bar ---- */

.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-phone {
  color: var(--white);
  font-weight: 600;
}
.top-bar-phone:hover { color: rgba(255,255,255,0.9); }

/* ---- Header ---- */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-lighter);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.nav a:hover { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--green-light);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Hero ---- */

.hero {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-trust-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green-dark);
}

.hero-trust-item span {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ---- Postcard Recognition ---- */

.postcard-recognition {
  padding: 80px 0;
  background: var(--cream);
}

/* ---- Postcard Mockup ----
   The mockup mirrors the real Franklin Timber 4×6 LOB postcard.
   Internals are styled at the real card's preview pixel size (625×450)
   then scaled down with a CSS transform to fit the responsive
   .fcard-wrap container. Class names are scoped (.fc-*) so they don't
   collide with anything else on the page. */

.fcard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px auto 0;
  max-width: 920px;
}

@media (max-width: 720px) {
  .fcard-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* The wrap holds aspect ratio + shadow + tilt and acts as a container
   for the scale transform inside. */
.fcard-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 625 / 450;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  background: #f6f1e6;
  transform: rotate(-1deg);
  transition: transform 0.3s;
  container-type: inline-size;
}

.fcard-wrap--back { transform: rotate(1deg); }
.fcard-wrap:hover { transform: rotate(0) scale(1.02); }

/* Inner card at fixed real-postcard pixel size (625×450), scaled to fit
   the wrap. Default scale (~0.71) targets the desktop grid (444px per
   card); container queries refine the scale for any width. */
.fcard {
  position: absolute;
  top: 0;
  left: 0;
  width: 625px;
  height: 450px;
  transform-origin: top left;
  transform: scale(0.71);
  font-family: 'Inter', system-ui, sans-serif;
  color: #1f241e;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@container (min-width: 1px) {
  .fcard { transform: scale(calc(100cqw / 625px)); }
}

/* ----- FRONT ----- */
.fcard--front {
  background: #0f1712;
  color: #f2ead7;
  overflow: hidden;
}

.fcard--front .fc-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('assets/postcard-aerial.jpg') center center / cover no-repeat;
}

.fcard--front .fc-scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(90deg, rgba(15,23,18,0.88) 0%, rgba(15,23,18,0.55) 38%, rgba(15,23,18,0) 58%),
    linear-gradient(180deg, rgba(15,23,18,0.2) 0%, rgba(15,23,18,0) 30%, rgba(15,23,18,0.35) 100%);
}

.fcard--front .fc-brand {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 5;
}

.fc-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fcard--front .fc-brand-name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: #f7f1de;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.fcard--front .fc-eyebrow {
  position: absolute;
  top: 112px;
  left: 24px;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8935a;
  margin: 0;
  z-index: 5;
}

.fcard--front .fc-h2 {
  position: absolute;
  left: 24px;
  top: 132px;
  max-width: 280px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: #f7f1de;
  margin: 0;
  text-wrap: pretty;
  z-index: 5;
}

.fcard--front .fc-h2 em {
  font-style: italic;
  font-weight: 400;
  color: #b8935a;
}

.fcard--front .fc-sub {
  position: absolute;
  left: 24px;
  top: 252px;
  max-width: 260px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(247,241,222,0.86);
  margin: 0;
  z-index: 5;
}

.fcard--front .fc-sub b {
  color: #f7f1de;
  font-weight: 700;
}

.fcard--front .fc-cta {
  position: absolute;
  left: 24px;
  bottom: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: #b8935a;
  color: #1f1a10;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 5;
}

.fcard--front .fc-arrow {
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.fcard--front .fc-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.fcard--front .fc-callline {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,241,222,0.62);
  z-index: 5;
}

.fcard--front .fc-callline b {
  color: #b8935a;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 8px;
  vertical-align: -2px;
}

.fcard--front .fc-value-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 210px;
  padding: 12px 14px 13px;
  background: rgba(24,32,26,0.92);
  border: 1px solid rgba(216,182,120,0.22);
  color: #f2ead7;
  z-index: 5;
}

.fcard--front .fc-addr-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 210px;
  padding: 11px 14px 12px;
  background: rgba(24,32,26,0.92);
  border: 1px solid rgba(216,182,120,0.22);
  color: #f2ead7;
  z-index: 5;
}

.fc-tag-lbl {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8935a;
  margin-bottom: 6px;
}

.fc-tag-val {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.fc-tag-meta {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 10px;
  color: rgba(247,241,222,0.72);
  margin-top: 6px;
  line-height: 1.45;
}

.fc-tag-addr {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.fc-tag-meta-mono {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 8.5px;
  color: rgba(247,241,222,0.7);
  margin-top: 5px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ----- BACK ----- */
.fcard--back {
  display: flex;
  background: #f6f1e6;
}

.fcard--back .fc-letter {
  flex: 1.08 1 0;
  position: relative;
  padding: 22px 18px 18px 26px;
  border-right: 1px solid rgba(31,36,30,0.18);
}

.fcard--back .fc-mail {
  flex: 1 1 0;
  position: relative;
  padding: 22px 26px 18px 20px;
}

.fc-letter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #b8935a;
  margin-bottom: 10px;
}

.fc-letter-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-letter-brandname {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  color: #1f241e;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.fc-letter-town {
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8935a;
  white-space: nowrap;
}

.fc-greet {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 6px;
  color: #1f241e;
}

.fc-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  font-size: 10.25px;
  line-height: 1.48;
  color: #1f241e;
  margin: 0 0 7px;
  text-wrap: pretty;
}

.fc-body b { font-weight: 700; }

.fc-hl {
  background: #efe8d7;
  padding: 0 4px;
  font-weight: 700;
  white-space: nowrap;
}

.fc-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  line-height: 1.4;
  color: #3a3f36;
  font-style: italic;
  margin: 0 0 7px;
  max-width: 46ch;
}

.fc-sig { margin-top: 8px; }

.fc-sig-dash {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: #1f241e;
}

.fc-sig-name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: #1f241e;
  margin-left: 3px;
}

.fc-sig-role {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: #3a3f36;
  margin-top: 1px;
}

.fc-qr-block {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(31,36,30,0.18);
}

.fc-qr {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: #fff;
  padding: 3px;
  border: 1px solid rgba(31,36,30,0.18);
}

.fc-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.fc-qr-label {
  flex: 1 1 0;
  font-size: 9px;
  line-height: 1.4;
  color: #1f241e;
}

.fc-qr-label b {
  display: block;
  font-weight: 700;
  font-size: 10px;
  margin-bottom: 2px;
  color: #1f241e;
  white-space: nowrap;
}

.fc-qr-sub {
  color: #3a3f36;
  font-size: 8.5px;
  display: block;
  white-space: nowrap;
}

.fc-qr-url {
  color: #b8935a;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 8.5px;
  margin-top: 3px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fc-qr-code {
  color: #3a3f36;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 8px;
  margin-top: 2px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fc-qr-code b {
  color: #1f241e;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fc-contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(31,36,30,0.18);
  font-size: 8.5px;
  color: #1f241e;
}

.fc-contact span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.fc-ico {
  color: #b8935a;
  font-size: 9px;
}

/* Mail side */
.fc-indicia {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(31,36,30,0.18);
  color: #3a3f36;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: ui-monospace, "JetBrains Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.fc-indicia span { display: block; }

.fc-recipient {
  position: absolute;
  top: 150px;
  left: 22px;
  right: 22px;
}

.fc-name-line {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  color: #1f241e;
  margin-bottom: 3px;
}

.fc-addr-line {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #1f241e;
}

.fc-sender {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  padding-top: 8px;
  border-top: 1px solid rgba(31,36,30,0.18);
}

.fc-sender-co {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #1f241e;
  margin-bottom: 2px;
}

.fc-sender-line {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: #3a3f36;
  line-height: 1.4;
}

/* "Front"/"Back" badge — sits on top of the wrap, outside the scaled
   inner card, so it stays a constant readable size at any breakpoint. */
.fcard-wrap .postcard-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,58,10,0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 10;
}

.postcard-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.postcard-note a {
  color: var(--green);
  font-weight: 600;
}

/* Hero postcard hint — sits below the dual hero CTAs */
.hero-postcard-note {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-light);
  max-width: 32ch;
}
.hero-postcard-note a {
  color: var(--green);
  font-weight: 600;
}

/* Report lookup module — sits inside .postcard-recognition between
   the postcard mockups and the "No postcard?" line. */
.report-lookup {
  max-width: 460px;
  margin: 32px auto 0;
  padding: 22px 24px;
  background: var(--bg-card, #fcfaf4);
  border: 1px solid var(--border, #e1dccd);
  border-left: 3px solid var(--gold, #b8935a);
  border-radius: 10px;
  text-align: center;
}
.report-lookup h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green, #2d3a2e);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.report-lookup-help {
  font-size: 0.93rem;
  color: var(--text-light);
  margin: 0 0 14px;
}
.report-lookup-form {
  display: flex;
  gap: 8px;
  margin: 0 0 10px;
}
.report-lookup-form input {
  flex: 1 1 0;
  padding: 12px 14px;
  border: 1px solid var(--border, #e1dccd);
  border-radius: 7px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fff;
  color: var(--text, #1f241e);
  min-width: 0;
}
.report-lookup-form input:focus {
  outline: none;
  border-color: var(--gold, #b8935a);
}
.report-lookup-form button {
  flex: 0 0 auto;
  padding: 12px 18px;
  white-space: nowrap;
}
.report-lookup-error {
  font-size: 0.85rem;
  color: #8a3b3b;
  margin: 0 0 10px;
}
.report-lookup-alt {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 6px 0 0;
}
.report-lookup-alt a { color: var(--green, #2d3a2e); font-weight: 600; }
@media (max-width: 520px) {
  .report-lookup-form { flex-direction: column; }
  .report-lookup-form button { width: 100%; }
}

/* Hidden visually but still announced by screen readers — used on the
   report-lookup form's input label. */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- Problem ---- */

.problem {
  padding: 60px 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
}

.problem-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ---- Section Utilities ---- */

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-eyebrow.center { text-align: center; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

/* ---- About ---- */

.about {
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

.about-photo-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-details {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.about-detail-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.about-detail-value {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
}

/* ---- Services ---- */

.services {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Species ---- */

.species {
  padding: 80px 0;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.species-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.species-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.species-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.species-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.species-header h3 {
  font-size: 1.25rem;
}

.species-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--green);
  color: var(--white);
}

.species-walnut .species-badge { background: var(--brown); }
.species-oak .species-badge { background: var(--green); }
.species-cherry .species-badge { background: #8B4513; }
.species-maple .species-badge { background: var(--text-light); }

.species-detail {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.species-label { color: var(--text-light); }
.species-value { font-weight: 600; color: var(--green-dark); }

.species-desc {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.species-id {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-light);
}

.species-id strong { color: var(--green-dark); }

/* ---- Pricing ---- */

.pricing {
  padding: 80px 0;
  background: var(--cream-dark);
}

.pricing .section-subtitle {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
}

.pricing-card h3 {
  margin-bottom: 12px;
}

.pricing-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.pricing-card-lead {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.pricing-card-lead .pricing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.pricing-card-lead .pricing-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-card-lead p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.pricing-card-upside {
  border-color: var(--brown);
  border-width: 2px;
}

.pricing-card-upside h3 {
  color: var(--brown);
}

.pricing-guarantees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.pricing-guarantee {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.pricing-guarantee strong {
  display: block;
  color: var(--green-dark);
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

/* ---- Economics / Worked Example ---- */

.economics {
  padding: 80px 0;
  background: var(--cream);
}

.economics-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.economics-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.economics-card-upside {
  border-color: var(--brown);
  border-width: 2px;
  background: #FFFDF7;
}

.economics-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.economics-card-head h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
}

.economics-card-upside .economics-card-head h3 {
  color: var(--brown);
}

.economics-tag {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-lighter);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.economics-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.economics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.economics-table td {
  padding: 10px 0;
  color: var(--text);
}

.economics-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.economics-table tr.sep td {
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.economics-table tr.total td {
  border-top: 2px solid var(--green-dark);
  padding-top: 12px;
  font-size: 1.02rem;
}

.economics-table tr.total td strong {
  color: var(--green-dark);
}

.economics-table td.neg {
  color: var(--text-light);
}

.economics-note {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--cream);
  padding: 14px 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--green);
  line-height: 1.6;
}

.economics-card-upside .economics-note {
  border-left-color: var(--brown);
}

.footnote-mark {
  font-size: 0.7rem;
  vertical-align: super;
  color: var(--text-lighter);
}

.economics-disclaimer {
  margin-top: 32px;
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.82rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Species footnote ---- */

.species-footnote {
  text-align: center;
  margin-top: 36px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Guides ---- */

.guides {
  padding: 80px 0;
  background: var(--white);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.guides-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.guide-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}

.guide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--green);
}

.guide-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--green);
  margin-bottom: 16px;
}

.guide-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.guide-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
}

.guide-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
}

/* ---- Process ---- */

.process {
  padding: 80px 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.88rem;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}

.process-guarantee {
  margin-top: 48px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
  text-align: center;
}

.process-guarantee h3 {
  margin-bottom: 12px;
  color: var(--green);
}

.process-guarantee p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ---- Case Study ---- */

.case-study {
  padding: 80px 0;
  background: var(--green-dark);
  color: var(--white);
}

.case-study-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.case-study .section-eyebrow {
  color: rgba(255,255,255,0.6);
}

.case-study h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.case-study p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.case-study-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-number {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ---- FAQ ---- */

.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-dark);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-lighter);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---- Market Update ---- */

.market-update {
  padding: 60px 0;
  background: var(--white);
}

.market-update-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.market-update-text h2 {
  margin-bottom: 12px;
}

.market-update-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 540px;
}

.market-update-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.market-update-secondary {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.market-update-secondary:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .market-update-cta {
    align-items: center;
  }
}

/* ---- Contact ---- */

.contact {
  padding: 80px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-lighter);
  margin-bottom: 4px;
}

.contact-method a,
.contact-method span {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.contact-form textarea { resize: vertical; }

.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-lighter);
  text-align: center;
}

/* ---- Footer ---- */

.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-owner {
  margin-top: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-updated {
  margin-top: 8px;
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.04em;
}

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-guarantees {
    grid-template-columns: 1fr 1fr;
  }

  .economics-wrap {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-photo { max-width: 240px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .species-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    margin: 0;
  }

  .process-step { padding: 0; max-width: 400px; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .market-update-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .btn-call {
    display: inline-block;
  }

  .pricing-guarantees {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }

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

  .menu-toggle { display: flex; }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .hero-trust-divider {
    width: 100%;
    height: 1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .case-study-stats {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .about-details {
    flex-direction: column;
    gap: 16px;
  }
}
