/* =====================================================================
   Colin Waterman Coast Decorating
   Palette drawn from the West Coast + Colin's own finished work:
   bush green, timber/ochre, river stone, wet-plaster white.
   Display: Archivo · Body: Inter
   ===================================================================== */

:root {
  /* --- Colour ---------------------------------------------------- */
  --ink:        #16211c;   /* near-black green, primary text */
  --bush:       #26473a;   /* deep forest green, brand primary */
  --bush-700:   #1b342a;   /* darker green for gradients */
  --bush-900:   #12241c;   /* deepest green */
  --fern:       #7ba07a;   /* sage/fern, light green accent */
  --timber:     #cf9350;   /* warm timber / ochre, main accent */
  --timber-600: #b87c3c;   /* darker timber for hover */
  --terracotta: #b4623f;   /* earthy clay, chip only */
  --stone:      #565851;   /* muted stone grey, captions (darkened for readability) */
  --paper:      #f1f2ec;   /* cool plaster off-white, main bg */
  --paper-2:    #e7e9e0;   /* slightly deeper panel */
  --line:       #d6d8cd;   /* hairline on paper */
  --white:      #ffffff;

  /* on-dark helpers */
  --paper-dim:  #d9ded3;   /* muted text on dark green */
  --line-dark:  rgba(255,255,255,.14);

  /* --- Type ------------------------------------------------------ */
  --display: "Archivo", "Inter", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* --- Spacing / layout ----------------------------------------- */
  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(2.25rem, 5vw, 4.25rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 40px -22px rgba(22,33,28,.45);
  --shadow-sm: 0 8px 22px -16px rgba(22,33,28,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* =====================================================================
   Reset / base
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bush); text-decoration: none; }
a:hover { color: var(--timber-600); }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--timber);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
/* Single-page anchor targets clear the sticky header on jump */
#services, #about, #contact { scroll-margin-top: 84px; }
.center { text-align: center; }
.hidden { display: none !important; }

/* =====================================================================
   Shared type helpers
   ===================================================================== */
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--timber-600);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--timber);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--timber); }

.h-display { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
.h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); line-height: 1.6; color: var(--ink); }
.muted { color: var(--stone); }
.on-dark { color: var(--paper); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark .muted, .on-dark .lead { color: var(--paper-dim); }
.on-dark a:not(.btn) { color: var(--timber); }
.on-dark .lead { color: #eef1ea; }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--timber); color: var(--ink); border-color: var(--timber); }
.btn-primary:hover { background: var(--timber-600); border-color: var(--timber-600); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.on-dark .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.on-dark .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(241,242,236,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-text { line-height: 1; }
.brand-text b { font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.02em; display: block; white-space: nowrap; }
.brand-text small { font-family: var(--body); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-weight: 500; color: var(--ink); font-size: .98rem;
  padding: .35rem 0; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--timber);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Compact tap-to-call in the header (mobile only) */
.header-call-m { display: none; }
.header-call-m svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,36,28,.42) 0%, rgba(18,36,28,.60) 48%, rgba(18,36,28,.92) 100%),
    linear-gradient(90deg, rgba(18,36,28,.78) 0%, rgba(18,36,28,.28) 62%, rgba(18,36,28,.05) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding-block: clamp(5rem, 15vh, 9rem) clamp(3.5rem, 8vh, 6rem);
  max-width: 760px;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); letter-spacing: -.03em; text-shadow: 0 2px 24px rgba(12,20,16,.35); }
.hero .lead { text-shadow: 0 1px 14px rgba(12,20,16,.4); }
.hero .lead { max-width: 40ch; margin-block: 1.4rem 2rem; color: var(--paper); }
.hero .eyebrow::before { display: none; }
.hero .eyebrow { color: var(--timber); }
.hero .btn-ghost { background: var(--bush); color: var(--white); border-color: var(--bush); }
.hero .btn-ghost:hover { background: var(--bush-700); color: var(--white); border-color: var(--bush-700); }
.hero-cues { display: flex; gap: 1.4rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-cue { font-size: .9rem; color: var(--paper-dim); display: inline-flex; align-items: center; gap: .5rem; }
.hero-cue b { color: var(--white); font-family: var(--display); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }

/* =====================================================================
   Trust strip
   ===================================================================== */
.trust {
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
}
.trust-cell { background: var(--ink); padding: 1.7rem var(--gutter); }
.trust-cell b { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--white); display: block; letter-spacing: -.02em; white-space: nowrap; }
.trust-cell span { font-size: .86rem; color: var(--paper-dim); }

/* =====================================================================
   Section headers
   ===================================================================== */
.sec-head { max-width: 640px; margin-bottom: clamp(1.25rem, 3vw, 2rem); }
.sec-head.center { margin-inline: auto; }
.sec-head p { margin-top: 1rem; }

/* =====================================================================
   Service cards
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.svc-card p { font-size: .94rem; color: var(--stone); margin-bottom: 1rem; }
.svc-card .more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--bush); display: inline-flex; align-items: center; gap: .4rem; }
.svc-card:hover .more { color: var(--timber-600); }
.svc-card .more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.svc-card:hover .more svg { transform: translateX(4px); }

/* =====================================================================
   Feature project band
   ===================================================================== */
.feature {
  background: var(--bush);
  background-image: linear-gradient(160deg, var(--bush) 0%, var(--bush-700) 100%);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature-copy .stat-row { display: flex; gap: 2.4rem; margin-top: 1.8rem; }
.feature-copy .stat b { font-family: var(--display); font-size: 2rem; color: var(--white); display: block; letter-spacing: -.02em; }
.feature-copy .stat b small { font-size: .5em; font-weight: 600; margin-left: .12em; color: var(--timber); }
.feature-copy .stat span { font-size: .82rem; color: var(--paper-dim); text-transform: uppercase; letter-spacing: .1em; }
.feature-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, auto); gap: .8rem; }
.feature-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-collage .tall { grid-row: span 2; aspect-ratio: 3 / 4.4; }
.feature-collage .wide { aspect-ratio: 4 / 3; }

/* =====================================================================
   Split feature rows (services / about)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
/* Keep in-page anchor jumps clear of the sticky header */
.split[id] { scroll-margin-top: 92px; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split + .split { margin-top: clamp(3rem, 6vw, 5.5rem); }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; padding: .35rem 0; color: var(--ink); }
.ticks li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: .15rem;
  background: var(--fern);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =====================================================================
   Process steps (a real sequence -> numbered)
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  position: relative;
}
.step .num {
  font-family: var(--display); font-weight: 700; font-size: 2.6rem;
  color: var(--timber); letter-spacing: -.03em; line-height: 1; display: block; margin-bottom: .8rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--stone); margin: 0; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { background: var(--timber); color: var(--ink); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: clamp(2.6rem, 5vw, 3.6rem); }
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); max-width: 20ch; color: var(--ink); }
.cta-band .btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--bush-900); border-color: var(--bush-900); }
.cta-band .btn-ghost { border-color: var(--ink); color: var(--ink); }
.cta-band .btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
/* Compact, form-free contact block */
.contact-simple {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem); align-items: start;
  max-width: 820px; margin-inline: auto;
}
.contact-simple .contact-lines { margin-block: 0; }
.contact-hours .h3 { margin-bottom: .4rem; }
.btn-row.center-row { justify-content: center; margin-top: clamp(2rem, 4vw, 2.8rem); }
@media (max-width: 640px) {
  .contact-simple { grid-template-columns: 1fr; max-width: 420px; gap: 2rem; }
}
.contact-lines { display: grid; gap: 1.1rem; margin-block: 1.6rem 2rem; }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; }
.contact-line .ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bush); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: .1rem; }
.contact-line a { display: block; font-size: 1.15rem; font-weight: 600; }
.contact-line > div > span { display: block; color: var(--stone); font-size: .92rem; margin-top: .1rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .4rem; }
.hours-table th, .hours-table td { text-align: left; padding: .38rem 0; font-size: .95rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-weight: 500; color: var(--stone); }
.hours-table td { text-align: right; font-weight: 600; }
.hours-table .closed { color: var(--stone); font-weight: 500; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem;
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bush); box-shadow: 0 0 0 3px rgba(38,71,58,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .82rem; color: var(--stone); margin-top: .3rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .tick { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; background: var(--fern); display: flex; align-items: center; justify-content: center; }
.form-success .tick svg { width: 30px; height: 30px; color: #fff; }

/* =====================================================================
   Page hero (interior pages)
   ===================================================================== */
.page-hero { background: var(--bush); background-image: linear-gradient(155deg, var(--bush) 0%, var(--bush-900) 100%); color: var(--white); }
.page-hero .wrap { padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); max-width: 16ch; }
.page-hero p { max-width: 52ch; margin-top: 1.2rem; }
.page-hero .lead { color: #edf0e8; }
.breadcrumb { font-size: .82rem; color: var(--paper-dim); margin-bottom: 1.2rem; letter-spacing: .04em; }
.breadcrumb a { color: var(--paper-dim); }
.breadcrumb a:hover { color: var(--white); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--bush-900); color: var(--paper-dim); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0; }
.site-footer a { color: var(--paper-dim); }
.site-footer a:hover { color: var(--timber); }
.footer-brand .brand-text b { color: var(--white); }
.footer-brand p { font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.footer-list li { padding: .28rem 0; font-size: .94rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { max-height: 60vh; object-fit: cover; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav { gap: .4rem; }
  .header-call-m {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bush); color: var(--white);
  }
  .header-call-m:hover { background: var(--bush-700); color: var(--white); }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.2rem; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav.open .nav-links a::after { display: none; }
  .site-header { position: sticky; }
  .feature-collage { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .card-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .svc-card:hover { transform: none; }
}

/* =====================================================================
   About: two photos side by side + condensed copy below
   ===================================================================== */
.about-lite { max-width: 1000px; margin-inline: auto; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-photo, .credential-media {
  position: relative; display: block; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.about-photos img { width: 100%; height: clamp(210px, 28vw, 300px); object-fit: cover; display: block; }
.about-lite-copy { text-align: center; max-width: 66ch; margin: clamp(1.3rem, 3vw, 1.9rem) auto 0; }
.about-lite-copy .eyebrow { justify-content: center; }
.about-lite-copy p { margin-top: .7rem; }
.credential-zoom {
  position: absolute; right: .7rem; bottom: .7rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  color: #fff; background: rgba(0,0,0,.7);
  padding: .3rem .6rem; border-radius: 999px; pointer-events: none;
}
@media (max-width: 640px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photos img { height: clamp(200px, 55vw, 260px); }
}
