/* Florida Land Daddy — brand CSS. Self-contained, no external CSS framework. */

/* --- Layout utilities (the small subset of Tailwind we use) --- */
.max-w-3xl { max-width: 768px; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 1024px; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 1152px; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-14 { padding-top: 56px; padding-bottom: 56px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.mt-3 { margin-top: 12px; }
.mt-5 { margin-top: 20px; }
.mt-7 { margin-top: 28px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-7 { gap: 28px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.text-sm { font-size: 14px; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.font-medium { font-weight: 500; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .md\:py-20 { padding-top: 80px; padding-bottom: 80px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
}

/* --- Brand CSS --- */

:root {
  --fld-green: #1f3a2a;
  --fld-green-deep: #15281d;
  --fld-cream: #f3e8d2;
  --fld-cream-soft: #f7eedb;
  --fld-rust: #d65a2a;
  --fld-rust-deep: #b34a1d;
  --fld-brown: #2c2218;
  --fld-tan: #9a8466;
  --fld-line: rgba(44, 34, 24, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--fld-green);
  color: var(--fld-cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fld-display {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.0;
  text-transform: uppercase;
}

.fld-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fld-section-label {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Topbar */
.fld-topbar {
  background: var(--fld-green);
  border-bottom: 1px solid rgba(243, 232, 210, 0.08);
}
.fld-topbar a { color: var(--fld-cream); text-decoration: none; }
.fld-topbar a:hover { color: var(--fld-rust); }
.fld-topbar .fld-wordmark {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.005em;
  line-height: 1;
}
.fld-topbar .fld-wordmark small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 4px;
  color: var(--fld-tan);
  text-transform: uppercase;
}

/* CTAs */
.fld-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease-out, transform 200ms ease-out;
  text-decoration: none;
}
.fld-btn-primary {
  background: var(--fld-rust);
  color: var(--fld-cream);
}
.fld-btn-primary:hover {
  background: var(--fld-rust-deep);
  transform: translateY(-1px);
}
.fld-btn-outline {
  background: transparent;
  color: var(--fld-cream);
  border: 2px solid var(--fld-cream);
}
.fld-btn-outline:hover {
  background: var(--fld-cream);
  color: var(--fld-green);
}

/* Hero */
.fld-hero {
  background: var(--fld-green);
  position: relative;
  overflow: hidden;
}
.fld-hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  color: var(--fld-cream);
}
.fld-hero-body {
  font-size: 18px;
  color: rgba(243, 232, 210, 0.85);
  max-width: 52ch;
}
.fld-mascot {
  width: 100%;
  max-width: 460px;
  height: auto;
}
.fld-mascot-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 40%, rgba(214, 90, 42, 0.18), rgba(31, 58, 42, 0) 60%);
  border: 2px dashed rgba(243, 232, 210, 0.15);
  border-radius: 12px;
  color: rgba(243, 232, 210, 0.65);
  text-align: center;
  padding: 24px;
}
.fld-mascot-fallback .fld-wordmark {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--fld-cream);
  letter-spacing: -0.01em;
}
.fld-mascot-fallback .fld-wordmark-sub {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fld-rust);
  text-transform: uppercase;
}
.fld-mascot-fallback small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fld-tan);
  margin-top: 12px;
}

/* Form card */
.fld-form-card {
  background: var(--fld-cream);
  color: var(--fld-brown);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.fld-form-card h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--fld-brown);
}
.fld-form-card .fld-field {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: rgba(243, 232, 210, 0.45);
  border: 1px solid var(--fld-line);
  border-radius: 4px;
  font: inherit;
  color: var(--fld-brown);
  margin-bottom: 8px;
  transition: border-color 150ms ease;
}
.fld-form-card .fld-field:focus {
  outline: none;
  border-color: var(--fld-rust);
}
.fld-form-card .fld-disclaimer {
  font-size: 12px;
  color: var(--fld-tan);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fld-form-card .fld-error {
  color: var(--fld-rust-deep);
  font-size: 13px;
  margin: 8px 0 0;
}
.fld-form-card .fld-success {
  color: var(--fld-green);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 30px 0;
}

/* Trust badges */
.fld-trust {
  background: var(--fld-green);
  border-top: 1px solid rgba(243, 232, 210, 0.06);
  border-bottom: 1px solid rgba(243, 232, 210, 0.06);
}
.fld-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--fld-cream);
}
.fld-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--fld-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--fld-cream);
  background: transparent;
}
.fld-trust-label {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Land-type cards */
.fld-cream-band {
  background: var(--fld-cream);
  color: var(--fld-brown);
  position: relative;
}
.fld-cream-band .fld-section-heading {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fld-brown);
  text-align: center;
}
.fld-land-card {
  background: #ffffff;
  border: 1px solid var(--fld-line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(44, 34, 24, 0.08);
}
.fld-land-card-img {
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-color: var(--fld-green);
}
.fld-land-card-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fld-green) 0%, var(--fld-green-deep) 100%);
  color: var(--fld-cream);
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.fld-land-card-img-fallback span {
  opacity: 0.75;
}
.fld-land-card-body { padding: 18px 18px 22px; }
.fld-land-card-body h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  color: var(--fld-brown);
}
.fld-land-card-body p {
  margin: 0;
  font-size: 14px;
  color: rgba(44, 34, 24, 0.78);
}

/* How it works */
.fld-howto-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--fld-brown);
  padding: 0 12px;
}
.fld-howto-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fld-rust);
  color: var(--fld-cream);
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fld-howto-step h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--fld-brown);
}
.fld-howto-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(44, 34, 24, 0.78);
}

/* Footer */
.fld-footer {
  background: var(--fld-cream);
  color: var(--fld-brown);
}
.fld-footer h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  color: var(--fld-brown);
}
.fld-footer a { color: var(--fld-brown); text-decoration: none; }
.fld-footer a:hover { color: var(--fld-rust); }
.fld-footer ul { list-style: none; padding: 0; margin: 0; }
.fld-footer ul li { padding: 2px 0; font-size: 14px; }
.fld-footer-band {
  background: var(--fld-green-deep);
  color: var(--fld-cream);
  text-align: center;
  padding: 36px 0;
}
.fld-footer-band .fld-wordmark {
  font-family: 'Roboto Slab', serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.01em;
}
.fld-footer-band small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-top: 8px;
  color: var(--fld-tan);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .fld-hero { padding: 36px 0 30px; }
  .fld-mascot { max-width: 280px; }
  .fld-mascot-fallback { max-width: 280px; }
  .fld-form-card { padding: 18px; }
  .fld-trust-icon { width: 46px; height: 46px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .fld-btn { transition: none; }
}
