:root {
  --blue: #005dff;
  --lime: #a7c957;
  --green: #4f772d;
  --cream: #f8f4e8;
  --ink: #3a3a3a;
  --night: #0b1a1e;
  --night-soft: #12262a;
  --night-raised: #173137;
  --white: #ffffff;
  --line: rgba(248, 244, 232, 0.2);
  --glow: rgba(167, 201, 87, 0.22);
  --blue-glow: rgba(0, 93, 255, 0.28);
  --font: "Nunito", "Avenir Next", Arial, sans-serif;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --script: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(79, 119, 45, 0.14), transparent 32rem),
    radial-gradient(circle at 8% 58%, rgba(0, 93, 255, 0.08), transparent 34rem),
    var(--night);
  color: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1640px;
  width: calc(100% - clamp(40px, 6vw, 112px));
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 26px clamp(24px, 3vw, 56px);
  transition: background 250ms ease, padding 250ms ease, box-shadow 250ms ease;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30;
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(11, 26, 30, 0.9);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  padding-bottom: 16px;
  padding-top: 16px;
  position: fixed;
}

.brand {
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 20, 24, 0.64), rgba(7, 20, 24, 0.24));
  border: 1px solid rgba(248, 244, 232, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  display: flex;
  font-size: 1.1rem;
  font-weight: 900;
  gap: 12px;
  letter-spacing: -0.03em;
  padding: 8px 16px 8px 8px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.brand img {
  border: 2px solid rgba(248, 244, 232, 0.65);
  border-radius: 50%;
  height: 50px;
  object-fit: cover;
  width: 50px;
}

.brand small {
  color: var(--lime);
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  background: linear-gradient(135deg, rgba(7, 20, 24, 0.68), rgba(18, 38, 42, 0.34));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(248, 244, 232, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 8px;
  padding: 8px;
}

.main-nav a {
  font-family: var(--display);
  font-size: 0.9rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.11em;
  border-radius: 999px;
  color: rgba(248, 244, 232, 0.96);
  padding: 8px 14px;
  position: relative;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.74);
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(167, 201, 87, 0.13);
  color: var(--lime);
  transform: translateY(-1px);
}

.main-nav a::after {
  background: linear-gradient(90deg, var(--lime), var(--blue));
  bottom: 4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: calc(100% - 28px);
  margin-left: 14px;
}

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

.nav-toggle {
  background: rgba(7, 20, 24, 0.7);
  border: 1px solid rgba(248, 244, 232, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  display: none;
  height: 48px;
  padding: 8px;
  position: relative;
  width: 50px;
  z-index: 45;
}

.nav-toggle span {
  background: var(--cream);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 30px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero,
.page-hero {
  background-image:
    radial-gradient(circle at 78% 45%, transparent 0 15%, rgba(7, 20, 24, 0.12) 43%, rgba(7, 20, 24, 0.6) 100%),
    linear-gradient(90deg, rgba(7, 20, 24, 0.98) 0%, rgba(7, 20, 24, 0.72) 40%, rgba(7, 20, 24, 0.08) 77%),
    linear-gradient(0deg, var(--night) 0%, transparent 30%),
    url("assets/hero-dog.png");
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.hero::after,
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(167, 201, 87, 0.12), transparent 24%),
    linear-gradient(0deg, var(--night), transparent 18%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(180px, 22vh, 245px);
  width: calc(100% - clamp(40px, 6vw, 112px));
}

.hero-content {
  margin-left: clamp(20px, 7vw, 140px);
  margin-right: auto;
  max-width: none;
}

.hero-content > * {
  max-width: 760px;
}

.page-hero-content {
  margin-left: clamp(20px, 7vw, 140px);
  margin-right: auto;
  max-width: none;
}

.page-hero-content > * {
  max-width: 900px;
}

.hero {
  min-height: 980px;
}

.page-hero {
  min-height: 760px;
}

.service-page .page-hero {
  background-image:
    radial-gradient(circle at 72% 42%, rgba(167, 201, 87, 0.08), transparent 0 22%, rgba(7, 20, 24, 0.32) 56%, rgba(7, 20, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 20, 24, 0.98) 0%, rgba(7, 20, 24, 0.78) 38%, rgba(7, 20, 24, 0.14) 72%),
    linear-gradient(0deg, var(--night) 0%, transparent 34%),
    url("assets/dog-walk.png");
}

.about-page .page-hero {
  background-image:
    radial-gradient(circle at 28% 35%, rgba(167, 201, 87, 0.1), transparent 0 18%, rgba(7, 20, 24, 0.42) 58%, rgba(7, 20, 24, 0.88) 100%),
    linear-gradient(270deg, rgba(7, 20, 24, 0.94) 0%, rgba(7, 20, 24, 0.74) 40%, rgba(7, 20, 24, 0.16) 78%),
    linear-gradient(0deg, var(--night) 0%, transparent 34%),
    url("assets/dog-training.png");
}

.contact-page .page-hero {
  background-image:
    radial-gradient(circle at 50% 38%, rgba(0, 93, 255, 0.1), transparent 0 20%, rgba(7, 20, 24, 0.42) 58%, rgba(7, 20, 24, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 20, 24, 0.24), rgba(7, 20, 24, 0.88)),
    linear-gradient(0deg, var(--night) 0%, transparent 36%),
    url("assets/hero-dog.png");
  min-height: 650px;
}

.about-page .page-hero-content,
.contact-page .page-hero-content {
  margin-left: auto;
  margin-right: clamp(20px, 7vw, 140px);
  text-align: right;
}

.contact-page .page-hero-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero-content {
  padding-top: 180px;
}

.service-landing,
.about-manifesto,
.contact-signal {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(130px, 16vw, 220px) 0 clamp(70px, 9vw, 130px);
  position: relative;
}

.service-landing {
  background:
    radial-gradient(circle at 72% 36%, rgba(167, 201, 87, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(7, 20, 24, 0.98), rgba(7, 20, 24, 0.7) 46%, rgba(7, 20, 24, 0.2)),
    url("assets/dog-walk.png") center / cover;
}

.service-landing::after,
.about-manifesto::after,
.contact-signal::after {
  background: linear-gradient(0deg, var(--night), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.service-landing-grid {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 120px);
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.9fr);
}

.service-landing-copy h1,
.manifesto-copy h1,
.signal-copy h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 28px;
  text-transform: uppercase;
  text-wrap: balance;
}

.service-landing-copy > p:not(.script-line),
.manifesto-copy > p:not(.script-line),
.signal-copy > p:not(.script-line) {
  color: rgba(248, 244, 232, 0.78);
  font-size: 1.08rem;
  max-width: 620px;
}

.route-tabs {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 620px;
}

.route-tabs a {
  background: rgba(7, 20, 24, 0.5);
  border: 1px solid rgba(248, 244, 232, 0.14);
  border-radius: 22px;
  padding: 18px;
  transition: background 220ms ease, transform 220ms ease;
}

.route-tabs a:hover {
  background: rgba(167, 201, 87, 0.13);
  transform: translateY(-4px);
}

.route-tabs strong,
.route-tabs span {
  display: block;
}

.route-tabs strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
}

.route-tabs span {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-board {
  min-height: 620px;
  position: relative;
}

.route-board img {
  border: 1px solid rgba(248, 244, 232, 0.16);
  border-radius: 44px 44px 180px 44px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  height: 620px;
  object-fit: cover;
  width: 100%;
}

.route-note {
  background: linear-gradient(145deg, rgba(248, 244, 232, 0.96), rgba(232, 225, 207, 0.92));
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  color: var(--night);
  padding: 18px 22px;
  position: absolute;
}

.route-note.top {
  right: -24px;
  top: 42px;
}

.route-note.bottom {
  bottom: 62px;
  left: -26px;
}

.route-note span,
.route-note strong {
  display: block;
}

.route-note span {
  color: var(--green);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.route-note strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-manifesto {
  background:
    radial-gradient(circle at 20% 36%, rgba(167, 201, 87, 0.18), transparent 20rem),
    linear-gradient(270deg, rgba(7, 20, 24, 0.96), rgba(7, 20, 24, 0.72) 42%, rgba(7, 20, 24, 0.24)),
    url("assets/dog-training.png") center / cover;
}

.about-manifesto-grid {
  align-items: end;
  display: grid;
  gap: clamp(38px, 6vw, 90px);
  grid-template-columns: 0.22fr minmax(0, 0.9fr) minmax(340px, 0.72fr);
}

.manifesto-number {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 15rem);
  font-weight: 700;
  line-height: 0.75;
  -webkit-text-stroke: 1px rgba(167, 201, 87, 0.46);
}

.manifesto-photo {
  margin: 0;
  position: relative;
}

.manifesto-photo img {
  border: 1px solid rgba(248, 244, 232, 0.16);
  border-radius: 160px 34px 34px 34px;
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
  height: 560px;
  object-fit: cover;
  width: 100%;
}

.manifesto-photo figcaption {
  background: var(--lime);
  border-radius: 999px;
  bottom: 28px;
  color: var(--night);
  font-family: var(--display);
  font-weight: 900;
  left: 28px;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  position: absolute;
  text-transform: uppercase;
}

.contact-signal {
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 93, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(7, 20, 24, 0.42), rgba(7, 20, 24, 0.96)),
    url("assets/hero-dog.png") center 45% / cover;
  min-height: 820px;
}

.contact-signal-grid {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
}

.signal-card {
  background: linear-gradient(155deg, rgba(248, 244, 232, 0.96), rgba(232, 225, 207, 0.92));
  border-radius: 34px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  color: var(--night);
  padding: clamp(28px, 4vw, 48px);
}

.signal-card > span {
  color: var(--green);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  margin: 14px 0 22px;
  text-transform: uppercase;
}

.signal-card ol {
  counter-reset: signal;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.signal-card li {
  border-top: 1px solid rgba(11, 26, 30, 0.16);
  font-weight: 900;
  padding: 14px 0 14px 42px;
  position: relative;
}

.signal-card li::before {
  color: var(--blue);
  content: counter(signal, decimal-leading-zero);
  counter-increment: signal;
  font-family: var(--display);
  left: 0;
  position: absolute;
}

.signal-card .button {
  width: 100%;
}

.script-line {
  color: var(--lime);
  font-family: var(--script);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 24px;
}

.hero h1,
.page-hero h1,
.display-title {
  font-family: var(--display);
  font-size: clamp(4.8rem, 10vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
}

.hero-copy {
  color: rgba(248, 244, 232, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 34px 0 38px;
  max-width: 650px;
}

.button {
  align-items: center;
  background: linear-gradient(135deg, #1670ff 0%, var(--blue) 58%, #0047c7 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-family: var(--display);
  box-shadow: 0 14px 34px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 56px;
  overflow: hidden;
  padding: 0 32px;
  position: relative;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.button:hover {
  box-shadow: 0 18px 42px rgba(0, 93, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: var(--white);
  transform: translateY(-4px);
}

.button:active {
  box-shadow: 0 8px 20px rgba(0, 93, 255, 0.3);
  transform: translateY(-1px) scale(0.985);
}

.button:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
}

.button::before {
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.32) 48%, transparent 76%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 550ms ease;
}

.button:hover::before {
  transform: translateX(130%);
}

.button.lime {
  background: linear-gradient(135deg, #bddf6d, var(--lime) 55%, #7ea638);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  color: var(--night);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--cream);
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 150px) 0;
}

.section::before {
  background: radial-gradient(circle, rgba(167, 201, 87, 0.07), transparent 68%);
  content: "";
  height: 500px;
  pointer-events: none;
  position: absolute;
  right: -240px;
  top: 10%;
  width: 500px;
}

.section-tight {
  padding: 70px 0;
}

.section-label {
  color: var(--lime);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-heading h2,
.content-title,
.cta-band h2,
.contact-grid h2 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 500px;
}

.explore-grid {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(79, 119, 45, 0.06));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--cream);
  display: grid;
  grid-template-columns: 0.75fr repeat(3, 1fr);
  overflow: hidden;
}

.explore-intro,
.explore-card {
  min-height: 250px;
  padding: 28px;
}

.explore-card {
  align-items: center;
  background: linear-gradient(145deg, rgba(248, 244, 232, 0.065), rgba(248, 244, 232, 0.015));
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: background 260ms ease, transform 260ms ease;
}

.explore-card:hover {
  background: linear-gradient(145deg, rgba(167, 201, 87, 0.17), rgba(0, 93, 255, 0.07));
  transform: translateY(-6px);
}

.explore-card span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 30px var(--glow);
}

.explore-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.statement {
  background:
    radial-gradient(circle at 72% 56%, rgba(167, 201, 87, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--night), #0d2226 55%, var(--night));
  min-height: 880px;
  overflow: hidden;
  position: relative;
}

.statement::after {
  background:
    linear-gradient(0deg, var(--night) 0%, transparent 50%, rgba(11, 26, 30, 0.1)),
    linear-gradient(90deg, var(--night) 0%, rgba(11, 26, 30, 0.22) 55%, transparent 82%),
    url("assets/dog-walk.png") center / cover;
  bottom: 0;
  content: "";
  height: 70%;
  left: 45%;
  position: absolute;
  right: 0;
  z-index: 0;
}

.statement-copy {
  margin-left: 0;
  max-width: 760px;
  padding-top: clamp(40px, 7vw, 100px);
  position: relative;
  z-index: 1;
}

.statement-copy .display-title {
  font-size: clamp(4rem, 7vw, 7.3rem);
  line-height: 0.95;
}

.mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.45fr 1fr 1fr;
}

.mosaic-card {
  border: 1px solid rgba(248, 244, 232, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.mosaic-card.large {
  grid-row: span 2;
  min-height: 710px;
}

.mosaic-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.mosaic-card:hover img {
  transform: scale(1.035);
}

.mosaic-card::after {
  background:
    linear-gradient(0deg, rgba(7, 20, 24, 0.95), transparent 65%),
    linear-gradient(135deg, transparent 55%, rgba(0, 93, 255, 0.1));
  bottom: 0;
  content: "";
  inset: 0;
  position: absolute;
}

.mosaic-copy {
  bottom: 30px;
  left: 32px;
  position: absolute;
  z-index: 1;
}

.mosaic-copy h3 {
  font-family: var(--display);
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.mosaic-copy span {
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collage {
  display: grid;
  gap: clamp(50px, 7vw, 120px);
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1.5fr);
  min-height: 780px;
}

.collage-copy {
  align-self: center;
  padding-left: clamp(0px, 2vw, 30px);
  padding-right: 0;
  z-index: 2;
}

.collage-visual {
  position: relative;
}

.collage-visual .base {
  border: 1px solid rgba(248, 244, 232, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  height: 650px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 80px;
  width: 94%;
}

.collage-visual .float {
  border: 10px solid var(--night);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(167, 201, 87, 0.18);
  height: 380px;
  object-fit: cover;
  position: absolute;
  right: 5%;
  top: 0;
  width: 46%;
}

.service-grid {
  display: grid;
  gap: clamp(22px, 2vw, 38px);
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: linear-gradient(155deg, rgba(23, 49, 55, 0.92), rgba(12, 29, 33, 0.96));
  border: 1px solid rgba(248, 244, 232, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 26px 28px;
  position: relative;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.service-card:hover {
  border-color: rgba(167, 201, 87, 0.42);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.38), 0 0 45px rgba(167, 201, 87, 0.08);
  transform: translateY(-10px);
}

.service-card img {
  aspect-ratio: 1 / 0.92;
  margin: 0 -26px;
  max-width: none;
  object-fit: cover;
  width: calc(100% + 52px);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 28px 0 14px;
  text-transform: uppercase;
}

.service-card p {
  color: rgba(248, 244, 232, 0.72);
  line-height: 1.75;
  margin: 0 0 20px;
  min-height: 84px;
}

.meta {
  color: var(--lime);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.77rem;
  font-weight: 900;
  gap: 18px;
  letter-spacing: 0.1em;
  margin-top: auto;
  text-transform: uppercase;
}

.price-bar {
  display: flex;
  margin-top: 24px;
  width: 100%;
}

.cta-band {
  align-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(167, 201, 87, 0.16), transparent 28rem),
    linear-gradient(rgba(7, 20, 24, 0.28), rgba(7, 20, 24, 0.84)),
    url("assets/dog-walk.png") center 45% / cover;
  display: flex;
  justify-content: center;
  min-height: 560px;
  position: relative;
  text-align: center;
}

.cta-band .container {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.cta-band p {
  color: var(--lime);
  font-family: var(--script);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-band h2 {
  margin-bottom: 24px;
}

.cta-band .button {
  margin-top: 10px;
}

.service-page .package-list {
  gap: 46px;
}

.service-page .package-card {
  border-radius: 34px 34px 140px 34px;
  overflow: hidden;
}

.service-page .package-card:nth-child(even) {
  border-radius: 140px 34px 34px 34px;
}

.service-page .package-body {
  background:
    radial-gradient(circle at 100% 0, rgba(167, 201, 87, 0.11), transparent 18rem),
    linear-gradient(150deg, rgba(23, 49, 55, 0.96), rgba(12, 29, 33, 0.98));
}

.service-page .zones {
  border-top: 1px solid rgba(248, 244, 232, 0.18);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding-top: clamp(120px, 13vw, 180px);
}

.package-list {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.package-card {
  background: linear-gradient(150deg, var(--night-raised), var(--night-soft) 52%, #0d2024);
  border: 1px solid rgba(248, 244, 232, 0.11);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  min-height: 640px;
}

.package-card:nth-child(even) {
  grid-template-columns: minmax(540px, 1.1fr) minmax(420px, 0.9fr);
}

.package-card:nth-child(even) img {
  order: 2;
}

.package-card img {
  height: 100%;
  object-fit: cover;
}

.package-body {
  padding: clamp(32px, 5vw, 60px);
}

.package-body h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 12px 0 28px;
  text-transform: uppercase;
}

.package-body ul {
  list-style: none;
  margin: 24px 0 30px;
  padding: 0;
}

.package-body li {
  border-bottom: 1px solid var(--line);
  color: rgba(248, 244, 232, 0.82);
  padding: 12px 0;
}

.price-options {
  display: flex;
  gap: 12px;
  margin: 28px 0;
}

.price-option {
  background: linear-gradient(145deg, #fffdf6, #e8e1cf);
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  color: var(--night);
  flex: 1;
  padding: 16px;
}

.price-option small,
.price-option strong {
  display: block;
}

.zones {
  background:
    radial-gradient(circle at 75% 20%, rgba(167, 201, 87, 0.28), transparent 26rem),
    linear-gradient(135deg, #365a24, var(--green) 55%, #2e501d);
}

.zones-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.zone {
  border: 1px solid rgba(248, 244, 232, 0.35);
  min-height: 170px;
  padding: 28px;
  transition: background 220ms ease, transform 220ms ease;
}

.zone:hover {
  background: rgba(248, 244, 232, 0.1);
  transform: translateY(-4px);
}

.zone span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 900;
}

.about-lead {
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.about-page .about-lead {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(248, 244, 232, 0.045), rgba(167, 201, 87, 0.07)),
    rgba(18, 38, 42, 0.58);
  border: 1px solid rgba(248, 244, 232, 0.12);
  border-radius: 44px;
  padding: clamp(30px, 5vw, 70px);
}

.about-page .about-lead img {
  border: 1px solid rgba(248, 244, 232, 0.16);
  border-radius: 34px 120px 34px 34px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  margin-top: 0;
}

.about-lead img {
  margin-top: 120px;
}

.principles {
  border-top: 1px solid var(--line);
  margin-top: 70px;
}

.principle {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 60px;
  grid-template-columns: 0.35fr 1fr 1.4fr;
  padding: 32px 0;
}

.about-page .principles {
  border-top: 0;
}

.about-page .principle {
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 244, 232, 0.04), rgba(248, 244, 232, 0.012));
  border: 1px solid rgba(248, 244, 232, 0.1);
  border-radius: 26px;
  margin-bottom: 14px;
  padding: 24px 30px;
}

.about-page .principle:nth-child(even) {
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.08), rgba(0, 93, 255, 0.035));
  transform: translateX(34px);
}

.about-page .collage {
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
}

.principle strong {
  color: var(--lime);
  font-family: var(--display);
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(380px, 0.8fr) minmax(560px, 1.2fr);
}

.contact-page .contact-grid {
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 20%, rgba(167, 201, 87, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(248, 244, 232, 0.07), rgba(18, 38, 42, 0.52));
  border: 1px solid rgba(248, 244, 232, 0.14);
  border-radius: 42px;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(30px, 5vw, 70px);
}

.contact-page .contact-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .contact-lines li {
  background: rgba(7, 20, 24, 0.3);
  border: 1px solid rgba(248, 244, 232, 0.1);
  border-radius: 999px;
  margin-bottom: 10px;
  padding: 12px 18px;
}

.contact-page .contact-form {
  background: rgba(7, 20, 24, 0.38);
  border: 1px solid rgba(248, 244, 232, 0.12);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 44px);
}

.contact-page .cta-band {
  background:
    radial-gradient(circle at 50% 25%, rgba(0, 93, 255, 0.18), transparent 24rem),
    linear-gradient(rgba(7, 20, 24, 0.34), rgba(7, 20, 24, 0.9)),
    url("assets/dog-training.png") center 44% / cover;
}

.contact-lines {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.contact-lines li {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  background: rgba(248, 244, 232, 0.96);
  border: 2px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  margin-top: 7px;
  padding: 16px;
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 5px rgba(167, 201, 87, 0.13);
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  color: var(--lime);
  display: none;
  grid-column: 1 / -1;
  font-weight: 800;
}

.site-footer {
  background: linear-gradient(180deg, rgba(18, 38, 42, 0.3), rgba(5, 15, 18, 0.75));
  border-top: 1px solid var(--line);
  padding: 75px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.1fr 1fr 0.8fr 1.2fr;
}

.site-footer h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  color: rgba(248, 244, 232, 0.72);
  display: block;
  margin: 7px 0;
}

.copyright {
  border-top: 1px solid var(--line);
  color: rgba(248, 244, 232, 0.55);
  font-size: 0.75rem;
  margin-top: 55px;
  padding-top: 22px;
}

.js .hero-content > *,
.js .page-hero-content > * {
  animation: hero-rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js .hero-content > :nth-child(1),
.js .page-hero-content > :nth-child(1) {
  animation-delay: 120ms;
}

.js .hero-content > :nth-child(2),
.js .page-hero-content > :nth-child(2) {
  animation-delay: 240ms;
}

.js .hero-content > :nth-child(3) {
  animation-delay: 380ms;
}

.js .hero-content > :nth-child(4) {
  animation-delay: 500ms;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  filter: blur(7px);
  opacity: 0;
  transform: translateY(48px) scale(0.985);
  transition:
    filter 800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js .mosaic-card.reveal,
.js .service-card.reveal {
  transform: translateY(54px) scale(0.94);
}

.js .mosaic-card.reveal.visible,
.js .service-card.reveal.visible {
  transform: translateY(0) scale(1);
}

@keyframes hero-rise {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    align-items: center;
    background:
      radial-gradient(circle at 50% 18%, rgba(167, 201, 87, 0.12), transparent 18rem),
      rgba(7, 20, 24, 0.985);
    border: 0;
    border-radius: 0;
    display: none;
    inset: 0;
    justify-content: center;
    padding: 0;
    position: fixed;
    text-align: center;
    z-index: 35;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a {
    font-size: 1.35rem;
    padding: 12px 18px;
  }

  .main-nav a::after {
    bottom: 6px;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .statement-copy {
    margin-left: 0;
  }

  .statement::after {
    left: 10%;
    opacity: 0.65;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-card.large {
    grid-row: auto;
    min-height: 420px;
  }

  .collage,
  .about-lead,
  .contact-grid,
  .service-landing-grid,
  .about-manifesto-grid,
  .contact-signal-grid {
    grid-template-columns: 1fr;
  }

  .about-page .collage {
    grid-template-columns: 1fr;
  }

  .service-landing,
  .about-manifesto,
  .contact-signal {
    min-height: auto;
    padding-top: 132px;
  }

  .route-board {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .route-board img,
  .manifesto-photo img {
    height: min(560px, 78vw);
  }

  .route-board img {
    grid-column: 1 / -1;
  }

  .route-note,
  .route-note.top,
  .route-note.bottom {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    transform: none;
  }

  .route-note.top {
    right: auto;
  }

  .route-note.bottom {
    left: auto;
  }

  .manifesto-number {
    font-size: 7rem;
  }

  .about-page .page-hero-content,
  .contact-page .page-hero-content {
    margin-left: clamp(20px, 7vw, 140px);
    margin-right: auto;
    text-align: left;
  }

  .about-page .principle:nth-child(even) {
    transform: none;
  }

  .service-page .zones {
    clip-path: none;
  }

  .collage-copy {
    padding-right: 0;
  }

  .collage-visual {
    min-height: 560px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-list {
    grid-template-columns: 1fr;
  }

  .package-card,
  .package-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .package-card:nth-child(even) img {
    order: 0;
  }

  .package-card img {
    width: 100%;
    height: 360px;
    min-height: 0;
    max-height: 460px;
    object-fit: cover;
  }

  .price-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand span {
    display: none;
  }

  .brand {
    padding: 6px;
  }

  .hero,
  .page-hero {
    background-position: 62% center;
    min-height: 660px;
  }

  .hero-content,
  .page-hero-content {
    margin-left: 16px;
    padding-top: 140px;
    width: calc(100% - 32px);
  }

  .hero h1,
  .display-title {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    letter-spacing: -0.06em;
  }

  .statement-copy .display-title {
    font-size: clamp(1.95rem, 8.2vw, 2.5rem);
    max-width: 92%;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.55rem);
  }

  .section-heading h2,
  .content-title,
  .cta-band h2,
  .contact-grid h2 {
    font-size: clamp(1.95rem, 8.2vw, 2.6rem);
    overflow-wrap: anywhere;
  }

  .button {
    min-height: 54px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mosaic,
  .service-grid,
  .zones-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-tabs {
    grid-template-columns: 1fr;
  }

  .route-board {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .service-landing-copy h1,
  .manifesto-copy h1,
  .signal-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
    line-height: 1;
  }

  .route-board img,
  .manifesto-photo img {
    border-radius: 30px;
    height: 330px;
  }

  .route-note {
    position: relative;
    inset: auto;
    margin-top: 0;
    padding: 16px 18px;
  }

  .route-note span {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .route-note strong {
    font-size: 0.82rem;
  }

  .manifesto-photo figcaption {
    bottom: 16px;
    left: 16px;
    right: 16px;
    text-align: center;
  }

  .mosaic-card {
    min-height: 360px;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .package-card img {
    max-height: 440px;
  }

  .price-options {
    flex-direction: column;
  }

  .principle {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .contact-page .contact-grid,
  .about-page .about-lead,
  .signal-card {
    border-radius: 26px;
    padding: 22px;
  }

  .site-header {
    padding: 18px 16px;
  }

  .main-nav.open {
    gap: 18px;
  }

  .main-nav a {
    font-size: 1.28rem;
    width: min(260px, 82vw);
  }

  .package-body {
    padding: 26px 20px;
  }

  .package-body h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .package-card img {
    height: 280px;
    min-height: 0;
    max-height: none;
    object-fit: cover;
  }

  .price-options {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .price-option {
    min-width: 0;
  }

  .price-option strong {
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .about-page .collage {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-page .collage-copy {
    padding-left: 0;
  }

  .about-page .collage .content-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
    letter-spacing: -0.025em;
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-page .collage-visual {
    min-height: 360px;
  }

  .about-page .collage-visual .base {
    height: 310px;
    position: relative;
    top: auto;
    width: 100%;
  }

  .about-page .collage-visual .float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile stability overrides for wireframe 3. */
@media (max-width: 980px) {
  .main-nav.open {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: 96px 24px 40px;
  }

  .main-nav.open a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    background: rgba(248, 244, 232, 0.04);
  }
}

@media (max-width: 620px) {
  .service-page .package-card,
  .service-page .package-card:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .service-page .package-card img,
  .service-page .package-card:nth-child(even) img {
    order: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .service-page .price-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 22px 0;
  }

  .service-page .price-option {
    width: 100%;
  }

  .about-page .collage,
  .about-page .collage-copy,
  .about-page .collage-visual {
    width: 100%;
    min-width: 0;
  }

  .about-page .collage-copy > * {
    max-width: none;
  }

  .about-page .collage .content-title {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .about-page .collage-copy p:not(.script-line) {
    max-width: 58ch;
  }
}
