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

:root {
  --navy: #0e182b;
  --navy-2: #172c44;
  --gold: #e4ac66;
  --gold-deep: #c69060;
  --cream: #eeece0;
  --cream-light: #f9f7f0;
  --white: #fff;
  --ink: #2a2a2a;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --shadow: 0 18px 60px rgba(14, 24, 43, .12);
  --font-body: "Montserrat", sans-serif;
  --font-display: "Cormorant Garamond", serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 112px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

ul {
  list-style: none;
}

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

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

.section {
  padding: 96px 0;
}

.section.alt {
  background: var(--cream-light);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.title-xl,
.section-title,
.card-title,
.price {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
}

.title-xl {
  max-width: 720px;
  font-size: 80px;
  line-height: .94;
}

.section-title {
  max-width: 720px;
  font-size: 56px;
  line-height: 1.02;
}

.title-xl em,
.section-title em {
  color: var(--gold-deep);
  font-style: italic;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.centered {
  text-align: center;
}

.centered .lead,
.centered .section-title,
.centered .title-xl {
  margin-left: auto;
  margin-right: auto;
}

.intro-lead {
  margin-top: 24px;
}

.grid-offset {
  margin-top: 48px;
}

.content-narrow {
  max-width: 820px;
}

.content-narrow.wide {
  max-width: 860px;
}

.map-card {
  margin-top: 34px;
  padding: 0;
  text-align: left;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.map-card-body {
  padding: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.actions.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn.primary {
  background: var(--navy);
  color: var(--white);
}

.btn.gold {
  background: var(--gold);
  color: var(--navy);
}

.btn.outline {
  border-color: var(--navy);
  color: var(--navy);
}

.btn.outline:hover {
  background: var(--navy);
  color: var(--white);
}

.topbar {
  background: var(--navy-2);
  border-bottom: 1px solid rgba(228, 172, 102, .16);
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
  backdrop-filter: blur(14px);
}

.noscript-nav,
.noscript-footer {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.noscript-footer {
  background: var(--navy-2);
  border-bottom: 0;
  color: rgba(255, 255, 255, .6);
}

.noscript-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.noscript-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.noscript-footer .noscript-links,
.noscript-footer a {
  color: rgba(255, 255, 255, .72);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 68px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  padding: 10px 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-deep);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 999px;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 56px 0;
}

.hero-media {
  position: relative;
}

.hero-media > img {
  width: 100%;
  height: min(62vw, 590px);
  object-fit: cover;
  object-position: top;
  border-radius: 220px 220px 220px 0;
}

.hero-stat {
  position: absolute;
  left: -24px;
  bottom: 42px;
  padding: 20px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 38px 0;
}

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

.stat-card {
  border-right: 1px solid rgba(255, 255, 255, .1);
  padding: 0 28px;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.image-stack {
  position: relative;
}

.image-stack .main-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px 120px 12px 120px;
}

.image-stack .main-img img,
.image-card img,
.service-card img,
.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack .mini-img {
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 45%;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.image-stack .mini-img img {
  aspect-ratio: 1;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .34);
}

.feature-grid,
.service-grid,
.journal-grid,
.team-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

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

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}

.card,
.feature-card,
.team-card,
.price-card,
.contact-card,
.journal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.feature-card {
  padding: 30px;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--gold-deep);
  font-weight: 700;
}

.feature-card .image-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 0;
  background: transparent;
}

.feature-card .image-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3,
.team-card h3,
.contact-card h3 {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p,
.team-card p,
.contact-card p,
.journal-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy);
}

.service-card img {
  position: absolute;
  inset: 0;
  transition: transform .6s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 24, 43, .9), rgba(14, 24, 43, .18), transparent);
}

.service-card-content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.service-card .kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-title {
  color: var(--white);
  font-size: 28px;
  line-height: 1.03;
}

.service-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.process-list {
  display: grid;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-item:first-child {
  padding-top: 0;
}

.process-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 25px;
}

.process-item h3 {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-item p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.price-card {
  position: relative;
  padding: 42px 34px;
}

.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.price-label {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.price-card.featured .price-label,
.price-card.featured .price,
.price-card.featured li {
  color: var(--white);
}

.price {
  margin: 18px 0 4px;
  font-size: 58px;
  line-height: .95;
}

.price small {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
}

.price-card li {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.journal-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.journal-card {
  overflow: hidden;
}

.journal-image {
  display: block;
  overflow: hidden;
}

.journal-card img {
  aspect-ratio: 16 / 10;
  transition: transform .35s ease;
}

.journal-image:hover img {
  transform: scale(1.04);
}

.journal-body {
  padding: 24px;
}

.journal-meta {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.journal-title {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
}

.read-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 4px;
  background: var(--cream-light);
  box-shadow: 0 0 0 100vmax var(--cream-light);
  clip-path: inset(0 -100vmax);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--navy);
}

.breadcrumb a:hover {
  color: var(--gold-deep);
}

.breadcrumb span {
  color: rgba(107, 107, 107, .62);
}

.article-hero {
  padding: 72px 0 60px;
  background: var(--cream-light);
}

.article-wrap {
  width: min(100% - 64px, 860px);
  margin: 0 auto;
}

.article-meta {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.article-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  line-height: .98;
}

.article-summary {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.article-cover {
  width: min(100% - 64px, 1080px);
  margin: 0 auto;
  transform: translateY(42px);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.article-body {
  padding: 102px 0 96px;
}

.article-body h2 {
  margin: 42px 0 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}

.article-body p + p {
  margin-top: 16px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0 20px;
  list-style: disc;
}

.article-note {
  margin: 38px 0;
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: var(--cream-light);
  color: var(--navy);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-form {
  padding: 34px;
  background: var(--navy);
  border-radius: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.form-grid label {
  display: block;
}

.form-grid label:has(textarea) {
  grid-column: 2;
  grid-row: 4 / span 2;
}

.consent-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.consent-field input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(228, 172, 102, .24);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  outline: 0;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 144px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .48);
}

.form-note {
  min-height: 22px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  background: var(--navy-2);
  color: rgba(255, 255, 255, .5);
  padding: 76px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 64px;
  filter: invert(1);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-grid h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .28);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

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

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

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

@media print {
  html {
    scroll-behavior: auto;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .skip-link,
  .topbar,
  .site-nav,
  .noscript-nav,
  .site-footer,
  .noscript-footer,
  .actions,
  .contact-form,
  .hero-media,
  .image-stack,
  .article-cover {
    display: none !important;
  }

  .container,
  .article-wrap,
  .content-narrow,
  .content-narrow.wide {
    width: 100%;
    max-width: none;
  }

  .section,
  .article-hero,
  .article-body {
    padding: 24px 0;
    background: transparent !important;
  }

  .title-xl,
  .section-title,
  .article-title {
    color: #000;
    font-size: 34px;
    line-height: 1.1;
  }

  .lead,
  .article-summary,
  .article-body p,
  .article-body li,
  .feature-card p,
  .team-card p,
  .contact-card p,
  .journal-card p {
    color: #000;
  }

  .card,
  .feature-card,
  .team-card,
  .price-card,
  .contact-card,
  .journal-card,
  .article-note {
    break-inside: avoid;
    border-color: #999;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media > img {
    height: 440px;
    border-radius: 18px;
  }

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

  .pricing-grid,
  .team-grid,
  .journal-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .title-xl {
    font-size: 64px;
  }

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

  .article-title {
    font-size: 58px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .topbar {
    display: none;
  }

  .nav-inner {
    height: 76px;
  }

  .brand-logo img {
    height: 56px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .nav-cta {
    margin: 0;
    padding: 13px 10px;
    border-radius: 6px;
  }

  .title-xl {
    font-size: 46px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 36px;
    padding: 34px 0 60px;
  }

  .hero-stat {
    left: 16px;
    bottom: 18px;
  }

  .service-grid,
  .feature-grid,
  .pricing-grid,
  .team-grid,
  .journal-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label:has(textarea) {
    grid-column: 1;
    grid-row: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    padding: 0;
    border-right: 0;
  }

  .image-stack .mini-img {
    right: 12px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .article-wrap,
  .article-cover {
    width: min(100% - 36px, 1080px);
  }

  .article-title {
    font-size: 42px;
  }

  .article-cover {
    transform: translateY(28px);
  }

  .article-cover img {
    aspect-ratio: 4 / 3;
  }

  .article-body {
    padding-top: 78px;
  }
}
