:root {
  color-scheme: light;
  --ink: #231212;
  --muted: #655f62;
  --canvas: #cddbe3;
  --paper: #f4f4f4;
  --white: #ffffff;
  --lavender: #e3e2f7;
  --sage: #e5ebcf;
  --blush: #f0e4e6;
  --sky: #dcecf4;
  --line: rgba(35, 18, 18, 0.12);
  --shadow: 0 28px 80px rgba(35, 18, 18, 0.13);
  --radius-lg: 18px;
  --radius-md: 8px;
  font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-canvas {
  width: min(1120px, calc(100% - 48px));
  margin: 40px auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 14px 44px;
  background: rgba(244, 244, 244, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.header-simple {
  grid-template-columns: 1fr;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(35, 18, 18, 0.08);
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 54px;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  box-shadow: 0 16px 28px rgba(35, 18, 18, 0.22);
}

.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 90px 24px auto;
  z-index: 25;
  display: none;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: flex;
  padding: 14px 0;
  text-decoration: none;
  font-weight: 800;
}

.mobile-menu.is-open {
  display: block;
  animation: menuIn 0.25s ease both;
}

.section-rail {
  position: fixed;
  top: 50%;
  left: max(14px, calc((100vw - 1120px) / 2 - 132px));
  z-index: 40;
  display: grid;
  gap: 18px;
  width: 118px;
  transform: translateY(-50%);
}

.section-rail::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 7px;
  width: 1px;
  background: rgba(35, 18, 18, 0.17);
}

.rail-link {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 28px;
  text-decoration: none;
  color: rgba(35, 18, 18, 0.44);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.rail-link span {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(35, 18, 18, 0.5);
  border-radius: 999px;
  background: var(--paper);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.rail-link strong {
  max-width: 92px;
  padding: 6px 9px;
  overflow: hidden;
  background: rgba(244, 244, 244, 0.92);
  border: 1px solid rgba(35, 18, 18, 0.1);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(35, 18, 18, 0.08);
  opacity: 0;
  transform: translateX(-5px);
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.rail-link:hover,
.rail-link.is-active {
  color: var(--ink);
  transform: translateX(-2px);
}

.rail-link:hover span,
.rail-link.is-active span {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 0 7px rgba(35, 18, 18, 0.08);
  transform: scale(1.08);
}

.rail-link:hover strong,
.rail-link.is-active strong {
  opacity: 1;
  transform: translateX(0);
}

.rail-link-feature span {
  border-color: var(--ink);
  background: var(--lavender);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.rail-link-feature strong {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.rail-link-feature:hover span,
.rail-link-feature.is-active span {
  background: var(--ink);
  box-shadow: 0 0 0 7px rgba(35, 18, 18, 0.1), inset 0 0 0 3px var(--lavender);
}

main {
  padding: 32px 14px 0;
}

.section-panel {
  border-radius: var(--radius-lg);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: 72px;
  min-height: 520px;
  padding: 88px 44px 72px;
  overflow: hidden;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 0;
  height: 304px;
  background: var(--lavender);
  border-radius: 14px;
}


.hero-brand-bg {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 360px;
  background-image:
    linear-gradient(90deg, rgba(244, 244, 244, 0.74) 0%, rgba(244, 244, 244, 0.28) 42%, rgba(244, 244, 244, 0.68) 100%),
    url("assets/wedo-hero-bg.png");
  background-size: cover;
  background-position: center 38%;
  opacity: 0.34;
  filter: saturate(0.92);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
  pointer-events: none;
}

.hero-copy,
.hero-info {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 0;
  max-width: 660px;
  font-size: clamp(4rem, 7.8vw, 6.25rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 em {
  font-weight: 400;
  font-style: italic;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.45rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.12;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}


.phone {
  position: relative;
  width: 292px;
  height: 560px;
  padding: 10px;
  border: 5px solid #151313;
  border-radius: 42px;
  background: #151313;
  box-shadow: 0 26px 50px rgba(35, 18, 18, 0.28);
  animation: floatPhone 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 23px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 14px 13px;
  background: linear-gradient(180deg, #d9f4ff 0%, #ffffff 36%, #f8f8f8 100%);
  border-radius: 32px;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 0.7rem;
  font-weight: 900;
}

.app-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 0;
}

.app-heading span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
}

.app-heading strong {
  font-size: 1.16rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.task-card {
  min-height: 84px;
  margin-bottom: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 18, 18, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(35, 18, 18, 0.06);
}

.task-card.active {
  background: var(--sage);
}

.task-card.pale {
  background: var(--lavender);
}

.task-card small {
  display: block;
  margin-bottom: 4px;
  font-weight: 900;
  color: var(--muted);
}

.task-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.84rem;
  line-height: 1.12;
}

.task-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.28;
}

.concierge-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.concierge-status div {
  min-height: 56px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(35, 18, 18, 0.08);
  border-radius: var(--radius-md);
}

.concierge-status span {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.concierge-status small,
.concierge-contact small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.22;
}

.concierge-contact {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  min-height: 54px;
  padding: 9px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
}

.concierge-contact > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0 18%, transparent 19%),
    radial-gradient(circle at 50% 115%, #ffffff 0 38%, transparent 39%),
    var(--lavender);
}

.concierge-contact strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.15;
}

.concierge-contact small {
  color: rgba(255, 255, 255, 0.68);
}

.hero-info {
  align-self: center;
  max-width: 440px;
  padding: 0;
}

.hero-info p {
  margin-bottom: 24px;
  max-width: 470px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.positioning-section,
.workflow-section,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 58px;
  padding: 84px 38px 56px;
}

.statement-copy,
.workflow-list,
.contact-note {
  align-self: end;
}

.statement-copy p,
.subpage-hero p,
.contact-hero p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.audience-section {
  padding: 4px 38px 72px;
}

.audience-for {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.audience-items div {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 1.4vw, 1.06rem);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.services-section {
  position: relative;
  margin: 0 0 22px;
  padding: 48px 28px 38px;
  overflow: hidden;
  background: var(--white);
}


.section-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: start;
  margin-bottom: 32px;
}

.section-intro p:last-child {
  color: var(--muted);
  font-style: italic;
  text-transform: uppercase;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.service-card {
  display: flex;
  min-height: 212px;
  padding: 22px;
  border: 1px solid rgba(35, 18, 18, 0.07);
  border-radius: var(--radius-md);
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 32px rgba(35, 18, 18, 0.12);
}

.service-card.lavender {
  background: var(--lavender);
}

.service-card.white {
  background: #fbfbfb;
}

.service-card.sage {
  background: var(--sage);
}

.service-card.blush {
  background: var(--blush);
}

.service-card.sky {
  background: var(--sky);
}

.card-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: auto;
  border: 1px solid rgba(35, 18, 18, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  max-width: 28ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.workflow-section {
  padding-top: 72px;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.workflow-list span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.workflow-intro {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.workflow-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.closing-section {
  position: relative;
  display: grid;
  margin: 0 0 18px;
  padding: 54px 38px 46px;
  background: var(--lavender);
  overflow: hidden;
}

.closing-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -38% 28%;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 66%);
  animation: pulseGlow 7s ease-in-out infinite;
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
}

.closing-content h2 {
  max-width: 900px;
}

.closing-content > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.contact-note {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-note strong {
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-note span {
  color: var(--muted);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 1fr);
  gap: 56px;
  margin-bottom: 18px;
  padding: 46px 38px;
  background: var(--white);
  overflow: hidden;
}

.contact-section::before,
.contact-channels::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 46px,
      rgba(35, 18, 18, 0.035) 47px,
      rgba(35, 18, 18, 0.035) 48px
    );
  background-size: 180px 180px;
  opacity: 0.65;
  animation: backgroundDrift 18s linear infinite;
  pointer-events: none;
}

.contact-section > *,
.contact-channels > * {
  position: relative;
  z-index: 1;
}

.contact-copy {
  max-width: 430px;
}

.contact-copy h2 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  text-transform: none;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-copy > p {
  max-width: 38ch;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-points div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 14px;
  background: rgba(244, 244, 244, 0.82);
  border: 1px solid rgba(35, 18, 18, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.contact-points span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-points strong {
  font-size: 0.9rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-points small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(35, 18, 18, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(35, 18, 18, 0.08);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form span {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 18, 18, 0.16);
  border-radius: var(--radius-md);
  padding: 15px 16px;
  background: #f8f8f8;
  color: var(--ink);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(35, 18, 18, 0.07);
}

.contact-channels {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  margin-bottom: 6px;
  padding: 30px 38px;
  background: var(--paper);
  border: 1px solid rgba(35, 18, 18, 0.08);
  overflow: hidden;
  align-items: start;
}

.channels-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  text-transform: none;
}

.channels-heading p:not(.eyebrow) {
  max-width: 44ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.channel-card {
  display: flex;
  min-height: 184px;
  padding: 18px 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(35, 18, 18, 0.1);
  border-radius: var(--radius-md);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 18, 18, 0.28);
  box-shadow: 0 18px 32px rgba(35, 18, 18, 0.1);
}

.channel-card.whatsapp {
  background: var(--sage);
}

.channel-card.instagram {
  background: var(--lavender);
}

.channel-card.x-social {
  background: #ffffff;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--ink);
  border: 1px solid rgba(35, 18, 18, 0.35);
  border-radius: 50%;
}

.channel-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.channel-icon svg path:nth-child(2) {
  fill: currentColor;
  stroke: none;
}

.channel-icon.x-logo {
  font-size: 1.1rem;
  font-weight: 900;
}

.channel-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1;
  text-transform: uppercase;
}

.channel-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.site-footer {
  padding: 22px 38px 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-claim {
  margin-bottom: 0;
  max-width: 560px;
  line-height: 1.55;
}

.legal-bar {
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.legal-item {
  border-bottom: 1px solid var(--line);
}

.legal-item summary {
  list-style: none;
}

.legal-item summary::-webkit-details-marker {
  display: none;
}

.legal-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  user-select: none;
  transition: color 0.2s ease;
}

.legal-toggle:hover {
  color: var(--ink);
}

.legal-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.legal-item[open] .legal-chevron {
  transform: rotate(180deg);
}

.legal-item[open] .legal-toggle {
  color: var(--ink);
}

.legal-body {
  overflow: hidden;
}

.legal-item[open] .legal-body {
  animation: legalExpand 0.32s ease forwards;
}

.legal-inner {
  padding-bottom: 26px;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
}

.legal-columns h4 {
  margin: 0 0 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.legal-columns p {
  margin: 0 0 16px;
  font-size: 0.8rem;
  line-height: 1.62;
  color: var(--muted);
}

.legal-columns p:last-child {
  margin-bottom: 0;
}

@keyframes legalExpand {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(35, 18, 18, 0.22);
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast p {
  margin: 0;
}

.toast-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 180px 180px;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.84;
    transform: translate3d(-18px, -10px, 0) scale(1.08);
  }
}

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

@media (max-width: 1280px) {
  .section-rail {
    left: 18px;
    width: 16px;
  }

  .rail-link strong {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-canvas {
    width: min(100% - 28px, 760px);
    margin: 18px auto;
  }

  .legal-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .brand-logo {
    height: 72px;
  }

  .nav-links,
  .section-rail {
    display: none;
  }

  main {
    padding: 18px 10px 0;
  }

  .hero-section,
  .positioning-section,
  .workflow-section,
  .closing-section,
  .contact-section,
  .contact-channels,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
    padding: 46px 22px 36px;
    gap: 32px;
  }

  .hero-section::before {
    display: none;
  }

  .hero-info {
    max-width: none;
  }

  .audience-section {
    padding: 4px 22px 48px;
  }

  .audience-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .positioning-section,
  .workflow-section {
    padding: 52px 22px 40px;
  }

  .services-section,
  .closing-section,
  .contact-section,
  .contact-channels {
    padding: 36px 22px;
  }

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

  .closing-content h2 {
    max-width: none;
  }

  .contact-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .legal-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .legal-columns > div + div {
    padding-top: 14px;
  }

  .site-canvas {
    width: min(100% - 18px, 680px);
    margin: 9px auto;
  }

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

  .brand-logo {
    height: 60px;
  }

  main {
    padding: 9px 8px 0;
  }

  .hero-section {
    gap: 24px;
    padding: 36px 18px 28px;
  }

  .hero-info p {
    max-width: none;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .audience-items {
    grid-template-columns: 1fr;
  }

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

  .positioning-section,
  .workflow-section,
  .closing-section,
  .contact-section,
  .contact-channels {
    gap: 28px;
    padding: 36px 18px;
  }

  .section-intro {
    gap: 20px;
  }

  .service-card {
    min-height: 176px;
  }

  .contact-copy,
  .contact-copy > p,
  .channels-heading p:not(.eyebrow) {
    max-width: none;
  }

  .contact-copy h2 {
    max-width: none;
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
  }

  .contact-form {
    padding: 16px;
  }

  .contact-points div {
    grid-template-columns: 30px 1fr;
    padding: 12px;
  }

  .channel-card {
    min-height: 130px;
  }

  .workflow-intro {
    font-size: 1rem;
  }

  .workflow-cta .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-canvas {
    width: 100%;
    margin: 0;
  }

  .page-shell {
    min-height: 100vh;
    border-radius: 0;
  }

  .site-header {
    border-bottom: 1px solid rgba(35, 18, 18, 0.07);
  }

  .brand-logo {
    height: 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .hero-section,
  .positioning-section,
  .workflow-section,
  .closing-section,
  .contact-section,
  .contact-channels {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .card-number {
    margin-bottom: 36px;
  }

  .audience-items div {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
  }

  .contact-points div {
    grid-template-columns: 1fr;
  }

  .contact-points span {
    grid-row: auto;
  }

  .workflow-list div {
    padding: 14px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: clamp(2.4rem, 13vw, 3rem);
  }

  .brand-logo {
    height: 46px;
  }

  .hero-section,
  .positioning-section,
  .workflow-section,
  .closing-section,
  .contact-section,
  .contact-channels {
    padding-left: 14px;
    padding-right: 14px;
  }
}
