/* Ingram & Bunecky — Florida mockup
   Base: black #0a0a0a | charcoal | grey | silver | white
   Accent: copper #b87333 / #c9894a
   No teal, no lighthouse */

:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --charcoal: #2a2a2a;
  --body: #3a3a3a;
  --charcoal-mid: #6a6a6a;
  --header-bg: #0a0a0a;
  --footer-bg: #111111;
  --silver: #f2f2f2;
  --silver-dim: #c8c8c8;
  --copper: #b87333;
  --copper-light: #c9894a;
  --light: #f4f4f5;
  --white: #ffffff;
  --header-h: 8rem;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Inter", system-ui, -apple-system, sans-serif;
  --max: 1100px;
  --radius: 4px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --focus: 0 0 0 3px rgba(184, 115, 51, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--charcoal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 2.85rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.15rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid #1a1a1a;
}

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

.logo {
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1.15;
}

.logo:hover,
.logo:focus-visible {
  color: var(--white);
}

.logo-img {
  display: block;
  height: 101px;
  width: auto;
  max-width: min(476px, 70vw);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.logo--footer .logo-img {
  height: 64px;
}

@media (min-width: 900px) {
  .logo-img {
    height: 123px;
  }
}

.logo-name {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
}

.logo-tag {
  display: block;
  margin-top: 0.2rem;
  padding-top: 0.28rem;
  border-top: 1px solid var(--copper);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #444;
  color: var(--white);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
  justify-content: flex-end;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--silver);
  background: transparent;
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  background: transparent;
  border-bottom-color: var(--white);
  box-shadow: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(24rem, 62vh, 36rem);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(8, 12, 24, 0.7) 0%,
    rgba(8, 12, 24, 0.42) 40%,
    rgba(8, 12, 24, 0.12) 72%,
    rgba(8, 12, 24, 0.04) 100%
  );
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 4rem 0;
  max-width: var(--max);
  margin-inline: auto;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.85rem;
}

.hero h1 {
  max-width: 48rem;
  color: var(--white);
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 5.6vw, 3.85rem);
  line-height: 1.12;
  text-shadow: none;
  -webkit-text-stroke: 0;
  filter: none;
}

.hero-rule {
  display: block;
  width: 5.5rem;
  height: 2px;
  background: var(--white);
  border: 0;
  margin: 0 0 1.25rem;
}

.hero-sub {
  color: var(--silver);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  max-width: 36rem;
  margin-bottom: 1.85rem;
  text-shadow: none;
  filter: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.45rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

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

.btn-hero {
  background: linear-gradient(180deg, #e8e8ea 0%, #cfcfd4 100%);
  color: #1a1a1a;
  border-color: #c4c4c8;
  font-weight: 600;
}

.btn-hero:hover {
  background: linear-gradient(180deg, #f4f4f5 0%, #e0e0e4 100%);
  border-color: #d0d0d4;
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  color: var(--silver);
  border-color: var(--silver-dim);
}

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

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-dark:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

/* ——— Sections ——— */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--light);
  color: var(--body);
}

.section-dark h2,
.section-dark h3 {
  color: var(--charcoal);
}

.section-credentials {
  position: relative;
  z-index: 3;
  background: var(--light);
  padding: 1rem 0 1.25rem;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--charcoal-mid);
}

/* ——— Credential cards (Florida mockup) ——— */
.card-grid {
  position: relative;
  margin-top: -1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem 1.6rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.card-dark {
  background: var(--white);
  border-color: #e4e4e7;
  color: var(--body);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-dark h3 {
  color: var(--charcoal);
}

.card-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-wrap .card-icon,
.card-icon {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0;
  color: var(--charcoal);
}

.card h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.card-divider {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #b8b8b8;
  margin: 0 auto 0.85rem;
  border: 0;
}

.card p {
  font-size: 0.92rem;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 1.45;
}

.card-dark p {
  color: #4a4a4a;
}

.card a.card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.card a.card-link:hover {
  border-color: var(--copper);
}

/* ——— Page hero (inner) ——— */
.page-hero {
  background: var(--light);
  color: var(--body);
  padding: 2.75rem 0 2.5rem;
  border-bottom: 1px solid #e4e4e7;
}

.page-hero h1 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--charcoal-mid);
}

/* ——— Content ——— */
.prose {
  max-width: 42rem;
}

.prose ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

.divider {
  border: 0;
  border-top: 1px solid #d4d4d8;
  margin: 2rem 0;
}

/* ——— Attorney / profile cards ——— */
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.attorney-card {
  background: var(--white);
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.attorney-card .meta {
  font-size: 0.92rem;
  color: #3a3a3a;
}

.attorney-card .creds {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: #3a3a3a;
}

.attorney-card .creds li {
  padding: 0.25rem 0;
  border-top: 1px solid #e4e4e7;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.profile-meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 0.2rem;
}

.profile-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: var(--light);
  color: var(--body);
  border: 1px solid #d4d4d8;
  border-radius: 999px;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-block {
  background: var(--light);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid #e4e4e7;
}

.contact-block h2 {
  font-size: 1.35rem;
}

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

.contact-list li {
  margin-bottom: 0.65rem;
}

.contact-list a {
  color: var(--copper);
  font-weight: 500;
}

.email-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}

.email-list li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
}

/* ——— Resources ——— */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.resource-list a {
  display: block;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid #e4e4e7;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  color: var(--charcoal);
}

.resource-list a:hover {
  border-color: var(--copper);
  background: var(--light);
  color: var(--copper);
}

.resource-list span {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3a3a3a;
  margin-top: 0.25rem;
}

/* ——— Teaser ——— */
.teaser {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.teaser-panel {
  background: var(--white);
  color: var(--body);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e4e4e7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.teaser-panel h2 {
  color: var(--charcoal);
}

/* ——— Footer (3-col Florida mockup) ——— */
.site-footer {
  background: var(--footer-bg);
  color: var(--silver-dim);
  padding: 2.75rem 0 1.5rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-col {
  padding: 0.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer-col + .footer-col {
  border-left: 1px solid #6a6a6a;
}

.footer-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--silver);
  margin-bottom: 0.15rem;
}

.footer-col strong,
.footer-firm {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.footer-col p {
  margin: 0;
  color: var(--silver-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-col a {
  color: var(--silver);
  text-decoration: none;
}

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

.footer-phone {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-cta {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver) !important;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.site-footer a {
  color: var(--silver);
  text-decoration: none;
}

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

.footer-brand .logo-name {
  font-size: 1.35rem;
  color: var(--white);
}

.footer-brand .logo-tag {
  color: var(--silver-dim);
  border-color: #444;
  margin-bottom: 1rem;
  display: inline-block;
  padding-right: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.35rem;
}

.disclaimer {
  border-top: 1px solid #2a2a2a;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #8a8a8a;
}

.copyright {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #8a8a8a;
}

/* ——— Utilities ——— */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-col + .footer-col {
    border-left: 0;
    border-top: 1px solid #3a3a3a;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

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

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--header-bg);
    border-bottom: 1px solid #1a1a1a;
    display: none;
    padding: 0.5rem 1rem 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    white-space: normal;
  }

  .header-inner {
    position: relative;
  }

  .contact-grid,
  .attorney-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
  }
}

.btn-outline-dark {
  background: transparent;
  color: var(--body);
  border-color: var(--charcoal-mid);
  margin-left: 0.5rem;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
@media (max-width: 560px) {
  .btn-outline-dark { margin-left: 0; }
}

/* ——— Attorney photos ——— */
.attorney-photo-link {
  display: block;
  margin: 0 0 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-mid);
  max-width: 220px;
}

.attorney-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.25s ease;
}

.attorney-photo-link:hover .attorney-photo {
  transform: scale(1.03);
}

.profile-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .profile-layout {
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 2.5rem;
  }
}

.profile-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal-mid);
  box-shadow: var(--shadow);
  max-width: 280px;
}

.profile-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}
