:root {
  --night: #102633;
  --ink: #17313d;
  --paper: #f6f1e8;
  --white: #fffdf8;
  --coral: #ef6b45;
  --sun: #f6ba4b;
  --aqua: #8ac7c2;
  --line: rgba(16, 38, 51, 0.18);
  --muted: #56707a;
  --shadow: 0 20px 55px rgba(16, 38, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--night);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--night);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border: 3px solid var(--night);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  text-transform: none;
}

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

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--coral);
}

.site-nav .nav-cta {
  padding: 11px 16px;
  border: 2px solid var(--night);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--night);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--night);
}

.menu-button {
  display: none;
  padding: 10px 12px;
  border: 2px solid var(--night);
  border-radius: 10px;
  color: var(--night);
  background: transparent;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 675px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  color: var(--white);
  background: var(--night);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(690px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 80px 32px 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display-type {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

h1 em {
  color: var(--coral);
  font-weight: 500;
}

.hero-heading {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero-heading em {
  color: var(--coral);
  font-weight: 500;
}

.city-gallery {
  padding: clamp(48px, 7vw, 88px) 20px clamp(60px, 8vw, 100px);
  color: var(--white);
  background: var(--night);
}

.city-gallery-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.city-gallery-intro {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.city-gallery-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.city-gallery-intro > p {
  margin: 0 0 5px;
  color: #dbe7e7;
  font-size: 1.05rem;
}

.city-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.city-gallery-card {
  min-width: 0;
}

.city-gallery-link {
  display: block;
  color: var(--white);
  text-decoration: none;
}

.city-gallery-frame {
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--white);
  box-shadow: 7px 7px 0 var(--coral);
  background: #081921;
}

.city-gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.city-gallery-link:hover .city-gallery-frame img,
.city-gallery-link:focus-visible .city-gallery-frame img {
  transform: scale(1.025);
}

.city-gallery-number {
  display: block;
  margin-top: 22px;
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.city-gallery-card h2 {
  margin: 7px 0 6px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.city-gallery-prompt {
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.photo-credit {
  margin: 16px 0 0;
  color: #a9bec3;
  font-size: 0.68rem;
  line-height: 1.5;
}

.photo-credit a {
  color: #dbe7e7;
  text-underline-offset: 3px;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: #dbe7e7;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--night);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--night);
  color: var(--night);
  background: var(--sun);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero .button {
  border-color: var(--white);
  box-shadow: 4px 4px 0 var(--white);
}

.button:hover,
.button:focus-visible {
  box-shadow: 1px 1px 0 currentColor;
  transform: translate(3px, 3px);
}

.button.secondary {
  color: var(--white);
  background: transparent;
}

.hero-art {
  position: relative;
  min-height: 500px;
  background: var(--aqua);
}

.sun-disc {
  position: absolute;
  top: 10%;
  right: 14%;
  width: min(22vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 18px rgba(246, 186, 75, 0.18);
}

.hill {
  position: absolute;
  right: -12%;
  bottom: 0;
  width: 120%;
  height: 58%;
  background: var(--coral);
  clip-path: polygon(0 52%, 20% 35%, 42% 43%, 62% 16%, 78% 27%, 100% 3%, 100% 100%, 0 100%);
}

.skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 48%;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.building {
  position: relative;
  width: 9%;
  height: var(--height);
  border: 3px solid var(--night);
  border-bottom: 0;
  background: var(--paper);
}

.building::after {
  position: absolute;
  inset: 14px 8px auto;
  height: calc(100% - 24px);
  content: "";
  background: repeating-linear-gradient(to bottom, var(--night) 0 3px, transparent 3px 15px);
  opacity: 0.45;
}

.building.tower::before {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 3px;
  height: 42px;
  content: "";
  background: var(--night);
}

.section {
  padding: clamp(76px, 10vw, 128px) 20px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 620px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coverage-card {
  min-height: 360px;
  padding: 28px;
  border: 2px solid var(--night);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--night);
}

.coverage-card:nth-child(2) {
  background: var(--sun);
}

.coverage-card:nth-child(3) {
  color: var(--white);
  background: var(--coral);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-style: italic;
}

.coverage-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.coverage-card p {
  margin-bottom: 22px;
  color: inherit;
  opacity: 0.82;
}

.text-link {
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.la-notes {
  color: var(--white);
  background: var(--coral);
}

.la-notes .section-heading p {
  color: #ffe9df;
}

.feature-list {
  border-top: 2px solid rgba(255, 255, 255, 0.55);
}

.feature-row {
  display: grid;
  padding: 36px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  grid-template-columns: 64px minmax(300px, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.feature-row .index {
  color: var(--sun);
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-style: italic;
}

.feature-photo {
  min-width: 0;
  margin: 0;
}

.feature-photo-frame {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--white);
  box-shadow: 7px 7px 0 var(--night);
  background: var(--night);
}

.feature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-photo figcaption {
  margin-top: 13px;
  color: #ffe9df;
  font-size: 0.7rem;
  line-height: 1.5;
}

.feature-photo figcaption a {
  color: var(--white);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.feature-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.feature-copy p {
  margin: 18px 0 0;
  color: #ffe9df;
}

.quote-band {
  background: var(--aqua);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.quote-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.quote-intro p {
  color: #2e5861;
  font-size: 1.04rem;
}

.quote-form {
  padding: clamp(26px, 5vw, 48px);
  border: 2px solid var(--night);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--night);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label,
legend {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 12px;
  border: 2px solid var(--night);
  border-radius: 0;
  color: var(--night);
  background: white;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.captcha-field {
  padding-top: 4px;
}

.captcha-field .cf-turnstile {
  min-height: 65px;
}

.captcha-field .form-note {
  margin: 2px 0 0;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--night);
  font-weight: 800;
}

.page-hero {
  padding: clamp(80px, 11vw, 140px) 20px;
  color: var(--white);
  background: var(--night);
}

.page-hero .inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.page-hero p:last-child {
  max-width: 700px;
  color: #dbe7e7;
  font-size: 1.15rem;
}

.city-detail {
  padding: clamp(60px, 9vw, 112px) 20px;
}

.city-detail-layout {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.city-detail-figure {
  margin: 0;
}

.city-detail-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 2px solid var(--night);
  box-shadow: 9px 9px 0 var(--coral);
  background: var(--night);
}

.city-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-detail-figure figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.city-detail-figure figcaption a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.city-detail-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.city-detail-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.city-detail-copy .official-link {
  margin-top: 18px;
}

.coverage-connection {
  margin: 32px 0 10px;
  padding: 24px;
  border: 2px solid var(--night);
  box-shadow: 6px 6px 0 var(--sun);
  background: #eef7f6;
}

.coverage-connection h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.coverage-connection p:last-child {
  margin-bottom: 0;
}

.city-detail-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem !important;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.editorial-block {
  padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--night);
  background: var(--white);
}

.editorial-block.wide {
  grid-column: 1 / -1;
}

.editorial-block.sun {
  background: var(--sun);
}

.editorial-block.coral {
  color: white;
  background: var(--coral);
}

.editorial-block h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid currentColor;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "✓";
  font-weight: 900;
}

.site-footer {
  padding: 64px 20px 28px;
  color: #dbe7e7;
  background: var(--night);
}

.footer-inner {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.footer-brand {
  max-width: 580px;
}

.footer-brand h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  align-content: start;
}

.footer-nav a {
  color: white;
  font-weight: 750;
  text-underline-offset: 4px;
}

.fine-print {
  width: min(1180px, 100%);
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #9fb4ba;
  font-size: 0.74rem;
}

.agency-license {
  width: min(1180px, 100%);
  margin: 48px auto 0;
  color: var(--white);
  font-weight: 800;
}

.agency-license + .fine-print {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    display: none;
    width: min(330px, calc(100vw - 40px));
    padding: 22px;
    border: 2px solid var(--night);
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    box-shadow: 7px 7px 0 var(--night);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
  }

  .hero-art {
    min-height: 420px;
  }

  .sun-disc {
    width: 240px;
  }

  .section-heading,
  .quote-layout,
  .footer-inner,
  .city-gallery-intro,
  .city-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .coverage-card {
    min-height: 0;
  }

  .feature-row {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .feature-row .index {
    grid-row: 1 / span 2;
  }

  .feature-photo,
  .feature-copy {
    grid-column: 2;
  }

  .card-number {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .brand span:last-child {
    max-width: 150px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-heading {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .city-gallery-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .form-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-block.wide {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
