@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B2340;
  --navy-light: #1a3a5c;
  --green: #2E7D32;
  --green-dark: #1b5e20;
  --bg: #F8FAFB;
  --bg-alt: #FFFFFF;
  --text: #1a2533;
  --text-muted: #5a6a7a;
  --border: #e2e8f0;
  --shadow: 0 2px 16px rgba(11, 35, 64, .07);
  --shadow-md: 0 4px 32px rgba(11, 35, 64, .11);
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --section-v: 5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  max-width: 68ch;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: .875rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s, color .22s, border-color .22s, box-shadow .22s;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 125, 50, .3);
  text-decoration: none !important;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
  text-decoration: none !important;
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: .9rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none !important;
}

.brand img {
  max-height: 1.9rem;
}

.brand strong {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

nav ul {
  display: flex;
  list-style: none;
  gap: .1rem;
}

nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .4rem .8rem;
  border-radius: 6px;
  transition: color .18s, background .18s;
  text-decoration: none;
}

nav a:hover {
  color: var(--navy);
  background: var(--bg);
  text-decoration: none;
}

input#mobile-nav {
  display: none;
}

label.mobile-nav-checkbtn {
  display: none;
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
}

.hamburger {
  --button-color: var(--navy);
}

.hamburger .line {
  transition: y 300ms ease-in 300ms, rotate 300ms ease-in, opacity 0ms 300ms;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .line {
  transition: y 300ms ease-in, rotate 300ms ease-in 300ms, opacity 0ms 300ms;
}

.hamburger[aria-expanded="true"] :is(.top, .bottom) {
  y: 45;
}

.hamburger[aria-expanded="true"] .top {
  rotate: 45deg;
}

.hamburger[aria-expanded="true"] .middle {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .bottom {
  rotate: -45deg;
}

.hero {
  background: var(--navy);
  color: #fff;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;

  background-image: url('./assets/hero_sample_1.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;

  text-align: left;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(11, 35, 64, 0.85) 0%,
      /* Solid navy backing behind text */
      rgba(11, 35, 64, 0.4) 50%,
      /* Fades out as it hits the middle */
      transparent 100%
      /* Completely clear over the runner */
    );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-style: italic;
  max-width: 15ch;
}

.hero .subhead {
  font-size: clamp(1rem, 2.2vw, 1.175rem);
  color: rgba(255, 255, 255, .88);
  margin-bottom: 2.5rem;
  max-width: 48ch;
  line-height: 1.75;
  margin-inline: 0 auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 1450px) {
  .hero {
    background-position: right top;
  }
}

/* 3. Mobile Responsiveness Overrides */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    /* Flip back to your clean centered design on mobile */
    background-position: 75% center;
    /* Adjusts image background to show the runner's torso behind centered text */
  }

  .hero::before {
    /* Harder overall overlay on mobile to guarantee text readability over the center of the photo */
    background: linear-gradient(to bottom,
        rgba(11, 35, 64, 0.8) 0%,
        rgba(11, 35, 64, 0.6) 100__%);
  }

  .hero .subhead {
    margin-inline: auto;
    /* Centers paragraph block on mobile */
  }

  .hero-ctas {
    justify-content: center;
    /* Centers buttons on mobile */
  }
}

.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.trust-strip-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2.5rem;
  justify-content: center;
}

.trust-item {
  font-size: .825rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.trust-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

section {
  padding: var(--section-v) 1.5rem;
}

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

.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: .75rem;
  max-width: 60ch;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.25rem;
}

.who-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.who-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.who-card h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.who-card p {
  font-size: .875rem;
  color: var(--text-muted);
  max-width: none;
}

.philosophy-section {
  background: var(--navy);
  color: #fff;
}

.philosophy-section h2 {
  color: #fff;
}

.philosophy-section .section-label {
  color: #a8d5aa;
}

.philosophy-section .section-header p {
  color: rgba(255, 255, 255, .65);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.philosophy-item {
  border-left: 3px solid var(--green);
  padding-left: 1.25rem;
}

.philosophy-item h4 {
  color: #fff;
  margin-bottom: .4rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.philosophy-item p {
  color: rgba(255, 255, 255, .68);
  font-size: .9rem;
  max-width: none;
}

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

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .22s, transform .22s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: .9rem;
  color: var(--text-muted);
  max-width: none;
  margin-top: .5rem;
}

.bio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.bio-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bio-headshot {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d8e3ed;
}

.bio-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio-headshot.corey img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.bio-body {
  padding: 2rem 2rem 1.75rem;
}

.bio-name {
  color: var(--navy);
  margin-bottom: .2rem;
  font-size: 1.3rem;
}

.bio-creds {
  font-size: .775rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.bio-content {
  color: var(--text-muted);
  font-size: .9375rem;
}

.bio-content p+p {
  margin-top: .85rem;
}

.bio-card input[type="checkbox"] {
  display: none;
}

.bio-card input[type="checkbox"]~.bio-content {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
}

.bio-card input[type="checkbox"]~.bio-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55px;
  background: linear-gradient(transparent, var(--bg-alt));
}

.bio-card input[type="checkbox"]:checked~.bio-content {
  max-height: 1200px;
}

.bio-card input[type="checkbox"]:checked~.bio-content::after {
  display: none;
}

.bio-card input[type="checkbox"]~label {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
}

.bio-card input[type="checkbox"]~label i::before {
  content: "Read more \2193";
}

.bio-card input[type="checkbox"]:checked~label i::before {
  content: "Show less \2191";
}

.kentucky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kentucky-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
  list-style: none;
}

.city-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .825rem;
  font-weight: 500;
  color: var(--text);
}

.kentucky-virtual {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: rgba(46, 125, 50, .07);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9375rem;
  color: var(--text);
}

.kentucky-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.kentucky-stat {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.kentucky-stat .big {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.kentucky-stat .label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .4rem;
  max-width: none;
}

details {
  border-bottom: 1px solid var(--border);
  interpolate-size: allow-keywords;
}

details:first-of-type {
  border-top: 1px solid var(--border);
}

details summary {
  padding: 1.25rem 0;
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
}

details[open] summary::after {
  content: '\2212';
}

details .faq-answer {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .9375rem;
}

details::details-content {
  transition: block-size .25s, content-visibility .25s allow-discrete;
  overflow: hidden;
  block-size: 0;
}

details[open]::details-content {
  block-size: auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: .9375rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  margin-bottom: .75rem;
  color: var(--text);
}

.contact-icon {
  font-size: 1.1rem;
}

form {
  display: grid;
  gap: .875rem;
}

input,
textarea {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  padding: .875rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, .1);
}

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

button[type="submit"] {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  padding: .9rem 2rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: background .22s, box-shadow .22s;
}

button[type="submit"]:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 16px rgba(46, 125, 50, .3);
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  padding: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: center;
}

footer > * {
  margin: 0.6rem auto;
}

.footer-brand {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: .6rem;
}

footer a {
  color: rgba(255, 255, 255, .65);
}

footer a:hover {
  color: #fff;
}

.footer-meta {
  font-size: .875rem;
  line-height: 2;
  margin-top: .25rem;
}

.footer-social-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 768px) {
  :root {
    --section-v: 3.5rem;
  }

  label.mobile-nav-checkbtn {
    display: flex;
  }

  nav {
    position: fixed;
    top: 61px;
    right: -100%;
    width: 100%;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    transition: right .3s;
    z-index: 1001;
    padding: 1.25rem 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: .25rem;
  }

  nav a {
    display: block;
    font-size: 1.05rem;
    padding: .75rem 1rem;
  }

  input#mobile-nav:checked~nav {
    right: 0;
  }

  .kentucky-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

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

  .kentucky-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ── Visually hidden labels ── */
.form-field label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .35rem;
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: .8rem;
}



/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  line-height: .75;
  color: var(--green);
  opacity: .35;
  margin-bottom: .5rem;
  display: block;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  background: none;
  padding-inline: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-detail {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  line-height: .75;
  color: var(--green);
  opacity: .35;
  margin-bottom: .5rem;
  display: block;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  background: none;
  padding-inline: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-detail {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}

.testimonial-card blockquote::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  line-height: .75;
  color: var(--green);
  opacity: .35;
  margin-bottom: .5rem;
  display: block;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  max-width: none;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  background: none;
  padding-inline: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-detail {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── Photo strip ── */

.photo-strip {
  background: var(--navy);
  padding: 2.5rem 0 1.5rem;
  overflow: hidden;           /* keeps the fade overlay from leaking */
  position: relative;
}

/* Wrapper that positions the scroll lane and the fade overlay together */
.photo-strip-scroll-outer {
  position: relative;
}

/* The scrollable film strip itself */
.photo-strip-scroll {
  display: flex;
  gap: 8px;
  padding: 0 2rem;            /* left gutter; right is handled by the fade */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;      /* Firefox */
  list-style: none;
  margin: 0;
  cursor: grab;
}

.photo-strip-scroll:active {
  cursor: grabbing;
}

.photo-strip-scroll::-webkit-scrollbar {
  display: none;              /* Chrome / Safari */
}

/* Individual photo slide */
.photo-strip-slide {
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 240px);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: var(--navy-light);
}

.photo-strip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.88);
  /* Prevent drag ghost image while mouse-dragging the strip */
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.photo-strip-slide.shift-70 img {
  object-position: 70%;
}

.photo-strip-slide:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* Caption overlay — fades in on hover, always readable at the bottom */
.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.875rem 0.75rem;
  background: linear-gradient(transparent, rgba(11, 35, 64, 0.78));
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.photo-strip-slide:hover .photo-strip-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Right-edge fade — communicates overflow / more photos to the right */
.photo-strip-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 100px);
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
}

/* Scroll hint row below the strip */
.photo-strip-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 2rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.photo-strip-hint svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .photo-strip {
    padding: 1.75rem 0 1.25rem;
  }

  .photo-strip-scroll {
    padding: 0 1rem;
    gap: 6px;
  }

  /* Slightly wider slides on mobile so 2 are visible at once */
  .photo-strip-slide {
    width: clamp(140px, 42vw, 200px);
  }

  .photo-strip-caption {
    /* Always visible on touch — no hover state on mobile */
    opacity: 1;
    transform: translateY(0);
  }

  .photo-strip-hint {
    padding: 0.625rem 1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-strip-slide img,
  .photo-strip-caption {
    transition: none;
  }
}
/* -- end photo strip -- */
