/* ==========================================================================
   West End Dog Crew
   Pure monochrome. Editorial. Urban. Off the leash.
   ========================================================================== */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: "Anton";
  src: url("/fonts/anton-400.woff2") format("woff2"),
       url("/fonts/anton-400.woff")  format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dmsans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dmsans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dmsans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dmsans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --black: #000;
  --ink: #0a0a0a;
  --ink-2: #111;
  --ink-3: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.22);
  --paper: #fafaf7;
  --bone: #f0ede5;
  --fog: rgba(255, 255, 255, 0.6);
  --fog-2: rgba(255, 255, 255, 0.45);
  --fog-3: rgba(255, 255, 255, 0.28);
  --hot: #fff;

  --display: "Anton", "Bebas Neue", "Impact", "Oswald", sans-serif;
  --body: "DM Sans", "Helvetica Neue", "Arial", sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  --r-card: 0px;
  --t-snap: cubic-bezier(.2,.7,.2,1);

  --grain-opacity: 0.04;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute; top: -100px; left: 0; padding: 12px 18px;
  background: var(--paper); color: var(--black); z-index: 999;
  font-family: var(--display); letter-spacing: 0.04em;
}
.skip-link:focus { top: 0; }

/* ---------- Selection & Focus ---------- */
::selection { background: var(--paper); color: var(--black); }
:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }

/* ---------- Type ---------- */
.section__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog-2);
  margin: 0 0 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section__eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--fog-3);
}

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-wrap: balance;
}

.section__sub {
  font-family: var(--body);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fog);
  max-width: 60ch;
  margin: 0 0 64px;
  line-height: 1.5;
}

.section__head {
  margin-bottom: 64px;
  max-width: 880px;
}
.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__head--center .section__eyebrow {
  justify-content: center;
}

.section {
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
}

.section + .section {
  border-top: 1px solid var(--line);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background-color 0.25s var(--t-snap), color 0.25s var(--t-snap), transform 0.25s var(--t-snap);
  position: relative;
  overflow: hidden;
}
.btn svg { transition: transform 0.3s var(--t-snap); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--paper);
  color: var(--black);
  border-color: var(--paper);
}
.btn--primary:hover {
  background: transparent;
  color: var(--paper);
}
.btn--ghost { color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--black); }
.btn--block { width: 100%; justify-content: center; }

.link {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease;
}
.link:hover { text-decoration-color: var(--fog-2); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding: 14px 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__logo {
  width: 40px; height: 40px;
  border-radius: 50%;
}
.nav__wordmark {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__menu {
  display: none;
  gap: 30px;
  align-items: center;
}
.nav__menu a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color 0.2s ease;
  position: relative;
}
.nav__menu a:hover { color: var(--paper); }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 1px;
  background: var(--paper);
  transition: right 0.25s var(--t-snap);
}
.nav__menu a:hover::after { right: 0; }

.nav__cta {
  border: 1px solid var(--line-2);
  padding: 10px 18px !important;
  border-radius: 0;
  color: var(--paper) !important;
  transition: background-color 0.25s var(--t-snap), color 0.25s var(--t-snap), border-color 0.25s var(--t-snap);
}
.nav__cta:hover {
  background: var(--paper);
  color: var(--black) !important;
  border-color: var(--paper);
}
.nav__cta::after { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 10px;
}
.nav__toggle span {
  width: 22px; height: 1.5px; background: var(--paper); display: block;
  transition: transform 0.3s var(--t-snap), opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 24px var(--gutter) 32px;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: 0; }

@media (min-width: 880px) {
  .nav__menu { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
  isolation: isolate;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: #000;
}


.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;          /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;      /* keep aspect filling viewport */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: contrast(1.05) brightness(0.85);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 60%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.92) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.9) 100%);
  z-index: -1;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fog);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  animation: reveal 0.9s var(--t-snap) 0.1s both;
}
.hero__eyebrow .leaf {
  display: inline-block;
  font-size: 13px;
  color: var(--paper);
  transform: translateY(-1px);
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 148px);
  line-height: 0.85;
  letter-spacing: -0.005em;
  margin: 0 0 40px;
  text-transform: uppercase;
  color: var(--paper);
}
.hero__title .line-1,
.hero__title .line-2 {
  display: block;
  animation: heroRise 1s var(--t-snap) both;
}
.hero__title .line-1 { animation-delay: 0.2s; }
.hero__title .line-2 { animation-delay: 0.35s; }

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

.hero__tag {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 28px;
  font-weight: 400;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  animation: reveal 0.9s var(--t-snap) 0.5s both;
}
.hero__tag::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}

.hero__hoods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 48px;
  font-family: var(--display);
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  animation: reveal 0.9s var(--t-snap) 0.65s both;
}
.hero__hoods li[aria-hidden="true"] { color: var(--fog-3); }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: reveal 0.9s var(--t-snap) 0.8s both;
}

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

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fog-2);
  animation: bob 2.2s ease-in-out infinite, reveal 1s ease 1.2s both;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

@media (max-width: 540px) {
  .hero { padding-top: 100px; }
  .hero__title { font-size: clamp(54px, 16vw, 120px); }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  will-change: transform;
}
.marquee__track .dot {
  font-size: 8px;
  color: var(--fog-3);
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
.about.section {
  padding-bottom: clamp(32px, 4vw, 56px);
}
@media (min-width: 980px) {
  .about__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
  }
}

.about__photo {
  position: relative;
  background: transparent;
}
.about__photo-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: unset;
  filter: contrast(1.08) brightness(0.95);
  transition: transform 0.6s var(--t-snap), filter 0.6s ease;
}
.about__photo:hover .about__photo-img {
  transform: scale(1.02);
  filter: contrast(1.05) brightness(1);
}
.about__photo-caption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 16px 20px;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about__photo-caption .num {
  color: var(--fog-2);
}

.about__text {
  padding-top: 8px;
}
.about__body {
  margin-top: 24px;
  max-width: 56ch;
  margin-bottom: 0;
}
.about__body p {
  margin: 0 0 18px;
  color: var(--fog);
  font-size: 16px;
  line-height: 1.7;
}
.about__body p.lede {
  color: var(--paper);
  font-size: 19px;
  line-height: 1.5;
}

.creds {
  margin-top: 0;
}
.creds li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.creds__num {
  color: var(--fog-3);
  font-family: var(--display);
  font-size: 18px;
  margin-top: 2px;
  letter-spacing: 0;
}
.creds li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.creds li strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--paper);
}
.creds li span {
  font-size: 14px;
  color: var(--fog-2);
}

/* ==========================================================================
   CREW
   ========================================================================== */
.crew__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 880px) {
  .crew__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.crew__card {
  padding: 40px 36px 36px;
  background: var(--ink);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: border-color 0.3s var(--t-snap), transform 0.4s var(--t-snap);
}
.crew__card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.crew__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-top: 1px solid var(--paper);
  border-left: 1px solid var(--paper);
}
.crew__card::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  border-bottom: 1px solid var(--paper);
  border-right: 1px solid var(--paper);
}

.crew__badge {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog-2);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.crew__name {
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 48px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 400;
  text-wrap: balance;
}

.crew__title {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
  margin: 0 0 22px;
}

.crew__bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fog);
  margin: 0 0 28px;
}

.crew__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.crew__tags li {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line);
  color: var(--fog);
  font-weight: 500;
}

.crew__card--daisy::before,
.crew__card--daisy::after {
  border-color: var(--paper);
}

/* ==========================================================================
   WALKS
   ========================================================================== */
.walks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (min-width: 720px) { .walks__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .walks__grid { grid-template-columns: repeat(4, 1fr); } }

.walk-card {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-color 0.3s ease;
  min-height: 280px;
}
.walk-card:hover { background: var(--ink); }
.walk-card__num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--fog-2);
  display: block;
  margin-bottom: 28px;
  letter-spacing: 0.16em;
}
.walk-card h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1;
}
.walk-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fog);
  margin: 0;
}

.walks__note {
  margin-top: 40px;
  font-size: 14px;
  color: var(--fog-2);
  max-width: 60ch;
}
.walks__note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--paper);
}

/* ==========================================================================
   AREAS
   ========================================================================== */
.hoods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.hood {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px minmax(280px, 1.2fr) minmax(220px, 1fr);
  gap: 32px;
  align-items: baseline;
  transition: padding-left 0.3s var(--t-snap), color 0.3s ease;
  position: relative;
}
.hood:hover {
  padding-left: 24px;
}
.hood__num {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--fog-3);
}
.hood h3 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}
.hood p {
  font-size: 15.5px;
  color: var(--fog);
  margin: 0;
  line-height: 1.6;
  max-width: 44ch;
}
@media (max-width: 720px) {
  .hood {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }
  .hood:hover { padding-left: 0; }
  .hood__num { font-size: 12px; }
}

.areas__note {
  margin-top: 48px;
  text-align: center;
  color: var(--fog-2);
  font-size: 14.5px;
}
.areas__note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--paper);
}

/* ==========================================================================
   TRUST
   ========================================================================== */
.trust {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.trust__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .trust__list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust__list { grid-template-columns: repeat(4, 1fr); } }

.trust__item {
  text-align: center;
  padding: 24px;
}
.trust__icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  color: var(--paper);
}
.trust__item h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 400;
}
.trust__item p {
  font-size: 13.5px;
  color: var(--fog);
  margin: 0;
  line-height: 1.55;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review {
  padding: 32px 28px;
  background: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: 8px; right: 18px;
  font-family: var(--display);
  font-size: 72px;
  color: var(--line-2);
  line-height: 1;
}
.review__stars {
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--paper);
}
.review blockquote {
  margin: 0;
}
.review blockquote p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--paper);
  margin: 0;
}
.review figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog-2);
  font-weight: 500;
}
.review__name { color: var(--paper); }

.reviews__note {
  margin-top: 36px;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--fog-3);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact__intro .section__sub {
  margin-bottom: 40px;
}

.contact__methods {
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
}
.contact__methods li {
  border-bottom: 1px solid var(--line);
}
.contact__methods a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  transition: padding-left 0.25s var(--t-snap);
  flex-wrap: wrap;
}
.contact__methods a:hover { padding-left: 12px; }
.contact__methods-label {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog-2);
  flex-shrink: 0;
}
.contact__methods-value {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--paper);
  font-weight: 500;
  text-align: right;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact__qr {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
}
.contact__qr img {
  width: 110px; height: 110px;
  background: var(--black);
  padding: 4px;
}
.contact__qr p {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fog);
  margin: 0;
  max-width: 22ch;
  line-height: 1.5;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog-2);
  font-weight: 500;
}
.field input,
.field textarea {
  font-family: var(--body);
  font-size: 18px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 18px 0 14px;
  border-radius: 0;
  resize: vertical;
  transition: border-color 0.25s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--paper);
}
.field textarea { min-height: 120px; }
.field--honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact__form-note {
  font-size: 12px;
  color: var(--fog-3);
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.contact__form-status {
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--paper);
}
.contact__form-status.is-error {
  border-color: var(--paper);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  padding: 64px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 880px) {
  .footer__grid {
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    padding: 80px var(--gutter);
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.footer__name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.footer__tag {
  font-size: 13px;
  color: var(--fog);
  margin: 4px 0 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.footer__nav a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--paper); }

.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.footer__social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--paper);
  transition: background-color 0.25s var(--t-snap), color 0.25s var(--t-snap), border-color 0.25s var(--t-snap);
}
.footer__social a:hover {
  background: var(--paper);
  color: var(--black);
  border-color: var(--paper);
}

.footer__bar {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fog-3);
}
.footer__bar-inner p { margin: 0; }

/* ==========================================================================
   IN-VIEW REVEAL (progressive)
   Default visible; JS adds .reveal-init to body to enable hide-then-show.
   ========================================================================== */
.reveal-init [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--t-snap), transform 0.8s var(--t-snap);
}
.reveal-init [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-init [data-reveal] { opacity: 1; transform: none; }
}
