:root {
  --green-950: #071d19;
  --green-900: #0d2a23;
  --green-800: #18382f;
  --green-700: #2f4f40;
  --brown-900: #271d15;
  --brown-800: #47311f;
  --brown-700: #6b4b2d;
  --gold-600: #b98235;
  --gold-500: #c79a4b;
  --gold-200: #ead5b3;
  --champagne: #f0e2cc;
  --ink: #211f1a;
  --muted: #6f685f;
  --paper: #f4eee4;
  --line: #e0d2bd;
  --white: #fffdf8;
  --shadow: 0 22px 52px rgba(24, 18, 12, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.site-shell {
  background: var(--paper);
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  align-items: center;
  background: var(--green-950);
  border-bottom: 1px solid rgba(212, 170, 88, 0.25);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(238px, auto) minmax(0, 1fr) auto;
  min-height: 70px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 238px;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  line-height: 1;
}

.wordmark-monogram {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0;
}

.wordmark-copy {
  display: grid;
  gap: 4px;
}

.wordmark-copy strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-copy small {
  color: var(--gold-200);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  border: 1px solid rgba(212, 170, 88, 0.55);
  border-radius: 50%;
  color: var(--gold-500);
  display: grid;
  flex: 0 0 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  height: 38px;
  place-items: center;
  width: 38px;
}

.nav {
  align-items: center;
  display: grid;
  gap: clamp(14px, 1.45vw, 20px);
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  min-width: 0;
}

.nav a {
  background: transparent;
  border: 0;
  color: rgba(255, 253, 248, 0.88);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
}

.nav a::after {
  background: var(--gold-500);
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.nav a:hover {
  color: var(--gold-500);
}

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

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  width: 30px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 42px;
  padding: 0 18px;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

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

.btn.gold {
  background: #bd8740;
  border-color: #bd8740;
  box-shadow: none;
  color: #173329;
}

.btn.gold:hover {
  background: #c99a53;
  border-color: #c99a53;
}

.btn.ghost {
  border-color: rgba(212, 170, 88, 0.68);
  color: var(--white);
}

.btn.light {
  border-color: var(--gold-600);
  color: var(--green-900);
}

.btn.danger {
  background: #8f2e24;
  color: var(--white);
}

.hero {
  background:
    linear-gradient(90deg, rgba(7, 29, 25, 0.99) 0%, rgba(7, 29, 25, 0.97) 36%, rgba(39, 29, 21, 0.78) 54%, rgba(39, 29, 21, 0.28) 73%, rgba(39, 29, 21, 0.06) 100%),
    url("/public/assets/hero-field-fade.png") left bottom / min(64vw, 820px) auto no-repeat,
    url("/public/assets/hero-person-side.jpg") right center / auto 100% no-repeat,
    var(--green-950);
  color: var(--white);
  min-height: 500px;
  padding: 72px max(28px, calc((100vw - 1180px) / 2)) 58px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(185, 130, 53, 0.08), rgba(7, 29, 25, 0.28)),
    radial-gradient(circle at 17% 86%, rgba(185, 130, 53, 0.2), rgba(185, 130, 53, 0) 23%);
  bottom: 0;
  content: "";
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.hero::after {
  background: linear-gradient(90deg, rgba(42, 35, 25, 0) 0%, var(--gold-500) 50%, rgba(42, 35, 25, 0) 100%);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.55;
  position: absolute;
  width: 100%;
}

.hero-inner {
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-500);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(48px, 5.3vw, 66px);
  line-height: 0.98;
  margin: 0 0 20px;
  max-width: 620px;
  text-transform: uppercase;
}

.hero h1 .title-accent {
  color: var(--gold-500);
}

.hero p {
  color: rgba(255, 253, 248, 0.9);
  font-size: 17px;
  line-height: 1.58;
  max-width: 505px;
}

.hero p:first-of-type {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  max-width: 510px;
}

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

.section {
  padding: 58px max(28px, calc((100vw - 1180px) / 2));
  position: relative;
}

.section.narrow {
  padding-top: 32px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto 30px;
  max-width: 1180px;
}

.section-head > div {
  max-width: 620px;
}

.section-title {
  margin-inline: auto;
  max-width: 560px;
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2,
.section-head h2 {
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.06;
  margin: 0;
}

.section-title::after,
.section-head > div::after {
  background: var(--gold-500);
  content: "";
  display: block;
  height: 1px;
  margin: 16px auto 0;
  width: 42px;
}

.section-head > div::after {
  margin-left: 0;
}

.section-title .eyebrow,
.section-head .eyebrow {
  margin-bottom: 8px;
}

.practice-grid,
.article-grid {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 1180px;
}

.practice-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.practice-card {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 10px 12px 8px;
  position: relative;
  text-align: center;
  transition: transform 160ms ease, color 160ms ease;
}

.practice-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-2px);
}

.practice-card .icon {
  height: 46px;
  margin: 0;
  object-fit: contain;
  width: 46px;
}

.icon-shell {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: grid;
  height: 68px;
  justify-content: center;
  margin: 0 auto 14px;
  width: 68px;
}

.practice-card h3,
.article-card h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.practice-card p,
.article-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  margin: 0;
}

.text-link {
  color: var(--green-800);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  margin-top: 20px;
}

.practice-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

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

.article-card {
  background: var(--white);
  border: 1px solid rgba(25, 44, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(18, 35, 29, 0.07);
  color: inherit;
  display: block;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.article-card:hover {
  border-color: rgba(201, 154, 67, 0.34);
  box-shadow: 0 24px 48px rgba(18, 35, 29, 0.12);
  transform: translateY(-4px);
}

.article-media {
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
  position: relative;
}

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

.tag {
  background: var(--green-800);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  left: 12px;
  letter-spacing: 0.04em;
  padding: 7px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
}

.article-body {
  padding: 18px 18px 20px;
}

.meta {
  color: #7f8984;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 14px;
  margin-top: 18px;
}

.video-band {
  background:
    linear-gradient(90deg, rgba(7, 29, 25, 0.98), rgba(71, 49, 31, 0.93)),
    url("/public/assets/hero-field-bg.jpg") center / cover;
  border-block: 1px solid rgba(212, 170, 88, 0.34);
  color: var(--white);
  padding: 50px max(28px, calc((100vw - 1180px) / 2));
}

.video-wrap {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(250px, 0.58fr) minmax(620px, 1.42fr);
  margin: 0 auto;
  max-width: 1180px;
}

.video-copy h2 {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.04;
  margin: 0 0 18px;
}

.video-copy p {
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.6;
  margin-bottom: 26px;
}

.video-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.video-card {
  align-items: center;
  background: rgba(255, 253, 248, 0.025);
  border: 1px solid rgba(234, 216, 176, 0.34);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.06);
  color: var(--white);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1fr);
  min-height: 178px;
  padding: 14px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.video-card:hover {
  border-color: rgba(234, 216, 176, 0.55);
  transform: translateY(-3px);
}

.video-thumb {
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  position: relative;
}

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

.play {
  align-items: center;
  background: #c99a43;
  border: 0;
  border-radius: 999px;
  color: var(--green-900);
  display: grid;
  font-size: 10px;
  font-weight: 900;
  height: 42px;
  left: 50%;
  letter-spacing: 0.04em;
  place-items: center;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
}

.video-card h3 {
  font-size: 27px;
  line-height: 1.16;
  margin: 0 0 12px;
}

.video-card-body {
  align-self: center;
}

.video-link {
  color: var(--gold-200);
  font-size: 12px;
  font-weight: 800;
}

.about {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.35fr 0.85fr;
  margin: 0 auto;
  max-width: 1180px;
}

.about-photo {
  border: 1px solid rgba(201, 154, 67, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(18, 35, 29, 0.08);
  height: 252px;
  object-fit: cover;
  width: 100%;
}

.about-copy h2 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.06;
  margin: 0 0 16px;
}

.about-copy p,
.credential-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.credential-list {
  border-left: 1px solid rgba(201, 154, 67, 0.28);
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 8px 0 8px 28px;
}

.credential-list li {
  align-items: center;
  display: flex;
  gap: 13px;
}

.dot-icon {
  align-items: center;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  color: var(--green-800);
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  width: 34px;
}

.newsletter {
  background:
    linear-gradient(90deg, rgba(4, 28, 24, 0.99), rgba(6, 45, 37, 0.92)),
    radial-gradient(circle at 12% 50%, rgba(201, 154, 67, 0.15), transparent 28%);
  border-bottom: 1px solid rgba(212, 170, 88, 0.45);
  border-top: 1px solid rgba(212, 170, 88, 0.45);
  color: var(--white);
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
}

.newsletter-inner {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: 70px 1fr minmax(280px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.mailmark {
  align-items: center;
  border: 1px solid rgba(234, 216, 176, 0.65);
  border-radius: 50%;
  color: var(--gold-500);
  display: grid;
  font-size: 28px;
  font-weight: 600;
  height: 70px;
  line-height: 1;
  place-items: center;
  width: 70px;
}

.newsletter h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin: 0;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.field,
.textarea,
.select {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(234, 216, 176, 0.28);
  border-radius: 4px;
  color: var(--white);
  min-height: 42px;
  padding: 10px 14px;
  width: 100%;
}

.newsletter-form .field {
  font-size: 12px;
}

.field::placeholder,
.textarea::placeholder {
  color: rgba(255, 253, 248, 0.6);
}

.footer {
  background: var(--green-950);
  color: rgba(255, 253, 248, 0.78);
  padding: 34px max(28px, calc((100vw - 1180px) / 2)) 24px;
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  margin: 0 auto;
  max-width: 1180px;
}

.footer h4 {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.13em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.footer-logo {
  height: 44px;
  width: 270px;
}

.brand-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--gold-200);
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-top: 2px;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
  font-size: 13px;
  line-height: 1.75;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(234, 216, 176, 0.14);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 24px auto 0;
  max-width: 1180px;
  padding-top: 18px;
}

.admin-view {
  background: #eef0eb;
  min-height: 100vh;
}

.admin-header {
  align-items: center;
  background: var(--green-950);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 18px 4vw;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: calc(100vh - 74px);
}

.admin-sidebar {
  background: #0b372f;
  color: var(--white);
  padding: 26px 18px;
}

.tab-button {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 253, 248, 0.76);
  cursor: pointer;
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  min-height: 42px;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.tab-button.active,
.tab-button:hover {
  border-color: rgba(212, 170, 88, 0.45);
  color: var(--gold-500);
}

.admin-main {
  padding: 32px 4vw 54px;
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 1100px;
  padding: 28px;
}

.admin-panel h1 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 8px;
}

.admin-panel > p {
  color: var(--muted);
  margin: 0 0 24px;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.label {
  color: #30423b;
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-panel .field,
.admin-panel .textarea,
.admin-panel .select {
  background: #fbfaf6;
  border: 1px solid #d9d2c4;
  color: var(--ink);
}

.textarea {
  min-height: 92px;
  resize: vertical;
}

.editor-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.editor-item {
  background: #fbfaf6;
  border: 1px solid #ded6c8;
  padding: 18px;
}

.row-actions,
.publish-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.toast {
  background: var(--green-800);
  bottom: 22px;
  color: var(--white);
  left: 50%;
  opacity: 0;
  padding: 12px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.empty-note {
  color: var(--muted);
  font-size: 14px;
  padding: 20px 0;
}

.subpage,
.article-detail {
  padding: 68px max(28px, calc((100vw - 1180px) / 2));
}

.subpage-head {
  margin: 0 auto 34px;
  max-width: 760px;
  text-align: center;
}

.subpage-head h1,
.article-detail h1,
.about-page h1 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.02;
  margin: 0 0 16px;
}

.subpage-head p,
.article-detail p,
.about-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.archive-grid {
  margin-top: 24px;
}

.article-detail-grid,
.about-page-grid {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin: 0 auto;
  max-width: 1040px;
}

.article-detail-grid img,
.about-page-grid img {
  border: 1px solid rgba(201, 154, 67, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.article-detail .meta {
  margin-bottom: 22px;
}

.back-link {
  margin: 0 auto 26px;
  max-width: 1040px;
}

.detail-list {
  border-left: 0;
  margin: 22px 0;
  padding-left: 0;
}

.practice-detail-grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 190px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 900px;
}

.practice-detail h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.04;
  margin: 0 0 18px;
}

.practice-detail p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.practice-detail-icon {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(183, 125, 55, 0.2);
  border-radius: 8px;
  display: grid;
  min-height: 190px;
  place-items: center;
}

@media (max-width: 1160px) {
  .topbar {
    gap: 10px;
    grid-template-columns: minmax(184px, auto) minmax(0, 1fr) auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    min-width: 184px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark-monogram {
    font-size: 27px;
  }

  .wordmark-copy strong {
    font-size: 9px;
  }

  .wordmark-copy small {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }

  .nav {
    gap: clamp(7px, 0.8vw, 10px);
  }

  .nav a {
    font-size: 9.5px;
    letter-spacing: 0.01em;
  }

  .topbar .btn {
    font-size: 9.5px;
    min-height: 36px;
    padding: 0 11px;
  }
}

.icon-shell.large {
  height: 118px;
  width: 118px;
}

.icon-shell.large .icon {
  height: 72px;
  width: 72px;
}

@media (max-width: 980px) {
  .topbar {
    align-items: center;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 70px;
    padding: 0 38px;
    position: sticky;
  }

  .brand {
    min-width: 0;
  }

  .wordmark-monogram {
    font-size: clamp(38px, 5vw, 52px);
  }

  .wordmark-copy strong {
    font-size: clamp(12px, 1.65vw, 16px);
  }

  .wordmark-copy small {
    font-size: clamp(7px, 1vw, 9px);
    letter-spacing: 0.17em;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    background: rgba(7, 29, 25, 0.98);
    border-top: 1px solid rgba(201, 154, 67, 0.34);
    display: none;
    gap: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 -38px;
    padding: 12px 38px 18px;
    width: calc(100% + 76px);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    font-size: 12px;
    padding: 12px 10px;
    text-align: center;
  }

  .topbar .btn {
    font-size: 13px;
    min-height: 38px;
    padding: 0 22px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 29, 25, 0.98) 0%, rgba(7, 29, 25, 0.9) 32%, rgba(7, 29, 25, 0.48) 54%, rgba(7, 29, 25, 0.1) 100%),
      url("/public/assets/hero-field-fade.png") left bottom / min(43vw, 360px) auto no-repeat,
      url("/public/assets/hero-person-side.jpg") right center / auto 100% no-repeat,
      var(--green-950);
    min-height: 420px;
    padding: 40px 10.8vw 18px;
  }

  .hero-inner {
    max-width: 690px;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 5.45vw, 48px);
    line-height: 0.98;
    margin-bottom: 12px;
    max-width: 440px;
  }

  .hero p:first-of-type {
    font-size: clamp(20px, 2.5vw, 24px);
  }

  .hero p {
    font-size: 14px;
    line-height: 1.56;
  }

  .hero .eyebrow,
  .hero p {
    max-width: 350px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(250px, 0.82fr) minmax(290px, 1fr);
    margin-top: 24px;
    max-width: 690px;
  }

  .hero-actions .btn:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-actions .btn:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-actions .btn:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-actions .btn {
    min-height: 44px;
  }

  .section {
    padding-bottom: 42px;
    padding-top: 42px;
  }

  .practice-grid {
    gap: 12px;
  }

  .practice-card {
    padding-left: 4px;
    padding-right: 4px;
  }

  .practice-card .icon {
    height: 52px;
    width: 52px;
  }

  .practice-card h3,
  .article-card h3 {
    font-size: 13px;
  }

  .practice-card p {
    font-size: 11px;
    line-height: 1.48;
  }

  .text-link {
    font-size: 11px;
  }

  .article-grid {
    gap: 14px;
  }

  .article-body {
    padding: 14px;
  }

  .article-card p {
    display: none;
  }

  .video-band {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .video-wrap {
    gap: 28px;
    grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.2fr);
  }

  .video-card h3 {
    font-size: 24px;
  }

  .about {
    gap: 26px;
    grid-template-columns: 0.9fr 1.25fr 0.88fr;
  }

  .credential-list {
    padding-left: 20px;
  }

  .newsletter-inner {
    gap: 22px;
    grid-template-columns: 58px 1fr minmax(270px, 0.95fr);
  }

  .mailmark {
    height: 58px;
    width: 58px;
  }

  .footer-grid {
    gap: 28px;
    grid-template-columns: 1.1fr 0.65fr 0.85fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .video-band,
  .newsletter,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .topbar {
    gap: 10px;
    padding: 0 16px;
  }

  .wordmark-monogram {
    font-size: 33px;
  }

  .wordmark-copy strong {
    font-size: 10px;
  }

  .wordmark-copy small {
    font-size: 6.5px;
    letter-spacing: 0.12em;
  }

  .topbar .btn {
    font-size: 11px;
    min-height: 36px;
    padding: 0 14px;
  }

  .nav {
    grid-template-columns: 1fr 1fr;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    width: calc(100% + 32px);
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 29, 25, 0.98) 0%, rgba(7, 29, 25, 0.9) 48%, rgba(7, 29, 25, 0.46) 100%),
      url("/public/assets/hero-field-fade.png") left bottom / 72vw auto no-repeat,
      url("/public/assets/hero-person-side.jpg") right center / auto 100% no-repeat,
      var(--green-950);
    min-height: 620px;
    padding-top: 54px;
  }

  .hero-inner {
    max-width: 360px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-actions .btn:first-child,
  .hero-actions .btn:nth-child(2),
  .hero-actions .btn:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

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

  .practice-card h3 {
    font-size: 12px;
  }

  .video-wrap,
  .video-grid,
  .about,
  .newsletter-inner,
  .footer-grid,
  .article-detail-grid,
  .about-page-grid,
  .practice-detail-grid,
  .form-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .video-card {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .admin-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px;
  }

  .tab-button {
    flex: 0 0 auto;
    white-space: nowrap;
    width: auto;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 8px;
    min-height: 64px;
  }

  .brand {
    gap: 8px;
  }

  .wordmark-monogram {
    font-size: 30px;
  }

  .wordmark-copy strong {
    font-size: 8.5px;
  }

  .wordmark-copy small {
    font-size: 5.6px;
    letter-spacing: 0.08em;
  }

  .topbar .top-whatsapp {
    font-size: 0;
    min-width: 92px;
    padding: 0 12px;
  }

  .topbar .top-whatsapp::after {
    content: "WhatsApp";
    font-size: 10px;
  }

  .menu-toggle {
    width: 38px;
  }

  .menu-toggle span {
    width: 26px;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p:first-of-type {
    font-size: 19px;
  }

  .article-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }
}
