/* ==========================================================================
   FirstPeak Studio — base stylesheet
   Plain CSS, no build step. Sections added later.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Type families */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Tight", var(--font-sans);
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Brand palette */
  --granite: #22262d;
  --slate: #5c6470;
  --bone: #f2eee6;
  --gold: #d89a45;
  --pine: #2e3d34;

  /* Semantic aliases */
  --color-bg: var(--granite);
  --color-surface: #f6f6f4;
  --color-text: #16181d;
  --color-muted: var(--slate);
  --color-accent: var(--gold);
  --color-border: #e4e4e1;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Layout */
  --container-max: 1120px;
  --container-pad: 1.5rem;

  /* Misc */
  --radius: 10px;
  --transition: 180ms ease;
}

/* ---- Reset / normalize -------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* No gray flash on tap (mobile); we use our own hover/active states. */
  -webkit-tap-highlight-color: transparent;
}

/* Branded text selection */
::selection {
  background-color: var(--gold);
  color: var(--granite);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---- Typography defaults ------------------------------------------------ */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
}

/* Editorial / serif accents — apply to pull quotes, eyebrow text, etc. */
.serif {
  font-family: var(--font-serif);
}

p {
  margin: 0 0 var(--space-sm);
}

/* ---- Layout helpers ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Accessibility: visible focus + skip-link friendly */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link: hidden until focused via keyboard. */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3000; /* above the sticky nav and lightbox chrome */
  transform: translateY(-150%);
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  background-color: var(--gold);
  color: var(--granite);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--granite);
  outline-offset: 2px;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem; /* ~13px */
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--granite);
}

.btn--gold:hover {
  background-color: #e6ad5e;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* mobile browser chrome aware */
  max-height: 1100px; /* cap gracefully on very tall screens */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--granite); /* fallback while video loads */
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center; /* favor the right so the lodge stays in frame */
  z-index: 0;
}

/* Gradient scrim:
   1) left -> right granite fade for headline legibility
   2) top -> down darkening so the nav reads */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(
      to right,
      rgba(34, 38, 45, 0.8) 0%,
      rgba(34, 38, 45, 0.8) 30%,
      rgba(34, 38, 45, 0) 62%
    ),
    linear-gradient(
      to bottom,
      rgba(34, 38, 45, 0.45) 0%,
      rgba(34, 38, 45, 0) 25%
    );
}

/* ---- Top nav (sticky / fixed) ------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent; /* transparent over the hero */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Solid state once scrolled past the hero top */
.site-header.is-scrolled {
  background-color: var(--granite);
  box-shadow: 0 2px 16px rgba(34, 38, 45, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 1.5rem; /* ~24px — tall hero state */
  padding-bottom: 1.5rem;
  transition: padding-top 0.3s ease, padding-bottom 0.3s ease;
}

/* Trim the bar a touch while scrolling */
.site-header.is-scrolled .nav {
  padding-top: 0.875rem; /* ~14px */
  padding-bottom: 0.875rem;
}

/* Smooth-scroll targets land below the fixed bar, not under it */
main section[id] {
  scroll-margin-top: 6rem; /* ~96px */
}

@media (min-width: 769px) {
  .nav {
    /* ~28px from the left edge for the floating mark */
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.nav__brand {
  display: inline-flex;
  align-items: center;
}

.nav__mark {
  height: 60px; /* ~56-64px tall */
  width: auto;
  display: block;
  /* keep the mark crisp against the bright video */
  filter: drop-shadow(0 2px 10px rgba(34, 38, 45, 0.45));
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Close button lives in the mobile overlay only */
.nav__close {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 0.8125rem; /* ~13px */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bone);
  transition: color var(--transition);
}

/* Animated gold underline on hover + active (current) section */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__links a.is-active {
  color: var(--gold);
}

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--bone);
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- Hero content ------------------------------------------------------- */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.hero__content {
  max-width: 900px;
}

.hero__wordmark {
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  margin: 0 0 1.25rem; /* tuck the tagline in under the logo */
  filter: drop-shadow(0 2px 12px rgba(34, 38, 45, 0.45));
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.4rem); /* ~18-22px */
  line-height: 1.3;
  color: var(--bone);
  text-shadow: 0 1px 10px rgba(34, 38, 45, 0.55);
  margin: 0 0 1.5rem; /* ~24px above the headline */
}

.hero__tagline-accent {
  color: var(--gold);
}

/* Toggle: add class `hero--no-wordmark` on .hero to hide the text-block
   wordmark (the nav mark already carries the brand). */
.hero--no-wordmark .hero__wordmark {
  display: none;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw + 1rem, 5.5rem); /* ~48px -> ~88px */
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 900px; /* wrap before the lit peak, stay on the scrimmed side */
  margin: 0;
}

.hero__rule {
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--gold);
  margin: 1.75rem 0;
}

.hero__subhead {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.25rem); /* ~18-20px */
  line-height: 1.5;
  color: rgba(242, 238, 230, 0.9);
  max-width: 440px;
  margin: 0;
}

.hero__ailine {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  font-weight: 600;
  line-height: 1.5;
  color: rgba(242, 238, 230, 0.95);
  text-shadow: 0 1px 8px rgba(34, 38, 45, 0.6);
  max-width: 440px;
  margin: 0.875rem 0 0; /* ~14px above */
}

.hero__ailine-accent {
  color: var(--gold);
}

.hero__endorsement {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* ~12px */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 238, 230, 0.95);
  text-shadow: 0 1px 8px rgba(34, 38, 45, 0.6);
  margin: 2rem 0 0; /* breathing room before the trust line */
}

/* ---- Shared eyebrow label ----------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem; /* ~12px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 1rem; /* ~16px */
}

/* ==========================================================================
   THE OPPORTUNITY
   ========================================================================== */
.opportunity {
  background-color: var(--bone);
  color: var(--granite);
  padding-block: 7.5rem; /* ~120px desktop */
}

.opportunity__inner {
  max-width: 760px;
  text-align: left;
}

.opportunity__lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.2vw + 1.25rem, 2rem); /* ~28-32px */
  line-height: 1.4;
  color: var(--granite);
  margin: 0;
}

.opportunity__emph {
  font-style: italic;
  color: var(--gold);
}

.opportunity__body {
  max-width: 620px;
  margin-top: 1.75rem; /* ~28px */
}

.opportunity__body p {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  line-height: 1.7;
  color: var(--granite);
}

.opportunity__body p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   HOW WE WORK (method)
   ========================================================================== */
.method {
  background-color: var(--granite);
  color: var(--bone);
  padding-block: 7.5rem; /* ~120px desktop */
}

.method__inner {
  max-width: 960px;
}

.method__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2vw + 1.4rem, 2rem); /* ~32px */
  line-height: 1.15;
  color: var(--bone);
  margin: 0 0 2.5rem;
}

.method__steps {
  /* list reset already applied globally */
}

.step {
  display: flex;
  gap: 1.75rem;
  align-items: baseline;
  padding-block: 1.5rem; /* ~24px */
  border-top: 1px solid rgba(242, 238, 230, 0.15);
}

.step:last-child {
  border-bottom: 1px solid rgba(242, 238, 230, 0.15);
}

.step__num {
  flex: 0 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.625rem, 1vw + 1.25rem, 1.875rem); /* ~30px */
  line-height: 1;
  color: var(--gold);
  min-width: 1.5ch;
}

.step__content {
  flex: 1 1 auto;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem; /* ~17px */
  line-height: 1.3;
  color: var(--bone);
  margin: 0 0 0.5rem;
}

.step__desc {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* ~14px */
  line-height: 1.65;
  color: rgba(242, 238, 230, 0.75);
  margin: 0;
}

.step__desc strong {
  font-weight: 600;
  color: var(--bone);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background-color: var(--bone);
  color: var(--granite);
  padding-block: 6.875rem; /* ~110px desktop */
}

.services__inner {
  max-width: 1080px;
  text-align: center;
}

.services__eyebrow {
  text-align: center;
}

.services__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2vw + 1.4rem, 2rem); /* ~32px */
  line-height: 1.15;
  color: var(--granite);
  margin: 0 0 1rem;
}

.services__subhead {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 4rem; /* ~64px below */
}

.services__bands {
  display: flex;
  flex-direction: column;
  gap: 4rem; /* ~64px between bands */
  text-align: left;
}

.band__label {
  margin: 0 0 1.5rem;
}

.band__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.band__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem; /* ~22px */
  line-height: 1.25;
  color: var(--granite);
  margin: 0 0 0.4rem;
}

.band__desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 680px;
  margin: 0;
}

.band__media {
  margin: 0;
}

.band__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(34, 38, 45, 0.15);
  cursor: pointer;
}

.band__caption {
  margin: 0.75rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px */
  color: var(--slate);
}

/* Interim placeholder frame (used until a real graphic is supplied) */
.band__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-color: var(--granite);
  border: 1px dashed rgba(216, 154, 69, 0.45);
  box-shadow: 0 10px 30px rgba(34, 38, 45, 0.15);
  text-align: center;
  padding: 1.5rem;
}

.band__placeholder-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.band__placeholder-url {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--bone);
}

/* ==========================================================================
   SELECTED WORK
   ========================================================================== */
.work {
  background-color: var(--bone);
  color: var(--granite);
  padding-block: 7.5rem; /* ~120px desktop */
}

.work__inner {
  max-width: 1100px;
  text-align: center;
}

.work__eyebrow {
  /* eyebrow base handles type; center it here */
  text-align: center;
}

.work__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2vw + 1.4rem, 2rem); /* ~32px */
  line-height: 1.15;
  color: var(--granite);
  margin: 0 0 1rem;
}

.work__subhead {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 3.5rem; /* ~56px below */
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(34, 38, 45, 0.12);
}

.tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 1.25rem;
  background-image: linear-gradient(
    to top,
    rgba(34, 38, 45, 0.85) 0%,
    rgba(34, 38, 45, 0) 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tile:hover .tile__overlay,
.tile:focus-within .tile__overlay {
  opacity: 1;
}

.tile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.2;
  color: var(--bone);
  margin: 0 0 0.25rem;
}

.tile__category {
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0;
}

/* ==========================================================================
   PRINT WORK (masonry)
   ========================================================================== */
.print {
  background-color: var(--bone);
  color: var(--granite);
  padding-block: 6.875rem; /* ~110px desktop */
}

.print__inner {
  max-width: 1100px;
  text-align: center;
}

.print__eyebrow {
  text-align: center;
}

.print__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2vw + 1.3rem, 1.875rem); /* ~30px */
  line-height: 1.15;
  color: var(--granite);
  margin: 0 0 1rem;
}

.print__subhead {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto 3rem; /* ~48px below */
}

/* Masonry via CSS columns — keeps each piece's natural proportions */
.print__masonry {
  column-count: 3;
  column-gap: 24px;
  text-align: left;
}

.print-piece {
  margin: 0 0 24px; /* vertical rhythm between stacked pieces */
  break-inside: avoid; /* don't split a piece across columns */
}

.print-piece__img {
  width: 100%;
  height: auto;
  border-radius: 4px; /* less rounded than digital — reads as a printed page */
  box-shadow: 0 8px 24px rgba(34, 38, 45, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.print-piece__img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(34, 38, 45, 0.26);
}

/* Optional caption below each piece (text provided later) */
.print-piece__caption {
  margin: 0.75rem 0 0;
}

.print-piece__client {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem; /* ~13px */
  color: var(--granite);
  margin: 0 0 0.15rem;
}

.print-piece__category {
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0;
}

/* ==========================================================================
   IN MOTION (demo reel)
   ========================================================================== */
.motion {
  background-color: var(--bone);
  color: var(--granite);
  padding-block: 5.625rem; /* ~90px desktop */
}

.motion__inner {
  max-width: 720px;
  text-align: center;
}

.motion__eyebrow {
  text-align: center;
}

.motion__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2vw + 1.3rem, 1.75rem); /* ~28px */
  line-height: 1.15;
  color: var(--granite);
  margin: 0 0 1rem;
}

.motion__subhead {
  font-family: var(--font-sans);
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.motion__reel .reel {
  max-width: 720px;
}

/* On the light section the reel uses a clean shadow, no gold border. */
.motion__reel .reel__frame {
  border: 0;
  box-shadow: 0 10px 30px rgba(34, 38, 45, 0.18);
}

/* ==========================================================================
   WHY FIRSTPEAK (authority / trust)
   ========================================================================== */
.authority {
  background-color: var(--granite);
  color: var(--bone);
  padding-block: 7.5rem; /* ~120px desktop */
}

.authority__inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* ~50/50 */
  gap: 4rem; /* ~64px */
  align-items: center; /* vertically center columns */
}

.authority__text {
  text-align: left;
}

.authority__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2vw + 1.3rem, 1.875rem); /* ~30px */
  line-height: 1.15;
  color: var(--bone);
  margin: 0 0 1.25rem;
}

.authority__lead {
  font-family: var(--font-sans);
  font-size: 1.0625rem; /* ~17px */
  line-height: 1.7;
  color: rgba(242, 238, 230, 0.85);
  margin: 0 0 2.5rem; /* ~40px below */
}

/* EDHN endorsement */
.authority__endorsement {
  margin-bottom: 1.75rem; /* ~28px before the value points */
}

.authority__endorse-label {
  font-family: var(--font-sans);
  font-size: 0.625rem; /* ~10px */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(242, 238, 230, 0.6);
  margin: 0 0 0.5rem; /* ~8px */
}

.authority__endorse-link {
  display: inline-block;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.authority__endorse-link:hover,
.authority__endorse-link:focus-visible {
  opacity: 1;
}

.authority__endorse-logo {
  width: 300px;
  height: auto;
}

.authority__points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* ~20px between points */
}

.point {
  display: flex;
  gap: 0.875rem;
  align-items: baseline;
}

.point__mark {
  flex: 0 0 auto;
  font-size: 0.625rem;
  line-height: 1;
  color: var(--gold);
}

.point__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.3;
  color: var(--bone);
  margin: 0 0 0.25rem;
}

.point__text {
  font-family: var(--font-sans);
  font-size: 0.8125rem; /* ~13px */
  line-height: 1.6;
  color: rgba(242, 238, 230, 0.7);
  margin: 0;
}

/* Right column: framed studio image */
.authority__media {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(216, 154, 69, 0.3); /* thin gold @ 30% */
}

.authority__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.authority__caption {
  position: absolute;
  left: 1rem;
  bottom: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.75rem; /* ~12px */
  color: rgba(242, 238, 230, 0.7);
  text-shadow: 0 1px 6px rgba(34, 38, 45, 0.7);
}

/* Owner intro reel */
.authority__reel {
  margin-top: 4rem; /* ~64px below the text/image block */
}

.reel {
  max-width: 640px;
  margin: 0 auto;
}

.reel__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(216, 154, 69, 0.3); /* thin gold @ 30% — matches studio */
}

.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel__play {
  position: absolute;
  inset: 0;
  margin: auto; /* centers a fixed-size element */
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--granite);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(34, 38, 45, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.reel__play:hover {
  transform: scale(1.06);
  background-color: #e6ad5e;
}

.reel__play-icon {
  width: 30px;
  height: 30px;
  margin-left: 3px; /* optical centering of the triangle */
  fill: currentColor;
}

/* Hide the play overlay once playing */
.reel.is-playing .reel__play {
  display: none;
}

.reel__caption {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem; /* ~12px */
  color: rgba(242, 238, 230, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .reel__play {
    transition: none;
  }
}

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */
.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 8.75rem; /* ~140px desktop */
  background-color: var(--granite); /* fallback while video/poster load */
  text-align: center;
}

/* Background video behind the scrim */
.cta__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Granite scrim: overall darkening + edge vignette so centered text pops
   while the studio stays faintly, atmospherically visible. */
.cta__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    /* focused darkening behind the centered text content */
    radial-gradient(
      ellipse 55% 65% at center,
      rgba(34, 38, 45, 0.65) 0%,
      rgba(34, 38, 45, 0) 70%
    ),
    /* light overall wash so the studio reads clearly */
    linear-gradient(
      to bottom,
      rgba(34, 38, 45, 0.4) 0%,
      rgba(34, 38, 45, 0.4) 100%
    );
}

.cta__inner {
  position: relative;
  max-width: 640px;
}

.cta__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 2.5vw + 1.25rem, 2.5rem); /* ~40px */
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-shadow: 0 2px 12px rgba(34, 38, 45, 0.7);
  margin: 0;
}

.cta__subhead {
  font-family: var(--font-sans);
  font-size: 1.125rem; /* ~18px */
  line-height: 1.7;
  color: rgba(242, 238, 230, 0.9);
  text-shadow: 0 2px 12px rgba(34, 38, 45, 0.7);
  max-width: 520px;
  margin: 1.25rem auto 0; /* ~20px above */
}

.cta__btn {
  margin-top: 2.25rem; /* ~36px */
  padding: 1rem 2.25rem; /* ~16px 36px */
  border-radius: 7px;
  letter-spacing: 0.04em;
  transition: background-color var(--transition), transform var(--transition);
}

.cta__btn:hover {
  background-color: #e6ad5e;
  transform: translateY(-2px);
}

.cta__secondary {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* ~14px */
  color: rgba(242, 238, 230, 0.75);
  margin: 1.5rem 0 0; /* ~24px above */
}

.cta__link {
  color: var(--gold);
  transition: color var(--transition);
}

.cta__link:hover {
  color: #e6ad5e;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background-color: var(--granite);
  color: var(--bone);
  padding-block: 7.5rem; /* ~120px desktop */
}

.contact__inner {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 4rem;
  align-items: start;
}

.contact__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2vw + 1.3rem, 1.875rem); /* ~30px */
  line-height: 1.15;
  color: var(--bone);
  margin: 0 0 1.25rem;
}

.contact__text {
  font-family: var(--font-sans);
  font-size: 1rem; /* ~16px */
  line-height: 1.7;
  color: rgba(242, 238, 230, 0.85);
  margin: 0 0 2rem;
}

.contact__details {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem; /* ~15px */
}

.contact__detail {
  margin: 0 0 1.25rem;
  color: rgba(242, 238, 230, 0.85);
}

.contact__detail:last-child {
  margin-bottom: 0;
}

.contact__detail-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact__email {
  color: var(--bone);
  border-bottom: 1px solid rgba(216, 154, 69, 0.4);
  transition: color var(--transition), border-color var(--transition);
}

.contact__email:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Form panel */
.contact__panel {
  background-color: rgba(242, 238, 230, 0.06);
  border: 1px solid rgba(242, 238, 230, 0.15);
  border-radius: 10px;
  padding: 1.75rem; /* ~28px */
}

.field {
  margin-bottom: 1.25rem;
}

.field__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(242, 238, 230, 0.85);
  margin-bottom: 0.4rem;
}

.field__input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--bone);
  background-color: rgba(34, 38, 45, 0.4);
  border: 1px solid rgba(242, 238, 230, 0.2);
  border-radius: 6px;
  padding: 0.7rem 0.85rem;
  transition: border-color var(--transition), background-color var(--transition);
}

.field__input::placeholder {
  color: rgba(242, 238, 230, 0.4);
}

.field__input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(34, 38, 45, 0.6);
}

.field__textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.contact__submit {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
}

.contact__formnote {
  margin: 1rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #1a1d22; /* deeper granite — base of the page */
  color: var(--bone);
}

.footer__inner {
  max-width: 1100px;
  padding-top: 4rem; /* ~64px */
  padding-bottom: 2rem; /* ~32px */
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr; /* brand ~40%, links ~30% each */
  gap: 3rem;
}

/* Column 1: brand */
.footer__logo {
  width: 240px;
  height: auto;
  margin-bottom: 1.25rem; /* ~20px before the tagline */
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 0.8125rem; /* ~13px */
  line-height: 1.6;
  color: rgba(242, 238, 230, 0.7);
  max-width: 320px;
  margin: 0 0 1.25rem;
}

.footer__endorse {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(242, 238, 230, 0.6);
  transition: color var(--transition);
}

.footer__endorse:hover {
  color: var(--gold);
}

/* Columns 2 & 3 */
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.6875rem; /* ~11px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-family: var(--font-sans);
  font-size: 0.875rem; /* ~14px */
  color: rgba(242, 238, 230, 0.8);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

/* Social links: platform icon + label (icons distinguish same-named EDHN accounts) */
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__social-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  /* fill/stroke use currentColor via inline attrs, so they inherit the
     link color and shift to gold on hover automatically. */
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(242, 238, 230, 0.12);
}

.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* ~12px */
  color: rgba(242, 238, 230, 0.55);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--font-sans);
  font-size: 0.75rem; /* ~12px */
  color: rgba(242, 238, 230, 0.55);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ==========================================================================
   SCROLL REVEAL
   Progressive enhancement: only active when JS is present (html.js). Content
   is hidden first, then revealed on scroll via IntersectionObserver. The
   reduced-motion block below shows everything immediately with no animation.
   Note: targets here intentionally exclude elements with hover transforms
   (e.g. .cta__btn) so reveals never interfere with existing hover effects.
   ========================================================================== */

/* Hero content: a single subtle fade-in on load (video carries the motion). */
html.js .hero__content {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

html.js .hero__content.is-loaded {
  opacity: 1;
}

/* Sections + items fade in and rise gently as they enter the viewport. */
html.js :is(
  .eyebrow,
  .opportunity__lead, .opportunity__body,
  .method__heading, .step,
  .work__heading, .work__subhead, .tile,
  .print__heading, .print__subhead, .print-piece,
  .authority__heading, .authority__lead, .authority__endorsement,
  .point, .authority__media,
  .cta__inner,
  .contact__heading, .contact__text, .contact__details, .contact__panel
) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

html.js .is-visible {
  opacity: 1;
  transform: none;
}

/* Accessibility: no animation when the user prefers reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html.js .hero__content,
  html.js :is(
    .eyebrow,
    .opportunity__lead, .opportunity__body,
    .method__heading, .step,
    .services__heading, .services__subhead, .band,
    .work__heading, .work__subhead, .tile,
    .print__heading, .print__subhead, .print-piece,
    .motion__heading, .motion__subhead, .motion__reel,
    .authority__heading, .authority__lead, .authority__endorsement,
    .point, .authority__media, .authority__reel,
    .cta__inner,
    .contact__heading, .contact__text, .contact__details, .contact__panel
  ) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   LIGHTBOX
   Shared overlay for the digital + print work galleries. Minimal chrome —
   the image is the focus.
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background-color: rgba(26, 29, 34, 0.92); /* deep granite */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh; /* leave room for the caption; never overflow */
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__caption {
  text-align: center;
  max-width: 90vw;
}

.lightbox__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem; /* ~15px */
  color: var(--bone);
}

.lightbox__category {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* Controls */
.lightbox__counter {
  position: absolute;
  top: 1.6rem;
  left: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem; /* ~13px */
  letter-spacing: 0.1em;
  color: rgba(242, 238, 230, 0.65);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--bone);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--bone);
  font-size: 2.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}

.lightbox__nav--prev {
  left: 0.5rem;
}

.lightbox__nav--next {
  right: 0.5rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  color: var(--gold);
}

/* Lock page scroll while open */
body.lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox__img {
    transition: none !important;
  }
  .lightbox__img,
  .lightbox.is-open .lightbox__img {
    transform: none !important;
  }
}

/* ---- Responsive --------------------------------------------------------- */
/* Tablet: 2-column work grid + 2-column print masonry */
@media (max-width: 980px) {
  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .print__masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 1.25rem;
  }

  /* Collapse nav: show hamburger, turn the menu into a full-screen overlay. */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background-color: var(--granite); /* full opacity */
    /* hidden until opened */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  /* Open state (toggled via JS on .site-header) */
  .site-header.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.75rem; /* ~28px */
    right: 1.75rem;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--bone);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition);
  }

  .nav__close:hover {
    color: var(--gold);
  }

  /* Links stacked, centered, larger */
  .nav__links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav__links a {
    font-family: var(--font-display);
    font-size: 1.375rem; /* ~22px */
    letter-spacing: 0.02em;
    text-transform: none;
  }

  /* No underline accent in the full-screen overlay (links are large/centered) */
  .nav__links a::after {
    display: none;
  }

  .nav__cta {
    font-size: 0.875rem;
    padding: 0.9rem 1.75rem;
  }

  /* Lock body scroll while the overlay is open */
  body.nav-open {
    overflow: hidden;
  }

  /* Stronger top-to-bottom scrim so text stays readable on tall phones */
  .hero__scrim {
    background-image: linear-gradient(
      to bottom,
      rgba(34, 38, 45, 0.7) 0%,
      rgba(34, 38, 45, 0.55) 45%,
      rgba(34, 38, 45, 0.7) 100%
    );
  }

  .hero__headline {
    font-size: clamp(2.5rem, 9vw, 3.25rem);
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 2.5rem;
  }

  /* Anchor content comfortably in the upper area on tall screens */
  .hero__content {
    margin-top: 8vh;
  }

  .hero__video {
    /* Narrow portrait crops the frame hard, so push further right than desktop
       to keep the lodge in view. The full-height scrim protects legibility. */
    object-position: 80% center;
  }

  .opportunity {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  .method {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  .work {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  /* 1-column grid; show captions always since there's no hover */
  .work__grid {
    grid-template-columns: 1fr;
  }

  .print {
    padding-block: 4rem; /* ~64px mobile */
  }

  .print__masonry {
    column-count: 1;
  }

  .services {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  .services__bands {
    gap: 3rem;
  }

  .motion {
    padding-block: 3.75rem; /* ~60px mobile */
  }

  .tile__overlay {
    opacity: 1;
    background-image: linear-gradient(
      to top,
      rgba(34, 38, 45, 0.85) 0%,
      rgba(34, 38, 45, 0) 40%
    );
  }

  .authority {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  /* Stack to one column; image above the text for flow */
  .authority__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .authority__media {
    order: -1;
  }

  .cta {
    padding-block: 5.625rem; /* ~90px mobile */
  }

  .contact {
    padding-block: 4.5rem; /* ~72px mobile */
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Bottom bar stacks centered on mobile */
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

/* ==========================================================================
   INTERIOR PAGES (privacy, terms)
   No hero, so the fixed nav is solid from the top and content is offset
   below it.
   ========================================================================== */
body.page-interior .site-header {
  background-color: var(--granite);
  box-shadow: 0 2px 16px rgba(34, 38, 45, 0.25);
}

.legal {
  background-color: var(--bone);
  color: var(--granite);
  padding-top: 9rem; /* clear the fixed nav */
  padding-bottom: 6rem;
}

.legal__inner {
  max-width: 720px;
}

.legal__back {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.legal__back:hover {
  color: var(--gold);
}

.legal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2vw + 1.4rem, 2.5rem);
  line-height: 1.1;
  color: var(--granite);
  margin: 0 0 0.5rem;
}

.legal__updated {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate);
  margin: 0 0 2.5rem;
}

.legal__body p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--granite);
  margin: 0 0 1.25rem;
}

.legal__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem; /* ~20px */
  line-height: 1.3;
  color: var(--granite);
  margin: 2.5rem 0 0.75rem;
}

.legal__body a {
  color: var(--granite);
  border-bottom: 1px solid rgba(216, 154, 69, 0.5);
  transition: color var(--transition), border-color var(--transition);
}

.legal__body a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .legal {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

/* 404 page */
.notfound {
  background-color: var(--bone);
  color: var(--granite);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 6rem;
}

.notfound__inner {
  max-width: 560px;
}

.notfound__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 6rem);
  line-height: 1;
  color: var(--gold);
  margin: 0 0 1rem;
}

.notfound__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.1;
  color: var(--granite);
  margin: 0 0 1rem;
}

.notfound__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  margin: 0 auto 2rem;
}

.notfound__btn {
  padding: 0.95rem 2rem;
  border-radius: 7px;
  letter-spacing: 0.04em;
}
