/* ==========================================================================
   Sandstone Artists — Prototype Stylesheet
   Mobile-first. No external fonts (load-time priority) — system stack only.
   No sidebars anywhere by design.

   COLOR RULE: only three brand colors are used, anywhere, ever:
     green #45595A · gold #C0A875 · offwhite #E9E8E3
   Muted/hover states are opacity variants of these three — no other hues.
   ========================================================================== */

:root {
  --green: #45595A;
  --green-rgb: 69, 89, 90;
  --gold: #C0A875;
  --gold-rgb: 192, 168, 117;
  --offwhite: #E9E8E3;
  --offwhite-rgb: 233, 232, 227;

  /* Warm near-black, used ONLY as a photo-wash overlay (home hero background
     photo) — not a UI/text color, so it doesn't count against the 3-color
     rule above. Sits closer to the sandstone photo's own warm tones than a
     cool green wash would, so it blends with the image instead of fighting it. */
  --overlay-warm-rgb: 33, 26, 20;

  --maxw: 1120px;
  --radius: 4px;
  --nav-h: 68px;

  /* Sans-serif, wide kerning, all caps — matches the secondary logo wordmark. */
  --font-brand: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--green);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--font-brand);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 0.6em;
  line-height: 1.25;
}
p { margin: 0 0 1em; }

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

/* -------------------- TK / placeholder tag -------------------- */
.tk-tag {
  display: inline-block;
  background: rgba(var(--gold-rgb), 0.22);
  color: var(--green);
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.55em;
  border-radius: var(--radius);
  vertical-align: middle;
}
.tk-note { color: rgba(var(--green-rgb), 0.75); font-style: italic; }

/* -------------------- Skip link -------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: var(--offwhite);
  padding: 0.75em 1em;
  z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ==========================================================================
   HEADER / NAV
   Mobile-first: hamburger + full-screen overlay by default.
   Desktop (min-width: 768px): horizontal bar with underline-hover links.
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.15);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark { height: 34px; width: auto; }
.logo-text {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 2rem; }
.nav-link {
  position: relative;
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after { transform: scaleX(1); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green); margin: 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }

/* Full-screen mobile nav overlay — NOT a sidebar: covers the whole viewport */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 200;
}
.mobile-nav-overlay.is-open { transform: translateY(0); }
.mobile-nav-overlay ul { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.nav-link-mobile {
  position: relative;
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--offwhite);
  padding-bottom: 6px;
}
.nav-link-mobile::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nav-link-mobile:hover::after,
.nav-link-mobile:focus-visible::after,
.nav-link-mobile.is-active::after { width: 60%; }
.close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .hamburger.header-hamburger { display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--green);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; text-align: center; }
.footer-logo { display: inline-flex; margin-bottom: 1.25rem; }
.footer-logo .logo-text, .footer-logo .logo-mark { filter: none; }
.footer-logo .logo-text { color: var(--offwhite); }
.site-footer .logo-mark { height: 40px; }
.footer-address, .footer-contact { color: rgba(var(--offwhite-rgb), 0.85); font-size: 0.92rem; margin-bottom: 0.4rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { margin: 0.75rem 0 1.5rem; display: flex; gap: 1rem; justify-content: center; font-size: 0.8rem; }
.footer-social a {
  font-family: var(--font-brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.footer-social a:hover { color: var(--offwhite); }

.footer-nav-list { display: none; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.footer-nav-list a {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--offwhite-rgb), 0.85);
}
.footer-nav-list a:hover { color: var(--gold); }
.footer-hamburger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(var(--offwhite-rgb), 0.35);
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--offwhite);
  cursor: pointer;
}
@media (min-width: 768px) {
  .footer-nav-list { display: flex; }
  .footer-hamburger { display: none; }
}

.footer-policy { font-size: 0.82rem; color: rgba(var(--offwhite-rgb), 0.7); margin-bottom: 1rem; }
.footer-copyright { font-size: 0.75rem; color: rgba(var(--offwhite-rgb), 0.55); }

/* ==========================================================================
   HOME — hero only (logo wordmark + tagline over the brand graphic).
   Nothing else lives on this page.
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  overflow: hidden;
  /* Warm near-black wash (see --overlay-warm-rgb) holds contrast for the
     gold/offwhite text sitting on top, without fighting the tan photo the
     way a green tint did. */
  background-image: linear-gradient(rgba(var(--overlay-warm-rgb), 0.62), rgba(var(--overlay-warm-rgb), 0.62)), url("../img/sandstone-texture-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax on desktop */
}
@media (max-width: 767px) {
  /* background-attachment: fixed is unreliable/janky on mobile browsers — scroll normally instead */
  .home-hero { background-attachment: scroll; }
}
@media (prefers-reduced-motion: reduce) {
  .home-hero { background-attachment: scroll; }
}
.hero-inner { text-align: center; max-width: 520px; position: relative; z-index: 1; }
.hero-graphic { width: 100%; max-width: 130px; margin: 0 auto 2rem; }
@media (min-width: 768px) {
  .hero-graphic { max-width: 170px; }
}
.hero-wordmark {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.6em;
}
@media (min-width: 768px) {
  .hero-wordmark { font-size: 1.7rem; }
}
.hero-tagline {
  font-family: var(--font-body);
  color: var(--offwhite);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-tagline { font-size: 1.2rem; }
}

/* Float-up + fade-in on load, staggered (graphic, then wordmark, then tagline) */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-graphic, .hero-wordmark, .hero-tagline {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out forwards;
}
.hero-graphic { animation-delay: 0.1s; }
.hero-wordmark { animation-delay: 0.35s; }
.hero-tagline { animation-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .hero-graphic, .hero-wordmark, .hero-tagline {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* ==========================================================================
   GENERIC PAGE CONTENT
   ========================================================================== */
.page-content { max-width: var(--maxw); margin: 0 auto; padding: 3.5rem 1.25rem 4rem; }
.page-content h1 { font-size: 1.7rem; margin-bottom: 0.75rem; }
.page-lede { color: rgba(var(--green-rgb), 0.75); max-width: 640px; margin-bottom: 2rem; }
.error-page { text-align: center; padding-top: 5rem; padding-bottom: 6rem; }
.error-page .page-lede { margin-left: auto; margin-right: auto; }
.about-block {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--green);
  text-align: justify;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
}
.about-block p:last-child { margin-bottom: 0; }

/* -------------------- Clients page -------------------- */
.anchor-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(var(--green-rgb), 0.15);
  margin-bottom: 2.5rem;
  position: sticky;
  top: var(--nav-h);
  background: var(--offwhite);
  z-index: 10;
  padding-top: 0.5rem;
}
.tab-link {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--green-rgb), 0.6);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid transparent;
}
.tab-link:hover { color: var(--green); border-color: var(--gold); }
.client-section { padding-top: 1.5rem; scroll-margin-top: calc(var(--nav-h) + 3rem); margin-bottom: 3rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }
.placeholder-card {
  aspect-ratio: 3/4;
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px dashed rgba(var(--green-rgb), 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--green-rgb), 0.55);
  font-family: var(--font-brand);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------- Production page: video grid -------------------- */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 1.5rem 0 2.5rem; }
@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card { cursor: pointer; }
.video-thumbnail { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius); background: rgba(var(--green-rgb), 0.08); }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.video-card:hover .video-thumbnail img { transform: scale(1.04); }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(var(--green-rgb), 0.25);
}
.play-overlay::after {
  content: ""; width: 0; height: 0; margin-left: 4px;
  border-top: 14px solid transparent; border-bottom: 14px solid transparent; border-left: 22px solid var(--offwhite);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
.video-info { padding: 0.75rem 0.1rem 0; }
.video-title { font-family: var(--font-brand); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.95rem; color: var(--green); margin-bottom: 0.25em; }
.video-description { font-size: 0.85rem; color: rgba(var(--green-rgb), 0.75); }

.video-modal {
  position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  background: rgba(var(--green-rgb), 0.92); padding: 5vh 5vw;
}
.video-modal.is-open { display: flex; }
.video-modal-inner { width: 100%; max-width: 960px; aspect-ratio: 16 / 9; }
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius); }
.video-modal-close {
  position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: var(--offwhite);
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}

/* -------------------- Production page -------------------- */
.slate-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .slate-grid { grid-template-columns: repeat(2, 1fr); } }
.slate-card {
  border: 1px dashed rgba(var(--green-rgb), 0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(var(--gold-rgb), 0.12);
  color: rgba(var(--green-rgb), 0.55);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

/* -------------------- Team page -------------------- */
.team-tier { margin-bottom: 3rem; }
.team-tier-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.team-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(var(--green-rgb), 0.15);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.team-card.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .team-card { opacity: 1; transform: none; transition: none; }
}

/* Circular headshot — deliberately NOT the rounded-box placeholder used elsewhere */
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
  background: rgba(var(--gold-rgb), 0.15);
  flex-shrink: 0;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-card-header { text-align: center; margin-bottom: 1rem; }
.team-name {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  margin-bottom: 0.15em;
}
.team-title { font-style: italic; color: var(--gold); font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 0.9rem; margin-bottom: 0.5rem; }
.team-division {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.team-flag {
  display: inline-block;
  background: var(--green);
  color: var(--offwhite);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.35em 0.65em;
  border-radius: var(--radius);
}
.team-imdb { margin-bottom: 0.5rem; }
.team-imdb a {
  display: inline-block;
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1em;
  text-decoration: none;
}
.team-imdb a:hover, .team-imdb a:focus { color: var(--gold); }
.team-bio { max-width: 640px; margin: 0 auto; }
.team-bio p { font-size: 0.95rem; color: rgba(var(--green-rgb), 0.9); margin-bottom: 0.85em; }

@media (min-width: 640px) {
  .team-card { display: flex; gap: 2rem; text-align: left; }
  .team-photo { margin: 0.25rem 0 0; }
  .team-card-header { text-align: left; margin-bottom: 0; flex-shrink: 0; width: 200px; }
  .team-bio { margin: 0; max-width: none; }
}
.team-bio a { color: var(--gold); text-decoration: underline; }

/* -------------------- News page -------------------- */
.social-carousel { position: relative; display: flex; align-items: flex-start; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.carousel-stage {
  flex: 1 1 auto;
  max-width: 540px;
  min-height: 200px;
  display: flex;
  justify-content: center;
}
.carousel-stage .tk-note { padding: 3rem 1rem; text-align: center; width: 100%; }

/* LinkedIn posts — rendered via LinkedIn's own "Embed this post" iframe. */
.li-post-card {
  display: block;
  width: 100%;
  border: 1px solid rgba(var(--green-rgb), 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--offwhite);
}
.li-post-caption {
  padding: 1.1rem 1.25rem 0.75rem;
  font-size: 0.9rem;
  color: rgba(var(--green-rgb), 0.85);
  margin: 0;
}
/* LinkedIn's embed code is its own <iframe>; this just makes sure it fills
   the card width instead of sitting at the fixed pixel width LinkedIn's
   copied code specifies (see js/news-app.js, which strips the width
   attribute so this can take over). */
.li-post-embed { width: 100%; line-height: 0; }
.li-post-embed iframe { width: 100%; border: 0; display: block; }
.li-post-link {
  display: block;
  padding: 0.75rem 1.25rem 1.25rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.li-post-link:hover { color: var(--gold); }

/* Instagram posts — custom card, since Instagram has no equivalent no-auth
   embed. thumbnailUrl is a permanent copy saved by fetch-thumbnail.php,
   never a raw (expiring) Instagram CDN link — see js/news-app.js. */
.ig-post-card {
  display: block;
  width: 100%;
  border: 1px solid rgba(var(--green-rgb), 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--offwhite);
}
.ig-post-thumb { aspect-ratio: 1/1; background: rgba(var(--green-rgb), 0.06); overflow: hidden; }
.ig-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.ig-post-card:hover .ig-post-thumb img { transform: scale(1.04); }
.ig-post-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(var(--green-rgb), 0.35); }
.ig-post-caption {
  padding: 1.1rem 1.25rem 0.25rem;
  font-size: 0.9rem;
  color: rgba(var(--green-rgb), 0.85);
  margin: 0;
}
.ig-post-link {
  display: block;
  padding: 0.75rem 1.25rem 1.25rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.ig-post-card:hover .ig-post-link { color: var(--gold); }

.carousel-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(var(--green-rgb), 0.25);
  background: var(--offwhite);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--green);
  margin-top: 1rem;
}
.carousel-btn:hover { background: rgba(var(--green-rgb), 0.08); }
.social-follow {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  margin-bottom: 3rem;
}
.social-follow a { color: var(--green); margin: 0 0.6em; }
.social-follow a:hover { color: var(--gold); }

.press-section { border-top: 1px solid rgba(var(--green-rgb), 0.15); padding-top: 2.5rem; }
.press-section h2 { font-size: 1.1rem; }
.press-list { display: flex; flex-direction: column; }
.press-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--green-rgb), 0.12);
}
.press-item:hover .press-title { color: var(--gold); }
.press-title {
  font-family: var(--font-brand);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  color: var(--green);
}
.press-meta { font-size: 0.8rem; color: rgba(var(--green-rgb), 0.65); }

/* -------------------- Contact page -------------------- */
.contact-block { font-size: 1.05rem; }
.contact-email {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  color: var(--green);
}
.contact-email:hover { color: var(--gold); }
