/* ─────────────────────────────────────────────
   PNW COURIERS — heritage editorial
   ───────────────────────────────────────────── */

:root {
  --ink: #0d1814;
  --forest-deep: #14241b;
  --forest: #1a2e22;
  --forest-mid: #2d4434;
  --moss: #5a6e5b;

  --cream: #f0f2ef;
  --cream-light: #f6f8f5;
  --paper: #e8ebe7;
  --parchment: #ead7b8;

  --cedar: #b8854a;
  --cedar-deep: #8c5f30;
  --cedar-pale: #d9b785;

  --slate: #4a5d6e;
  --slate-mist: #94a3a8;
  --rose-snow: #d4a584;

  --rule: rgba(13, 24, 20, 0.18);
  --rule-soft: rgba(13, 24, 20, 0.08);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--ink);
  color: var(--cream);
}

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ───────────────────  NAV  ─────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(240, 242, 239, 0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--gutter);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 240px;
  gap: 2rem;
}

.nav--scrolled .nav__inner {
  height: 120px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}

.logo-mark {
  color: var(--forest);
  flex-shrink: 0;
}

/* nav image logo */
.nav__logo .logo-mark {
  display: block;
  height: 220px;
  width: auto;
  background: transparent;
}

.nav--scrolled .nav__logo .logo-mark {
  height: 96px;
}

@media (max-width: 1100px) {
  .nav__logo .logo-mark {
    height: 150px;
  }
  .nav--scrolled .nav__logo .logo-mark {
    height: 84px;
  }
}

@media (max-width: 820px) {
  .nav__logo .logo-mark {
    height: 100px;
  }
  .nav--scrolled .nav__logo .logo-mark {
    height: 70px;
  }
}

@media (max-width: 600px) {
  .nav__logo .logo-mark {
    height: 84px;
  }
  .nav--scrolled .nav__logo .logo-mark {
    height: 58px;
  }
}

.nav__logo:hover .logo-mark {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.05));
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
  line-height: 1;
}

@media (max-width: 820px) {
  .nav__name {
    display: none;
  }
}

.nav__menu {
  display: flex;
  gap: 2.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav__menu a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__cta {
  white-space: nowrap;
}

/* hamburger button — hidden on desktop */
.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.nav__burger:hover {
  border-color: var(--ink);
}

.nav__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.2s ease,
    top 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }

.nav.is-open .nav__burger span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__burger span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

@media (max-width: 820px) {
  .nav__burger {
    display: inline-flex;
  }

  /* mobile: menu becomes a full-width dropdown sheet */
  .nav__menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 76px);
    background: var(--cream);
    border-top: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.4rem var(--gutter) 2.4rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.25s ease;
    z-index: 49;
    overflow-y: auto;
  }

  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu a {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: -0.015em;
    line-height: 1;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
  }

  .nav__menu a::after {
    display: none;
  }

  .nav__menu a:last-child {
    border-bottom: none;
  }

  /* lock body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* slightly tighter CTA on narrow screens */
  .nav__cta {
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
    gap: 0.4rem;
  }
}

/* shrink CTA label to "Order" on really narrow screens */
@media (max-width: 380px) {
  .nav__cta span::before {
    content: "Order";
  }
  .nav__cta span {
    font-size: 0;
  }
  .nav__cta span::before {
    font-size: 0.78rem;
  }
}

@media (max-width: 1100px) {
  .nav__inner {
    height: 170px;
  }
  .nav--scrolled .nav__inner {
    height: 108px;
  }
  .nav__menu {
    gap: 1.6rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  .nav__inner {
    height: 130px;
  }
  .nav--scrolled .nav__inner {
    height: 96px;
  }
}

/* ───────────────────  BUTTONS  ─────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
  background: transparent;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 24, 20, 0.22);
}

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--lg {
  padding: 1rem 1.6rem;
  font-size: 0.95rem;
}

.btn svg {
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn:hover svg {
  transform: translateX(3px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.25s ease;
}

.link-arrow:hover {
  gap: 0.7rem;
}

/* ───────────────────  HERO  ─────────────────── */

.hero {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  padding: 0 var(--gutter);
  overflow: hidden;
  background: var(--cream);
}

@media (max-width: 720px) {
  .hero {
    min-height: clamp(460px, 62vh, 600px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.rainier {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__bg::after {
  /* uniform dark wash so cream text reads cleanly across sky, snow,
     and forest while keeping the photo recognizable */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 24, 20, 0.3) 0%,
    rgba(13, 24, 20, 0.22) 30%,
    rgba(13, 24, 20, 0.32) 55%,
    rgba(13, 24, 20, 0.55) 80%,
    rgba(13, 24, 20, 0.75) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(2rem, 6vh, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vh, 4.5rem);
  display: grid;
  gap: clamp(1.4rem, 4vh, 3rem);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero__meta-sep {
  opacity: 0.3;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cedar);
  box-shadow: 0 0 0 4px rgba(184, 133, 74, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(184, 133, 74, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(184, 133, 74, 0.05);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 350;
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-size: clamp(2.6rem, 9.6vw, 8rem);
  color: var(--cream);
  display: grid;
  gap: 0.05em;
  text-shadow: 0 2px 24px rgba(13, 24, 20, 0.55);
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--cedar-pale);
}

.hero__title span {
  display: block;
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__line-1 {
  animation-delay: 0.35s !important;
}
.hero__line-2 {
  animation-delay: 0.55s !important;
  padding-left: clamp(0.4rem, 7vw, 5rem);
}
.hero__line-3 {
  animation-delay: 0.75s !important;
  padding-left: clamp(0.4rem, 14vw, 11rem);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lower {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: end;
  margin-top: clamp(0.5rem, 2vh, 1.4rem);
  opacity: 0;
  animation: rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

.hero__lede {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream);
  border-left: 1px solid rgba(240, 242, 239, 0.35);
  padding-left: 1.4rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero__actions .btn--ghost {
  border-color: var(--cream);
  color: var(--cream);
}

.hero__actions .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

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

.hero__sidebar {
  position: absolute;
  right: clamp(0.6rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.vertical-text {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
}

.hero__bottom-strip {
  position: absolute;
  bottom: 1.8rem;
  left: var(--gutter);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero__bottom-strip {
    display: none;
  }
}

/* ───────────────────  MARQUEE  ─────────────────── */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.marquee__group {
  display: flex;
  gap: 3rem;
  align-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.dot-sep {
  color: var(--cedar);
  font-size: 1rem;
  font-style: normal;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

/* ───────────────────  STATS  ─────────────────── */

.stats {
  background: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  border-bottom: 1px solid var(--rule);
}

.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  opacity: 0.35;
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.15em;
}

.stat__sup {
  font-size: 0.32em;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  margin-top: 0.6em;
  color: var(--cedar);
  font-weight: 500;
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ───────────────────  SECTION HEAD  ─────────────────── */

.section-head {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  gap: 1.4rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cedar);
  opacity: 1;
  font-weight: 500;
  margin-right: 0.3rem;
}

.eyebrow--light {
  color: var(--cream);
  opacity: 0.8;
}

.eyebrow--light em {
  color: var(--cedar-pale);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest-deep);
}

.section-title--xl {
  font-size: clamp(2.4rem, 7vw, 6rem);
  max-width: 14ch;
}

/* ───────────────────  SERVICES  ─────────────────── */

.services {
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--rule);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.services__grid--seven .service-card--featured {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .services__grid,
  .services__grid--seven {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid--seven .service-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .services__grid,
  .services__grid--seven {
    grid-template-columns: 1fr;
  }
  .services__grid--seven .service-card--featured {
    grid-column: span 1;
  }
}

.service-card {
  position: relative;
  padding: 2rem 1.7rem 2.2rem;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  color: var(--ink);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--forest) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 30px 50px -25px rgba(13, 24, 20, 0.4);
  color: var(--cream);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card__num,
.service-card:hover .service-card__icon {
  color: var(--cedar-pale);
}

.service-card:hover .service-card__bullets li::before {
  background: var(--cedar);
}

.service-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.service-card--featured::before {
  background: linear-gradient(180deg, transparent, rgba(184, 133, 74, 0.15));
  opacity: 1;
}

.service-card--featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 50px -25px rgba(13, 24, 20, 0.5);
}

.service-card--featured .service-card__num,
.service-card--featured .service-card__icon {
  color: var(--cedar-pale);
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--cedar);
  transition: color 0.4s ease;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--ink);
  transition: color 0.4s ease;
}

.service-card--featured .service-card__icon {
  color: var(--cream);
}

.service-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  opacity: 0.85;
}

.service-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid currentColor;
  border-color: rgba(13, 24, 20, 0.12);
}

.service-card--featured .service-card__bullets,
.service-card:hover .service-card__bullets {
  border-color: rgba(240, 242, 239, 0.18);
}

.service-card__bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.service-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 1px;
  background: var(--cedar);
  transition: background 0.3s ease;
}

.service-card__corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.8rem;
  color: var(--cedar);
  z-index: 2;
}

/* ───────────────────  COVERAGE  ─────────────────── */

.coverage {
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(13, 24, 20, 0.08) 1px,
    transparent 0
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.5;
}

.coverage__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
}

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

.coverage__copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 100px;
}

@media (max-width: 980px) {
  .coverage__copy {
    position: static;
  }
}

.coverage__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36ch;
  color: var(--ink);
  opacity: 0.85;
}

.coverage__map {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1.4rem;
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(13, 24, 20, 0.04),
    0 30px 60px -40px rgba(13, 24, 20, 0.4);
}

.coverage__map::before,
.coverage__map::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink);
  opacity: 0.5;
}

.coverage__map::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.coverage__map::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-cities .city circle {
  transition: r 0.3s ease, fill 0.3s ease;
}

.map-cities .city:hover circle {
  fill: var(--cedar);
}

.map-cities .city--hero circle {
  animation: cityPulse 2.6s ease-in-out infinite;
  transform-origin: 225px 240px;
}

@keyframes cityPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.1;
  }
}

.coverage__cities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.4rem 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  position: relative;
}

.coverage__cities li {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 0.5rem 0;
  border-bottom: 1px dotted var(--rule);
  position: relative;
}

.coverage__cities li::after {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0.5rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cedar);
  opacity: 0.7;
}

/* On phones the 30-city list becomes a long single column; collapse it
   into compact wrapping chips so it stops eating ~1500px of scroll.
   Every city stays in the DOM as an <li>, so SEO coverage is unchanged. */
@media (max-width: 600px) {
  .coverage__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 2.2rem;
    padding-top: 1.5rem;
  }

  .coverage__cities li {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    padding: 0.34rem 0.7rem;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: var(--cream);
  }

  .coverage__cities li::after {
    display: none;
  }

  /* "and surrounding areas" reads as a trailing note, not a city chip */
  .coverage__cities li:last-child {
    border: none;
    background: none;
    padding-left: 0.2rem;
    opacity: 0.6;
    align-self: center;
  }
}

/* ───────────────────  SECONDARY PAGES  ─────────────────── */

.page-secondary {
  background: var(--cream);
}

.page-hero {
  position: relative;
  background: var(--cream);
  padding: clamp(3rem, 6.5vw, 6rem) var(--gutter) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    ellipse at left,
    rgba(184, 133, 74, 0.12) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.page-hero--compact {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
}

.page-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest-deep);
}

.page-hero__lede {
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 56ch;
  color: var(--ink);
  opacity: 0.9;
}

.page-hero__lede a {
  border-bottom: 1px solid var(--cedar);
  color: var(--ink);
}

.page-hero__crumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-hero__crumbs a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.page-hero__crumbs a:hover {
  border-color: currentColor;
}

.order-page__head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.order-page__crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}

.order-page__help {
  margin-top: 1.2rem;
  text-align: center;
  opacity: 0.65;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.order-page__help a {
  border-bottom: 1px solid currentColor;
  color: inherit;
}

/* ───────────────────  SERVICE DETAIL PAGES  ─────────────────── */

.service-page {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background: var(--cream);
}

.service-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 920px) {
  .service-page__inner {
    grid-template-columns: 1fr;
  }
}

.service-page__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 60ch;
}

.service-page__body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.service-page__body p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}

.service-page__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 0.4rem 0;
}

.service-page__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.4rem 0;
}

.service-page__features li::before {
  content: "✓";
  color: var(--cedar);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.service-page__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.8rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
}

@media (max-width: 920px) {
  .service-page__aside {
    position: static;
  }
}

.service-page__aside h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}

.service-page__aside p {
  font-size: 0.96rem;
  line-height: 1.6;
  opacity: 0.85;
}

.service-page__aside .btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.service-page__aside .btn:hover {
  background: var(--cedar);
  border-color: var(--cedar);
}

.service-page__aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(240, 242, 239, 0.15);
  padding-top: 1rem;
}

.service-page__aside-list a {
  color: var(--cream);
  opacity: 0.8;
  border-bottom: 1px solid transparent;
}

.service-page__aside-list a:hover {
  opacity: 1;
  border-color: var(--cedar-pale);
}

.service-page__aside-meta {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

.service-page__aside-meta strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 1;
  margin-top: 0.3rem;
  color: var(--cream);
}

.related-services {
  padding: clamp(2.75rem, 5.5vw, 4.75rem) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.related-services__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.related-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 880px) {
  .related-services__grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 1.4rem;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -28px rgba(13, 24, 20, 0.35);
}

.related-card__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--cedar);
}

.related-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
}

.related-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.8;
}

.related-card__more {
  margin-top: auto;
  padding-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar);
}

/* ───────────────────  FOUNDERS / ABOUT PAGE  ─────────────────── */

.founders {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background: var(--cream);
}

.founders__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.founders__photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 50px -30px rgba(13, 24, 20, 0.4);
}

.founders__img {
  width: 100%;
  height: auto;
  display: block;
}

.founders__bios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.founder__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52ch;
}

.founder__role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cedar);
  font-weight: 600;
}

.founder__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: -0.2rem;
}

.founder__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.about-pillars-section {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.about-pillars-section__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-pillars-section .about__pillars {
  border-top: 1px solid var(--rule);
  margin-top: 1rem;
}

.about-cta {
  padding: clamp(2.75rem, 5.5vw, 4.75rem) var(--gutter);
  background: var(--cream);
  text-align: center;
}

.about-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

.about-cta__inner .section-title {
  max-width: none;
}

.about-cta p {
  font-size: 1.05rem;
}

.about-cta a:not(.btn) {
  border-bottom: 1px solid var(--cedar);
  color: var(--ink);
}

.about-cta__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.8rem;
}

/* ───────────────────  ABOUT STORY  ─────────────────── */

.about-story {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background: var(--cream-light);
}

.about-story__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-story__inner .section-title {
  max-width: 22ch;
  margin-bottom: 0.3rem;
}

.about-story p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
}

.about-story__personal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--rule);
}

.about-story p.about-story__close {
  font-family: var(--font-display);
  font-weight: 350;
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  padding-top: 1.9rem;
  border-top: 1px solid var(--rule);
}

/* ───────────────────  REVIEWS  ─────────────────── */

.reviews {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3.4rem) var(--gutter);
  border-top: 1px solid var(--rule);
}

.reviews__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.reviews__head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.reviews__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.3rem;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}

.review-badge:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.review-badge:hover .review-badge__cta {
  color: var(--cedar-pale);
}

.review-badge__source {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
}

.review-badge__stars {
  color: var(--cedar);
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

.review-badge:hover .review-badge__stars {
  color: var(--cedar-pale);
}

.review-badge__score {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
}

.review-badge__cta {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: color 0.25s ease;
}

.reviews__widget {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

@media (max-width: 980px) {
  .reviews__widget {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.reviews__loading {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  opacity: 0.5;
}

.quote {
  position: relative;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.4rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.quote:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -28px rgba(13, 24, 20, 0.35);
}

.quote__mark {
  position: absolute;
  top: 0.3rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--cedar);
  opacity: 0.4;
}

.quote blockquote {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: 0.98rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  padding-top: 0.6rem;
}

.quote blockquote p {
  margin: 0;
  /* Keep cards even in the compact grid; long reviews truncate (full text
     lives on Google, linked from the badge above). */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  line-clamp: 7;
  overflow: hidden;
}

.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--rule-soft);
  padding-top: 0.75rem;
  margin-top: auto;
}

.quote__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}

.quote__meta {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.quote__stars {
  color: var(--cedar);
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.reviews__setup {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  line-height: 1.7;
  background: var(--cream-light);
  border: 1px dashed var(--rule);
  padding: 1rem 1.2rem;
  border-radius: 6px;
  opacity: 0.85;
}

.reviews__setup-tag {
  display: inline-block;
  background: var(--cedar);
  color: var(--cream-light);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-right: 0.6rem;
}

.reviews__setup a {
  color: var(--cedar-deep);
  border-bottom: 1px solid currentColor;
}

.reviews__setup code {
  font-size: 0.95em;
  background: var(--paper);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

.reviews__error {
  grid-column: 1 / -1;
  padding: 2rem 1rem;
  text-align: center;
  opacity: 0.7;
}

.reviews__error a {
  border-bottom: 1px solid currentColor;
}

/* ───────────────────  ORDER CTA (homepage)  ─────────────────── */

.order-cta {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.order-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 133, 74, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.order-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}

@media (max-width: 880px) {
  .order-cta__inner {
    grid-template-columns: 1fr;
  }
}

.order-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.order-cta__title {
  color: var(--cream);
  max-width: 14ch;
}

.order-cta__title em {
  color: var(--cedar-pale);
}

.order-cta__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.85;
  max-width: 46ch;
}

.order-cta__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.order-cta__actions .btn--primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.order-cta__actions .btn--primary:hover {
  background: var(--cedar);
  border-color: var(--cedar);
  color: var(--ink);
}

.btn--ghost-light {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.order-cta__visual {
  background: #1d2e25;
  border: 1px solid rgba(240, 242, 239, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 50px 80px -50px rgba(0, 0, 0, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-cta__visual:hover {
  transform: rotate(0deg);
}

.order-cta__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 242, 239, 0.04);
  padding: 0.7rem 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(240, 242, 239, 0.08);
}

.order-cta__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.order-cta__dot:nth-child(1) {
  background: #d97a5e;
}
.order-cta__dot:nth-child(2) {
  background: #d9b56e;
}
.order-cta__dot:nth-child(3) {
  background: #7eb583;
}

.order-cta__url {
  margin-left: 0.6rem;
  opacity: 0.6;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
}

.order-cta__preview {
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
}

.order-cta__preview-line {
  height: 12px;
  background: rgba(240, 242, 239, 0.08);
  border-radius: 3px;
  width: 70%;
}

.order-cta__preview-line--lg {
  height: 28px;
  width: 80%;
  background: rgba(240, 242, 239, 0.18);
}

.order-cta__preview-line--med {
  width: 60%;
}

.order-cta__preview-line--sm {
  width: 40%;
}

.order-cta__preview-row {
  display: flex;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.order-cta__preview-pill {
  flex: 1;
  height: 36px;
  background: rgba(240, 242, 239, 0.06);
  border: 1px solid rgba(240, 242, 239, 0.1);
  border-radius: 4px;
}

.order-cta__preview-button {
  margin-top: auto;
  height: 44px;
  width: 50%;
  background: var(--cedar);
  border-radius: 999px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

.order-cta__preview-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ───────────────────  ORDER PORTAL (standalone page)  ─────────────────── */

.order-page {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-top: 1px solid var(--rule);
  position: relative;
}

.order-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(13, 24, 20, 0.07) 1px,
    transparent 0
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.5;
}

.order-page__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.order-page__head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
}

.order-page__lede {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.85;
  max-width: 50ch;
}

.order-page__frame {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(13, 24, 20, 0.04),
    0 40px 80px -50px rgba(13, 24, 20, 0.5);
}

.order-page__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 4;
  pointer-events: none;
}

.order-page__corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--cedar);
  border-left: 2px solid var(--cedar);
}
.order-page__corner--tr {
  top: -1px;
  right: -1px;
  border-top: 2px solid var(--cedar);
  border-right: 2px solid var(--cedar);
}
.order-page__corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid var(--cedar);
  border-left: 2px solid var(--cedar);
}
.order-page__corner--br {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid var(--cedar);
  border-right: 2px solid var(--cedar);
}

.order-page__chrome {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(240, 242, 239, 0.15);
}

.order-page__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.order-page__dot:nth-child(1) {
  background: #d97a5e;
}
.order-page__dot:nth-child(2) {
  background: #d9b56e;
}
.order-page__dot:nth-child(3) {
  background: #7eb583;
}

.order-page__url {
  margin-left: 0.8rem;
  opacity: 0.75;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  font-size: 0.7rem;
}

.order-page__iframe {
  display: block;
  width: 100%;
  height: clamp(640px, 86vh, 1000px);
  border: 0;
  background: #fff;
}

/* ───────────────────  CONTACT CTA PANEL  ─────────────────── */

.contact__panel.contact__panel--cta {
  grid-row: 1 / span 3;
  grid-column: 2;
  justify-content: flex-start;
  background: linear-gradient(
    180deg,
    var(--forest) 0%,
    var(--forest-deep) 100%
  );
}

.contact__panel:not(.contact__panel--cta) {
  grid-column: 1;
}

@media (max-width: 820px) {
  .contact__panel.contact__panel--cta,
  .contact__panel:not(.contact__panel--cta) {
    grid-row: auto;
    grid-column: auto;
  }
}

.contact__cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.9;
  margin: 0.4rem 0 1.2rem;
  max-width: 32ch;
}

.contact__panel--cta .btn {
  align-self: start;
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.contact__panel--cta .btn:hover {
  background: var(--cedar);
  border-color: var(--cedar);
  color: var(--ink);
}

.contact__cta-link {
  margin-top: 1.2rem;
  color: var(--cedar-pale);
  border-color: var(--cedar-pale);
  font-size: 0.7rem;
}

.contact__cta-link:hover {
  color: var(--cream);
}

/* ───────────────────  ABOUT  ─────────────────── */

.about {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}

.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(3rem, 6vw, 5rem);
}

.about__inner > .eyebrow {
  display: inline-flex;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.about__pull {
  position: sticky;
  top: 100px;
}

@media (max-width: 880px) {
  .about__pull {
    position: static;
  }
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 50ch;
}

.about__body em {
  font-family: var(--font-display);
  font-style: italic;
}

.dropcap {
  position: relative;
}

.dropcap__char {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 5.2rem;
  line-height: 0.85;
  float: left;
  margin: 0.18em 0.18em 0 -0.05em;
  color: var(--forest);
}

.about__signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.about__sig-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--forest);
  font-weight: 500;
}

.about__sig-line {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

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

.pillar {
  padding: 2.4rem 1.6rem 0.4rem;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.pillar:last-child {
  border-right: none;
}

@media (max-width: 820px) {
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .pillar:last-child {
    border-bottom: none;
  }
}

.about__pillars-head {
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.4rem;
}

.about__pillars-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.about__pillars-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest-deep);
}

.pillar h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
  max-width: 30ch;
}

/* ───────────────────  CONTACT  ─────────────────── */

.contact {
  background: var(--cream-light);
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(184, 133, 74, 0.10) 0%,
    transparent 55%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.contact__head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  display: grid;
  gap: 1.4rem;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 16ch;
}

.contact__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--cedar);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(13, 24, 20, 0.12);
  border: 1px solid rgba(13, 24, 20, 0.12);
}

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

.contact__panel,
.contact__form {
  background: var(--cream-light);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact__form {
  grid-row: span 3;
  grid-column: 2;
}

@media (max-width: 820px) {
  .contact__form {
    grid-row: auto;
    grid-column: auto;
  }
}

.contact__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar-deep);
  opacity: 0.95;
  font-weight: 500;
}

.contact__big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0.2rem 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  line-height: 1.1;
}

.contact__big--sm {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  word-break: break-word;
}

.contact__big:hover {
  border-color: var(--cedar);
}

.contact__hours {
  color: var(--ink);
  opacity: 0.55;
  margin-top: auto;
}

.contact__addr {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
  margin: 0.3rem 0;
}

.contact__addr .mono {
  display: block;
  margin-top: 0.7rem;
  color: var(--cedar-deep);
  font-size: 0.7rem;
  opacity: 0.95;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
}

.contact__form input,
.contact__form select {
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13, 24, 20, 0.25);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__form input::placeholder {
  color: rgba(13, 24, 20, 0.35);
  font-style: italic;
}

.contact__form input:focus,
.contact__form select:focus {
  border-color: var(--cedar);
}

.contact__form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%230d1814' stroke-width='1' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
  appearance: none;
}

.contact__form select option {
  background: var(--cream-light);
  color: var(--ink);
}

.contact__form .btn {
  align-self: start;
  margin-top: 0.8rem;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.contact__form .btn:hover {
  background: var(--cedar);
  border-color: var(--cedar);
  color: var(--ink);
}

.form__note {
  margin-top: 0.6rem;
  color: var(--ink);
  opacity: 0.5;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

/* ───────────────────  FOOTER  ─────────────────── */

.footer {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  padding-top: 0;
}

.footer__silhouette {
  display: block;
  width: 100%;
  height: 100px;
  margin-bottom: -1px;
}

.footer__inner {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
}

.footer__brand .logo-mark {
  margin-bottom: 0.4rem;
}

.logo-mark--lg {
  width: auto !important;
  height: auto;
  max-width: 460px;
  display: block;
}

@media (max-width: 820px) {
  .logo-mark--lg {
    max-width: 340px;
  }
}

.footer__est {
  color: var(--cream);
  opacity: 0.5;
  font-size: 0.66rem;
  margin-top: 0.4rem;
}

.social {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240, 242, 239, 0.18);
  color: var(--cream);
  transition: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}

.social a:hover {
  background: var(--cedar);
  border-color: var(--cedar);
  color: var(--ink);
  transform: translateY(-2px);
}

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

@media (max-width: 600px) {
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__cols > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar-pale);
  margin-bottom: 0.5rem;
}

.footer__cols a {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer__cols a:hover {
  opacity: 1;
  color: var(--cedar-pale);
}

.footer__base {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(240, 242, 239, 0.12);
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0.55;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.footer__credits {
  background: var(--ink);
  color: var(--cream);
  padding: 0 var(--gutter) 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  opacity: 0.4;
  text-transform: uppercase;
}

.footer__credits a {
  color: inherit;
  border-bottom: 1px solid rgba(240, 242, 239, 0.3);
  padding-bottom: 1px;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.footer__credits a:hover {
  border-color: var(--cedar-pale);
}

/* ───────────────────  REVEAL  ─────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track {
    animation: none;
  }
}
