@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ============================================
   HARRISON BRAND LLC — Colorado Modern Retro
   ============================================ */

:root {
  --green:       #2d5a3d;
  --green-dark:  #1e3f2b;
  --green-light: #3a6e4a;
  --cream:       #f4f0e6;
  --cream-dark:  #ede7d8;
  --rust:        #c85a2a;
  --rust-light:  #d96b38;
  --mustard:     #c8922a;
  --teal:        #4a8a80;
  --ink:         #1c2418;
  --body:        #3a3830;
  --mid:         #6e6a5e;
  --faint:       #a8a090;
  --rule:        #ddd6c4;
  --white:       #ffffff;

  --serif:  'Bree Serif', Georgia, serif;
  --sans:   'Nunito Sans', system-ui, sans-serif;

  --max: 1100px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.1;
  color: var(--ink);
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
}
h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
}
p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--body);
}
.label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  transition: all .18s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-green  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-ghost  { background: transparent; color: var(--ink); border-color: rgba(28,36,24,.3); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline-lt { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35); }
.btn-outline-lt:hover { border-color: rgba(255,255,255,.8); color: #fff; }
.btn-rust   { background: var(--rust); color: #fff; border-color: var(--rust); }
.btn-rust:hover { background: #b04e24; }

/* ============================================
   SERVICE CARD STRIPE ACCENTS — refined
   ============================================ */

/* Corner triangle with 3 wider diagonal bands */
.card-stripe-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 0 8px 0 0;
  pointer-events: none;
}
.card-stripe-corner::before {
  content: '';
  position: absolute;
  /* Diagonal stripe stack: green / cream gap / rust / cream gap / mustard / cream gap / teal */
  background: repeating-linear-gradient(
    -45deg,
    var(--green)   0px,
    var(--green)   7px,
    var(--cream)   7px,
    var(--cream)   9px,
    var(--rust)    9px,
    var(--rust)    16px,
    var(--cream)   16px,
    var(--cream)   18px,
    var(--mustard) 18px,
    var(--mustard) 25px,
    var(--cream)   25px,
    var(--cream)   27px,
    var(--teal)    27px,
    var(--teal)    34px,
    var(--cream)   34px,
    var(--cream)   100px
  );
  top: -28px;
  right: -28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  opacity: 0.85;
}

/* Vertical stripe stack on the right edge */
.card-stripe-edge {
  position: absolute;
  top: 56px; /* start below corner */
  right: 0;
  bottom: 0;
  width: 8px;
  overflow: hidden;
  border-radius: 0 0 8px 0;
  pointer-events: none;
}
.card-stripe-edge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    var(--green)   0px,
    var(--green)   7px,
    var(--cream)   7px,
    var(--cream)   9px,
    var(--rust)    9px,
    var(--rust)    16px,
    var(--cream)   16px,
    var(--cream)   18px,
    var(--mustard) 18px,
    var(--mustard) 25px,
    var(--cream)   25px,
    var(--cream)   27px,
    var(--teal)    27px,
    var(--teal)    34px,
    var(--cream)   34px,
    var(--cream)   36px
  );
  opacity: 0.55;
}

/* ============================================
   STRIPE BAND DIVIDER — cleaner, wider blocks
   ============================================ */
.stripe-band {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--green)   0px,
    var(--green)   40px,
    var(--cream)   40px,
    var(--cream)   42px,
    var(--rust)    42px,
    var(--rust)    82px,
    var(--cream)   82px,
    var(--cream)   84px,
    var(--mustard) 84px,
    var(--mustard) 124px,
    var(--cream)   124px,
    var(--cream)   126px,
    var(--teal)    126px,
    var(--teal)    166px,
    var(--cream)   166px,
    var(--cream)   168px
  );
  opacity: 0.5;
}

/* ============================================
   MOUNTAIN DIVIDER
   ============================================ */
.mountain-divider-wrap {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: transparent;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--green);
  border-bottom: 3px solid var(--rust);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.wordmark { display: flex; flex-direction: column; gap: 3px; }
.wordmark__name {
  font-family: var(--serif);
  font-size: 1.45rem;   /* ~15% larger than before */
  color: var(--cream);
  line-height: 1;
}
.wordmark__sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mustard);
}
.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,240,230,0.75);
  padding: 8px 14px;
  transition: color .14s;
  position: relative;
}
.nav a:hover { color: var(--cream); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--rust) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-cta:hover { background: #b04e24 !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 56px,
    rgba(45,90,61,.04) 56px,
    rgba(45,90,61,.04) 57px
  );
  pointer-events: none;
}
/* Left stripe accent bar */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(
    to bottom,
    var(--green) 0%,
    var(--rust) 40%,
    var(--mustard) 70%,
    var(--green) 100%
  );
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.hero-eyebrow .label { color: var(--rust); }
.hero-eyebrow-line { flex: 0 0 32px; height: 2px; background: var(--rust); }
.hero h1 { margin-bottom: 1.4rem; color: var(--ink); }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--body);
}
.hero-sub-2 {
  font-size: 0.95rem;
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 2.5rem;
  color: var(--mid);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   HERO PHOTO PANEL (replaces stat panel)
   ============================================ */
.hero-photo-wrap {
  position: relative;
}
/* Offset green border behind the image */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -14px;
  right: 14px;
  bottom: -14px;
  border: 3px solid var(--green);
  border-radius: 8px;
  z-index: 0;
}
.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  /* Crop to center on faces/high-five, de-emphasize signage at bottom */
  object-position: center 20%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 32px rgba(28,36,24,.18);
}
/* Small caption badge below */
.hero-photo-caption {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  background: var(--green);
  color: var(--cream);
  border-radius: 4px;
  padding: .7rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-photo-caption::before {
  content: '';
  flex: 0 0 3px;
  height: 32px;
  background: var(--rust);
  border-radius: 2px;
}

/* ============================================
   THREE SERVICE CARDS
   ============================================ */
.services-sec {
  background: var(--cream-dark);
  padding: 80px 0;
}
.sec-hd { text-align: center; margin-bottom: 3rem; }
.sec-hd .label { display: block; margin-bottom: .75rem; color: var(--rust); }
.sec-hd h2 { color: var(--ink); }
.sec-hd p {
  margin-top: .75rem;
  max-width: 520px;
  margin-inline: auto;
  color: var(--mid);
  font-size: 0.97rem;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.svc-card {
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: 8px;
  /* Right edge is handled by stripe, remove right padding slightly */
  padding: 2.25rem 1.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.svc-card:hover {
  box-shadow: 0 8px 32px rgba(45,90,61,.15);
  transform: translateY(-2px);
}
/* Push text away from right stripe edge */
.svc-card > *:not(.card-stripe-corner):not(.card-stripe-edge) {
  padding-right: 12px;
}

.svc-num {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 1rem;
}
.svc-card h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.svc-card .svc-intro {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.svc-items { border-top: 1px solid var(--rule); padding-top: 1rem; }
.svc-items li {
  font-size: 0.88rem;
  color: var(--body);
  padding: .35rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 1px solid rgba(221,214,196,.5);
  line-height: 1.45;
}
.svc-items li:last-child { border-bottom: none; }
.svc-items li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 700;
}
.svc-card-link {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  transition: color .15s;
}
.svc-card-link:hover { color: var(--rust); }
.svc-card-link::after { content: ' →'; }

/* ============================================
   PULL QUOTE
   ============================================ */
.pullquote-sec {
  background: var(--green);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.pullquote-sec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--mustard), var(--teal), var(--rust));
}
.pullquote-sec::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rust), var(--mustard), var(--teal), var(--rust));
}
.pullquote-sec blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--cream);
  line-height: 1.55;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--rust);
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: .2rem;
  opacity: 0.6;
}

/* ============================================
   ABOUT / EXPERIENCE
   ============================================ */
.about-sec {
  background: var(--cream);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Photo frame */
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -14px;
  right: 14px;
  bottom: -14px;
  border: 3px solid var(--green);
  border-radius: 8px;
  z-index: 0;
}
.about-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 40px rgba(28,36,24,.15);
}

.about-right .label { display: block; margin-bottom: .6rem; color: var(--rust); }
.about-right h2 { margin-bottom: .15rem; }
.about-role {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mustard);
  display: block;
  margin-bottom: 1.5rem;
}
.about-right p { font-size: 0.97rem; line-height: 1.85; margin-bottom: .9rem; }

.cred-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--rule);
}
.cred-section .label { display: block; margin-bottom: 1rem; color: var(--rust); }
.cred-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.cred-row {
  padding: .65rem .5rem .65rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.cred-row:nth-child(odd) { padding-right: 1rem; }
.cred-dot { flex: 0 0 6px; height: 6px; background: var(--rust); border-radius: 50%; margin-top: .35rem; }
.cred-row strong { font-size: 0.85rem; font-weight: 700; color: var(--ink); }

/* ============================================
   CONTACT
   ============================================ */
.contact-sec {
  background: var(--green);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.contact-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,.015) 80px,
    rgba(255,255,255,.015) 81px
  );
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-left .label { display: block; margin-bottom: .75rem; color: var(--mustard); }
.contact-left h2 { color: var(--cream); margin-bottom: .75rem; }
.contact-intro { color: rgba(244,240,230,.7); font-size: 0.97rem; line-height: 1.82; margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; }
.cf-lbl {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,230,.5);
  display: block;
  margin-top: 1.25rem;
  margin-bottom: .4rem;
}
.cf-lbl:first-of-type { margin-top: 0; }
.cf-in, .cf-ta {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 400;
  color: var(--cream);
  outline: none;
  transition: border-color .14s, background .14s;
}
.cf-in::placeholder, .cf-ta::placeholder { color: rgba(244,240,230,.3); }
.cf-in:focus, .cf-ta:focus { border-color: var(--mustard); background: rgba(255,255,255,.12); }
.cf-ta { min-height: 130px; resize: vertical; }
.cf-submit { margin-top: 1.5rem; }
.cf-note { font-size: 0.82rem; color: rgba(244,240,230,.4); margin-top: .75rem; }
.cf-note a { color: var(--mustard); }

.contact-right .label { display: block; margin-bottom: 1rem; color: var(--mustard); }
.cd-list { display: flex; flex-direction: column; margin-bottom: 2.5rem; }
.cd { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cd:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.cd-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 4px;
}
.cd a, .cd span { font-size: 0.97rem; color: rgba(244,240,230,.8); transition: color .14s; }
.cd a:hover { color: var(--cream); }
.contact-aside {
  background: rgba(255,255,255,.07);
  border-left: 3px solid var(--mustard);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.contact-aside p { font-size: 0.9rem; color: rgba(244,240,230,.65); line-height: 1.75; }

/* ============================================
   RESOURCES
   ============================================ */
.resources-sec { background: var(--cream-dark); padding: 72px 0; }
.resources-sec .sec-hd { text-align: left; margin-bottom: 2.5rem; }
.resources-sec .sec-hd h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.resource-card {
  background: var(--cream);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 3px solid var(--green);
}
.resource-card .label { display: block; margin-bottom: 1rem; color: var(--green); }
.resource-card h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.resource-links { display: flex; flex-direction: column; gap: .1rem; }
.resource-links a,
.resource-links span {
  font-size: 0.9rem;
  color: var(--body);
  padding: .45rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color .14s;
  display: block;
}
.resource-links a:hover { color: var(--green); }
.resource-links a::before { content: '↗ '; color: var(--rust); font-size: 0.75rem; }
.resource-links span::before { content: '› '; color: var(--faint); }
.resource-note { font-size: 0.78rem; color: var(--faint); margin-top: .75rem; font-style: italic; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--ink); padding: 56px 0 28px; }
.site-footer::before {
  content: '';
  display: block;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--green)   0px,
    var(--green)   30px,
    var(--rust)    30px,
    var(--rust)    60px,
    var(--mustard) 60px,
    var(--mustard) 90px,
    var(--teal)    90px,
    var(--teal)    120px
  );
  margin-bottom: 56px;
  opacity: 0.8;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 22px;
}
.footer-name { font-family: var(--serif); font-size: 1.15rem; color: rgba(244,240,230,.7); display: block; margin-bottom: .6rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.25); line-height: 1.8; max-width: 320px; }
.footer-col .label { color: var(--mustard); display: block; margin-bottom: .9rem; }
.footer-col a, .footer-col span { display: block; font-size: .85rem; color: rgba(255,255,255,.28); margin-bottom: .4rem; transition: color .14s; }
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-base p { font-size: .72rem; color: rgba(255,255,255,.18); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-photo-wrap { max-width: 480px; }
  .hero-photo-wrap img { height: 320px; }
  .hero-photo-wrap::before { top: 10px; left: -10px; right: 10px; bottom: -10px; }
  .cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 420px; }
  .about-photo-wrap::before { display: none; }
  .about-photo-wrap img { height: 380px; }
  .contact-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cred-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; flex-direction: column; }
  .nav.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1rem var(--pad) 1.5rem;
    border-bottom: 2px solid var(--rust);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 199;
  }
  .nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    width: 100%;
    color: var(--cream);
  }
  .nav.open a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero-photo-wrap img { height: 260px; }
  .hero-photo-wrap::before { display: none; }
  .about-photo-wrap img { height: 300px; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
}
