/* Chad Nixon Marketing Site
   Clean modern + warm local: navy #10233d, gold #c9a227, generous space */

:root {
  --navy: #10233d;
  --navy-dark: #0a1829;
  --navy-light: #1a3a5c;
  --slate: #334155;
  --slate-light: #64748b;
  --slate-muted: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-soft: #f8fafc;
  --border: #e2e8f0;
  --accent: #c9a227;
  --accent-soft: #f7f1de;
  --white: #ffffff;
  --max-width: 1080px;
  --max-narrow: 720px;
  --max-wide: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(16, 35, 61, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 35, 61, 0.12);
  --font: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --line: 1.65;
  --touch: 48px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  line-height: var(--line);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-light);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.35rem;
}

.container--narrow {
  max-width: var(--max-narrow);
}

.container--wide {
  max-width: var(--max-wide);
}

main {
  flex: 1;
}

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.9rem 1.35rem;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--white);
  opacity: 0.92;
}

.logo span {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.78;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  min-height: var(--touch);
  min-width: 4.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 600;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 1.15rem;
  align-items: center;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav a.nav-cta {
  background: var(--accent);
  color: var(--navy);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a.nav-cta:hover {
  background: #d4b02e;
  color: var(--navy);
  text-decoration: none;
}

/* Photo hero */
.hero,
.hero--photo {
  position: relative;
  color: var(--white);
  padding: 0;
  min-height: clamp(420px, 62vh, 560px);
  display: flex;
  align-items: flex-end;
  background-color: var(--navy);
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.88) 0%, rgba(16, 35, 61, 0.72) 48%, rgba(16, 35, 61, 0.45) 100%),
    url("../images/team-hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
}

.hero--plain {
  min-height: 0;
  align-items: stretch;
  background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3.25rem 0 2.75rem;
}

.hero__inner {
  width: 100%;
  padding: 3.5rem 0 3rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
  max-width: 18ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

.hero .lead {
  font-size: 1.12rem;
  opacity: 0.95;
  max-width: 36rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.94);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Mobile primary CTA row */
.mobile-cta-bar {
  display: none;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.mobile-cta-bar .btn {
  flex: 1 1 0;
  min-height: var(--touch);
  padding: 0.65rem 0.4rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: var(--touch);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #d4b02e;
  color: var(--navy);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

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

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

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

.btn--solid:hover {
  background: var(--navy-light);
  color: var(--white);
}

.btn--ghost {
  background: var(--accent-soft);
  color: var(--navy);
  border-color: transparent;
}

.btn--ghost:hover {
  background: #efe4c0;
  color: var(--navy);
}

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

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

.section--soft {
  background: var(--bg-soft);
}

.section h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin-bottom: 1.1rem;
  line-height: 1.28;
  font-weight: 700;
}

.section h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 700;
}

.section p {
  margin-bottom: 1rem;
}

.section ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
}

.section li {
  margin-bottom: 0.45rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--slate-light);
  margin-bottom: 0.5rem;
}

.placeholder-note {
  background: #fef9c3;
  border-left: 4px solid var(--accent);
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--slate);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.placeholder-note strong {
  color: var(--navy);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

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

.card--quote {
  border-top: 3px solid var(--accent);
}

.card--quote p {
  font-size: 1.02rem;
  color: var(--slate);
}

/* About split with photo */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}

.about-photo--lg {
  max-width: 280px;
}

/* Team faces strip */
.face-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.face-strip a {
  text-decoration: none;
  color: var(--navy);
  text-align: center;
  width: 96px;
}

.face-strip img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
  margin: 0 auto 0.4rem;
  background: var(--bg-alt);
}

.face-strip span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Heroes callout */
.heroes-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.heroes-callout__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.heroes-callout__body {
  padding: 2rem 2rem 2rem 0.5rem;
}

.heroes-callout__body h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.heroes-callout__body p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.heroes-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.heroes-chip:hover {
  background: #efe4c0;
  color: var(--navy);
  text-decoration: none;
}

/* Trust / rating */
.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  background: var(--accent-soft);
  color: var(--navy);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rating-badge strong {
  font-size: 1.25rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--slate-light);
}

/* Areas chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
  list-style: none;
  padding: 0;
}

.area-chips li {
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin: 0;
  border: 1px solid var(--border);
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-band a:not(.btn) {
  color: #f5e6a8;
}

.cta-band .hero-ctas {
  justify-content: center;
}

/* Forms */
.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate);
  background: var(--white);
  min-height: var(--touch);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--slate-light);
  margin-top: 0.75rem;
}

.contact-form {
  max-width: 560px;
}

/* FAQ */
.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--white);
  overflow: hidden;
}

.faq-list summary {
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  min-height: var(--touch);
  display: flex;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.65rem;
  font-size: 1.15rem;
}

.faq-list details[open] summary::before {
  content: "–";
}

.faq-list details p {
  padding: 0 1.2rem 1.15rem;
  margin: 0;
}

/* In short */
.in-short {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 1.35rem 1.5rem;
  margin: 0 0 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.in-short h2 {
  font-size: 1.1rem;
  font-family: var(--font);
  margin-bottom: 0.5rem;
}

/* Page header */
.page-header {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  margin-bottom: 0.55rem;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 0.55rem;
}

.page-header .breadcrumb a {
  color: var(--slate-light);
}

.page-header p {
  max-width: 40rem;
  color: var(--slate-light);
}

/* Team cards */
.team-card-link {
  color: inherit;
  text-decoration: none;
}

.team-card-link:hover,
.team-card-link:focus-visible {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.team-card-link:first-child:hover,
.team-card-link:first-child:focus-visible {
  text-decoration: none;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.team-card .team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  background: var(--bg-alt);
}

.team-title {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.team-license {
  font-size: 0.88rem;
  color: var(--slate-light);
}

.team-card h3 {
  margin-top: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.75rem;
  margin-top: auto;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.25rem;
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.35rem;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  margin-top: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

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

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.35rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.footer-bottom p {
  margin-bottom: 0.35rem;
}

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

.mt-0 {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .heroes-callout {
    grid-template-columns: 1fr;
  }

  .heroes-callout__body {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .heroes-callout__media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

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

  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 0.85rem;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    width: 100%;
    min-height: var(--touch);
  }

  .site-nav a.nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .hero {
    min-height: clamp(380px, 70vh, 520px);
    align-items: flex-end;
    background-position: center 25%;
  }

  .hero__inner {
    padding: 2.5rem 0 2.25rem;
  }

  .hero h1 {
    max-width: none;
  }

  .section {
    padding: 2.75rem 0;
  }

  .face-strip {
    justify-content: center;
  }

  .team-card .team-photo {
    height: 240px;
  }
}

@media (max-width: 420px) {
  .mobile-cta-bar .btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.25rem;
  }
}


/* Linked area chips */
.area-chips a {
  color: inherit;
  text-decoration: none;
}
.area-chips a:hover,
.area-chips a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.area-chips li:has(a):hover {
  border-color: var(--navy);
}

/* Individual team profiles */
.agent-profile {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.agent-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}

.agent-details h2 {
  margin-top: 0;
}

.agent-details .team-title {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.agent-contact {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.agent-contact p {
  margin-bottom: 0.45rem;
}

.agent-profile + .btn-row {
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .agent-profile {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 680px) {
  .agent-profile {
    grid-template-columns: 1fr;
  }

  .agent-photo {
    max-width: 420px;
  }
}



/* Atmospheric NoCo photo headers (ChatGPT stock) */
.page-header--photo {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/noco-plains-sunrise-01.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-header--photo .breadcrumb a { color: #f5e6b8; }
.page-header--photo h1,
.page-header--photo p { color: #fff; }

/* Header photo variations use the same readable navy overlay. */
.page-header--photo-prairie {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-prairie-sunset.jpg");
}
.page-header--photo-valley {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-valley-sunset.jpg");
}
.page-header--photo-street {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-neighborhood-street.jpg");
}
.page-header--photo-home {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-farmhouse-exterior.jpg");
}
.page-header--photo-interior {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-open-interior.jpg");
}
.page-header--photo-patio {
  background-image: linear-gradient(105deg, rgba(10, 24, 41, 0.82) 0%, rgba(16, 35, 61, 0.55) 100%),
    url("../images/stock/noco-patio-sunset.jpg");
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}
.photo-strip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img { height: 100px; }
}
