@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --navy: #123524;
  --navy-deep: #07140f;
  --gold: #d8b45d;
  --gold-accessible: #7b5817;
  --gold-light: #f0d28a;
  --cream: #f6f0e4;
  --light-bg: #fbf7ef;
  --white: #ffffff;
  --ink: #1d2f24;
  --muted: #657267;
  --muted-light: rgba(255, 255, 255, 0.7);
  --darker: var(--navy-deep);
  --text-muted: rgba(255, 255, 255, 0.78);
  --line: rgba(18, 53, 36, 0.14);
  --card-line: rgba(216, 180, 93, 0.22);
  --shadow: 0 18px 48px rgba(7, 20, 15, 0.14);
  --header-logo-height: clamp(3rem, 4.6vw, 3.85rem);
  --mobile-logo-height: 2.25rem;
  --mobile-header-padding-block: 0.55rem 0.65rem;
  --mobile-header-gap: 0.45rem;
  --mobile-logo-font-size: 1.08rem;
  --mobile-nav-columns: 2;
  --mobile-nav-gap: 0.35rem 0.6rem;
  --mobile-nav-font-size: 0.61rem;
  --mobile-nav-letter-spacing: 0.035em;
  --mobile-nav-cta-padding: 0.45rem 0.35rem;
  --mobile-banner-top-padding: 2rem;
  --mobile-page-top-padding: 3rem;
  --mobile-banner-headline-size: 1.4rem;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--navy-deep);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.page-content .section-label,
.blog-list .section-label,
.section-light .section-label {
  color: var(--navy);
}

.centered-label {
  justify-content: center;
}

.section-title {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-link {
  margin: 2rem 0 0;
  font-size: 0.95rem;
  color: var(--gold);
}

.section-link a {
  color: inherit;
  text-decoration: none;
}

.section-link a:hover {
  color: var(--gold-light);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  overflow: hidden;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transform: translateX(-130%);
  transition: transform 0.35s ease;
}

.btn:hover::after {
  transform: translateX(130%);
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(198, 169, 106, 0.18);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.btn-dark:hover {
  background: var(--navy-deep);
}

.btn-secondary-dark {
  color: var(--navy);
  border-color: rgba(26, 58, 42, 0.24);
}

.btn-secondary-dark:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* Header */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid rgba(216, 180, 93, 0.36);
  box-shadow: 0 12px 28px rgba(5, 14, 10, 0.16);
  backdrop-filter: blur(14px);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.72rem;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo img {
  width: auto;
  height: var(--header-logo-height);
}

.logo-wordmark {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

nav a {
  position: relative;
  text-decoration: none;
  color: rgba(18, 53, 36, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: rgba(216, 180, 93, 0.82);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

nav a:hover {
  color: var(--gold-accessible);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-cta:hover {
  background: var(--gold-light);
}

.signup-bar {
  position: relative;
  background: var(--gold);
  color: var(--navy);
}

.signup-bar::before,
.signup-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 58, 42, 0.16);
}

.signup-bar::before {
  top: 0;
}

.signup-bar::after {
  bottom: 0;
}

.signup-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.signup-copy h2 {
  margin: 0.2rem 0 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  line-height: 1.15;
}

.signup-copy h2 em {
  font-style: italic;
  color: rgba(26, 58, 42, 0.72);
}

.signup-eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 58, 42, 0.62);
}

.signup-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.signup-content-form {
  align-items: flex-end;
}

.signup-bar-form {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  flex-wrap: wrap;
}

.signup-bar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1rem;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-bar-call:hover {
  background: rgba(255, 255, 255, 0.92);
}

.signup-bar-form input {
  min-width: 0;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(26, 58, 42, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.signup-bar-form input::placeholder {
  color: rgba(26, 58, 42, 0.48);
}

.signup-bar-form input:focus {
  outline: none;
  border-color: rgba(26, 58, 42, 0.42);
  background: var(--white);
}

.page-signup-bar {
  position: relative;
  z-index: 1;
  margin-top: 5.2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.35rem 0;
}

.page-signup-bar::before,
.page-signup-bar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 58, 42, 0.16);
}

.page-signup-bar::before {
  top: 0;
}

.page-signup-bar::after {
  bottom: 0;
}

.page-signup-bar-inner {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(32rem, 1.15fr);
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.page-signup-bar-left {
  min-width: 0;
  text-align: center;
}

.page-signup-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 58, 42, 0.62);
}

.page-signup-title {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.page-signup-title em {
  font-style: italic;
  color: rgba(26, 58, 42, 0.72);
}

.page-signup-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.page-signup-form input {
  min-width: 8rem;
  flex: 1 1 8rem;
  padding: 0.74rem 0.9rem;
  border: 1px solid rgba(26, 58, 42, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.page-signup-form input::placeholder {
  color: rgba(26, 58, 42, 0.48);
}

.page-signup-form input:focus {
  outline: none;
  border-color: rgba(26, 58, 42, 0.42);
  background: var(--white);
}

.page-signup-call,
.page-signup-submit {
  min-height: 2.75rem;
  padding: 0.74rem 1rem;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-signup-call {
  background: var(--white);
  color: var(--navy);
}

.page-signup-submit {
  background: var(--navy);
  color: var(--gold);
  cursor: pointer;
}

.page-signup-call:hover,
.page-signup-submit:hover {
  transform: translateY(-1px);
}

/* Home banner */
.scenic-banner {
  position: relative;
  min-height: 43rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4.75rem;
  background: var(--navy);
}

.scenic-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.scene,
.scene-overlay {
  position: absolute;
  inset: 0;
}

.scene {
  opacity: 0;
  animation: scenic-fade 20s infinite;
}

.scene.active {
  opacity: 1;
}

.scene-mountains {
  animation-delay: 5s;
}

.scene-fields {
  animation-delay: 10s;
}

.scene-coast {
  animation-delay: 15s;
}

@keyframes scenic-fade {
  0%, 100% { opacity: 0; }
  3%, 22% { opacity: 1; }
  28%, 97% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scene,
  .banner-location-label,
  .banner-dot {
    animation: none;
  }

  .scene:not(.active),
  .banner-location-label:not(:first-child) {
    opacity: 0;
  }
}

.scene-atlanta {
  background: #14263f;
}

.scene-atlanta::before,
.scene-atlanta::after,
.scene-mountains::before,
.scene-fields::before,
.scene-coast::before {
  content: '';
  position: absolute;
}

.scene-atlanta::before {
  inset: auto 0 0;
  height: 32%;
  background: #14263f;
}

.scene-atlanta::after {
  inset: 0;
  background-image: none;
  background-size: 140px 90px;
  background-position: 10px 18px;
  opacity: 0.35;
}

.scene-mountains {
  background: #7eaac1;
}

.scene-mountains::before {
  inset: auto -10% 0;
  height: 68%;
  background: #7eaac1;
}

.scene-fields {
  background: #d0bd74;
}

.scene-fields::before {
  inset: auto 0 0;
  height: 54%;
  background: #d0bd74;
}

.scene-coast {
  background: #113850;
}

.scene-coast::before {
  inset: auto 0 0;
  height: 42%;
  background: #113850;
}

.scene-overlay {
  background: rgba(8, 18, 13, 0.35);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(18rem, 30rem);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(var(--max-width), calc(100% - 2.5rem));
  padding: 0;
  text-align: left;
}

.banner-content::before,
.banner-content::after {
  content: '';
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  border-color: rgba(198, 169, 106, 0.45);
  border-style: solid;
}

.banner-content::before {
  top: 0.85rem;
  left: 0.85rem;
  border-width: 1px 0 0 1px;
}

.banner-content::after {
  right: 0.85rem;
  bottom: 0.85rem;
  border-width: 0 1px 1px 0;
}

.banner-copy {
  min-width: 0;
}

.banner-location {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(198, 169, 106, 0.28);
  background: rgba(9, 22, 16, 0.28);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.banner-location-label {
  grid-area: 1 / 1;
  opacity: 0;
  animation: scenic-fade 20s infinite;
}

.banner-location-label:first-child {
  opacity: 1;
}

.banner-location-label:nth-child(2) {
  animation-delay: 5s;
}

.banner-location-label:nth-child(3) {
  animation-delay: 10s;
}

.banner-location-label:nth-child(4) {
  animation-delay: 15s;
}

.banner-headline {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.75rem, 6.8vw, 5.45rem);
  line-height: 1.02;
  text-shadow: 0 8px 28px rgba(7, 15, 11, 0.34);
}

.banner-sub {
  width: min(42rem, 100%);
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.banner-actions,
.hero-actions,
.centered-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.banner-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.banner-proof span {
  border: 1px solid rgba(216, 180, 93, 0.34);
  background: rgba(216, 180, 93, 0.1);
  color: var(--gold-light);
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.banner-media {
  position: relative;
  align-self: end;
}

.banner-media::before {
  content: '';
  position: absolute;
  inset: 10% -7% -7% 9%;
  border: 1px solid rgba(216, 180, 93, 0.42);
}

.banner-media::after {
  content: '';
  position: absolute;
  inset: auto -12% -18% 12%;
  height: 42%;
  background: rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.banner-media picture,
.banner-media img {
  position: relative;
  z-index: 1;
}

.banner-media img {
  width: min(30rem, 100%);
  min-height: 33rem;
  object-fit: cover;
  object-position: 58% center;
  border: 1px solid rgba(216, 180, 93, 0.38);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08) contrast(1.05) brightness(1.06);
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

.banner-dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  animation: banner-dot-pulse 20s infinite;
}

.banner-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.banner-dot:nth-child(2) {
  animation-delay: 5s;
}

.banner-dot:nth-child(3) {
  animation-delay: 10s;
}

.banner-dot:nth-child(4) {
  animation-delay: 15s;
}

@keyframes banner-dot-pulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1);
  }

  3%, 22% {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.15);
  }

  28%, 97% {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1);
  }
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-state='success'] {
  color: #e6f7dc;
}

.form-status[data-state='error'] {
  color: #ffd5c2;
}

/* Home sections */
.hero,
.about-section,
.why-section,
.testimonials-section,
.approach-section,
.comparison-section,
.practice-section,
.process-section,
.service-section,
.cta-section,
.blog-hero,
.blog-list,
.tags-list,
.article,
.page-content,
.not-found {
  position: relative;
  padding: 5.5rem 0;
}

.hero {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-content .hero,
.page-content .hero h1,
.page-content .hero h1 em,
.page-content .hero .hero-eyebrow,
.page-content .hero .hero-sub,
.page-content .hero .btn-ghost {
  color: var(--white);
}

.page-content .hero .hero-sub {
  border-left-color: rgba(255, 255, 255, 0.65);
}

.page-content .hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0.65;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero .btn-secondary-dark,
.page-content .hero .btn-secondary-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary-dark:hover,
.page-content .hero .btn-secondary-dark:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-grid,
.about-grid,
.service-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 24rem);
}

.hero-title em {
  display: block;
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  width: min(35rem, 100%);
  margin: 1.4rem 0 2rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(198, 169, 106, 0.65);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-trust {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-trust::before {
  content: '';
  position: absolute;
  inset: -1rem auto -1rem 50%;
  width: 1px;
  background: rgba(198, 169, 106, 0.12);
  transform: translateX(-50%);
  pointer-events: none;
}

.trust-card {
  position: relative;
  padding: 1.55rem 1.45rem;
  border: 1px solid var(--card-line);
  background: var(--navy);
  box-shadow: 0 18px 36px rgba(5, 14, 10, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 169, 106, 0.38);
  background: var(--navy);
}

.trust-card::after {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(198, 169, 106, 0.08);
}

.trust-card-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-card-value {
  margin: 0 0 0.25rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.trust-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.ticker-bar {
  overflow: hidden;
  background: var(--gold);
  color: var(--navy);
  white-space: nowrap;
  padding: 0.8rem 0;
}

.ticker-inner {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-sep {
  margin: 0 1.8rem;
  opacity: 0.55;
}

.section-dark {
  background: var(--navy-deep);
}

.section-light {
  background: var(--light-bg);
  color: var(--ink);
}

.section-light .section-title,
.section-light h3,
.page-content h1,
.page-content h2,
.page-content h3,
.article-content h1,
.article-body h2,
.article-body h3,
.blog-hero h1,
.not-found h1 {
  color: var(--navy);
}

.about-grid {
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
}

.about-grid-text-only {
  grid-template-columns: minmax(0, 1fr);
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid rgba(198, 169, 106, 0.34);
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -0.85rem 2.2rem 2.2rem -0.85rem;
  border: 1px solid rgba(198, 169, 106, 0.14);
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 30rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-title-role {
  margin: 0.9rem 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro {
  font-size: 1rem;
}

.about-quote {
  margin-top: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(198, 169, 106, 0.7);
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.section-intro {
  width: min(40rem, 100%);
  margin: 1rem 0 0;
  color: #4f6156;
}

.credential-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.credential-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.credential-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(198, 169, 106, 0.25);
  background: rgba(198, 169, 106, 0.12);
}

.credential-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.credential-item span:last-child {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.why-grid,
.practice-grid,
.process-steps,
.approach-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.why-item {
  position: relative;
  padding: 0;
  border: 1px solid rgba(26, 58, 42, 0.1);
  background: #fff;
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.12);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26, 58, 42, 0.16);
}

.why-stat {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 6.2rem;
  min-height: 4.3rem;
  margin: 1.35rem 1.35rem 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(26, 58, 42, 0.12);
  background: #f2f7f3;
  overflow: hidden;
}

.why-stat::after {
  content: '';
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -18%;
  height: 58%;
  background: rgba(26, 58, 42, 0.12);
  border-radius: 46% 54% 0 0 / 22px 18px 0 0;
}

.why-caption,
.why-metric {
  position: relative;
  z-index: 1;
}

.why-caption {
  margin: 0;
  color: #617468;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-metric {
  margin: 0.2rem 0 0;
  color: var(--navy);
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  line-height: 1;
}

.why-item h3,
.practice-item h3,
.process-step h3,
.service-card h3,
.footer-brand,
.footer-nav-title {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
}

.why-item h3 {
  padding: 0 1.35rem;
}

.why-item p {
  margin: 0.7rem 0 0;
  padding: 0 1.35rem 1.35rem;
  color: #4e6055;
}

.testimonials-section {
  background: var(--navy);
}

.testimonials-intro {
  color: rgba(255, 255, 255, 0.68);
}

.google-badge {
  margin-top: 2.4rem;
}

.google-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.google-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--white);
}

.google-logo-letter {
  color: #4285f4;
  font-weight: 700;
  font-size: 1.2rem;
}

.google-badge-title {
  margin: 0;
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
}

.google-badge-stars {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.google-badge-stars span {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.google-badge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.5rem 1rem;
  background: #2f72e1;
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.google-badge-btn:hover {
  background: #3367d6;
}

.review-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.review-placeholder-card {
  padding: 1.8rem;
  border: 1px solid rgba(198, 169, 106, 0.15);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 32px rgba(5, 14, 10, 0.18);
}

.review-ph-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.review-ph-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #c63428;
  color: var(--white);
  font-weight: 700;
}

.review-ph-avatar-blue {
  background: #1a5276;
}

.review-ph-avatar-green {
  background: #1e8449;
}

.review-ph-name {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.review-ph-stars {
  color: #fbbc05;
  font-size: 0.8rem;
}

.review-placeholder-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-style: italic;
}

.review-link-row {
  margin-top: 2rem;
  text-align: center;
}

.review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(242, 238, 230, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.approach-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(5, 14, 10, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.approach-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198, 169, 106, 0.12);
  pointer-events: none;
}

.approach-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 169, 106, 0.34);
}

.approach-kicker {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-card h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: var(--white);
}

.approach-card p:last-child {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.vs-table-wrap {
  position: relative;
  margin-top: 2.4rem;
  padding: 0.6rem;
  overflow-x: auto;
  border: 1px solid rgba(26, 58, 42, 0.08);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 34px rgba(26, 58, 42, 0.08);
}

.vs-table {
  width: 100%;
  min-width: 40rem;
  overflow: hidden;
  border-collapse: collapse;
  box-shadow: 0 18px 40px rgba(9, 22, 16, 0.08);
}

.vs-table th,
.vs-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.vs-table th {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vs-table th:first-child {
  background: transparent;
  color: transparent;
}

.vs-table th.highlight {
  background: var(--gold);
  color: var(--navy);
  box-shadow: inset 0 -1px 0 rgba(26, 58, 42, 0.12);
}

.vs-table td {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.vs-table tbody tr:hover td {
  background: rgba(198, 169, 106, 0.1);
}

.feature {
  font-weight: 700;
}

.check {
  color: #2e6c3b;
  font-weight: 700;
}

.x-mark {
  color: #9b3f32;
  font-weight: 700;
}

.maybe {
  color: #7d6730;
  font-weight: 700;
}

.practice-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
}

.practice-item {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 1.55rem 1.25rem 1.35rem;
  text-decoration: none;
  border-right: 1px solid rgba(198, 169, 106, 0.18);
  border-bottom: 1px solid rgba(198, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.practice-item:nth-child(5n) {
  border-right: 0;
}

.practice-item:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.practice-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198, 169, 106, 0.12);
  pointer-events: none;
}

.practice-item::after {
  content: '→';
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: rgba(198, 169, 106, 0.35);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.practice-item:hover {
  border-color: rgba(198, 169, 106, 0.28);
  background: rgba(198, 169, 106, 0.06);
}

.practice-item:hover::after {
  transform: translateX(3px);
  color: var(--gold);
}

.practice-num {
  --practice-num-width: 2.45rem;
  --practice-num-height: 1.75rem;
  --practice-num-margin-block-end: 1rem;
  --practice-num-font-size: 0.66rem;
  --practice-num-letter-spacing: 0.1em;
  --practice-num-border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--practice-num-width);
  height: var(--practice-num-height);
  margin-bottom: var(--practice-num-margin-block-end);
  padding: 0;
  border: 1px solid rgba(198, 169, 106, 0.28);
  border-radius: var(--practice-num-border-radius);
  background: rgba(198, 169, 106, 0.08);
  color: var(--gold-light);
  font-size: var(--practice-num-font-size);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: var(--practice-num-letter-spacing);
  line-height: 1;
}

.practice-item h3 {
  font-size: 1.08rem;
  line-height: 1.15;
}

.practice-item p,
.process-step p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.practice-item p {
  font-size: 0.8rem;
  line-height: 1.65;
}

.accent-top {
  border-top: 1px solid rgba(198, 169, 106, 0.12);
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
}

.service-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 24rem);
}

.service-copy {
  margin: 1rem 0 0;
  color: #495a50;
}

.service-card {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(26, 58, 42, 0.1);
  background: #fff;
  box-shadow: 0 20px 40px rgba(26, 58, 42, 0.12);
  color: var(--ink);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(198, 169, 106, 0.12);
}

.service-card::after {
  content: '';
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  width: 3rem;
  height: 3rem;
  border-right: 1px solid rgba(198, 169, 106, 0.24);
  border-bottom: 1px solid rgba(198, 169, 106, 0.24);
}

.service-card-label {
  margin: 0 0 0.4rem;
  color: var(--gold-accessible);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-stats {
  margin: 1.3rem 0 1.8rem;
  display: grid;
  gap: 1rem;
}

.service-stats div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.service-stats div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-stats dd {
  margin: 0.35rem 0 0;
  font-weight: 700;
}

.map-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.county-tag,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(26, 58, 42, 0.15);
  background: rgba(26, 58, 42, 0.06);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.county-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 169, 106, 0.32);
  background: rgba(198, 169, 106, 0.12);
}

.region-grid,
.consultation-grid,
.consultation-cards {
  display: grid;
  gap: 1.25rem;
}

.region-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
}

.region-card {
  position: relative;
  padding: 1.7rem;
  border: 1px solid rgba(26, 58, 42, 0.1);
  background: #fff;
  box-shadow: 0 12px 34px rgba(26, 58, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.region-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(198, 169, 106, 0.12);
}

.region-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(9, 22, 16, 0.12);
}

.region-area {
  margin: 0 0 0.55rem;
  color: var(--gold-accessible);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.region-card h3,
.statewide-strip h3,
.consultation-card h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: var(--navy);
}

.region-card p:last-child,
.statewide-strip p,
.consultation-card p,
.consultation-note {
  color: #4e6055;
}

.statewide-strip {
  position: relative;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem 1.6rem;
  border: 1px solid rgba(198, 169, 106, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(26, 58, 42, 0.08);
}

.statewide-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198, 169, 106, 0.12);
  pointer-events: none;
}

.consultation-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 24rem);
  align-items: start;
}

.consultation-list {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
}

.consultation-list li + li {
  margin-top: 0.5rem;
}

.consultation-cards {
  grid-template-columns: 1fr;
}

.consultation-card {
  padding: 1.5rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(5, 14, 10, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.consultation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 169, 106, 0.34);
}

.consultation-card h3 {
  color: var(--white);
}

.consultation-card p,
.consultation-note {
  color: rgba(255, 255, 255, 0.7);
}

.consultation-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  text-decoration: none;
}

.consultation-link:hover {
  color: var(--gold-light);
}

.page-content .intake-section {
  --intake-section-padding-block: clamp(3rem, 6vw, 5rem);
  --intake-section-padding-inline: max(1.25rem, calc((100vw - var(--max-width)) / 2));

  margin: 0 calc(50% - 50vw) 3rem;
  padding: var(--intake-section-padding-block) var(--intake-section-padding-inline);
  background: var(--navy-deep);
  color: var(--white);
}

.page-content.page-content-compact .intake-section {
  --intake-section-padding-block: clamp(2rem, 4vw, 3.25rem);
}

.page-content .intake-section p,
.page-content .intake-section .intake-sidebar p {
  color: rgba(255, 255, 255, 0.78);
}

.page-content .intake-section .section-label,
.page-content .intake-section .heading-anchor {
  color: var(--white);
}

.intake-copy {
  margin-bottom: 2rem;
}

.intake-intro {
  max-width: 40rem;
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18.75rem;
  gap: 3rem;
  align-items: start;
}

.intake-form-wrap {
  padding: 1.7rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(5, 14, 10, 0.18);
}

.intake-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(198, 169, 106, 0.3);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-group select option {
  background: var(--navy-deep);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(198, 169, 106, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.form-group textarea {
  min-height: 10rem;
  resize: none;
}

.form-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-disclaimer {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.form-submit-btn {
  min-height: 3rem;
  padding: 0.9rem 1.5rem;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit-btn:hover {
  background: var(--gold-light);
}

.intake-sidebar {
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(198, 169, 106, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(5, 14, 10, 0.16);
}

.sidebar-card h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: var(--white);
}

.sidebar-card p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.sidebar-phone {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.sidebar-phone:hover {
  color: var(--gold-light);
}

.cta-section {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
}

.cta-content {
  width: min(44rem, 100%);
}

.cta-section .section-title {
  color: var(--navy);
}

.cta-section p {
  color: rgba(26, 58, 42, 0.84);
  margin: 1.2rem auto 0;
  max-width: 34rem;
}

.centered-actions {
  justify-content: center;
  margin-top: 2rem;
}

/* Generic pages */
.blog-hero,
.page-content,
.article,
.tags-list,
.not-found {
  background: var(--light-bg);
  color: var(--ink);
}

.page-content {
  overflow-wrap: anywhere;
}

.blog-hero,
.page-content,
.article,
.not-found {
  padding-top: 8.5rem;
}

.page-signup-bar + .page-content.page-content-wide {
  --wide-page-content-top-padding: clamp(1.5rem, 4vw, 2.75rem);

  padding-top: var(--wide-page-content-top-padding);
}

.page-signup-bar + .page-content.page-content-compact {
  --compact-page-content-top-padding: clamp(1rem, 3vw, 2rem);

  padding-top: var(--compact-page-content-top-padding);
}

.blog-hero p,
.blog-post-excerpt,
.blog-post-meta,
.page-content p,
.page-content li,
.article-lead,
.article-meta,
.article-body p,
.article-body li,
.footer-tagline,
.footer-address,
.footer-bottom,
.footer-contact p,
.footer-nav a,
.not-found p {
  color: var(--muted);
}

.page-content .container,
.blog-hero .container,
.blog-list .container,
.article .container,
.tags-list .container,
.not-found .container {
  width: min(54rem, calc(100% - 2.5rem));
}

.page-content .container.page-content-wide-container {
  width: min(var(--max-width), calc(100% - 2.5rem));
}

.page-content h1,
.blog-hero h1,
.not-found h1,
.article-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
}

.page-content h1 {
  margin: 0 0 1.5rem;
}

.page-content h2,
.article-body h2 {
  margin: 2.3rem 0 0.8rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
}

.page-content h3,
.article-body h3 {
  margin: 1.6rem 0 0.6rem;
  font-size: 1.12rem;
}

.page-content p,
.article-body p {
  margin: 0 0 1rem;
}

.page-content ul,
.page-content ol,
.article-body ul,
.article-body ol {
  margin: 0 0 1.2rem 1.25rem;
}

.page-content li,
.article-body li {
  margin-bottom: 0.45rem;
}

.page-content a,
.article a,
.blog-hero a,
.blog-list a,
.tags-list a,
.not-found a {
  color: var(--navy);
}

.page-content a.btn-dark,
.article a.btn-dark,
.blog-hero a.btn-dark,
.blog-list a.btn-dark,
.tags-list a.btn-dark,
.not-found a.btn-dark {
  color: var(--white);
}

.page-content a:hover,
.article a:hover,
.blog-hero a:hover,
.blog-list a:hover,
.tags-list a:hover,
.not-found a:hover {
  color: #2c573f;
}

/* Practice areas hub */
.page-content .practice-hub {
  --practice-hub-padding-block-start: clamp(1.25rem, 3vw, 2.25rem);
  --practice-hub-padding-block-end: clamp(2rem, 5vw, 4rem);
  --practice-hub-padding-inline: clamp(1.35rem, 4vw, 4rem);
  --practice-hub-hero-gap: clamp(2.5rem, 6vw, 4.5rem);
  --practice-hub-grid-gap: 1rem;
  --practice-hub-card-padding: clamp(1.15rem, 2vw, 1.65rem);
  --practice-hub-card-min-width: 12.5rem;

  position: relative;
  overflow: hidden;
  margin: 0;
  padding: var(--practice-hub-padding-block-start) var(--practice-hub-padding-inline) var(--practice-hub-padding-block-end);
  border: 1px solid var(--card-line);
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(7, 20, 15, 0.18);
}

.page-content .practice-hub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 82% 18%, rgba(216, 180, 93, 0.13), transparent 70%);
  pointer-events: none;
}

.page-content .practice-hub-hero,
.page-content .practice-hub-list {
  position: relative;
  z-index: 1;
}

.page-content .practice-hub-hero {
  max-width: 45rem;
  margin: 0 0 var(--practice-hub-hero-gap);
}

.page-content .practice-hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-content .practice-hub-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.page-content .practice-hub-title {
  margin: 0;
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
}

.page-content .practice-hub-title em {
  color: var(--gold);
  font-style: italic;
}

.page-content .practice-hub-lead {
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(216, 180, 93, 0.75);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.page-content .practice-hub .section-label {
  color: var(--gold);
}

.page-content .practice-hub-section-title {
  margin: 0;
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.page-content .practice-hub-section-title .heading-anchor {
  display: none;
}

.page-content .practice-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--practice-hub-grid-gap);
  margin-top: 2.4rem;
}

.page-content .practice-hub-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.8rem;
  padding: var(--practice-hub-card-padding);
  border: 1px solid rgba(216, 180, 93, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.page-content .practice-hub-card:hover,
.page-content .practice-hub-card:focus-visible {
  border-color: rgba(216, 180, 93, 0.42);
  background: rgba(216, 180, 93, 0.08);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.page-content .practice-hub-icon {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.page-content .practice-hub-card-title {
  display: block;
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.22;
}

.page-content .practice-hub-card-copy {
  display: block;
  flex: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.65;
}

.page-content .practice-hub-card-link {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* City / locations pages */
.page-content .city-landing {
  display: grid;
  gap: 1.2rem;
  margin: 0 0 2.4rem;
}

.page-content .city-hero-card,
.page-content .page-cta-panel,
.page-content .locations-overview-card,
.page-content .locations-city-card {
  border: 1px solid rgba(198, 169, 106, 0.18);
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(9, 22, 16, 0.08);
}

.page-content .city-hero-card {
  padding: 1.8rem;
}

.page-content .city-eyebrow,
.page-content .locations-region,
.page-content .page-cta-label {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-content .city-hero-title,
.page-content .page-cta-title,
.page-content .locations-city-title {
  color: var(--white);
  font-family: 'Libre Baskerville', serif;
}

.page-content .city-hero-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  line-height: 1.08;
}

.page-content .city-hero-copy,
.page-content .page-cta-panel p,
.page-content .locations-overview-card p,
.page-content .locations-city-card p {
  color: rgba(255, 255, 255, 0.82);
}

.page-content .city-hero-card .btn-secondary-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-content .city-hero-copy {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
}

.page-content .city-hero-actions,
.page-content .page-cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.page-content .city-stat-grid,
.page-content .locations-overview-grid,
.page-content .locations-card-grid {
  display: grid;
  gap: 1rem;
}

.page-content .city-stat-grid,
.page-content .locations-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-content .city-stat-card,
.page-content .locations-overview-card,
.page-content .locations-city-card {
  padding: 1.15rem 1.2rem;
}

.page-content .city-stat-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.page-content .city-stat-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #617468;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-content .city-stat-card strong,
.page-content .locations-overview-card strong {
  display: block;
  color: var(--navy);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.28rem;
  line-height: 1.12;
}

.page-content .city-stat-card p,
.page-content .locations-overview-card p,
.page-content .locations-city-card p {
  margin: 0.55rem 0 0;
}

.page-content .page-cta-panel {
  margin: 2.4rem 0 0;
  padding: 1.5rem 1.6rem;
}

.page-content .page-cta-title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.page-content .coverage-strip {
  margin: 1.8rem 0 2.2rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(198, 169, 106, 0.2);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(9, 22, 16, 0.06);
}

.page-content .coverage-strip h2 {
  margin: 0;
}

.page-content .coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.page-content .coverage-item {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(26, 58, 42, 0.12);
  background: #f2f7f3;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.35;
}

.page-content .coverage-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.page-content .locations-overview-grid,
.page-content .locations-card-grid {
  margin: 1.8rem 0 2.2rem;
}

.page-content .locations-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-content .locations-city-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.12;
}

.page-content .locations-city-title a {
  color: var(--navy);
  text-decoration: none;
}

.page-content .locations-city-title a:hover,
.page-content .locations-card-link:hover {
  color: #2c573f;
}

.page-content .locations-card-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.page-content .about-headshot {
  float: right;
  width: min(20rem, 46%);
  margin: 0 0 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.page-content .about-headshot img {
  width: 100%;
  height: auto;
}

.blog-signup {
  padding: 7rem 0 0;
  background: var(--navy);
}

.blog-signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(9, 22, 16, 0.18);
}

.blog-signup-copy h2 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.12;
  color: var(--navy);
}

.blog-signup-copy em {
  color: rgba(26, 58, 42, 0.72);
}

.blog-signup-eyebrow,
.blog-eyebrow,
.blog-card-tag {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-signup-eyebrow {
  color: var(--navy);
}

.blog-signup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-signup-actions .btn,
.blog-sidebar .btn {
  min-width: 12rem;
  justify-content: center;
}

.blog-nav {
  margin-top: 1.25rem;
}

.blog-hero {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  background: var(--navy);
  color: var(--white);
}

.blog-hero .container,
.blog-list .container {
  width: min(70rem, calc(100% - 2.5rem));
}

.blog-hero-content {
  width: min(44rem, 100%);
}

.blog-eyebrow {
  color: rgba(198, 169, 106, 0.9);
}

.blog-hero .blog-eyebrow,
.blog-hero .blog-lead {
  color: var(--white);
}

.blog-list .blog-eyebrow,
.blog-list .blog-lead {
  color: var(--muted);
}

.blog-hero h1 {
  margin: 0;
  color: var(--white);
}

.blog-hero h1 em {
  color: rgba(198, 169, 106, 0.94);
  font-style: italic;
}

.blog-lead {
  width: min(40rem, 100%);
  margin-top: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}

.blog-nav a {
  color: var(--gold);
}

.blog-list {
  padding: 0 0 5rem;
  background: var(--light-bg);
  color: var(--ink);
}

.tags-list .container {
  width: min(58rem, calc(100% - 2.5rem));
}

.blog-list-header {
  margin-bottom: 2rem;
}

.blog-index-title {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  color: var(--navy);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem;
  border: 1px solid rgba(198, 169, 106, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(9, 22, 16, 0.08);
}

.blog-card-tag {
  color: rgba(26, 58, 42, 0.64);
}

.blog-card h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.blog-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.blog-card h3 a:hover,
.blog-read:hover {
  color: #2c573f;
}

.blog-card-date {
  margin: 0.75rem 0 0;
  color: #66786d;
  font-size: 0.86rem;
  font-weight: 700;
}

.blog-post-excerpt {
  margin: 0.9rem 0 0;
  color: #53655a;
}

.blog-read {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.blog-post-card {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.blog-post-card:last-child {
  border-bottom: 0;
}

.blog-post-content h2 {
  margin: 0 0 0.35rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
}

.blog-post-content h2 a {
  text-decoration: none;
  color: var(--navy);
}

.blog-post-content h2 a:hover {
  color: #2c573f;
}

.blog-post-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  margin-bottom: 0.55rem;
}

.blog-post-tags,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.blog-sidebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.6rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(198, 169, 106, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 34px rgba(9, 22, 16, 0.08);
}

.blog-sidebar h3 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: var(--navy);
}

.blog-sidebar p {
  margin: 0.45rem 0 0;
  color: #54665b;
}

.tag:hover,
.tag-card:hover {
  border-color: rgba(26, 58, 42, 0.28);
}

.blog-filter,
.blog-posts {
  display: block;
}

.tag-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag-filter-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tag-filter-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
}

.tag-filter-radio:checked + .tag-filter-label {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.tag-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--white);
}

.tag-count {
  color: var(--muted);
}

.article-grid {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr);
  gap: 3rem;
}

.article-meta {
  font-size: 0.9rem;
}

.article-meta > * {
  margin-bottom: 0.85rem;
}

.article-back {
  text-decoration: none;
}

.article-lead {
  font-size: 1.08rem;
  margin: 1rem 0 2rem;
}

.article-cta {
  margin-top: 2.6rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-cta h3 {
  margin-top: 0;
  font-family: 'Libre Baskerville', serif;
}

.heading-anchor {
  margin-left: 0.3rem;
  opacity: 0;
  text-decoration: none;
}

h2:hover .heading-anchor,
 h3:hover .heading-anchor,
 h4:hover .heading-anchor {
  opacity: 0.45;
}

/* Footer */
footer {
  padding: 2.8rem 0 1.4rem;
  border-top: 1px solid rgba(198, 169, 106, 0.12);
  background: #0f2219;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo span {
  color: rgba(242, 238, 230, 0.4);
}

.footer-copy {
  margin: 0;
  max-width: 30rem;
  color: rgba(242, 238, 230, 0.72);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(242, 238, 230, 0.78);
  font-size: 0.7rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(198, 169, 106, 0.08);
  font-size: 0.7rem;
  color: rgba(242, 238, 230, 0.72);
}

/* Utility */
.not-found {
  text-align: center;
}

.not-found a {
  font-weight: 700;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-inner {
    animation: none;
  }

  .btn::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .banner-content,
  .hero-grid,
  .about-grid,
  .service-grid,
  .article-grid,
  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .banner-media {
    width: min(28rem, 100%);
    margin: 0 auto;
  }

  .banner-media img {
    min-height: 26rem;
  }

  .approach-grid,
  .practice-grid,
  .why-grid,
  .region-grid,
  .review-placeholder-grid,
  .blog-grid,
  .page-content .locations-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-content .practice-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice-item {
    border-right: 1px solid rgba(198, 169, 106, 0.18);
    border-bottom: 1px solid rgba(198, 169, 106, 0.18);
  }

  .practice-item:nth-child(5n) {
    border-right: 1px solid rgba(198, 169, 106, 0.18);
  }

  .practice-item:nth-child(2n) {
    border-right: 0;
  }

  .practice-item:nth-last-child(-n + 5) {
    border-bottom: 1px solid rgba(198, 169, 106, 0.18);
  }

  .practice-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signup-content,
  .statewide-strip {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    text-align: left;
  }

  .signup-bar-form,
  .intake-grid,
  .form-row,
  .page-content .city-stat-grid,
  .page-content .locations-overview-grid {
    grid-template-columns: 1fr;
  }

  .blog-signup-inner,
  .blog-sidebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .signup-content,
  .statewide-strip {
    display: grid;
  }

  .page-signup-bar {
    margin-top: 12.5rem;
  }

  .page-signup-bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .page-signup-bar-left,
  .page-signup-form {
    width: min(100%, 46rem);
  }

  .page-content .about-headshot {
    float: none;
    width: min(18rem, 100%);
    margin: 0 auto 1.5rem;
  }
}

@media (max-width: 760px) {
  header .container {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
  }

  nav {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.78rem;
  }

  .scenic-banner {
    min-height: 0;
    padding-top: 8.5rem;
  }

  .banner-content::before,
  .banner-content::after {
    display: none;
  }

  .banner-media img {
    min-height: 22rem;
  }

  .banner-sub,
  .hero-sub {
    font-size: 0.96rem;
  }

  .banner-actions,
  .hero-actions,
  .centered-actions,
  .signup-actions,
  .blog-signup-actions,
  .signup-bar-form,
  .page-signup-form {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-actions,
  .approach-grid,
  .practice-grid,
  .process-steps,
  .why-grid,
  .region-grid,
  .review-placeholder-grid,
  .consultation-cards,
  .blog-grid,
  .page-content .locations-card-grid {
    grid-template-columns: 1fr;
  }

  .page-content .practice-hub-grid {
    grid-template-columns: 1fr;
  }

  .practice-item,
  .practice-item:nth-child(5n),
  .practice-item:nth-child(2n) {
    border-right: 0;
  }

  .practice-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(198, 169, 106, 0.18);
  }

  .practice-item:last-child {
    border-bottom: 0;
  }

  .signup-bar-form input,
  .signup-bar-call,
  .signup-bar-form .btn,
  .page-signup-form input,
  .page-signup-call,
  .page-signup-submit,
  .form-submit-btn {
    width: 100%;
  }

  .form-footer {
    align-items: stretch;
  }

  .google-badge-inner {
    display: flex;
    width: 100%;
  }

  .hero,
  .about-section,
  .why-section,
  .testimonials-section,
  .approach-section,
  .comparison-section,
  .practice-section,
  .process-section,
  .service-section,
  .cta-section,
  .blog-hero,
  .blog-list,
  .tags-list,
  .article,
  .page-content,
  .not-found {
    padding: 4.5rem 0;
  }

  .blog-hero,
  .page-content,
  .article,
  .not-found {
    padding-top: 8rem;
  }

  .page-signup-bar + .page-content {
    padding-top: 4.5rem;
  }

  .page-content .container {
    width: calc(100% - 3.5rem);
  }

  .page-content .city-hero-card,
  .page-content .page-cta-panel,
  .page-content .locations-overview-card,
  .page-content .locations-city-card {
    padding: 1.2rem;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  header {
    position: sticky;
  }

  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--mobile-header-gap);
    padding: var(--mobile-header-padding-block);
  }

  .logo {
    font-size: var(--mobile-logo-font-size);
  }

  .logo img {
    height: var(--mobile-logo-height);
  }

  .scenic-banner {
    padding-top: var(--mobile-banner-top-padding);
  }

  .banner-headline {
    font-size: var(--mobile-banner-headline-size);
  }

  .blog-hero,
  .page-content,
  .article,
  .not-found {
    padding-top: var(--mobile-page-top-padding);
  }

  nav {
    display: grid;
    grid-template-columns: repeat(var(--mobile-nav-columns), minmax(0, 1fr));
    gap: var(--mobile-nav-gap);
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    font-size: var(--mobile-nav-font-size);
    letter-spacing: var(--mobile-nav-letter-spacing);
  }

  .nav-cta {
    width: 100%;
    justify-self: stretch;
    justify-content: center;
    padding: var(--mobile-nav-cta-padding);
  }
}

@media (max-width: 360px) {
  .banner-content {
    padding: 1.8rem 1rem 1.6rem;
  }

  .banner-headline {
    font-size: var(--mobile-banner-headline-size);
    line-height: 1.04;
  }
}
