:root {
  --navy: #1b2d26;
  --navy-2: #2b473c;
  --blue: #a65339;
  --blue-2: #87422f;
  --cream: #fff8ef;
  --cream-2: #ead8c2;
  --sand: #d3a57a;
  --paper: #fffcf7;
  --text: #27362f;
  --muted: #536159;
  --line: rgba(39, 54, 47, 0.1);
  --shadow: 0 24px 70px rgba(39, 54, 47, 0.14);
  --shadow-soft: 0 18px 48px rgba(39, 54, 47, 0.08);
  --radius: 30px;
  --radius-sm: 18px;
  --container: 1220px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 13% 9%, rgba(255, 234, 211, 0.86), transparent 31rem),
    radial-gradient(circle at 88% 0%, rgba(226, 235, 227, 0.9), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #fffaf6 44%, #fff 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  line-height: 1.05;
  white-space: nowrap;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-mark {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.brand-mark b {
  color: var(--blue);
  letter-spacing: 0;
}

.brand-name {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-weight: 700;
  font-size: 0.93rem;
}
.main-nav a {
  position: relative;
  color: rgba(39, 54, 47, 0.86);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(39, 54, 47, 0.04);
}
.language-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 38px;
  height: 32px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.78rem;
}
.language-switch button.is-active {
  background: var(--navy);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 15px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--forest-deep, #13231d));
  color: white;
  box-shadow: 0 18px 34px rgba(39, 54, 47, 0.23);
}
.btn-primary:hover { box-shadow: 0 22px 42px rgba(39, 54, 47, 0.28); }
.btn-secondary {
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  box-shadow: var(--shadow-soft);
  border-color: rgba(39, 54, 47, 0.06);
}
.btn-small { min-height: 46px; padding: 0 24px; border-radius: 14px; }
.play {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 54, 47, 0.14);
  border-radius: 999px;
  font-size: 0.64rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 56px;
  min-height: min(690px, calc(100vh - 86px));
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 21% 39%, rgba(255, 227, 198, 0.62), transparent 23rem),
    radial-gradient(circle at 76% 7%, rgba(229, 236, 229, 0.94), transparent 32rem),
    linear-gradient(90deg, rgba(255, 248, 240, 0.35), rgba(255,255,255,0) 48%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
  gap: clamp(32px, 4.4vw, 68px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(39, 54, 47, 0.08);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-weight: 800;
  color: #4f5e56;
  box-shadow: 0 10px 30px rgba(39, 54, 47, 0.05);
}
.spark { color: var(--blue); font-size: 1.1rem; }
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.1rem, 5.1vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--navy);
}
.accent-word {
  position: relative;
  color: var(--blue);
  display: inline-block;
}
.accent-word::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: -0.02em;
  bottom: -0.08em;
  height: 0.12em;
  background: linear-gradient(90deg, rgba(212, 156, 84, 0.68), rgba(212, 156, 84, 0.12));
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-2deg);
}
.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
}
.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.trusted { margin-top: 38px; color: var(--muted); }
.trusted p { margin: 0 0 14px; font-size: 0.92rem; font-weight: 700; }
.trusted ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 800;
  color: rgba(83, 97, 89, 0.88);
  font-size: 0.92rem;
}
.trusted li::before {
  content: "◎";
  margin-right: 9px;
  color: rgba(39, 54, 47, 0.32);
}
.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  overflow: visible;
  isolation: isolate;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -34px 44px 22px -58px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(circle at 14px 14px, rgba(39, 54, 47, 0.13) 1.3px, transparent 1.5px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255, 248, 240, 0.96), rgba(234, 239, 233, 0.78));
}
.hero-picture {
  display: block;
  width: min(100%, 540px);
  max-width: 540px;
  margin-left: auto;
}
.hero-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
  object-position: center center;
  margin-left: auto;
  border-radius: 42px;
  filter: drop-shadow(0 34px 62px rgba(39, 54, 47, 0.13));
}
.hero-id-card {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(4px, 2vw, 26px);
  width: min(360px, 62%);
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(39, 54, 47, 0.09);
  box-shadow: 0 22px 54px rgba(39, 54, 47, 0.16);
  backdrop-filter: blur(18px);
}
.hero-id-card span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.08;
  font-weight: 950;
}
.hero-id-card strong {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 760;
}

.orbit {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 1px rgba(166, 83, 57, 0.05);
}
.orbit-one {
  width: min(115%, 635px);
  height: 78%;
  left: -4%;
  top: 8%;
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-10deg);
}
.orbit-two {
  width: min(104%, 575px);
  height: 94%;
  left: 3%;
  top: 0;
  border-radius: 54% 46% 56% 44%;
  transform: rotate(8deg);
  opacity: 0.78;
}
.orbit-dot {
  position: absolute;
  z-index: 4;
  left: 1%;
  top: 45%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 7px rgba(255,255,255,0.75);
}

.section { padding: 78px 0; }
.benefits {
  position: relative;
  padding-top: 58px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(39, 54, 47, 0.05);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
  text-align: center;
}
.section-heading.left { justify-content: flex-start; text-align: left; display: block; margin-bottom: 28px; }
.section-heading span {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}
.section-heading h2, .section-copy h2, .about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.card-grid { display: grid; gap: 20px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(39, 54, 47, 0.065);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.benefit-card {
  min-height: 204px;
  padding: 31px 26px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(39, 54, 47, 0.11);
}
.icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe3c7, #fff2e7);
  color: var(--blue-2);
  font-size: 1.5rem;
  font-weight: 900;
}
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.1rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-weight: 540; }

.process { padding-top: 52px; }
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  align-items: start;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  gap: 0;
}
.step-card { padding: 34px 30px; min-height: 190px; }
.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(166, 83, 57, 0.26);
  margin-bottom: 22px;
}
.step-line {
  border-top: 3px dotted rgba(166, 83, 57, 0.55);
  transform: translateY(-34px);
}
.cta-panel {
  background: linear-gradient(145deg, #edf2ec, #ffffff 58%, #f8ead9);
  border: 1px solid rgba(39, 54, 47, 0.06);
  border-radius: 24px;
  padding: 45px 36px;
  box-shadow: var(--shadow);
}
.cta-panel h2 { margin: 0 0 24px; color: var(--navy); font-size: 2rem; line-height: 1.1; letter-spacing: -0.04em; }
.cta-panel ul { padding: 0; margin: 0 0 34px; list-style: none; display: grid; gap: 14px; color: #536159; font-weight: 700; }
.cta-panel li::before { content: "✓"; color: var(--blue); margin-right: 12px; font-weight: 950; }
.cta-panel .btn { width: 100%; }

.split, .about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.section-copy p:not(.section-kicker), .about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 18px 0 0;
  font-weight: 520;
}
.bio-facts {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.bio-facts li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}
.bio-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(166, 83, 57, 0.12);
}
.pill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pill {
  min-height: 108px;
  display: flex;
  align-items: center;
  padding: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(39, 54, 47, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 850;
}

.audience {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255, 248, 241, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(228, 236, 229, 0.72), transparent 24rem);
}

.toolkit {
  padding-top: 44px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.72), rgba(255,255,255,0));
}
.toolkit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}
.tool-list {
  display: grid;
  gap: 18px;
}
.tool-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(39, 54, 47, 0.1);
}
.tool-item:last-child {
  border-bottom: 1px solid rgba(39, 54, 47, 0.1);
}
.tool-item > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(166, 83, 57, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
}
.tool-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
}
.tool-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.examples {
  padding-top: 48px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 226, 196, 0.42), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(233, 239, 233, 0.42));
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.example-item {
  grid-column: span 2;
  min-height: 238px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(39, 54, 47, 0.07);
  box-shadow: var(--shadow-soft);
}
.example-item:nth-child(4) {
  grid-column: 2 / span 2;
}
.example-item:nth-child(5) {
  grid-column: 4 / span 2;
}
.example-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(166, 83, 57, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.82rem;
}
.example-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}
.example-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 590;
  line-height: 1.5;
}

.results { background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(233, 239, 233, 0.38)); }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.metric {
  padding: 34px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(39, 54, 47, 0.07);
  box-shadow: var(--shadow-soft);
}
.metric strong { display: block; color: var(--blue); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; letter-spacing: -0.06em; }
.metric span { display: block; margin-top: 12px; color: var(--muted); font-weight: 750; }

.about { position: relative; overflow: hidden; }
.about::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: 1vw;
  width: 58vw;
  height: 150px;
  opacity: 0.12;
  background: repeating-radial-gradient(ellipse at center, transparent 0 11px, rgba(166, 83, 57, 0.8) 12px 13px, transparent 14px 26px);
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 0;
}
.about .container {
  position: relative;
  z-index: 1;
}
.about-layout {
  align-items: start;
}
.about-media {
  display: grid;
  gap: 18px;
}
.about-work-photo {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  background: #eef2ec;
  border: 1px solid rgba(39, 54, 47, 0.08);
  box-shadow: var(--shadow);
}
.about-work-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  pointer-events: none;
}
.about-work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
}
.quote-stack {
  display: grid;
  gap: 16px;
}
.quote-card {
  position: relative;
  padding: 26px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(39, 54, 47, 0.06);
  box-shadow: var(--shadow-soft);
}
.quote-card-secondary {
  background: rgba(255, 255, 255, 0.78);
}
.quote-mark { color: #dcb57f; font-size: 3.15rem; line-height: 0.8; font-weight: 900; }
blockquote { margin: 12px 0 22px; color: var(--navy); font-weight: 780; font-size: clamp(1.04rem, 1.34vw, 1.22rem); line-height: 1.46; }
.quote-person { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(39, 54, 47, 0.16);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  transform: scale(1.04);
}
.avatar-initial {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
}
.quote-person strong { display: block; color: var(--navy); }
.quote-person span { color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid rgba(166, 83, 57, 0.3);
}

.final-cta {
  padding: 34px 0 82px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 226, 196, 0.55), transparent 22rem),
    radial-gradient(circle at 86% 10%, rgba(226, 235, 227, 0.74), transparent 25rem),
    linear-gradient(180deg, #fff, #fff8f1);
}
.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(39, 54, 47, 0.08);
  box-shadow: var(--shadow);
}
.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.final-cta p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 620;
  font-size: 1.08rem;
}
.final-cta .btn {
  min-width: 260px;
}

.site-footer { border-top: 1px solid var(--line); background: #fff; padding: 34px 0; }
.footer-layout { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-layout p { margin: 0; color: var(--muted); max-width: 430px; font-weight: 600; }
.footer-links { display: flex; gap: 18px; color: var(--muted); font-weight: 760; }
.footer-links a:hover { color: var(--blue); }

.legal-nav {
  margin-left: auto;
}

.legal-language {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
}

.legal-language button {
  width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
}

.legal-language button[aria-pressed="true"] {
  color: white;
  background: var(--navy);
}
.legal-main {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 226, 196, 0.48), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(226, 235, 227, 0.74), transparent 30rem),
    linear-gradient(180deg, #fff, #fff8f1);
}
.legal-hero {
  padding: 82px 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}
.legal-layout h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: normal;
}
.legal-layout > div:first-child p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 620;
}
.legal-card {
  padding: clamp(30px, 4vw, 48px);
  border-radius: 26px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(39, 54, 47, 0.08);
  box-shadow: var(--shadow-soft);
  overflow-wrap: anywhere;
}
.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 570;
}
.legal-card a {
  color: var(--blue);
  font-weight: 850;
}
.legal-note {
  margin-top: 28px !important;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(166, 83, 57, 0.08);
  color: var(--navy) !important;
  font-weight: 760 !important;
}

.legal-status {
  margin: 0 0 30px;
  padding: 12px 16px;
  border-left: 3px solid var(--blue);
  color: var(--blue-2);
  background: rgba(166, 83, 57, 0.08);
  font-size: 0.84rem;
  font-weight: 780;
}

.legal-updated {
  margin-top: 34px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.booking-main {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 226, 196, 0.56), transparent 25rem),
    radial-gradient(circle at 88% 4%, rgba(226, 235, 227, 0.82), transparent 30rem),
    linear-gradient(180deg, #fff, #fff8f1);
}
.booking-hero {
  padding: clamp(62px, 8vw, 104px) 0 56px;
}
.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}
.booking-copy {
  position: sticky;
  top: 116px;
}
.booking-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.booking-copy p:not(.section-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 620;
}
.booking-contact-card {
  max-width: 430px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(39, 54, 47, 0.08);
  box-shadow: var(--shadow-soft);
}
.booking-contact-card > span {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}
.booking-copy .booking-contact-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 620;
}
.booking-contact-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}
.booking-panel {
  display: grid;
  gap: 18px;
}
.booking-option {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 26px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(39, 54, 47, 0.08);
  box-shadow: var(--shadow-soft);
}

.booking-option.is-selected {
  border-color: rgba(166, 83, 57, 0.5);
  box-shadow: 0 22px 58px rgba(39, 54, 47, 0.15);
}
.booking-option h2 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}
.booking-option p {
  margin: 0;
  color: var(--muted);
  font-weight: 610;
}
.booking-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(166, 83, 57, 0.1);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking-price {
  margin-bottom: 14px !important;
  color: var(--navy) !important;
  font-size: 1.5rem;
  font-weight: 900 !important;
}
.booking-option .btn,
.booking-option .text-link {
  justify-self: start;
}
.booking-option-quiet {
  background: rgba(255, 248, 240, 0.74);
}
.booking-details {
  padding: 10px 0 82px;
}
.booking-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.booking-detail-grid > div {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(39, 54, 47, 0.07);
}
.booking-detail-grid h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.3rem;
}
.booking-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 620;
}
.booking-detail-grid .text-link {
  margin-top: 18px;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(166, 83, 57, 0.55); outline-offset: 4px; }

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .nav-actions .btn-small { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .trusted ul { justify-content: center; }
  .hero-visual { min-height: auto; }
  .hero-visual::before { inset: -28px 8% 22px 8%; }
  .hero-picture { margin: 0 auto; width: min(620px, 100%); max-width: 620px; }
  .hero-visual img { margin: 0 auto; width: 100%; }
  .orbit-one { left: 8%; width: 84%; }
  .orbit-two { left: 12%; width: 78%; }
  .orbit-dot { left: 15%; }
  .process-layout { grid-template-columns: 1fr; }
  .cta-panel { max-width: 520px; margin: 0 auto; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .examples-grid { grid-template-columns: repeat(2, 1fr); }
  .example-item,
  .example-item:nth-child(4),
  .example-item:nth-child(5) { grid-column: auto; }
  .example-item { min-height: 220px; }
  .toolkit-layout { grid-template-columns: 1fr; }
  .final-cta-layout { grid-template-columns: 1fr; }
  .final-cta .btn { justify-self: start; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 14px 12px; border-radius: 12px; }
  .main-nav a:hover { background: rgba(166, 83, 57, 0.07); }
  .main-nav a::after { display: none; }
  .nav-shell { min-height: 70px; }
  .nav-actions { margin-left: auto; }
  .language-switch button { min-width: 34px; }
  .hero { padding: 54px 0 44px; }
  .hero h1 { font-size: clamp(2.45rem, 10.8vw, 4.2rem); line-height: 1.06; }
  .hero-actions { gap: 14px; }
  .btn { width: 100%; }
  .hero-actions .btn { max-width: 360px; margin: 0 auto; }
  .section { padding: 58px 0; }
  .section-heading { gap: 14px; }
  .section-heading span { width: 38px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step-line { height: 24px; border-top: 0; border-left: 3px dotted rgba(166, 83, 57, 0.5); justify-self: center; transform: none; }
  .cta-panel { padding: 36px 28px; }
  .split, .about-layout { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .booking-detail-grid { grid-template-columns: 1fr; }
  .legal-hero { padding: 54px 0; }
  .toolkit { padding-top: 24px; }
  .tool-item { grid-template-columns: 46px 1fr; gap: 16px; }
  .final-cta { padding: 20px 0 58px; }
  .final-cta-layout { border-radius: 24px; }
  .final-cta .btn { width: 100%; justify-self: stretch; }
  .footer-layout { flex-direction: column; text-align: center; }
  .legal-nav { display: flex; position: static; transform: none; opacity: 1; pointer-events: auto; background: transparent; border: 0; box-shadow: none; padding: 0; margin-left: 0; }
}

@media (max-width: 560px) {
  .brand { gap: 0; }
  .brand-mark { font-size: 0.88rem; letter-spacing: 0.1em; }
  .brand-name { font-size: 0.56rem; letter-spacing: 0.02em; }
  .legal-nav { margin-left: auto; gap: 14px; font-size: 0.82rem; }
  .legal-nav a:not(:first-child) { display: none; }
  .nav-actions { gap: 8px; }
  .language-switch { padding: 3px; }
  .language-switch button { min-width: 31px; height: 29px; font-size: 0.72rem; }
  .hero-visual::before { inset: -16px 0 16px 0; border-radius: 30px; }
  .hero-visual img { border-radius: 30px; }
  .hero-id-card {
    left: 18px;
    right: 18px;
    bottom: -18px;
    width: auto;
    padding: 15px 16px;
    border-radius: 18px;
    text-align: left;
  }
  .hero-id-card strong { font-size: 0.82rem; }
  .orbit { border-width: 2px; }
  .orbit-one { height: 72%; top: 12%; }
  .orbit-two { height: 88%; top: 4%; }
  .orbit-dot { width: 11px; height: 11px; top: 46%; }
  .card-grid.four, .pill-grid { grid-template-columns: 1fr; }
  .examples-grid { grid-template-columns: 1fr; }
  .example-item { min-height: auto; }
  .benefit-card, .step-card, .quote-card, .cta-panel { padding: 26px 22px; }
  .booking-option, .booking-detail-grid > div { padding: 26px 22px; }
  .booking-option .btn { width: 100%; }
  .trusted ul { gap: 10px 18px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

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