/*
Theme Name: John Sherman Landing
Theme URI:
Author: John P. Sherman Law Office
Description: Google Ads landing page for John P. Sherman, Florida Divorce & Family Law Attorney
Version: 1.0
License: Private
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --radius: 0.625rem;

  /* Colors — warm light theme */
  --background:         oklch(0.96 0.005 60);
  --foreground:         oklch(0.18 0.01 60);
  --card:               #ffffff;
  --card-foreground:    oklch(0.18 0.01 60);
  --primary:            #153959;
  --primary-foreground: oklch(0.97 0.01 85);
  --secondary:          oklch(0.94 0.008 60);
  --muted-foreground:   oklch(0.5 0.015 60);
  --accent:             oklch(0.60 0.14 78);
  --accent-foreground:  oklch(0.16 0.01 60);
  --cream:              #FDF1C3;
  --cream-foreground:   #153959;
  --border:             oklch(0.88 0.008 60);
  --input-bg:           oklch(0.93 0.005 60);

  /* Hex fallbacks for older browsers */
  --accent-hex:         #b08a3e;
  --secondary-hex:      #ede8e1;
  --muted-fg-hex:       #7a7268;

  --font-serif: "Libre Baskerville", ui-serif, Georgia, serif;
  --font-sans:  "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

img, svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.jps-announcement {
  background-color: #B59D7B;
  color: var(--foreground);
}
.jps-announcement__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}
@media (min-width: 640px) {
  .jps-announcement__inner { font-size: 0.875rem; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.jps-nav {
  background-color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.jps-nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}
.jps-nav__logo img {
  height: 2.5rem;
  width: auto;
}
.jps-nav__phone {
  display: inline-block;
  background-color: var(--cream);
  color: var(--cream-foreground);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: filter 0.15s;
}
@media (min-width: 640px) {
  .jps-nav__phone {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.jps-nav__phone:hover { filter: brightness(0.95); }

/* ============================================================
   HERO
   ============================================================ */
.jps-hero {
  position: relative;
  overflow: hidden;
}
.jps-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jps-hero__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.jps-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 1rem;
}
@media (min-width: 1024px) {
  .jps-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: 6rem 1rem;
  }
}

.jps-hero__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: calc(var(--radius) + 8px);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  color: var(--card-foreground);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) {
  .jps-hero__card { padding: 2rem; }
}

.jps-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  margin-bottom: 1.25rem;
  width: fit-content;
}
.jps-badge-pill__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.jps-hero__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
@media (min-width: 640px) { .jps-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .jps-hero__title { font-size: 3.75rem; } }

.jps-hero__sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.8);
}

.jps-hero__bullets {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.jps-hero__form-col {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .jps-hero__form-col {
    max-width: none;
    padding: 0.5rem;
  }
}

/* Bullet item */
.jps-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}
.jps-bullet--light {
  color: rgba(255, 255, 255, 0.9);
}
.jps-bullet svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--accent);
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.jps-form-card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
@media (min-width: 640px) { .jps-form-card { padding: 2rem; } }

.jps-form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--foreground);
}
.jps-form__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

.jps-form__fields {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jps-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .jps-form__row { grid-template-columns: 1fr 1fr; }
}

.jps-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.jps-field input,
.jps-field select,
.jps-field textarea {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--input-bg);
  background-color: var(--background);
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.jps-field select {
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.jps-field input:focus,
.jps-field select:focus,
.jps-field textarea:focus {
  border-color: var(--accent-hex);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 138, 62, 0.3);
}
.jps-field input::placeholder,
.jps-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.jps-form__submit {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: var(--radius);
  background-color: #252B34;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: filter 0.15s;
}
.jps-form__submit:hover  { filter: brightness(1.1); }
.jps-form__submit:active { filter: brightness(0.95); }

.jps-form__disclaimer {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

/* Thank you state */
.jps-thankyou {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.jps-thankyou__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(176, 138, 62, 0.2);
  color: var(--accent-hex);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.jps-thankyou__icon svg { width: 1.5rem; height: 1.5rem; }
.jps-thankyou__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}
.jps-thankyou__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.jps-stats {
  background-color: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jps-stats__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .jps-stats__inner { grid-template-columns: repeat(3, 1fr); }
}
.jps-stat { text-align: center; }
.jps-stat__value {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--cream);
}
.jps-stat__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.jps-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-hex);
  color: var(--accent);
}
.jps-section-title {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
@media (min-width: 640px) { .jps-section-title { font-size: 2.25rem; } }
.jps-section-header {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.jps-why {
  background-color: #ffffff;
  padding: 5rem 0;
}
.jps-why__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.jps-why__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .jps-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .jps-why__grid { grid-template-columns: repeat(4, 1fr); }
}

.jps-why-card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.jps-why-card:hover {
  border-color: rgba(176, 138, 62, 0.6);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
}

.jps-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: rgba(176, 138, 62, 0.15);
  color: var(--accent-hex);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.jps-card-icon svg { width: 1.25rem; height: 1.25rem; }

.jps-card-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--foreground);
}
.jps-card-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.jps-testimonials {
  background-color: #ede8e1;
  background-color: color-mix(in srgb, var(--secondary-hex) 50%, #f6f3ee);
  padding: 5rem 0;
}
.jps-testimonials__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.jps-stars-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg-hex);
}
.jps-stars-row .stars { color: var(--accent-hex); color: var(--accent); }
.jps-stars-row .rating { font-weight: 600; color: var(--foreground); }

.jps-reviews-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
  align-items: start;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .jps-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.jps-review-card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.jps-review-card__stars {
  color: var(--accent-hex);
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.jps-review-card__quote {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(0, 0, 0, 0.9);
}
.jps-review-card__footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.jps-review-card__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: rgba(176, 138, 62, 0.2);
  color: var(--accent-hex);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jps-review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.jps-review-card__date {
  font-size: 0.75rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.jps-practice {
  background-color: #ffffff;
  padding: 5rem 0;
}
.jps-practice__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.jps-practice__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .jps-practice__grid { grid-template-columns: repeat(2, 1fr); }
}
.jps-practice-card {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.jps-practice-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background-color: rgba(176, 138, 62, 0.15);
  color: var(--accent-hex);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.jps-practice-card__icon svg { width: 1.5rem; height: 1.5rem; }
.jps-practice-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}
.jps-practice-card__blurb {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}
.jps-practice-card__list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  list-style: none;
}
@media (min-width: 640px) {
  .jps-practice-card__list { grid-template-columns: repeat(2, 1fr); }
}
.jps-practice-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.9);
}
.jps-practice-card__list li svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--accent-hex);
  color: var(--accent);
}

/* ============================================================
   DIRECT ACCESS
   ============================================================ */
.jps-direct {
  background-color: #ebe5dd;
  background-color: color-mix(in srgb, var(--secondary-hex) 40%, #f6f3ee);
  padding: 5rem 0;
}
.jps-direct__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .jps-direct__inner { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.jps-attorney-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: linear-gradient(to bottom right, var(--secondary-hex), var(--background));
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
@media (min-width: 1024px) {
  .jps-attorney-photo { position: sticky; top: 6rem; }
}
.jps-attorney-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.jps-direct__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-hex);
  color: var(--accent);
}
.jps-direct__title {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
@media (min-width: 640px) { .jps-direct__title { font-size: 2.25rem; } }
.jps-direct__intro {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

.jps-direct__bullets {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.jps-direct-bullet { display: flex; gap: 1rem; }
.jps-check-circle {
  margin-top: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--accent-hex);
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-foreground);
}
.jps-check-circle svg { width: 0.875rem; height: 0.875rem; }
.jps-direct-bullet__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--foreground);
}
.jps-direct-bullet__body {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

.jps-call-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background-color: #252B34;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-foreground);
  border: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: filter 0.15s;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 640px) { .jps-call-btn { width: auto; } }
.jps-call-btn:hover { filter: brightness(1.1); }
.jps-call-btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.jps-faq {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}
.jps-faq__header { text-align: center; }
.jps-faq__sub {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}
.jps-faq__list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

details.jps-faq-item {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.25rem;
  transition: border-color 0.15s;
}
details.jps-faq-item[open] {
  border-color: rgba(176, 138, 62, 0.5);
}
details.jps-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
}
details.jps-faq-item summary::-webkit-details-marker { display: none; }

.jps-faq-toggle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background-color: rgba(176, 138, 62, 0.15);
  color: var(--accent-hex);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.jps-faq-toggle svg { width: 1rem; height: 1rem; }
details[open] .jps-faq-toggle { transform: rotate(45deg); }

.jps-faq-answer {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}

/* ============================================================
   AREAS SERVED
   ============================================================ */
.jps-areas {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary);
  padding: 4rem 0;
}
.jps-areas__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.jps-areas__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--cream);
}
.jps-areas__title {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--primary-foreground);
}
@media (min-width: 640px) { .jps-areas__title { font-size: 2.25rem; } }

.jps-areas__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .jps-areas__grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
}
.jps-county-label {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}
.jps-cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.jps-city {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.jps-city__dot { color: var(--cream); }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.jps-closing {
  background-color: var(--card);
  padding: 5rem 0;
  color: var(--foreground);
}
.jps-closing__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.jps-closing__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .jps-closing__title { font-size: 3rem; } }
.jps-closing__sub {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-fg-hex);
  color: var(--muted-foreground);
}
.jps-closing__form { margin-top: 2.5rem; text-align: left; }

/* ============================================================
   FOOTER
   ============================================================ */
.jps-footer {
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.7);
}
.jps-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .jps-footer__inner { flex-direction: row; text-align: left; }
}
.jps-footer__logo img { height: 2rem; width: auto; }
.jps-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.jps-footer__phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  transition: filter 0.15s;
}
.jps-footer__phone:hover { filter: brightness(1.1); }
.jps-footer__address {
  max-width: 80rem;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 640px) { .jps-footer__address { text-align: left; } }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.jps-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.jps-cookie-banner.is-visible { transform: translateY(0); }
.jps-cookie-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
@media (min-width: 768px) {
  .jps-cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
  }
}
.jps-cookie-banner__text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.jps-cookie-banner__text a {
  color: var(--cream);
  text-decoration: underline;
  white-space: nowrap;
}
.jps-cookie-banner__actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}
.jps-cookie-btn {
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: filter 0.15s, background-color 0.15s, color 0.15s;
}
.jps-cookie-btn--solid {
  background-color: var(--cream);
  color: var(--cream-foreground);
}
.jps-cookie-btn--solid:hover { filter: brightness(0.95); }
.jps-cookie-btn--ghost {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}
.jps-cookie-btn--ghost:hover { background-color: rgba(255, 255, 255, 0.08); }

/* ============================================================
   STANDALONE PAGES (Privacy Policy, Terms, etc.)
   ============================================================ */
.jps-page {
  background-color: var(--background);
  padding: 3.5rem 1rem 5rem;
}
.jps-page__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.jps-page__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.jps-prose {
  color: var(--foreground);
  font-size: 0.95rem;
  line-height: 1.7;
}
.jps-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.jps-prose h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.jps-prose p { margin-bottom: 1rem; }
.jps-prose ul,
.jps-prose ol {
  margin: 0 0 1rem 1.25rem;
  padding-left: 0.75rem;
}
.jps-prose li { margin-bottom: 0.4rem; }
.jps-prose a {
  color: var(--accent);
  text-decoration: underline;
}
.jps-prose strong { font-weight: 600; }
.jps-page__back {
  margin-top: 2.5rem;
  font-size: 0.875rem;
}
.jps-page__back a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.jps-page__back a:hover { text-decoration: underline; }
