/* ===========================================================================
   Human AI Marketing — Homepage
   Editorial / magazine aesthetic, two-temperature design.
   =========================================================================== */

:root {
  /* Brand colors */
  --ink: #0F1B2D;
  --ink-90: rgba(15, 27, 45, 0.92);
  --ink-70: rgba(15, 27, 45, 0.72);
  --ink-50: rgba(15, 27, 45, 0.5);
  --ink-20: rgba(15, 27, 45, 0.2);
  --ink-10: rgba(15, 27, 45, 0.1);
  --ink-06: rgba(15, 27, 45, 0.06);

  --bone: #F6F1E7;
  --bone-warm: #F2EBDC;
  --bone-cool: #EDE7D6;

  --hearth: #E2733B;
  --hearth-soft: #EBA37C;
  --hearth-deep: #B8581F;

  --signal: #3DBDC9;
  --signal-soft: #8FD8DF;
  --signal-deep: #1F8A95;

  --limestone: #C9C2B3;
  --slate: #4A5663;
  --white: #FFFFFF;

  /* Typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1320px;
  --max-prose: 68ch;
  --rad: 4px;
  --rad-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--bone);
}

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 64, "SOFT" 30;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration-color: var(--ink-20);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 200ms var(--ease);
}
a:hover { text-decoration-color: var(--hearth); }

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

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

/* ---------- Tactile grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  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.92' 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.65 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Scroll progress bar ---------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 999;
  background: transparent;
  pointer-events: none;
}
.progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hearth), var(--signal));
  transition: width 120ms linear;
}

/* ===========================================================================
   Masthead
   =========================================================================== */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--ink-10);
}
.masthead__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  white-space: nowrap;
}
.wordmark__h, .wordmark__m {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 100;
}
.wordmark__ai {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.82em;
  letter-spacing: 0.02em;
  padding: 0.05em 0.4em;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--bone);
  transform: translateY(-0.05em);
}
.wordmark__dot {
  color: var(--ink-50);
  font-weight: 300;
  transform: translateY(-0.1em);
}
.wordmark--mini { font-size: 18px; }

.masthead__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.masthead__nav a {
  text-decoration: none;
  color: var(--ink-70);
  padding: 6px 0;
  position: relative;
  transition: color 200ms var(--ease);
}
.masthead__nav a:hover { color: var(--ink); }
.masthead__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--hearth);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.masthead__nav a:hover::after { transform: scaleX(1); }

.masthead__cta {
  background: var(--ink);
  color: var(--bone) !important;
  padding: 8px 16px !important;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.masthead__cta:hover { background: var(--hearth); }
.masthead__cta::after { display: none; }

@media (max-width: 900px) {
  .masthead__nav a:not(.masthead__cta) { display: none; }
}

/* ===========================================================================
   Hero — full-bleed cinematic slideshow
   =========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(96px, 16vh, 180px) var(--gutter) clamp(96px, 14vh, 160px);
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
  min-height: min(820px, 92vh);
}

/* ---------- Slideshow layer ---------- */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1400ms var(--ease-soft);
  z-index: 1;
  pointer-events: none;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.02);
}
.slide.is-active {
  opacity: 1;
  z-index: 2;
}
.slide.is-active img {
  animation: kenburns 9000ms ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .slide.is-active img { animation: none; transform: scale(1.04); }
}

/* Dark scrim for text legibility — directional */
.slideshow__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      105deg,
      rgba(15, 27, 45, 0.78) 0%,
      rgba(15, 27, 45, 0.62) 38%,
      rgba(15, 27, 45, 0.38) 62%,
      rgba(15, 27, 45, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(15, 27, 45, 0.35) 0%,
      rgba(15, 27, 45, 0.10) 30%,
      rgba(15, 27, 45, 0.10) 60%,
      rgba(15, 27, 45, 0.55) 100%
    );
  pointer-events: none;
}

/* ---------- Inner content ---------- */
.hero__inner {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.hero__inner > * { max-width: 980px; width: 100%; }

.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.85);
  animation: fade-up 800ms var(--ease) both;
  text-shadow: 0 1px 2px rgba(15, 27, 45, 0.4);
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--bone);
}
.eyebrow-dot {
  color: rgba(246, 241, 231, 0.5);
  font-weight: 300;
}

.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hearth);
  margin-right: 8px;
  vertical-align: -1px;
  box-shadow: 0 0 0 0 rgba(226, 115, 59, 0.6);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226, 115, 59, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(226, 115, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 115, 59, 0); }
}

.hero__title {
  font-size: clamp(3.2rem, 9.5vw, 7.2rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--bone);
  margin: 8px 0 0;
  text-shadow: 0 2px 24px rgba(15, 27, 45, 0.4);
}
.hero__line {
  display: block;
  animation: fade-up 900ms var(--ease) both;
}
.hero__line:nth-child(1) { animation-delay: 100ms; }
.hero__line:nth-child(2) { animation-delay: 280ms; }
.hero__line--ai {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bone);
}

.ai-mark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--mono);
  font-style: normal;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.04em;
  padding: 0.15em 0.45em 0.18em;
  margin-right: 0.18em;
  border-radius: 4px;
  background: var(--hearth);
  color: var(--bone);
  vertical-align: 0.42em;
  position: relative;
  box-shadow: 0 4px 20px -4px rgba(226, 115, 59, 0.5);
}
.ai-mark__inner { position: relative; z-index: 1; }
.ai-mark::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--signal), var(--hearth));
  border-radius: 6px;
  z-index: 0;
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.hero__title:hover .ai-mark::after { opacity: 0.6; }

.hero__lede {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(246, 241, 231, 0.92);
  animation: fade-up 900ms var(--ease) 460ms both;
  text-shadow: 0 1px 12px rgba(15, 27, 45, 0.5);
}
.hero__lede em {
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 100;
  color: var(--hearth-soft);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
  animation: fade-up 900ms var(--ease) 600ms both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 200ms var(--ease), background 250ms var(--ease), color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.btn__arrow { transition: transform 250ms var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--ink);
  color: var(--bone);
}
.btn--primary:hover {
  background: var(--hearth);
  border-color: var(--hearth);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(226, 115, 59, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink-06);
  transform: translateY(-1px);
}

/* Hero overrides — buttons sit on the slideshow */
.hero .btn--primary {
  background: var(--hearth);
  border-color: var(--hearth);
  color: var(--white);
  box-shadow: 0 14px 36px -12px rgba(226, 115, 59, 0.55);
}
.hero .btn--primary:hover {
  background: var(--hearth-deep);
  border-color: var(--hearth-deep);
  box-shadow: 0 18px 44px -10px rgba(226, 115, 59, 0.7);
  transform: translateY(-1px);
}
.hero .btn--ghost {
  color: var(--bone);
  border-color: rgba(246, 241, 231, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(246, 241, 231, 0.08);
}
.hero .btn--ghost:hover {
  background: rgba(246, 241, 231, 0.16);
  border-color: var(--bone);
  transform: translateY(-1px);
}
.btn--lg {
  padding: 18px 28px;
  font-size: 14px;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(246, 241, 231, 0.2);
  border-bottom: 1px solid rgba(246, 241, 231, 0.2);
  animation: fade-up 900ms var(--ease) 760ms both;
}
.hero__stats li {
  padding: 22px 18px 22px 0;
  border-right: 1px solid rgba(246, 241, 231, 0.2);
}
.hero__stats li:last-child { border-right: 0; }

@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero__stats li:nth-child(2n) { border-right: 0; }
  .hero__stats li:nth-child(-n+2) { border-bottom: 1px solid rgba(246, 241, 231, 0.2); }
}

.stat__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 80;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--bone);
  text-shadow: 0 1px 10px rgba(15, 27, 45, 0.4);
}
.stat__small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.45em;
  color: rgba(246, 241, 231, 0.55);
  margin: 0 0.1em;
  letter-spacing: 0.08em;
}
.stat__lbl {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.75);
  line-height: 1.4;
}

/* Issue plate (decorative corner card) */
.hero__plate {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  padding: 22px 22px 20px;
  background: rgba(15, 27, 45, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--bone);
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: var(--rad-lg);
  z-index: 5;
  box-shadow:
    0 30px 60px -30px rgba(15, 27, 45, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  animation: fade-up 1000ms var(--ease) 900ms both;
}
.plate__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 6px 0;
}
.plate__key {
  color: var(--limestone);
  text-transform: uppercase;
}
.plate__val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
  font-variation-settings: "SOFT" 100;
}
.plate__divider {
  height: 1px;
  background: rgba(246, 241, 231, 0.15);
  margin: 12px 0 14px;
}
.plate__motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  line-height: 1.35;
  color: var(--bone);
  margin: 0;
}

@media (max-width: 1100px) {
  .hero__plate {
    display: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.6);
  z-index: 5;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(246, 241, 231, 0.25);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: translateX(-100%);
  animation: scroll-cue 2.2s var(--ease) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1100px) {
  .hero__scroll { display: none; }
}

@keyframes fade-up {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Slideshow UI: city plate + dots ---------- */
.slideshow__ui {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fade-up 1000ms var(--ease) 1000ms both;
}
@media (min-width: 1101px) {
  .slideshow__ui {
    left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  }
}

.slideshow__cityplate {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(246, 241, 231, 0.22);
  background: rgba(15, 27, 45, 0.5);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-radius: 999px;
  color: var(--bone);
}
.slideshow__num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--hearth-soft);
  display: inline-block;
  transition: opacity 250ms var(--ease);
}
.slideshow__sep {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(246, 241, 231, 0.4);
}
.slideshow__total {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(246, 241, 231, 0.55);
}
.slideshow__city {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 100;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(246, 241, 231, 0.2);
  color: var(--bone);
  transition: opacity 250ms var(--ease);
}

.slideshow__dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot {
  position: relative;
  width: 38px;
  height: 18px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.dot::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  margin-top: -1px;
  background: rgba(246, 241, 231, 0.28);
  border-radius: 2px;
  transition: background 250ms var(--ease);
}
.dot__fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 0%;
  background: var(--bone);
  border-radius: 2px;
  pointer-events: none;
}
.dot.is-active .dot__fill {
  animation: dot-progress var(--slide-duration, 6000ms) linear forwards;
}
.dot.is-played::before {
  background: rgba(246, 241, 231, 0.6);
}
.dot:hover::before { background: rgba(246, 241, 231, 0.55); }
.dot:focus-visible {
  outline: 2px solid var(--hearth);
  outline-offset: 4px;
  border-radius: 4px;
}
@keyframes dot-progress {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.slideshow.is-paused .dot.is-active .dot__fill {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .dot.is-active .dot__fill { animation: none; width: 100%; }
}

/* When city text changes, soft fade */
.slideshow__city.is-changing,
.slideshow__num.is-changing { opacity: 0; }

@media (max-width: 720px) {
  .slideshow__ui { bottom: 18px; gap: 14px; }
  .slideshow__cityplate { padding: 8px 12px; }
  .slideshow__city { font-size: 13px; }
  .dot { width: 28px; }
}

/* ===========================================================================
   Marquee
   =========================================================================== */
.marquee {
  background: var(--ink);
  color: var(--bone);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 36px;
}
.marquee__track > span {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 80;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--bone);
  flex-shrink: 0;
}
.marquee__track > span[aria-hidden] {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7em;
  color: var(--signal);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================================================
   Section common
   =========================================================================== */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) var(--gutter);
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 24px;
  row-gap: 8px;
  align-items: baseline;
  margin-bottom: clamp(40px, 6vh, 72px);
  max-width: 920px;
}

.section__head--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.section__roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.85;
  color: var(--hearth);
  grid-row: 1 / 4;
  align-self: start;
}

.section__head--centered .section__roman {
  grid-row: auto;
}

.section__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
  align-self: end;
  padding-bottom: 4px;
}

.section__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 60;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  max-width: 18ch;
}

.section__head--centered .section__title {
  margin-inline: auto;
  max-width: 22ch;
}

.section__title-em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--hearth);
}

.section__deck {
  grid-column: 2;
  max-width: 56ch;
  margin-top: 14px;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-70);
}

.section__head--centered .section__deck {
  grid-column: 1;
  margin-inline: auto;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .section__head {
    grid-template-columns: 1fr;
  }
  .section__roman {
    grid-row: auto;
    margin-bottom: -8px;
  }
  .section__deck { grid-column: 1; }
}

/* ===========================================================================
   I. Services
   =========================================================================== */
.section--work {
  border-top: 1px solid var(--ink-10);
}

.services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
  border-radius: var(--rad-lg);
  overflow: hidden;
}

.service {
  position: relative;
  background: var(--bone);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 300ms var(--ease);
}
.service:hover {
  background: var(--bone-warm);
}
.service:hover .service__num {
  color: var(--hearth);
}

.service__num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  transition: color 300ms var(--ease);
}

.service__title {
  font-size: 1.85rem;
  font-weight: 400;
  font-variation-settings: "opsz" 64, "SOFT" 50;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.service__body {
  color: var(--ink-90);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.service__meta {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.service__meta li {
  padding: 4px 10px;
  border: 1px solid var(--ink-10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.service--featured {
  background: var(--ink);
  color: var(--bone);
}
.service--featured:hover { background: #16263F; }
.service--featured .service__num { color: var(--signal); }
.service--featured:hover .service__num { color: var(--signal-soft); }
.service--featured .service__title { color: var(--bone); }
.service--featured .service__body { color: rgba(246, 241, 231, 0.85); }
.service--featured .service__meta { color: var(--limestone); }
.service--featured .service__meta li {
  background: rgba(246, 241, 231, 0.05);
  border-color: rgba(246, 241, 231, 0.15);
}
.service--featured code {
  font-family: var(--mono);
  font-size: 0.92em;
  background: rgba(61, 189, 201, 0.15);
  color: var(--signal);
  padding: 1px 6px;
  border-radius: 3px;
}
.service__badge {
  position: absolute;
  top: 28px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal);
  padding: 4px 9px;
  border: 1px solid var(--signal-deep);
  border-radius: 999px;
  background: rgba(61, 189, 201, 0.1);
}
.service__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px var(--signal);
  animation: pulse-cyan 2s var(--ease) infinite;
}
@keyframes pulse-cyan {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===========================================================================
   II. Process — weekly timeline
   =========================================================================== */
.section--process {
  background: linear-gradient(180deg, transparent 0%, var(--bone-cool) 30%, var(--bone-cool) 70%, transparent 100%);
}

.week {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.week__day {
  display: grid;
  grid-template-columns: 64px minmax(0, 200px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 32px;
  row-gap: 8px;
  padding: 36px 0;
  border-top: 1px solid var(--ink-10);
  position: relative;
  transition: background 300ms var(--ease);
}
.week__rail { grid-column: 1; grid-row: 1 / span 2; }
.week__when { grid-column: 2; grid-row: 1; }
.week__what { grid-column: 3; grid-row: 1; }
.week__body { grid-column: 3; grid-row: 2; }
.week__day:last-child {
  border-bottom: 1px solid var(--ink-10);
}
.week__day:hover {
  background: rgba(255, 255, 255, 0.4);
}
.week__day:hover .week__what {
  color: var(--hearth);
}
.week__day:hover .week__dot {
  background: var(--hearth);
  transform: scale(1.4);
}

.week__rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.week__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  z-index: 2;
  transition: background 250ms var(--ease), transform 300ms var(--ease);
}
.week__dot--alt {
  background: var(--signal);
  width: 14px;
  height: 14px;
}
.week__line {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 1px;
  height: calc(100% + 80px);
  background: var(--ink-10);
  z-index: 1;
}

.week__when {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
  padding-top: 10px;
}

.week__what {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-variation-settings: "opsz" 64, "SOFT" 60;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 250ms var(--ease);
}

.week__body {
  color: var(--ink-90);
  max-width: 60ch;
  font-size: 1.0625rem;
  line-height: 1.55;
}

.week__day--always .week__what {
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 100;
  color: var(--signal-deep);
}
.week__day--always:hover .week__what {
  color: var(--signal-deep);
}

@media (max-width: 720px) {
  .week__day {
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 16px;
    row-gap: 6px;
    padding: 28px 0;
  }
  .week__when { padding-top: 0; grid-column: 2; grid-row: 1; }
  .week__rail { padding-top: 6px; grid-column: 1; grid-row: 1 / span 3; }
  .week__what { grid-column: 2; grid-row: 2; }
  .week__body { grid-column: 2; grid-row: 3; }
  .week__line { height: calc(100% + 56px); }
}

/* ===========================================================================
   III. Pillars
   =========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

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

.pillar {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: var(--rad-lg);
  background: var(--white);
  border: 1px solid var(--ink-10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(15, 27, 45, 0.18);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar--warm::before { background: linear-gradient(90deg, var(--hearth), var(--hearth-soft)); }
.pillar--cool::before { background: linear-gradient(90deg, var(--signal-deep), var(--signal)); }
.pillar--neutral::before { background: linear-gradient(90deg, var(--slate), var(--limestone)); }

.pillar__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.pillar--warm .pillar__num { color: var(--hearth-deep); }
.pillar--cool .pillar__num { color: var(--signal-deep); }

.pillar__title {
  font-size: 1.7rem;
  font-weight: 400;
  font-variation-settings: "opsz" 64, "SOFT" 60;
  letter-spacing: -0.015em;
}

.pillar__body {
  color: var(--ink-90);
  flex: 1;
  font-size: 1rem;
  line-height: 1.55;
}
.pillar__body em {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 100;
  color: var(--hearth-deep);
}
.pillar--cool .pillar__body em { color: var(--signal-deep); }

.pillar__points {
  list-style: none;
  padding: 16px 0 0;
  margin: 4px 0 0;
  border-top: 1px solid var(--ink-10);
  display: grid;
  gap: 8px;
}
.pillar__points li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  padding-left: 18px;
  position: relative;
}
.pillar__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--ink-50);
}
.pillar--warm .pillar__points li::before { background: var(--hearth); }
.pillar--cool .pillar__points li::before { background: var(--signal); }

/* ===========================================================================
   IV. Proof / pull quote
   =========================================================================== */
.section--proof {
  padding-top: clamp(40px, 7vh, 90px);
  padding-bottom: clamp(40px, 7vh, 90px);
}

.proof {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}

.proof__quote {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 7rem;
  line-height: 1;
  color: var(--hearth);
  background: var(--bone);
  padding: 0 24px;
  display: inline-block;
}

.proof__body {
  margin: 0;
  padding: 0;
  border: 0;
}
.proof__body p {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 70;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.proof__attr {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof__name { color: var(--ink); }
.proof__role { color: var(--ink-50); }

/* ===========================================================================
   V. About
   =========================================================================== */
.section--about {
  background: var(--ink);
  color: var(--bone);
  max-width: none;
  margin: 0;
  border-radius: 0;
}
.section--about .section__head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vh, 72px);
  padding-left: 0;
  padding-right: 0;
}
.section--about .section__roman { color: var(--signal); }
.section--about .section__label { color: var(--signal-soft); }
.section--about .section__title { color: var(--bone); }
.section--about .section__title-em { color: var(--signal); }

.about {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}

.about__col--prose {
  max-width: 60ch;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.88);
}
.about__lede {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 100;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--bone);
  margin-bottom: 24px;
}
.about__col--prose strong {
  color: var(--bone);
  font-weight: 500;
}
.about__col--prose em {
  font-style: italic;
  color: var(--signal-soft);
}
.about__signoff {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(246, 241, 231, 0.15);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 100;
  color: var(--bone);
}

.about__more {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--signal);
  padding: 12px 18px;
  border: 1px solid var(--signal-deep);
  border-radius: 999px;
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.about__more:hover {
  background: var(--signal);
  color: var(--ink);
}
.about__arrow { transition: transform 200ms var(--ease); }
.about__more:hover .about__arrow { transform: translateX(4px); }

.about__col--card {
  display: grid;
  gap: 14px;
}

.card {
  padding: 22px 24px;
  background: rgba(246, 241, 231, 0.04);
  border: 1px solid rgba(246, 241, 231, 0.12);
  border-radius: var(--rad-lg);
  transition: background 250ms var(--ease), border-color 250ms var(--ease);
}
.card:hover {
  background: rgba(246, 241, 231, 0.06);
  border-color: rgba(246, 241, 231, 0.2);
}
.card__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signal-soft);
  margin-bottom: 8px;
}
.card__value {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 80;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--bone);
  margin: 0;
}
.card__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(246, 241, 231, 0.6);
  margin-top: 6px;
  margin-bottom: 0;
}
.card--accent {
  background: rgba(226, 115, 59, 0.08);
  border-color: rgba(226, 115, 59, 0.3);
}
.card--accent:hover {
  background: rgba(226, 115, 59, 0.12);
  border-color: rgba(226, 115, 59, 0.5);
}
.card--accent .card__label { color: var(--hearth-soft); }
.card__value--quote {
  font-size: 1.15rem;
  line-height: 1.35;
}

/* ===========================================================================
   VI. Contact
   =========================================================================== */
.section--contact {
  padding-top: clamp(80px, 13vh, 160px);
  padding-bottom: clamp(72px, 10vh, 120px);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; }
}

.contact__head .section__roman {
  color: var(--hearth);
}

.contact__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 60;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
  margin: 8px 0 18px;
}
.contact__title-em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--hearth);
}

.contact__deck {
  font-size: 1.0625rem;
  color: var(--ink-70);
  max-width: 42ch;
  line-height: 1.55;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-10);
}
.contact__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
  align-items: center;
}
.contact__list-key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.contact__list a {
  text-decoration: none;
  border-bottom: 1px solid var(--ink-20);
  padding-bottom: 1px;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.contact__list a:hover {
  border-color: var(--hearth);
  color: var(--hearth);
}

/* Form */
.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--rad-lg);
  border: 1px solid var(--ink-10);
  box-shadow: 0 30px 60px -40px rgba(15, 27, 45, 0.15);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hearth), var(--signal));
}

@media (max-width: 540px) {
  .form { padding: 24px; }
}

.form__row {
  display: grid;
  gap: 16px;
}
.form__row--two {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) {
  .form__row--two { grid-template-columns: 1fr; }
}

.field {
  display: grid;
  gap: 6px;
}

.field__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.field__opt {
  color: var(--ink-50);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  font-style: italic;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bone-cool);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--ink-20);
  border-radius: var(--rad);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(226, 115, 59, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230F1B2D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field--chips {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.field--chips legend {
  padding: 0;
  margin-bottom: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
}
.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip span {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid var(--ink-20);
  background: var(--bone-cool);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-70);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.chip:hover span {
  border-color: var(--ink-50);
  color: var(--ink);
}
.chip input:checked + span {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(226, 115, 59, 0.3);
}

.field--inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-10);
}
.form__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-50);
  max-width: 36ch;
  font-style: italic;
}

/* Success state (after Netlify redirect with ?sent=1) */
.form--success {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
}
.form--success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 64, "SOFT" 100;
  font-size: 2rem;
  color: var(--hearth);
  margin: 0 0 12px;
}
.form--success p {
  color: var(--ink-70);
  max-width: 40ch;
  margin: 0 auto;
}

/* ===========================================================================
   Footer
   =========================================================================== */
.footer {
  background: var(--ink);
  color: var(--limestone);
  padding: 48px 0 36px;
  border-top: 1px solid var(--ink);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer .wordmark {
  color: var(--bone);
}
.footer .wordmark__h, .footer .wordmark__m {
  color: var(--bone);
}
.footer .wordmark__ai {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.footer .wordmark__dot { color: rgba(246, 241, 231, 0.4); }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__nav a {
  color: var(--limestone);
  text-decoration: none;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.footer__nav a:hover { color: var(--signal); }

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(201, 194, 179, 0.7);
  margin: 0;
}
.footer__sep { color: rgba(201, 194, 179, 0.3); }
