/* Living the Dream in Florida LLC — ltdfla.com
   Hand-authored static styles. No build step, no external requests. */

:root {
  --ink: #0b1f2a;
  --ink-deep: #071620;
  --surface: #ffffff;
  --surface-alt: #f4f7f8;
  --text: #16303d;
  --text-muted: #55707d;
  --text-invert: #eef6f8;
  --text-invert-muted: #a8c3ce;
  --accent: #0d8a9e;
  --accent-warm: #e0913a;
  --line: #dbe5e9;
  --line-dark: #1d3b4a;
  --radius: 14px;
  --radius-sm: 9px;
  --wrap: 1120px;
  --shadow: 0 1px 2px rgba(11, 31, 42, 0.06), 0 8px 24px rgba(11, 31, 42, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: #0a6f80;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

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

.wrap.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--text-invert);
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

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

.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-invert);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: #06222b;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
}

.brand-legal {
  font-size: 12px;
  color: var(--text-invert-muted);
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-invert-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  color: var(--text-invert);
  background: rgba(255, 255, 255, 0.07);
}

.site-nav .nav-cta {
  color: var(--ink);
  background: var(--text-invert);
  font-weight: 600;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  background: #ffffff;
}

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

.hero {
  background:
    radial-gradient(
      ellipse 900px 460px at 12% -10%,
      rgba(13, 138, 158, 0.42) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 700px 420px at 92% 8%,
      rgba(224, 145, 58, 0.22) 0%,
      transparent 60%
    ),
    var(--ink);
  color: var(--text-invert);
  padding: 92px 0 100px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.hero h1 {
  color: var(--text-invert);
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  max-width: 17ch;
  margin-bottom: 0.4em;
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-invert-muted);
  max-width: 60ch;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: #0fa0b7;
  color: #ffffff;
}

.btn-ghost {
  border-color: rgba(238, 246, 248, 0.35);
  color: var(--text-invert);
}

.btn-ghost:hover {
  color: var(--text-invert);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.35em;
}

.section-lede {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 0 40px;
  font-size: 1.05rem;
}

/* ---------- Service cards ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45em;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ---------- Case study ---------- */

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(230px, 1fr);
  gap: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.case h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-bottom: 0.3em;
}

.case-summary {
  color: var(--text-muted);
  margin-top: 0;
}

.case-points {
  margin: 0 0 26px;
  padding-left: 20px;
  color: var(--text-muted);
}

.case-points li {
  margin-bottom: 6px;
}

.case-links {
  margin: 0;
}

.case-meta {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.case-meta h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.status-list li:last-child {
  border-bottom: 0;
}

.status-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-live {
  background: #dff0e8;
  color: #1c6b45;
}

.badge-soon {
  background: #fbeddb;
  color: #8a5713;
}

/* ---------- Company facts ---------- */

.facts {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.fact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fact dt {
  flex: 0 0 210px;
  font-weight: 600;
  color: var(--text);
}

.fact dd {
  margin: 0;
  color: var(--text-muted);
}

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

.section-contact {
  background: var(--ink);
  color: var(--text-invert);
}

.section-contact .section-title {
  color: var(--text-invert);
}

.section-contact .section-lede {
  color: var(--text-invert-muted);
  margin-bottom: 22px;
}

.contact-email {
  margin: 0;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-email a {
  color: var(--text-invert);
  text-decoration-color: var(--accent-warm);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-email a:hover {
  color: var(--accent-warm);
}

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

.site-footer {
  background: var(--ink-deep);
  color: var(--text-invert-muted);
  padding: 26px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal {
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-invert-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text-invert);
  text-decoration: underline;
}

/* ---------- Simple content pages ---------- */

.page {
  padding: 64px 0 84px;
}

.page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.page h2 {
  font-size: 1.2rem;
  margin-top: 2em;
}

.page p,
.page li {
  color: var(--text-muted);
}

.page .updated {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: -0.4em;
}

.page-center {
  text-align: center;
  padding: 110px 0 120px;
}

.page-center h1 {
  margin-bottom: 0.3em;
}

.page-center p {
  margin-bottom: 2em;
}

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

@media (max-width: 860px) {
  .case {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .case-meta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 62px 0 68px;
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    justify-content: center;
    text-align: center;
  }

  .fact dt {
    flex: 0 0 100%;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }

  * {
    transition-duration: 0.01ms !important;
  }
}
