:root {
  --navy: #001e50;
  --navy-2: #0a285a;
  --night: #06142e;
  --ink: #172034;
  --muted: #626a78;
  --gold: #c8a64b;
  --gold-soft: #e2c878;
  --paper: #f7f2e8;
  --paper-2: #eee6d7;
  --glass: rgba(255, 252, 244, 0.68);
  --glass-dark: rgba(8, 23, 50, 0.56);
  --line: rgba(200, 166, 75, 0.34);
  --line-dark: rgba(255, 252, 244, 0.14);
  --radius: 8px;
  --content: 1180px;
  --motion: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 34px 90px rgba(4, 12, 28, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f9f4ea 0%, #eee5d5 44%, #f8f4ec 100%);
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(226, 200, 120, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--night);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 520ms var(--motion);
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1160px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(246, 240, 228, 0.72);
  box-shadow: 0 22px 70px rgba(5, 15, 34, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  backdrop-filter: blur(24px) saturate(1.25);
  transition: transform 520ms var(--motion), background 520ms var(--motion), box-shadow 520ms var(--motion);
}

.header.is-scrolled {
  transform: translateY(-4px);
  background: rgba(246, 240, 228, 0.88);
  box-shadow: 0 18px 54px rgba(5, 15, 34, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(200, 166, 75, 0.55);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(6, 20, 46, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand small {
  margin-top: 2px;
  color: rgba(23, 32, 52, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--night);
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  transform: scaleX(0);
  transition: transform 520ms var(--motion);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-call {
  background: var(--night);
  color: var(--paper);
  padding: 0 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 520ms var(--motion), box-shadow 520ms var(--motion);
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(6, 20, 46, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.menu-button {
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 30, 80, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
}

.menu-button span {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 520ms var(--motion), opacity 420ms var(--motion);
}

.menu-button span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-button span:nth-child(3) {
  transform: translateY(7px);
}

.menu-open .menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

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

.menu-open .menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(3, 12, 31, 0.98) 0%, rgba(5, 20, 48, 0.95) 46%, rgba(31, 47, 72, 0.9) 100%);
  color: var(--paper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  position: absolute;
  inset: -20% -8% auto auto;
  width: 58vw;
  height: 120vh;
  opacity: 0.58;
  background:
    linear-gradient(105deg, transparent 0 28%, rgba(226, 200, 120, 0.2) 29%, transparent 31% 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  clip-path: polygon(28% 0, 100% 0, 72% 100%, 0 100%);
  content: "";
}

.hero-bg::after {
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: 90vw;
  height: 62vw;
  border: 1px solid rgba(226, 200, 120, 0.18);
  border-radius: 50%;
  transform: translateX(-38%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  width: min(calc(100% - 44px), var(--content));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 78px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(226, 200, 120, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.2vw, 106px);
  line-height: 0.88;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(247, 242, 232, 0.76);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  gap: 14px;
  padding: 6px 8px 6px 22px;
  transition: transform 520ms var(--motion), background 520ms var(--motion), box-shadow 520ms var(--motion);
}

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

.button:active {
  transform: scale(0.98);
}

.button i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-style: normal;
  transition: transform 520ms var(--motion), background 520ms var(--motion);
}

.button:hover i {
  transform: translate(3px, -2px);
}

.button-primary {
  background: linear-gradient(135deg, #f0d67c, var(--gold));
  color: var(--night);
  box-shadow: 0 18px 48px rgba(200, 166, 75, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-primary i {
  background: rgba(6, 20, 46, 0.12);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: currentColor;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-secondary i {
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 46px 0 0;
}

.hero-facts div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.hero-facts dt {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 0.9;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: rgba(247, 242, 232, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.visual-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: rotate(1.2deg);
}

.visual-core {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  min-height: 560px;
  background: var(--night);
}

.hero-illustration {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center right;
}

.floating-badge,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 23, 50, 0.54);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(1.15);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  padding: 12px;
}

.floating-badge img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.floating-badge span,
.floating-badge strong {
  display: block;
}

.floating-badge strong {
  color: var(--gold-soft);
  font-size: 15px;
}

.badge-top {
  left: 18px;
  top: 18px;
}

.badge-bottom {
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
}

.badge-bottom span {
  color: rgba(247, 242, 232, 0.7);
  font-size: 12px;
}

.hero-note {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px;
  transform: translateX(-20px);
}

.hero-note span {
  width: 40px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.hero-note p {
  margin: 0;
  color: rgba(247, 242, 232, 0.78);
}

.section {
  position: relative;
  scroll-margin-top: 112px;
  padding: clamp(86px, 10vw, 132px) 0;
}

.section-inner {
  width: min(calc(100% - 44px), var(--content));
  margin: 0 auto;
}

.section-light {
  background: linear-gradient(180deg, #f8f3ea, #fffaf2);
}

.section-cream {
  background: linear-gradient(180deg, #efe5d3, #f8f1e5);
}

.section-dark {
  overflow: hidden;
  background:
    linear-gradient(135deg, #06142e 0%, #0b244a 55%, #151f32 100%);
  color: var(--paper);
}

.section-heading {
  max-width: 640px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.64fr);
  gap: 34px;
  align-items: end;
  max-width: none;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 0.94;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-heading h2,
.section-dark .section-heading p:not(.eyebrow) {
  color: var(--paper);
}

.about-grid,
.dark-grid,
.contact-grid,
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.about-copy {
  border-left: 1px solid rgba(200, 166, 75, 0.4);
  color: #333b4a;
  font-size: 20px;
  padding-left: 28px;
}

.about-copy p {
  margin-bottom: 18px;
}

.practice-strip {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1fr;
  gap: 18px;
}

.practice-strip article,
.service-card,
.trust-cards article,
.process-list li,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 252, 244, 0.78), rgba(246, 236, 218, 0.52));
  box-shadow: 0 26px 70px rgba(6, 20, 46, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.practice-strip article {
  min-height: 250px;
  padding: 30px;
}

.practice-strip article:nth-child(2) {
  transform: translateY(34px);
}

.practice-strip span,
.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(200, 166, 75, 0.56);
  border-radius: 50%;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

.practice-strip h3,
.service-card h3,
.advantage-list h3,
.process-list h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.practice-strip p,
.service-card p,
.advantage-list p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  overflow: hidden;
  transition: transform 720ms var(--motion), box-shadow 720ms var(--motion), border-color 720ms var(--motion);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
}

.service-card:hover {
  border-color: rgba(200, 166, 75, 0.54);
  box-shadow: 0 34px 88px rgba(6, 20, 46, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-6px);
}

.service-card figure {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(6, 20, 46, 0.95), rgba(10, 40, 90, 0.72)),
    var(--paper-2);
  padding: 14px;
}

.service-card figure img {
  width: 100%;
  height: 250px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
}

.service-card:nth-child(n + 6) {
  min-height: 252px;
}

.service-content {
  padding: 26px;
}

.price {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(200, 166, 75, 0.62);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.advantage-list article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.advantage-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 28px;
  line-height: 1;
}

.advantage-list h3 {
  color: var(--paper);
}

.advantage-list p {
  color: rgba(247, 242, 232, 0.7);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-cards article {
  padding: 28px;
}

.trust-cards strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.9;
}

.trust-cards span {
  color: var(--muted);
  font-weight: 800;
}

.media-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  margin-top: 50px;
}

.media-row figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.76);
  box-shadow: 0 26px 70px rgba(6, 20, 46, 0.1);
}

.media-row img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  background: #f3ecdf;
  padding: 12px;
}

.media-row figcaption {
  padding: 16px 18px 18px;
  color: var(--navy);
  font-weight: 900;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 30px;
}

.contact-section {
  background:
    linear-gradient(135deg, #051025, #0b2448 58%, #171f31);
  color: var(--paper);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(120deg, transparent 0 55%, rgba(226, 200, 120, 0.08) 55.2%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-section .section-heading h2,
.contact-section .section-heading p:not(.eyebrow) {
  color: var(--paper);
}

.contact-card {
  background: rgba(247, 242, 232, 0.92);
  padding: 28px;
}

.contact-line {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(0, 30, 80, 0.12);
  padding: 17px 0;
}

.contact-line:first-child {
  padding-top: 0;
}

.contact-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-line strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: clamp(18px, 3vw, 26px);
  line-height: 1.2;
}

.primary-contact strong {
  color: var(--night);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
}

.address {
  margin: 20px 0 24px;
  color: var(--ink);
  font-weight: 900;
}

.contact-card .button-secondary {
  color: var(--navy);
  border-color: rgba(0, 30, 80, 0.14);
  background: rgba(0, 30, 80, 0.04);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #030d20;
  color: rgba(247, 242, 232, 0.72);
  padding: 28px max(22px, calc((100vw - var(--content)) / 2));
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer img {
  border: 1px solid rgba(226, 200, 120, 0.5);
  border-radius: 50%;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms var(--motion), transform 900ms var(--motion);
}

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

@media (max-width: 1080px) {
  .header {
    grid-template-columns: minmax(220px, 1fr) auto auto;
    gap: 14px;
  }

  .nav {
    gap: 14px;
  }

  .hero-inner,
  .about-grid,
  .dark-grid,
  .contact-grid,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 126px;
  }

  .hero-panel {
    max-width: 680px;
  }

  .visual-shell,
  .hero-note {
    transform: none;
  }
}

@media (max-width: 860px) {
  body::before {
    display: none;
  }

  .header {
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 20px);
    border-radius: var(--radius);
    background: rgba(246, 240, 228, 0.94);
    box-shadow: 0 12px 34px rgba(5, 15, 34, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.68);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header.is-scrolled {
    background: rgba(246, 240, 228, 0.96);
    box-shadow: 0 10px 28px rgba(5, 15, 34, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .header-call {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 220;
    top: 94px;
    left: 10px;
    right: 10px;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: #f7f2e8;
    box-shadow: 0 18px 42px rgba(4, 12, 28, 0.18);
    padding: 14px;
    transform: translateY(-16px);
    visibility: hidden;
    opacity: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: transform 240ms var(--motion), visibility 240ms var(--motion);
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .nav a {
    padding: 16px 10px;
    font-size: 24px;
  }

  .section-heading.wide,
  .practice-strip,
  .service-grid,
  .advantage-list,
  .trust-cards,
  .media-row,
  .process-list {
    grid-template-columns: 1fr;
  }

  .practice-strip article:nth-child(2) {
    transform: none;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) {
    grid-column: span 1;
  }

  .floating-badge,
  .glass-panel {
    background: rgba(8, 23, 50, 0.84);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .practice-strip article,
  .service-card,
  .trust-cards article,
  .process-list li,
  .contact-card,
  .media-row figure {
    box-shadow: 0 14px 34px rgba(6, 20, 46, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.56);
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .media-row img {
    height: 230px;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    max-width: 160px;
    font-size: 9px;
  }

  .hero-inner,
  .section-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .hero-inner {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(46px, 13.2vw, 58px);
    line-height: 0.92;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .visual-core,
  .hero-illustration {
    min-height: 380px;
  }

  .floating-badge {
    max-width: calc(100% - 32px);
  }

  .badge-bottom {
    left: 16px;
    right: 16px;
  }

  .practice-strip article,
  .service-content,
  .advantage-list article,
  .trust-cards article,
  .process-list li,
  .contact-card {
    padding: 22px;
  }
}

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