/* Pacific Steel & Recycling — Careers
   Tokens taken from pacific-steel.com computed styles (Vamtam "Construction" theme). */

:root {
  /* Brand */
  --psr-green: #4c852a;          /* headings, active nav, primary buttons */
  --psr-green-hover: #3d6c21;
  --psr-green-dark: #456128;     /* footer */
  --psr-green-mid: #637e47;      /* top bar + copyright bar */
  --psr-green-tint: #eef3ea;
  --psr-slate: #364352;          /* h2 on their site */
  --psr-ink: #4a4f55;            /* h3/h4 subheads */
  --psr-text: #212121;
  --psr-muted: #6c6c68;
  --psr-nav: #666666;
  --psr-line: #e1e1dc;
  --psr-bg-tint: #f4f4f1;
  --psr-bg-panel: #efefeb;
  --psr-white: #ffffff;

  /* Type */
  --font-display: "Coda", "Titillium Web", sans-serif;
  --font-body: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  --font-nav: "Raleway", "Titillium Web", sans-serif;

  /* Spacing scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 80px;

  --section-y: 56px;
  --container: 1280px;
  --gutter: 16px;
  --radius: 5px;
  --header-h: 124px;
  --shadow: 0 6px 24px rgba(33, 33, 33, 0.08);
}

@media (min-width: 768px) {
  :root { --gutter: 24px; --section-y: 80px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--psr-text);
  background: var(--psr-white);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
[hidden] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--psr-green); }
p { margin: 0 0 var(--s-2); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
button { font: inherit; }
:focus-visible { outline: 3px solid rgba(76, 133, 42, 0.45); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--s-2); top: -60px; z-index: 200;
  background: var(--psr-green); color: #fff; padding: var(--s-1) var(--s-2);
  border-radius: var(--radius); text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: var(--s-1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-1);
  min-height: 48px; padding: 12px 26px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; line-height: 1.2;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.btn--primary { background: var(--psr-green); color: #fff; }
.btn--primary:hover { background: var(--psr-green-hover); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85); }
.btn--ghost:hover { background: #fff; color: var(--psr-green); }
.btn--outline { background: transparent; color: var(--psr-green); border-color: var(--psr-green); }
.btn--outline:hover { background: var(--psr-green); color: #fff; }
.btn--light { background: #fff; color: var(--psr-green); }
.btn--light:hover { background: var(--psr-green-tint); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.link-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--psr-green); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px; text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--psr-line);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, .08); }

.topbar { background: var(--psr-green-mid); color: #fff; }
.topbar__inner { display: flex; align-items: center; gap: 10px; height: 36px; }
.topbar__label { font-size: 13px; font-family: var(--font-body); }
.social { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.social a { display: grid; place-items: center; width: 26px; height: 26px; color: #fff; opacity: .9; }
.social a:hover { opacity: 1; }
.social svg { width: 15px; height: 15px; fill: currentColor; }

.mainbar__inner { display: flex; align-items: center; gap: var(--s-3); height: 88px; transition: height .2s; }
.brand img { width: 190px; transition: width .2s; }
.site-header.is-scrolled .mainbar__inner { height: 72px; }
.site-header.is-scrolled .brand img { width: 160px; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; gap: 4px; }
.nav__list > li { position: relative; }
.nav__list > li > a {
  display: block; padding: 10px 12px;
  font-family: var(--font-nav); font-weight: 600; font-size: 13px; letter-spacing: .65px;
  color: var(--psr-nav); text-decoration: none;
  border-bottom: 3px solid transparent;
}
.nav__list > li > a:hover { color: var(--psr-green); }
.nav__list > li.is-current > a { color: var(--psr-green); border-bottom-color: var(--psr-green); }
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 190px;
  list-style: none; margin: 0; padding: var(--s-1) 0;
  background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--psr-green);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s;
}
.has-sub:hover > .nav__sub, .has-sub:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a {
  display: block; padding: 8px 18px; color: var(--psr-nav); text-decoration: none;
  font-family: var(--font-nav); font-weight: 600; font-size: 13px; letter-spacing: .65px;
}
.nav__sub a:hover { color: var(--psr-green); background: var(--psr-bg-tint); }


.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.menu-toggle span { display: block; height: 3px; margin: 5px 0; background: var(--psr-green); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 1100px) {
  :root { --header-h: 146px; }
  .mainbar__inner { height: 110px; }
  .brand img { width: 250px; }
}

@media (max-width: 1099px) {
  :root { --header-h: 116px; }
  .mainbar__inner { height: 80px; }
  .brand img { width: 170px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, 116px); bottom: 0;
    background: #fff; overflow-y: auto;
    border-top: 1px solid var(--psr-line);
    transform: translateX(100%); transition: transform .25s ease; visibility: hidden;
  }
  .nav.is-open { transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: var(--s-1) var(--gutter) var(--s-5); }
  .nav__list > li { border-bottom: 1px solid var(--psr-line); }
  .nav__list > li > a { padding: 16px 0; font-size: 15px; border-bottom: 0; }
  .nav__list > li.is-current > a { border-bottom: 0; box-shadow: inset 4px 0 0 var(--psr-green); padding-left: 14px; }
  .has-sub > a::after { content: "+"; float: right; font-size: 18px; line-height: 1; }
  .has-sub.is-open > a::after { content: "–"; }
  .nav__sub { position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; display: none; padding: 0 0 var(--s-2) var(--s-2); }
  .has-sub.is-open > .nav__sub { display: block; }
  .nav__sub a { font-size: 15px; padding: 10px 0; }
}

/* ---------- Section heading system (title + subtitle, no eyebrows) ---------- */
.section { padding: var(--section-y) 0; }
.section--tint { background: var(--psr-bg-tint); }
.section--flush-top { padding-top: 0; }
.section-head { max-width: 760px; margin: 0 auto var(--s-5); text-align: center; }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.2vw, 42px); line-height: 1.15;
  color: var(--psr-green);
}
.section-subtitle {
  margin: var(--s-2) 0 0;
  font-weight: 300; font-size: clamp(18px, 2vw, 20px); line-height: 1.5;
  color: var(--psr-ink);
}
.section-cta { margin-top: var(--s-5); text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background:
    linear-gradient(90deg, rgba(28, 44, 16, .88) 0%, rgba(28, 44, 16, .7) 48%, rgba(28, 44, 16, .2) 100%),
    url("../img/Corp_03-2560w.jpg") center 40% / cover no-repeat;
}
.hero__inner {
  position: relative; display: flex; align-items: center;
  min-height: 460px; padding-top: var(--s-6); padding-bottom: var(--s-6);
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6vw, 62px); line-height: 1.05; color: #fff;
  margin-bottom: var(--s-3);
}
.hero__text { font-size: clamp(17px, 1.8vw, 20px); font-weight: 300; line-height: 1.5; max-width: 540px; }
.hero__text:last-of-type { margin-bottom: var(--s-4); }
.hero__badge {
  position: absolute; right: var(--gutter); bottom: var(--s-4);
  width: 130px; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
}
@media (max-width: 767px) {
  .hero { background-position: 65% center; }
  .hero__inner { min-height: 0; padding-top: var(--s-5); padding-bottom: 120px; }
  .hero__badge { width: 88px; bottom: var(--s-3); }
  .btn-row .btn { flex: 1 1 200px; }
}
@media (min-width: 1100px) {
  .hero__inner { min-height: 520px; }
  .hero__badge { width: 160px; }
}

/* ---------- Why Pacific ---------- */
.why-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.why-card__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.why-card__body { padding: var(--s-3); border-top: 4px solid var(--psr-green); flex: 1; }
.why-card__title { font-family: var(--font-display); font-size: 22px; line-height: 1.25; color: var(--psr-slate); margin-bottom: var(--s-1); }
.why-card__body p { margin: 0; color: var(--psr-muted); font-size: 16px; }

/* ---------- Jobs ---------- */
.jobs-layout { display: grid; gap: var(--s-4); align-items: start; }
@media (min-width: 900px) { .jobs-layout { grid-template-columns: 320px 1fr; } }
@media (min-width: 1100px) { .jobs-layout { grid-template-columns: 360px 1fr; gap: var(--s-6); } }

.jobs-filters { background: var(--psr-bg-panel); border-radius: var(--radius); }
.jobs-filters__head { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) var(--s-3) 0; }
.jobs-filters__title { font-family: var(--font-display); font-size: 24px; color: var(--psr-green); }
.jobs-filters__body { padding: var(--s-2) var(--s-3) var(--s-3); }
.jobs-filters__foot { display: none; }
.drawer-close { display: none; }

@media (min-width: 900px) {
  .jobs-filters { position: sticky; top: calc(var(--header-h) + 16px); max-height: calc(100vh - var(--header-h) - 32px); overflow-y: auto; }
}

.filter-group { padding: var(--s-2) 0; border-top: 1px solid #dcdcd6; }
.filter-group:first-child { border-top: 0; padding-top: var(--s-1); }
.filter-label {
  display: block; margin-bottom: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--psr-slate);
}

.search-field { position: relative; }
.search-field svg { position: absolute; left: 14px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: #8d8d88; pointer-events: none; }
.job-search {
  width: 100%; height: 48px; padding: 0 14px 0 42px;
  font: 400 16px var(--font-body); color: var(--psr-text);
  background: #fff; border: 1px solid #cfcfc8; border-radius: var(--radius);
}
.job-search:focus { border-color: var(--psr-green); outline: none; box-shadow: 0 0 0 3px rgba(76, 133, 42, .2); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px;
  border-right: 2px solid var(--psr-green); border-bottom: 2px solid var(--psr-green);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.facet-select {
  width: 100%; height: 48px; padding: 0 40px 0 14px; appearance: none; -webkit-appearance: none;
  font: 400 16px var(--font-body); color: var(--psr-text);
  background: #fff; border: 1px solid #cfcfc8; border-radius: var(--radius); cursor: pointer;
}
.facet-select:focus { border-color: var(--psr-green); outline: none; box-shadow: 0 0 0 3px rgba(76, 133, 42, .2); }

/* Custom checkbox rows */
.check {
  display: flex; align-items: flex-start; gap: 10px; width: 100%;
  padding: 6px 0; background: none; border: 0; text-align: left; cursor: pointer;
  font-size: 15px; line-height: 1.35; color: var(--psr-text);
}
.check::before {
  content: ""; flex: 0 0 18px; height: 18px; margin-top: 1px;
  border: 2px solid #9a9a94; border-radius: 3px; background: #fff;
  transition: background-color .15s, border-color .15s;
}
.check:hover::before { border-color: var(--psr-green); }
.check[aria-checked="true"]::before {
  border-color: var(--psr-green);
  background: var(--psr-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l3 3 6-7' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.check__count { color: var(--psr-muted); margin-left: 2px; }
.facet-more { margin-top: 6px; }
.facet-empty { font-size: 15px; color: var(--psr-muted); margin: 0; }

/* State → city tree */
.loc-row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-1); }
.loc-row .check { font-weight: 700; text-transform: uppercase; letter-spacing: .8px; font-size: 14px; }
.loc-toggle {
  flex: 0 0 auto; min-width: 36px; padding: 4px 0; background: none; border: 0; cursor: pointer;
  font-weight: 700; font-size: 14px; color: var(--psr-green); letter-spacing: 1px;
}
.loc-cities { padding: 0 0 6px 28px; }

/* Results */
.jobs-toolbar { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-2); }
.jobs-count { margin: 0; font-size: 16px; color: var(--psr-ink); }
.jobs-count strong { color: var(--psr-slate); }

.chips { display: flex; flex-wrap: wrap; gap: var(--s-1); list-style: none; margin: 0 0 var(--s-2); padding: 0; }
.chips:empty { display: none; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 8px 6px 14px; border-radius: 999px;
  background: var(--psr-green-tint); color: var(--psr-green-dark); border: 1px solid #cddcc3;
  font-size: 14px; font-weight: 600; line-height: 1.2; cursor: pointer;
}
.chip:hover { border-color: var(--psr-green); }
.chip__x { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(69, 97, 40, .12); font-size: 14px; line-height: 1; }

.job-list { border-top: 1px solid var(--psr-line); }
.job {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--s-1) var(--s-3);
  padding: 20px 4px; border-bottom: 1px solid var(--psr-line);
  text-decoration: none; color: inherit; transition: background-color .15s;
}
.job:hover { background: var(--psr-bg-tint); }
.job__title { font-family: var(--font-body); font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--psr-slate); margin-bottom: 4px; }
.job:hover .job__title { color: var(--psr-green); }
.job__meta { display: flex; flex-wrap: wrap; gap: 4px 16px; margin: 0; font-size: 15px; color: var(--psr-muted); }
.job__meta span { display: inline-flex; align-items: center; gap: 6px; }
.job__meta svg { width: 14px; height: 14px; fill: var(--psr-green); flex: 0 0 auto; }
.job__cta { font-weight: 700; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--psr-green); white-space: nowrap; }
.job__cta span { display: inline-block; transition: transform .15s; }
.job:hover .job__cta span { transform: translateX(4px); }
@media (max-width: 599px) {
  .job { grid-template-columns: 1fr; padding: 18px 0; }
  .job__cta { margin-top: 6px; }
}

.jobs-state { padding: var(--s-5) var(--s-3); text-align: center; border-bottom: 1px solid var(--psr-line); }
.jobs-state__title { font-family: var(--font-display); font-size: 26px; color: var(--psr-slate); margin-bottom: var(--s-1); }
.jobs-state p { color: var(--psr-muted); max-width: 440px; margin: 0 auto var(--s-3); }

.skeleton { padding: 22px 4px; border-bottom: 1px solid var(--psr-line); }
.skeleton i { display: block; height: 14px; border-radius: 4px; background: linear-gradient(90deg, #eee 0, #f6f6f4 40%, #eee 80%); background-size: 400px 100%; animation: shimmer 1.2s infinite linear; }
.skeleton i:first-child { width: 55%; height: 18px; margin-bottom: 10px; }
.skeleton i:last-child { width: 30%; }
@keyframes shimmer { from { background-position: -400px 0; } to { background-position: 400px 0; } }

.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-top: var(--s-4); }
.pager:empty { display: none; }
.pager button {
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: var(--radius);
  border: 1px solid var(--psr-line); background: #fff; color: var(--psr-slate);
  font-weight: 700; font-size: 15px; cursor: pointer;
}
.pager button:hover { border-color: var(--psr-green); color: var(--psr-green); }
.pager button[aria-current="page"] { background: var(--psr-green); border-color: var(--psr-green); color: #fff; }
.pager button:disabled { opacity: .4; cursor: default; }
.pager .pager__gap { align-self: center; padding: 0 4px; color: var(--psr-muted); }

/* Mobile job search + drawer */
.jobs-mobilebar { display: none; }
.filter-badge { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; background: #fff; color: var(--psr-green); font-size: 13px; letter-spacing: 0; }
.drawer-overlay { position: fixed; inset: 0; z-index: 140; background: rgba(20, 28, 14, .55); }

@media (max-width: 899px) {
  .jobs-mobilebar { display: grid; gap: 12px; margin-bottom: var(--s-3); }
  @media (min-width: 600px) { .jobs-mobilebar { grid-template-columns: 1fr 220px; } }
  .filter-group--search { display: none; }
  .filter-group--search + .filter-group { border-top: 0; }
  .jobs-filters {
    position: fixed; z-index: 150; left: 0; right: 0; bottom: 0;
    max-height: 88vh; display: flex; flex-direction: column;
    border-radius: 14px 14px 0 0; background: #fff;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, .2);
    transform: translateY(105%); visibility: hidden; transition: transform .28s ease, visibility 0s .28s;
  }
  .jobs-filters.is-open { transform: none; visibility: visible; transition: transform .28s ease; }
  .jobs-filters__head { padding: var(--s-2) var(--gutter); border-bottom: 1px solid var(--psr-line); }
  .jobs-filters__head::before { content: ""; position: absolute; left: 50%; top: 6px; width: 40px; height: 4px; margin-left: -20px; border-radius: 2px; background: #d5d5d0; }
  .jobs-filters__body { flex: 1; overflow-y: auto; padding: var(--s-1) var(--gutter) var(--s-2); overscroll-behavior: contain; }
  .jobs-filters__foot {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--psr-line); background: #fff;
  }
  .jobs-filters__foot .btn { padding-left: 10px; padding-right: 10px; letter-spacing: .6px; }
  .drawer-close { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -10px; background: none; border: 0; color: var(--psr-slate); cursor: pointer; }
  .drawer-close svg { width: 22px; height: 22px; }
  .check { padding: 9px 0; font-size: 16px; }
  .loc-toggle { min-width: 44px; padding: 8px 0; }
}

/* ---------- Video section ---------- */
.video-block { max-width: 960px; margin: 0 auto; }

/* ---------- Employee ownership ---------- */
.own { display: grid; gap: var(--s-5); align-items: center; }
@media (min-width: 900px) { .own { grid-template-columns: 5fr 6fr; gap: var(--s-6); } }
.own__copy .section-subtitle { margin-bottom: var(--s-2); }
.own__copy p { color: var(--psr-ink); }
.own__foot { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-4); flex-wrap: wrap; }
.own__badge { width: 96px; }

.video-facade {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: var(--shadow);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.video-facade:hover img { transform: scale(1.03); }
.video-facade__play {
  position: absolute; left: 50%; top: 50%; width: 76px; height: 76px; margin: -38px 0 0 -38px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--psr-green); box-shadow: 0 6px 20px rgba(0, 0, 0, .35); transition: transform .2s;
}
.video-facade:hover .video-facade__play { transform: scale(1.08); }
.video-facade__play svg { width: 34px; height: 34px; fill: #fff; margin-left: 4px; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.own__caption { margin: 12px 0 0; font-size: 15px; color: var(--psr-muted); }

/* ---------- Find a location ---------- */
.state-grid { display: grid; gap: var(--s-2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .state-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); } }
.state-card {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; text-align: left;
  aspect-ratio: 6 / 5; border-radius: var(--radius); overflow: hidden; background: var(--psr-green-dark); color: #fff;
}
@media (min-width: 768px) { .state-card { aspect-ratio: 16 / 10; } }
.state-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.state-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 30, 12, 0) 30%, rgba(20, 30, 12, .85) 100%); }
.state-card:hover img { transform: scale(1.05); }
.state-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: var(--s-2); }
@media (min-width: 768px) { .state-card__body { padding: var(--s-3); } }
.state-card__name { display: block; font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 26px); line-height: 1.1; }
.state-card__meta { display: block; margin-top: 4px; font-size: 14px; font-weight: 600; opacity: .95; }
.state-card__cta { display: none; margin-top: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
@media (min-width: 768px) { .state-card__cta { display: block; } }

/* ---------- Final CTA ---------- */
.cta-band { background: var(--psr-green); color: #fff; padding: var(--section-y) 0; text-align: center; }
.cta-band .section-title { color: #fff; }
.cta-band .section-subtitle { color: rgba(255, 255, 255, .9); margin-bottom: var(--s-4); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--psr-green-dark) url("../img/footerBG_05.png") 50% 100% / contain no-repeat;
  color: #d3d2d2; font-size: 15px; line-height: 1.7;
}
.footer-grid { display: grid; gap: var(--s-4); padding-top: var(--s-6); padding-bottom: var(--s-6); grid-template-columns: 1fr; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-5); } }
.footer-title {
  font-family: var(--font-body); font-weight: 300; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; margin-bottom: var(--s-2);
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer p { margin-bottom: 12px; }
.site-footer strong { color: #fff; font-weight: 600; }
.footer-logo { width: 190px; margin-bottom: var(--s-2); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 6px; }
.copyrights { background: var(--psr-green-mid); color: #fff; font-size: 13px; }
.copyrights__inner { display: flex; justify-content: space-between; gap: var(--s-2); flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
