/* =========================================================
   COOKIE DEVS — PREMIUM LAWYER DEMO
   Shared visual system
   ========================================================= */

:root {
  --navy-950: #07131f;
  --navy-900: #0b1b2b;
  --navy-800: #10283f;
  --navy-700: #183a59;

  --ink: #121820;
  --muted: #6c7580;
  --line: #dfe4e8;
  --line-dark: rgba(255, 255, 255, 0.12);

  --paper: #ffffff;
  --soft: #f4f6f7;
  --soft-2: #edf1f3;

  --accent: #b8a071;
  --accent-soft: #d9c9a7;

  --container: 1180px;
  --header-h: 82px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow: 0 24px 70px rgba(7, 19, 31, 0.12);

  --transition-fast: 180ms ease;
  --transition: 320ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--navy-900);
  color: #fff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.eyebrow.is-light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow.is-light::before {
  background: var(--accent-soft);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.section {
  padding: 112px 0;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(7, 19, 31, 0.08);
  box-shadow: 0 8px 32px rgba(7, 19, 31, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.menu-open .site-header {
  background: #ffffff;
  border-bottom-color: rgba(7, 19, 31, 0.08);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.menu-open .header-inner {
  position: relative;
  z-index: 1002;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 1002;
}

.brand-mark {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  transition: var(--transition);
}

.site-header.is-scrolled .brand-mark,
body.menu-open .brand-mark {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.brand-copy {
  color: #fff;
  line-height: 1.05;
  transition: var(--transition);
}

.site-header.is-scrolled .brand-copy,
body.menu-open .brand-copy {
  color: var(--navy-950);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.is-scrolled .site-nav a {
  color: var(--navy-950);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.lang-link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy-950);
}

.site-header.is-scrolled .lang-link {
  border-color: rgba(7, 19, 31, 0.18);
  color: var(--navy-950);
}

.site-header.is-scrolled .lang-link:hover {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  position: relative;
  z-index: 1002;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 28px;
  height: 1px;
  background: #fff;
  transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}
.menu-toggle span:nth-child(2) {
  top: 25px;
}

.site-header.is-scrolled .menu-toggle span,
body.menu-open .menu-toggle span {
  background: var(--navy-950);
}

body.menu-open .menu-toggle span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  top: 22px;
  transform: rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(184, 160, 113, 0.13),
      transparent 28%
    ),
    linear-gradient(135deg, #07131f 0%, #0b1b2b 52%, #10283f 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero::after {
  content: "§";
  position: absolute;
  right: clamp(24px, 8vw, 120px);
  top: 48%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18rem, 42vw, 40rem);
  line-height: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;

  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.hero-copy {
  max-width: 900px;
}

.hero-kicker {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8.6vw, 8rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--accent-soft);
  font-style: italic;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.03rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

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

.btn-primary {
  background: #fff;
  color: var(--navy-950);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-aside {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}

.hero-aside-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-aside-item span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-aside-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

/* =========================================================
   INTRO STRIP
   ========================================================= */

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  min-height: 142px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item strong {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.25;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.about-label {
  position: sticky;
  top: 122px;
}

.about-number {
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.about-label p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-copy h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-copy > p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.about-point {
  padding: 24px 0 0;
  border-top: 1px solid #cfd6dc;
}

.about-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 0.95rem;
}

.about-point span {
  color: var(--muted);
  font-size: 0.93rem;
}

/* =========================================================
   PRACTICE AREAS
   ========================================================= */

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-card {
  min-height: 310px;
  position: relative;
  padding: 34px 32px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.practice-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.practice-card:hover {
  background: var(--navy-950);
  color: #fff;
}

.practice-card:hover::after {
  transform: scaleX(1);
}

.practice-index {
  display: block;
  margin-bottom: 46px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.practice-card h3 {
  max-width: 280px;
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  transition: color var(--transition);
}

.practice-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  transition: color var(--transition);
}

.practice-card:hover h3,
.practice-card:hover p {
  color: #fff;
}

.practice-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

/* =========================================================
   METHOD
   ========================================================= */

.method {
  background: var(--navy-950);
  color: #fff;
}

.method .section-heading h2 {
  color: #fff;
}

.method .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.method-card {
  min-height: 340px;
  padding: 38px 34px;
  background: var(--navy-950);
}

.method-card span {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.method-card h3 {
  margin: 88px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 400;
}

.method-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

/* =========================================================
   PROFILE
   ========================================================= */

.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: stretch;
}

.profile-visual {
  min-height: 610px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 40px;
  background:
    linear-gradient(145deg, rgba(7, 19, 31, 0.08), rgba(7, 19, 31, 0.82)),
    radial-gradient(
      circle at 70% 30%,
      rgba(184, 160, 113, 0.32),
      transparent 30%
    ),
    #c9d1d8;
}

.profile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0 1px,
    transparent 1px 18px
  );
}

.profile-quote {
  position: relative;
  z-index: 1;
  max-width: 460px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.profile-copy {
  padding: 20px 0;
}

.profile-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.profile-copy .role {
  margin: 15px 0 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-copy > p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.profile-list {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: var(--muted);
  font-size: 0.83rem;
}

.profile-list dd {
  margin: 0;
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.9rem;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-intro h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.faq-list {
  border-top: 1px solid #cfd6dc;
}

.faq-item {
  border-bottom: 1px solid #cfd6dc;
}

.faq-question {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  text-align: left;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--navy-950);
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 42px 26px 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* =========================================================
   CONTACT CTA (NO FORM)
   ========================================================= */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  color: #fff;
}

.contact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.contact h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.8vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.contact h2 em {
  color: var(--accent-soft);
  font-weight: 400;
}

.contact p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details a,
.contact-details div {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 400;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 34px 0;
  background: #050d15;
  color: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a:hover {
  color: #fff;
}

/* =========================================================
   REVEAL
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  /* =========================================
     MOBILE HEADER — ALWAYS SOLID
     ========================================= */

  .site-header,
  .site-header.is-scrolled,
  body.menu-open .site-header {
    height: var(--header-h);

    background: #ffffff;

    border-bottom: 1px solid rgba(7, 19, 31, 0.08);

    box-shadow: none;

    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    position: relative;
    z-index: 1003;
  }

  /* =========================================
     MOBILE BRAND
     ========================================= */

  .brand {
    position: relative;
    z-index: 1003;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark,
  body.menu-open .brand-mark {
    border-color: var(--navy-900);
    color: var(--navy-900);
  }

  .brand-copy,
  .site-header.is-scrolled .brand-copy,
  body.menu-open .brand-copy {
    color: var(--navy-950);
  }

  /* =========================================
     HAMBURGER
     ========================================= */

  .menu-toggle {
    display: block;

    position: relative;
    z-index: 1003;
  }

  .menu-toggle span,
  .site-header.is-scrolled .menu-toggle span,
  body.menu-open .menu-toggle span {
    background: var(--navy-950);
  }

  /* =========================================
     MOBILE MENU
     ========================================= */

  .nav-wrap {
    position: fixed;

    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1001;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 30px;

    padding: 28px 32px 40px;

    overflow-y: auto;
    overscroll-behavior: contain;

    background: #ffffff;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  body.menu-open .nav-wrap {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  /* =========================================
     MOBILE NAV LINKS
     ========================================= */

  .site-nav {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;
  }

  .site-nav a {
    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);

    color: var(--navy-950);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(1.7rem, 6vw, 2.5rem);
  }

  .site-nav a::after {
    display: none;
  }

  /* =========================================
     LANGUAGE
     ========================================= */

  .lang-link {
    border-color: var(--navy-950);
    color: var(--navy-950);
  }

  /* =========================================
     REST OF RESPONSIVE LAYOUT
     ========================================= */

  .hero {
    min-height: auto;
  }

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

  .hero-grid,
  .about-grid,
  .profile-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .about-label {
    position: static;
  }

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

  .method-card:last-child {
    grid-column: span 2;
  }

  .profile-visual {
    min-height: 450px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand-copy span {
    display: none;
  }

  .hero-inner {
    padding-top: 138px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.4rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .practice-grid,
  .method-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .method-card:last-child {
    grid-column: auto;
  }

  .practice-card {
    min-height: 270px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-grid {
    gap: 44px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
