@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --container: 1120px;
  --gutter: 40px;
  --cream: #faf7f2;
  --nude: #f0e8df;
  --rose: #c9a99a;
  --rose-dark: #a07060;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --ink: #1a1614;
  --ink2: #5a4a44;
  --ink3: #9a8880;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: 'Jost', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100%;
}

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

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

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

main {
  flex: 1 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  background: var(--white);
  border-bottom: 1px solid var(--nude);
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.logo-mark {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex: 0 0 auto;
  margin: -5px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink2);
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

.nav-btn,
.button,
.submit {
  font-family: 'Jost', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  cursor: pointer;
}

.nav-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 20px;
  font-size: 12px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #1a1614 0%, #3d2b25 50%, #2a1f1a 100%);
  height: 658px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  padding: 30px 48px 30px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.hero-tag,
.divider-tag,
.cta-tag,
.c-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-tag,
.cta-tag {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before,
.cta-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1,
.section-title,
.prog-title,
.dir-title,
.quote-text,
.contacts h3,
.page-title,
.content h2,
.content h3,
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 57px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 36px;
  max-width: 390px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  padding: 16px 30px;
  border: 0;
  font-size: 13px;
  transition: all 0.2s;
  align-self: flex-start;
}

.button:hover {
  background: var(--rose-dark);
}

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

.button.dark:hover {
  background: var(--gold);
}

.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.hero-right img,
.hero-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero-video {
  display: block;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stats {
  position: static;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  z-index: 3;
  max-width: 430px;
}

.h-stat {
  min-width: 0;
  flex: 0 0 auto;
}

.h-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 37px;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}

.h-stat .lbl {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
  white-space: nowrap;
}

.divider {
  text-align: center;
  padding: 52px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) 16px;
  position: relative;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 1px;
  background: var(--nude);
}

.divider-inner {
  display: inline-block;
  background: var(--cream);
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 56px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}

.section.compact {
  padding-top: 28px;
}

.section-title {
  font-size: 41px;
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--ink3);
  letter-spacing: 0.4px;
  margin: 0 auto 40px;
  max-width: 620px;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.prog-card {
  background: var(--white);
  border: 1px solid var(--nude);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.prog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 22, 20, 0.08);
}

.prog-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: var(--nude);
}

.prog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 22, 20, 0.55) 0%, transparent 62%);
}

.prog-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.prog-body {
  padding: 28px 28px 32px;
}

.prog-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--ink);
}

.prog-desc {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
  margin-bottom: 24px;
}

.prog-link,
.text-link {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  display: inline-block;
}

.why,
.contacts {
  background: var(--ink);
}

.why .section-title,
.contacts h3 {
  color: var(--white);
}

.why .section-sub {
  color: rgba(255, 255, 255, 0.44);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.why-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 28px;
  text-align: center;
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 57px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.why-title {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.dir-grid,
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.dir-card,
.info-card {
  border: 1px solid var(--nude);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.dir-card::before,
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.dir-card:nth-child(2)::before,
.info-card:nth-child(2n)::before {
  background: var(--rose);
}

.dir-icon {
  font-size: 29px;
  margin-bottom: 20px;
  color: var(--gold);
}

.dir-title,
.info-card h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
}

.dir-desc,
.info-card p,
.info-card li {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
}

.quote-section {
  background: var(--nude);
  padding: 64px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  text-align: center;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 81px;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  opacity: 0.4;
}

.quote-text {
  font-size: 31px;
  font-style: italic;
  color: var(--ink);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.45;
}

.quote-author {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.content p {
  color: var(--ink2);
  margin-bottom: 16px;
}

.content h2 {
  font-size: 39px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.content h3 {
  font-size: 29px;
  margin: 40px 0 14px;
}

.content ul {
  margin: 0 0 18px 20px;
  color: var(--ink2);
}

.program-hero {
  height: 658px;
}

.program-facts-section {
  padding: 40px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) 12px;
  background: var(--cream);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fact {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 28px 24px;
}

.fact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}

.fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  line-height: 1.15;
  color: var(--ink);
}

.cta-section {
  padding: 56px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-left h2 {
  font-size: 39px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-left p {
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.8;
}

.cta-form {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 36px;
}

.cta-form label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  display: block;
  margin-bottom: 6px;
}

.cta-form input,
.cta-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--nude);
  padding: 10px 0;
  font-family: 'Jost', Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  margin-bottom: 24px;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--gold);
}

.submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: 0;
  padding: 16px;
  font-size: 13px;
  margin-top: 8px;
  transition: background 0.2s;
}

.submit:hover {
  background: var(--gold);
}

.privacy {
  font-size: 12px;
  color: var(--ink3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.privacy a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
}

.contacts {
  padding: 56px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contacts h3 {
  font-size: 37px;
  margin: 20px 0 32px;
}

.c-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.c-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 163, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.c-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.c-val {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.map-placeholder,
.map-frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 260px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 24px;
}

.map-frame {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(0.92);
}

.map-placeholder a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(232, 213, 163, 0.4);
}

.contacts-page {
  background: var(--cream);
  align-items: stretch;
}

.contacts-page .contacts-panel {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 36px;
}

.contacts-page h3 {
  color: var(--ink);
}

.contacts-page .c-label {
  color: var(--ink3);
}

.contacts-page .c-val {
  color: var(--ink2);
}

.contacts-page .c-icon {
  background: var(--cream);
  border-color: var(--nude);
}

.contacts-page .map-frame {
  background: var(--white);
  border-color: var(--nude);
  min-height: 100%;
}

.site-footer {
  background: #110e0c;
  padding: 24px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.f-brand {
  display: grid;
  gap: 6px;
}

.f-docs {
  display: grid;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
  text-align: right;
  margin-left: auto;
}

.f-docs a {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(196, 163, 90, 0.24);
  transition: color 0.2s, border-color 0.2s;
}

.f-docs a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
}

.f-logo em {
  color: var(--gold);
  font-style: normal;
}

.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.8;
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 86px max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))) 62px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(196, 163, 90, 0.18), transparent 34%);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 53px;
  line-height: 1.1;
  max-width: 760px;
}

.page-lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 650px;
  font-size: 18px;
}

.details {
  display: grid;
  gap: 26px;
}

.detail-section {
  background: var(--white);
  border: 1px solid var(--nude);
  padding: 36px;
}

.detail-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 33px;
  font-weight: 400;
  margin-bottom: 24px;
}

.detail-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  margin: 42px 0 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--nude);
  padding: 14px 0;
}

.detail-key {
  color: var(--ink3);
  font-size: 14px;
}

.detail-value {
  color: var(--ink2);
  font-size: 15px;
}

.detail-section p {
  color: var(--ink2);
  margin: 0 0 18px;
}

.detail-section .detail-grid + h3,
.detail-section p + .doc-list,
.detail-section .doc-list + h3 {
  margin-top: 34px;
}

.doc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.doc-list a {
  display: block;
  background: var(--cream);
  border: 1px solid var(--nude);
  padding: 14px 16px;
  color: var(--ink2);
  transition: border-color 0.2s, color 0.2s;
}

.doc-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.legal-card,
.legal-side {
  background: var(--white);
  border: 1px solid var(--nude);
}

.legal-card {
  padding: 42px;
}

.legal-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.22;
  margin: 34px 0 14px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--ink2);
  margin-bottom: 16px;
}

.legal-side {
  padding: 28px;
  position: sticky;
  top: 112px;
}

.legal-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
}

.legal-side ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-bottom: 22px;
}

.legal-side a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
}

.legal-side p {
  color: var(--ink3);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .split,
  .cta-section,
  .contacts,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-right img {
    min-height: 0;
  }

  .hero-stats,
  .facts,
  .why-grid,
  .programs-grid,
  .dir-grid,
  .feature-grid,
  .detail-grid,
  .doc-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    padding: 0;
    background: transparent;
  }

  .facts {
    display: grid;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 22px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .logo {
    white-space: normal;
    line-height: 1.15;
  }

  .logo-mark {
    height: 54px;
    width: auto;
    max-width: 162px;
    margin: -4px 0;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    font-size: 12px;
    padding-top: 4px;
  }

  .site-header.menu-open .nav-links {
    display: grid;
  }

  .nav-btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .hero {
    height: auto;
  }

  .hero-left {
    padding: 30px var(--gutter);
    align-items: center;
    text-align: center;
  }

  .hero-tag,
  .cta-tag {
    justify-content: center;
  }

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

  .button {
    align-self: center;
  }

  .hero:not(.program-hero) .button {
    align-self: center;
  }

  .hero h1,
  .page-title {
    font-size: 43px;
  }

  .section-title {
    font-size: 35px;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 28px;
    margin-top: 42px;
    max-width: none;
  }

  .h-stat .num {
    font-size: 34px;
  }

  .h-stat .lbl {
    font-size: 11px;
    letter-spacing: 0.7px;
  }

  .prog-img {
    height: 220px;
  }

  .detail-section {
    padding: 26px 22px;
  }

  .detail-section h3 {
    font-size: 25px;
    margin-top: 34px;
  }

  .doc-list a {
    overflow-wrap: anywhere;
  }

  .map-frame {
    height: 320px;
  }

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

  .f-docs {
    justify-content: flex-start;
    text-align: left;
    margin-left: 0;
  }

  .legal-card {
    padding: 28px 22px;
  }

  .legal-side {
    position: static;
    padding: 24px 22px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
