/* Fast Track Permits — site styles */
:root {
  /* Palette sampled from the Instagram profile logo */
  --ink: #1c1612;
  --coffee: #2b231f;
  --espresso: #382820;
  --cyan: #00d4f0;
  --cyan-bright: #79f4ff;
  --lime: #c8f016;
  --lime-bright: #e9fe38;
  --yellow: #ffe600;
  --yellow-bright: #fff821;
  --brand-gradient: linear-gradient(160deg, #00d4f0 0%, #c8f016 48%, #ffe600 100%);
  --mist: #eef6f8;
  --paper: #f5f7f8;
  --white: #ffffff;
  --muted: #5c6568;
  --line: rgba(56, 40, 32, 0.12);
  --shadow: 0 24px 60px rgba(28, 22, 18, 0.18);
  --radius: 4px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;

  /* Legacy aliases used across the stylesheet */
  --forest: var(--coffee);
  --leaf: #0aa8c2;
  --leaf-bright: var(--cyan-bright);
  --signal: var(--yellow);
  --signal-hover: #e6cf00;
}

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

html {
  scroll-behavior: smooth;
}

html.cover-active,
html.cover-active body {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ——— Cover / intro ——— */
.cover {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.cover::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 212, 240, 0.28), transparent 42%),
    radial-gradient(circle at 62% 58%, rgba(200, 240, 22, 0.22), transparent 38%),
    radial-gradient(circle at 38% 62%, rgba(255, 230, 0, 0.16), transparent 36%);
  animation: cover-aura-shift 4.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 18% -10% 18% -10%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 42px,
    rgba(255, 255, 255, 0.035) 42px,
    rgba(255, 255, 255, 0.035) 44px
  );
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  transform: skewX(-18deg);
  animation: cover-speed-lines 1.8s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

.cover.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cover-inner {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

.cover-logo-wrap {
  position: relative;
  width: min(52vw, 300px);
  margin: 0 auto 1.35rem;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.78) translateX(-18px);
  animation:
    cover-logo-arrive 0.95s var(--ease) 0.12s forwards,
    cover-logo-energy 2.4s ease-in-out 1.1s infinite;
}

.cover-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 240, 0.45) 0%,
    rgba(200, 240, 22, 0.28) 38%,
    rgba(255, 230, 0, 0.16) 55%,
    transparent 72%
  );
  filter: blur(8px);
  animation: cover-brand-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.cover-logo-ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #00d4f0,
    #c8f016,
    #ffe600,
    #00d4f0
  );
  opacity: 0.85;
  animation: cover-ring-spin 7s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 10px rgba(0, 212, 240, 0.35));
}

.cover-logo-wrap::after {
  content: "";
  position: absolute;
  left: -55%;
  top: 48%;
  width: 48%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #00d4f0, #c8f016, #ffe600);
  box-shadow: 0 0 16px rgba(0, 212, 240, 0.55);
  transform: translateY(-50%);
  opacity: 0;
  animation: cover-trail 1.1s var(--ease) 0.35s forwards;
  pointer-events: none;
}

.cover-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.1),
    0 0 28px rgba(0, 212, 240, 0.35),
    0 0 48px rgba(200, 240, 22, 0.22),
    0 28px 70px rgba(0, 0, 0, 0.5);
}

.cover-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.75rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: cover-rise 0.85s var(--ease) 0.45s forwards;
}

.cover-hint {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: cover-rise 0.85s var(--ease) 0.7s forwards;
}

.cover-skip {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0;
  animation: cover-rise 0.7s var(--ease) 0.9s forwards;
}

.cover-skip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

@keyframes cover-logo-arrive {
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes cover-logo-energy {
  0%,
  100% {
    transform: scale(1) translateX(0);
  }
  50% {
    transform: scale(1.045) translateX(2px);
  }
}

@keyframes cover-brand-pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes cover-aura-shift {
  from {
    transform: scale(1) translate3d(-2%, -1%, 0);
    filter: hue-rotate(0deg);
  }
  to {
    transform: scale(1.08) translate3d(2%, 1%, 0);
    filter: hue-rotate(18deg);
  }
}

@keyframes cover-speed-lines {
  from {
    transform: skewX(-18deg) translateX(-8%);
  }
  to {
    transform: skewX(-18deg) translateX(8%);
  }
}

@keyframes cover-trail {
  0% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.2);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(170%) scaleX(1);
  }
}

@keyframes cover-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cover-rise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #0aa8c2;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

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

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(244, 247, 245, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 247, 245, 0.96);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.15;
}

.logo-mark {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px rgba(0, 212, 240, 0.45);
}

.logo-text span {
  display: block;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 2px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.15rem;
  background: var(--coffee);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-decoration: none !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--espresso);
  color: var(--yellow-bright) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--ink);
  border-color: transparent;
  font-weight: 800;
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: var(--ink);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--coffee);
  color: var(--coffee);
}

.btn-outline:hover {
  background: var(--coffee);
  color: var(--yellow-bright);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 22, 18, 0.35) 0%, rgba(28, 22, 18, 0.72) 55%, rgba(28, 22, 18, 0.92) 100%),
    linear-gradient(90deg, rgba(28, 22, 18, 0.55) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(3.5rem, 8vh, 5rem);
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  max-width: 18ch;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero .btn-group {
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

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

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0aa8c2;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42ch;
  margin-top: 0.75rem;
}

.section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 212, 240, 0.18), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(255, 230, 0, 0.12), transparent 40%),
    var(--coffee);
  color: var(--white);
}

.section-dark .section-label {
  color: var(--lime-bright);
}

.section-dark .section-intro,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.section-mist {
  background: var(--mist);
}

/* ——— About split ——— */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 2px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(7, 26, 20, 0.55));
  z-index: 1;
  pointer-events: none;
}

.about-copy h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

/* ——— Feature rows ——— */
.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.feature-media {
  overflow: hidden;
  border-radius: 2px;
  min-height: 280px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.feature-row:hover .feature-media img {
  transform: scale(1.04);
}

.feature-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.feature-copy p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 26, 20, 0.35);
  color: var(--white);
  font: inherit;
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--leaf-bright);
  outline-offset: 1px;
}

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

.contact-form .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-meta {
  display: grid;
  gap: 1.75rem;
  align-content: start;
}

.meta-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-bright);
  margin-bottom: 0.5rem;
}

.meta-block a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.meta-block a:hover {
  color: var(--cyan-bright);
}

.hours {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.hours .closed {
  opacity: 0.55;
}

/* ——— Services page ——— */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 212, 240, 0.2), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(232, 254, 56, 0.16), transparent 35%),
    var(--mist);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  max-width: 14ch;
}

.page-hero p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.125rem;
}

.pricing-block {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.pricing-block:last-of-type {
  border-bottom: 0;
}

.pricing-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.5rem;
}

.pricing-block > p {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.price-item {
  background: var(--white);
  padding: 1.35rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.price-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-item .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  color: var(--coffee);
}

.notice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.notice {
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border-left: 3px solid transparent;
  border-image: var(--brand-gradient) 1;
}

.notice h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.notice p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.notice a {
  font-weight: 700;
  color: var(--coffee);
  text-decoration: none;
}

.notice a:hover {
  color: #0aa8c2;
}

.notice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.notice-link::after {
  content: "↗";
  font-size: 0.85em;
  color: #0aa8c2;
}

/* ——— Process / gallery strip ——— */
.process {
  overflow: hidden;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.process-track figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}

.process-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.process-track figure:hover img {
  transform: scale(1.05);
}

.process-track figcaption {
  position: absolute;
  /* keep captions out for cleaner look */
  display: none;
}

/* ——— Subscribe ——— */
.subscribe {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.subscribe h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.subscribe p {
  color: var(--muted);
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.subscribe-form input:focus {
  outline: 2px solid var(--leaf);
  outline-offset: 1px;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.site-footer .logo {
  color: var(--white);
}

.site-footer .logo-text span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .logo-mark {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 0 0 3px rgba(0, 212, 240, 0.35);
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.socials a:hover {
  color: var(--cyan-bright);
}

.copyright {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ——— Mobile ——— */
@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    z-index: 60;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding: calc(var(--nav-h) + 1rem) 1.25rem 1.5rem;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-grid,
  .feature-row,
  .feature-row.reverse,
  .contact-grid,
  .subscribe,
  .notice-row {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy {
    order: unset;
  }

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

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual,
  .about-visual img {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media img {
    transform: none;
  }

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

  .cover-logo-wrap,
  .cover-brand,
  .cover-hint,
  .cover-skip {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .cover::before,
  .cover::after,
  .cover-logo-wrap::before,
  .cover-logo-wrap::after,
  .cover-logo-ring {
    animation: none !important;
  }

  .cover-logo-wrap::after {
    content: none;
  }
}
