/* ========================================
   Chris van der Leer - vanderleer.info
   Design tokens
   ======================================== */
:root {
  --paper: #FAFAF7;
  --ink: #14171A;
  --ink-soft: #4A4F54;
  --signal: #FF5A1F;
  --signal-dark: #D6470F;
  --trail: #1F6F54;
  --trail-light: #E8F0EC;
  --stone: #D8D3C4;
  --stone-light: #EFECE3;
  --surface: #FFFFFF;
  --shadow: 0 2px 24px rgba(20, 23, 26, 0.06);
  --shadow-lift: 0 12px 32px rgba(20, 23, 26, 0.12);

  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;

  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { position: relative; }

/* ---------- Skip link / accessibility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
noscript .reveal,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   Header / nav
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.nav-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-mark span { color: var(--signal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--signal);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] { color: var(--signal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem;
  margin: -0.65rem;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 760px) {
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--stone);
    padding: 1.5rem;
    gap: 1.2rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
    z-index: 101;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--signal);
  color: #fff;
}
.btn-primary:hover { background: var(--signal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.btn-trail {
  background: var(--trail);
  color: #fff;
}
.btn-trail:hover { background: #16543F; transform: translateY(-2px); box-shadow: var(--shadow-lift); }

/* ========================================
   Route-line signature element
   ======================================== */
.route-divider {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.route-line {
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  animation: dash 40s linear infinite;
}

@keyframes dash {
  to { stroke-dashoffset: -1000; }
}

.waypoint {
  transition: r 0.2s ease;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 6.5rem 0 3rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 1rem 0 1.2rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--signal);
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 1/1;
}

.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-photo-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(20,23,26,0.78);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.stat-row {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--stone);
  padding-top: 1.6rem;
}

.stat-num {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 320px; margin: 0 auto; }
  .hero-links { max-width: 320px; margin: 1rem auto 0; justify-content: center; }
}

/* ========================================
   Two-path section (signature)
   ======================================== */
.paths {
  padding: 4rem 0 5rem;
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.path-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--stone-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.path-card .path-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}

.path-card.pro .path-icon { background: rgba(255,90,31,0.12); color: var(--signal); }
.path-card.out .path-icon { background: var(--trail-light); color: var(--trail); }

.path-card h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.path-card p { color: var(--ink-soft); margin-bottom: 1.4rem; }

.path-card .path-link {
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.path-card.pro .path-link { color: var(--signal-dark); }
.path-card.out .path-link { color: var(--trail); }

.path-card .path-link svg { transition: transform 0.2s ease; width: 16px; height: 16px; }
.path-card:hover .path-link svg { transform: translateX(4px); }

@media (max-width: 760px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Generic section helpers
   ======================================== */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-top: 0.8rem;
}

.section-head p { color: var(--ink-soft); margin-top: 0.8rem; font-size: 1.05rem; }

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

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1.5rem;
}

.footer-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
}
.footer-mark span { color: var(--signal); }

.footer-tag { color: rgba(255,255,255,0.55); margin-top: 0.5rem; max-width: 22rem; }

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.9rem;
  font-family: var(--mono);
  font-weight: 500;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.3rem;
  padding: 0.25rem 0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--signal); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 640px) {
  .footer-grid { flex-direction: column; }
}

/* ========================================
   Professional page
   ======================================== */
.page-hero {
  padding: 5.5rem 0 3rem;
  border-bottom: 1px solid var(--stone);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); margin-top: 0.8rem; }
.page-hero p.lede { color: var(--ink-soft); font-size: 1.1rem; max-width: 38rem; margin-top: 1rem; }

.cert-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cert-chip {
  font-family: var(--mono);
  font-size: 0.78rem;
  background: var(--surface);
  border: 1px solid var(--stone);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cert-chip::before { content: "✓"; color: var(--trail); font-weight: 700; }

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.case-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid var(--stone-light);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.case-tag {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--signal-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.case-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.case-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1rem; }
.case-card p:last-of-type { flex-grow: 1; }
.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--stone-light);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.case-result {
  font-weight: 700;
  color: var(--trail);
  font-family: var(--display);
}

@media (max-width: 760px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* Timeline (ECF rollout, real sequence, earns the device) */
.timeline {
  position: relative;
  padding-left: 2.2rem;
  border-left: 2px solid var(--stone);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--signal);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--signal);
}
.timeline-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.timeline-item p { color: var(--ink-soft); font-size: 0.95rem; }
.timeline-date { font-family: var(--mono); font-size: 0.75rem; color: var(--signal-dark); display: block; margin-bottom: 0.3rem; }

/* Recommendations */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rec-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.8rem;
  border: 1px solid var(--stone-light);
}
.rec-card p.quote {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-style: normal;
}
.rec-who { font-size: 0.85rem; color: var(--ink-soft); }
.rec-who strong { color: var(--ink); display: block; font-family: var(--body); }

@media (max-width: 900px) {
  .rec-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .rec-grid { grid-template-columns: 1fr; }
}

/* Skills cloud */
.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.skill-pill {
  background: var(--stone-light);
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
}

/* Resume download bar */
.resume-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 2rem 2.2rem;
}
.resume-bar .btn { width: 100%; justify-content: center; }
.resume-bar h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.resume-bar p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ========================================
   Outdoors page
   ======================================== */
.page-hero.out { background: var(--trail-light); border-bottom: 1px solid var(--stone); }
.page-hero.out .eyebrow { color: var(--trail); }
.page-hero.out .eyebrow::before { background: var(--trail); }

/* Photo gallery tiles (real photos) */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.photo-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.photo-tile .tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 1.1rem 1rem 0.9rem;
}

@media (max-width: 860px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}

/* Role cards (parkrun / triathlon) */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.role-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.2rem;
  border: 1px solid var(--stone-light);
  box-shadow: var(--shadow);
}
.role-card .role-years {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--trail);
  margin-bottom: 0.6rem;
  display: block;
}
.role-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.role-card p { color: var(--ink-soft); font-size: 0.96rem; }

@media (max-width: 960px) {
  .role-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .role-grid { grid-template-columns: 1fr; }
}

/* Instagram CTA banner */
.ig-banner {
  background: linear-gradient(120deg, #1F6F54, #143F31);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #fff;
  text-align: center;
}
.ig-banner h2 { font-size: 1.6rem; margin-bottom: 0.7rem; }
.ig-banner p { color: rgba(255,255,255,0.78); max-width: 32rem; margin: 0 auto 1.6rem; }

/* ========================================
   Contact page
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--stone-light);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,90,31,0.12);
  color: var(--signal);
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Name link styling (applies to every visible
   mention of "Chris van der Leer")
   ======================================== */
.name-link {
  color: var(--signal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 71, 15, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.name-link:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}
/* On dark surfaces (footer), keep it legible but still orange */
.site-footer .name-link {
  color: var(--signal);
  border-bottom-color: rgba(255, 90, 31, 0.4);
}
.site-footer .name-link:hover { color: #fff; }

/* ========================================
   Professional page hero (two-column fix)
   ======================================== */
.pro-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}


@media (max-width: 860px) {
  .pro-hero-grid { grid-template-columns: 1fr; }
  .pro-hero-grid .hero-photo { max-width: 320px; margin: 1.5rem auto 0; }
}

/* Bio section two-column grid, collapses on mobile */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; }
}

/* Outdoors hero two-column layout with elevation graphic */
.out-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.topo-quote {
  border-top: 1px solid var(--stone-light);
  padding: 1.3rem 1.6rem 1.5rem;
}
.topo-quote p {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.topo-quote span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--trail);
}

@media (max-width: 860px) {
  .out-hero-grid { grid-template-columns: 1fr; }
  .topo-card { margin-top: 1.5rem; max-width: 420px; }
}

/* Quick links row under homepage hero photo */
.hero-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--stone);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hero-links a:hover {
  border-color: var(--signal);
  color: var(--signal-dark);
}

/* Topographic trail map illustration (outdoors hero) */
.topo-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 0 0 0.4rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.topo-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: linear-gradient(180deg, #F3F8F5, #E7F0EA);
  border-radius: 20px 20px 0 0;
}
.topo-layer {
  position: absolute;
  top: 0; left: 0;
  width: 130%;
  height: 100%;
}
.topo-back {
  animation: topo-drift-slow 50s linear infinite;
}
.topo-mid {
  animation: topo-drift-fast 32s linear infinite;
}
.topo-route {
  width: 100%;
}
@keyframes topo-drift-slow {
  from { transform: translateX(0); }
  to { transform: translateX(-23%); }
}
@keyframes topo-drift-fast {
  from { transform: translateX(0); }
  to { transform: translateX(-23%); }
}
.topo-route path {
  stroke-dasharray: 1 12;
  animation: topo-trace 6s linear infinite;
}
@keyframes topo-trace {
  to { stroke-dashoffset: -130; }
}

/* Contact hero with live local time card */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.time-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow);
}
.time-card-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--signal-dark);
  margin-bottom: 0.7rem;
}
.time-card-clock {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.time-card-date {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}
.time-card-divider {
  border-top: 1px solid var(--stone-light);
  margin: 1.3rem 0;
}
.time-card-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .contact-hero-grid { grid-template-columns: 1fr; }
  .time-card { margin-top: 1.5rem; }
}

/* "Coming soon" placeholder tile in the outdoors gallery */
.photo-tile-pending {
  background: var(--stone-light);
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  aspect-ratio: auto;
  overflow: visible;
  min-height: 100%;
}
.photo-tile-pending::after {
  content: none;
}
.pending-spinner {
  display: flex;
  gap: 0.4rem;
}
.pending-spinner span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--trail);
  opacity: 0.35;
  animation: pending-pulse 1.4s ease-in-out infinite;
}
.pending-spinner span:nth-child(2) { animation-delay: 0.2s; }
.pending-spinner span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pending-pulse {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1.15); }
}
.tile-label-pending {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
