:root {
  --ink: #102b2b;
  --ink-2: #315050;
  --paper: #fbfaf6;
  --cream: #f3eee5;
  --mint: #c9e3d5;
  --mint-deep: #95c5ad;
  --orange: #f37f45;
  --white: #ffffff;
  --line: rgba(16, 43, 43, .16);
  --shadow: 0 24px 70px rgba(16, 43, 43, .09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.intro-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
[hidden] { display: none !important; }
.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;
}

/* Avolinas flower-only opening transition */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(201, 227, 213, .72), transparent 34%),
    linear-gradient(145deg, var(--paper), var(--cream));
  isolation: isolate;
}
.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: radial-gradient(var(--ink) .75px, transparent .75px);
  background-size: 19px 19px;
}
.site-intro[data-state="leaving"] {
  pointer-events: none;
  animation: curtain-out .44s cubic-bezier(.7, 0, .25, 1) forwards;
}
.site-intro[data-state="hidden"] { display: none; }
.site-intro__halo {
  position: absolute;
  width: min(76vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(16, 43, 43, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(201, 227, 213, .18),
    0 0 0 112px rgba(201, 227, 213, .09);
  animation: halo-in 1.1s cubic-bezier(.2, .8, .2, 1) both;
}
.site-intro__logo-wrap {
  position: relative;
  width: clamp(190px, 28vw, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.site-intro__logo-wrap img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 43, 43, .14));
  animation: logo-spin 1.15s cubic-bezier(.18, .82, .2, 1) both;
}
.site-intro__orbit {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(16, 43, 43, .2);
  border-radius: 50%;
}
.site-intro__orbit::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(243, 127, 69, .12);
}
.site-intro__orbit.orbit-a { animation: orbit 1.4s linear both; }
.site-intro__orbit.orbit-b { inset: 15%; animation: orbit 1.2s linear reverse both; }
.site-intro__skip {
  position: absolute;
  right: 24px;
  bottom: 22px;
  border: 1px solid rgba(16, 43, 43, .22);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(251, 250, 246, .78);
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.site-intro[data-mode="quick"] .site-intro__logo-wrap img { animation-duration: .46s; }
.site-intro[data-mode="quick"] .orbit-a { animation-duration: .55s; }
.site-intro[data-mode="quick"] .orbit-b { animation-duration: .48s; }
@keyframes logo-spin {
  0% { opacity: 0; transform: scale(.55) rotate(-110deg); }
  68% { opacity: 1; transform: scale(1.06) rotate(372deg); }
  100% { opacity: 1; transform: scale(1) rotate(360deg); }
}
@keyframes orbit {
  from { transform: rotate(0deg) scale(.82); opacity: 0; }
  25% { opacity: 1; }
  to { transform: rotate(360deg) scale(1); opacity: 1; }
}
@keyframes halo-in {
  from { opacity: 0; transform: scale(.72); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes curtain-out {
  to { opacity: 0; transform: translateY(-3%); visibility: hidden; }
}

/* Shared layout */
.container { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px max(40px, calc((100% - 1240px) / 2)); }
.section-tight { padding-top: 52px; padding-bottom: 52px; }
.section-tint { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-orange { background: var(--orange); color: #271812; }
.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-dark .section-kicker { color: var(--mint); }
.display {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.06em;
}
.display em { display: block; color: var(--orange); font-weight: 500; }
.page-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}
.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.75;
}
.section-dark .lead { color: rgba(255, 255, 255, .68); }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { border-color: var(--ink); background: var(--ink); color: var(--white); }
.button-light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button-ghost-dark { border-color: rgba(255, 255, 255, .3); color: var(--white); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 750;
}
.section-dark .pill { border-color: rgba(255, 255, 255, .22); color: var(--paper); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 44px;
}
.section-heading > p {
  width: min(410px, 100%);
  margin: 0 0 5px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}
.section-dark .section-heading > p { color: rgba(255, 255, 255, .66); }
.text-link {
  width: fit-content;
  display: inline-flex;
  gap: 11px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand,
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .08em;
}
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; color: var(--ink-2); font-size: 13px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.desktop-nav a[aria-current="page"] { color: var(--ink); font-weight: 800; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); }
.mobile-nav { width: min(100% - 40px, 1240px); margin: 0 auto; padding: 8px 0 20px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 750; }
.mobile-nav a[aria-current="page"] { color: var(--orange); }

/* Home */
.home-hero {
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 58px;
  align-items: center;
  padding: 58px 0 70px;
}
.hero-copy .eyebrow { display: flex; align-items: center; gap: 10px; }
.hero-copy .eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
.hero-visual {
  position: relative;
  min-height: 525px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 42% 42% 24% 24%;
  background: linear-gradient(145deg, #dcebe3, #a9cdbb);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: radial-gradient(var(--ink) .8px, transparent .8px);
  background-size: 18px 18px;
}
.visual-orbit { position: absolute; width: 440px; height: 440px; border: 1px solid rgba(16, 43, 43, .18); border-radius: 50%; }
.visual-orbit.small { width: 330px; height: 330px; }
.monogram-panel {
  position: relative;
  z-index: 2;
  width: 62%;
  aspect-ratio: .76;
  display: grid;
  place-items: center;
  border-radius: 46% 46% 14px 14px;
  background: linear-gradient(155deg, var(--ink), #2b5a52);
  box-shadow: 0 30px 70px rgba(16, 43, 43, .25);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 86px;
  letter-spacing: -.08em;
}
.portrait-panel { overflow: hidden; background: #dce7df; }
.portrait-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.credential-card {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 22px;
  width: 205px;
  padding: 19px;
  border-radius: 18px;
  background: rgba(251, 250, 246, .92);
  box-shadow: 0 12px 34px rgba(16, 43, 43, .13);
  transform: rotate(2deg);
}
.credential-card span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.credential-card strong { display: block; margin-top: 9px; font-family: var(--serif); font-size: 19px; line-height: 1.3; }
.location-chip {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(16, 43, 43, .92);
  color: var(--white);
  font-size: 10px;
  font-weight: 750;
}
.location-chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #9fe1b5; box-shadow: 0 0 0 5px rgba(159, 225, 181, .14); }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease;
}
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.route-card__number { color: var(--orange); font-family: var(--serif); font-size: 13px; }
.route-card h3 { margin: 60px 0 14px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.route-card p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.route-card .text-link { margin-top: auto; }
.team-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--paper);
}
.team-monograms { display: flex; }
.team-monograms span { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--mint); color: var(--ink); font-family: var(--serif); font-size: 15px; font-weight: 700; }
.team-monograms span + span { margin-left: -10px; background: var(--orange); }
.team-banner h2 { margin: 0 0 7px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.team-banner p { margin: 0; color: rgba(255, 255, 255, .64); font-size: 13px; line-height: 1.6; }

/* Inner pages */
.page-hero {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  padding: 82px max(40px, calc((100% - 1240px) / 2)) 88px;
  background: var(--cream);
}
.page-hero__aside { padding: 26px; border-left: 1px solid var(--line); }
.page-hero__aside p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.75; }
.page-hero__aside .pill-row { margin-top: 22px; }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.sticky-label { position: sticky; top: 116px; }
.prose p { margin: 0 0 22px; color: var(--ink-2); font-size: 16px; line-height: 1.8; }
.prose strong { color: var(--ink); }
.profile-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.profile-art {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #dcebe3, #a9cdbb);
}
.profile-art::before { content: ""; position: absolute; z-index: 2; inset: 0; opacity: .1; pointer-events: none; background-image: radial-gradient(var(--ink) .8px, transparent .8px); background-size: 18px 18px; }
.profile-art__photo { position: absolute; z-index: 1; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.profile-art__monogram { position: relative; z-index: 2; width: 60%; aspect-ratio: .78; display: grid; place-items: center; border-radius: 48% 48% 15px 15px; background: var(--ink); color: var(--cream); font-family: var(--serif); font-size: 68px; }
.profile-copy { padding: 48px; }
.profile-copy h2 { margin: 8px 0 6px; font-family: var(--serif); font-size: 52px; font-weight: 500; letter-spacing: -.04em; }
.profile-role { margin: 0 0 24px; font-size: 13px; font-weight: 800; }
.profile-copy > p:not(.section-kicker):not(.profile-role) { color: var(--ink-2); font-size: 14px; line-height: 1.75; }
.role-list { display: grid; gap: 10px; margin-top: 25px; }
.role-item { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink-2); font-size: 12px; font-weight: 750; }
.role-item::before { content: "✓"; width: 21px; height: 21px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 10px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-card { min-height: 235px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.service-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--ink); font-size: 15px; font-weight: 800; }
.service-card h3 { margin: 42px 0 13px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.service-card p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .2); }
.step { min-height: 275px; display: flex; flex-direction: column; padding: 27px; border-right: 1px solid rgba(255, 255, 255, .2); }
.step:first-child { border-left: 1px solid rgba(255, 255, 255, .2); }
.step-number { color: var(--mint); font-family: var(--serif); }
.step h3 { margin: 66px 0 13px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.step p { margin: 0; color: rgba(255, 255, 255, .63); font-size: 12px; line-height: 1.65; }
.dual-ohd {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 24px;
  background: var(--orange);
  color: #261812;
}
.dual-ohd__mark { width: 78px; height: 78px; display: grid; place-items: center; border: 1px solid rgba(38, 24, 18, .25); border-radius: 50%; font-family: var(--serif); font-weight: 700; }
.dual-ohd h3 { margin: 0 0 7px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.dual-ohd p { max-width: 760px; margin: 0; font-size: 13px; line-height: 1.65; }
.validity-row { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 11px; font-weight: 750; }
.validity-row::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #50a66b; box-shadow: 0 0 0 5px rgba(80, 166, 107, .12); }
.clinic-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.clinic-badge { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.clinic-badge span { padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .27); border-radius: 999px; color: var(--paper); font-size: 10px; font-weight: 750; }
.clinic-side-card { padding: 30px; border-radius: 24px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .17); }
.clinic-side-card h3 { margin: 0 0 17px; font-family: var(--serif); font-size: 29px; font-weight: 500; }
.clinic-side-card p { margin: 0; color: rgba(255, 255, 255, .66); font-size: 13px; line-height: 1.7; }

/* Articles and projects */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.article-card { min-height: 315px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.article-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-card h2 { margin: 58px 0 15px; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.14; }
.article-card p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.article-status { margin-top: auto; color: var(--ink-2); font-size: 10px; font-weight: 800; }
.editorial-note { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; margin-bottom: 24px; padding: 24px; border-radius: 20px; background: var(--orange); color: #261812; }
.editorial-note__number { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(38, 24, 18, .28); border-radius: 50%; font-family: var(--serif); }
.editorial-note h2 { margin: 0 0 5px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.editorial-note p { margin: 0; font-size: 12px; line-height: 1.6; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.project-card { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; padding: 28px; border-radius: 26px; }
.project-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 250px; height: 250px; border: 52px solid rgba(255, 255, 255, .16); border-radius: 50%; }
.project-card > * { position: relative; z-index: 2; }
.project-avolinas { background: var(--orange); color: #261812; }
.project-clinic { background: #dfe9dd; }
.project-villa { grid-column: 1 / -1; min-height: 380px; background: linear-gradient(120deg, #143a37, #2c6354 64%, #7da993); color: var(--paper); }
.project-meta { display: flex; justify-content: space-between; gap: 20px; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-card h2 { margin: 0 0 15px; font-family: var(--serif); font-size: 47px; font-weight: 500; letter-spacing: -.04em; }
.project-card p { max-width: 520px; margin: 0; font-size: 14px; line-height: 1.7; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.project-tags span { padding: 8px 11px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 750; opacity: .75; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { min-height: 260px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.contact-card h2 { margin: 55px 0 13px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.contact-card p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.65; }
.contact-card .text-link { margin-top: auto; }
.setup-note { margin-top: 20px; padding: 18px 20px; border-left: 3px solid var(--orange); background: var(--cream); color: var(--ink-2); font-size: 12px; line-height: 1.65; }

/* Footer */
.site-footer { padding: 34px max(40px, calc((100% - 1240px) / 2)); background: var(--ink); color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 28px; align-items: center; }
.footer-brand div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand div span { color: rgba(255, 255, 255, .55); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p { margin: 0; color: rgba(255, 255, 255, .55); font-size: 10px; line-height: 1.6; }

@media (max-width: 1040px) {
  .desktop-nav { gap: 18px; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .home-hero,
  .page-hero { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; gap: 50px; }
  .page-hero { gap: 35px; }
  .page-hero__aside { padding: 25px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .content-grid { grid-template-columns: 1fr; gap: 30px; }
  .sticky-label { position: static; }
  .profile-panel { grid-template-columns: 1fr; }
  .profile-art { min-height: 390px; }
  .profile-art__monogram { width: min(42%, 210px); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 1px solid rgba(255, 255, 255, .2); }
  .dual-ohd { grid-template-columns: auto 1fr; }
  .dual-ohd .button { grid-column: 1 / -1; }
  .clinic-band { grid-template-columns: 1fr; gap: 34px; }
  .team-banner { grid-template-columns: auto 1fr; }
  .team-banner .button { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container,
  .header-inner { width: min(100% - 28px, 1240px); }
  .header-inner { min-height: 68px; }
  .section { padding: 70px 20px; }
  .section-tight { padding-top: 42px; padding-bottom: 42px; }
  .display { font-size: 56px; }
  .page-title { font-size: 50px; }
  .section-title { font-size: 40px; }
  .lead { font-size: 15px; }
  .home-hero { width: min(100% - 28px, 1240px); padding: 45px 0 58px; }
  .hero-visual { min-height: 410px; }
  .monogram-panel { width: 66%; font-size: 62px; }
  .credential-card { top: 20px; right: 12px; width: 170px; padding: 15px; }
  .location-chip { bottom: 17px; left: 12px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .route-grid,
  .service-grid,
  .article-grid,
  .project-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 270px; }
  .route-card h3 { margin-top: 45px; }
  .team-banner,
  .dual-ohd { grid-template-columns: 1fr; }
  .page-hero { min-height: 420px; padding: 65px 20px 70px; }
  .profile-copy { padding: 34px 24px; }
  .profile-copy h2 { font-size: 44px; }
  .steps { grid-template-columns: 1fr; }
  .step,
  .step:nth-child(3) { min-height: 235px; border-left: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .step h3 { margin-top: 45px; }
  .editorial-note { grid-template-columns: 1fr; }
  .project-villa { grid-column: auto; }
  .project-card { min-height: 400px; }
  .project-card h2 { font-size: 41px; }
  .site-footer { padding: 31px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-intro__logo-wrap img,
  .site-intro__orbit,
  .site-intro__halo { animation-duration: .01ms !important; animation-delay: 0ms !important; }
  .button,
  .route-card { transition: none; }
}

/* Nota Kesihatan — tema editorial tersendiri */
.editorial-page { background: var(--paper); }
.editorial-main {
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), rgba(16,43,43,.035) 1px);
  background-size: 48px 48px;
}
.library-hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 590px;
  margin-inline: auto;
  padding: 86px 0 70px;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 75px;
  align-items: end;
  border-bottom: 1px solid var(--ink);
}
.editorial-issue, .article-category {
  margin: 0 0 23px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.library-masthead h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 8.5vw, 124px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.065em;
}
.library-masthead h1 em { color: var(--orange); font-weight: 500; }
.library-masthead > p:last-child { max-width: 680px; margin: 40px 0 0; color: var(--ink-2); font-family: var(--serif); font-size: 20px; line-height: 1.62; }
.editorial-stamp { min-height: 260px; padding: 23px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--ink); border-radius: 50% 50% 5px 5px; background: var(--cream); text-align: center; }
.editorial-stamp > span { font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.editorial-stamp strong { font-family: var(--serif); font-size: 24px; font-weight: 500; line-height: 1.2; }
.editorial-stamp small { color: var(--ink-2); font-size: 8px; }

.featured-article {
  width: min(1240px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 36px;
  display: grid;
  grid-template-columns: 90px 1fr .65fr;
  gap: 40px;
  border-radius: 26px;
  background: var(--ink);
  color: var(--paper);
}
.featured-label { display: flex; flex-direction: column; justify-content: space-between; }
.featured-label > span { color: var(--mint); font-family: var(--serif); font-size: 21px; }
.featured-label p { margin: 0; color: rgba(255,255,255,.55); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.featured-copy h2 { max-width: 700px; margin: 0; font-family: var(--serif); font-size: clamp(39px, 5vw, 62px); font-weight: 500; line-height: 1.03; letter-spacing: -.045em; }
.featured-copy h2 a:hover { color: var(--mint); }
.featured-copy > p:not(.article-category) { max-width: 660px; margin: 24px 0 27px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.72; }
.button-featured { border: 0; background: var(--orange); color: #241711; }
.featured-points { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.18); }
.featured-points > span { color: var(--mint); font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.featured-points p { margin: 25px 0 0; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.6; }

.article-explorer, .editorial-standard, .medical-disclaimer, .related-articles { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.article-explorer { padding: 102px 0 84px; }
.explorer-heading { display: flex; justify-content: space-between; gap: 42px; align-items: end; }
.explorer-heading h2, .related-articles h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5.1vw, 68px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.explorer-heading > p { margin: 0 0 8px; color: var(--ink-2); font-size: 11px; }
.explorer-heading > p strong { color: var(--orange); font-size: 19px; }
.article-filter { margin: 42px 0 31px; padding: 17px; display: grid; grid-template-columns: minmax(260px, 1fr) minmax(170px, .5fr) auto auto; gap: 12px; align-items: center; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.75); }
.article-search { min-height: 50px; padding: 0 16px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.article-search > span:not(.sr-only) { color: var(--orange); font-size: 19px; }
.article-search input, .category-select select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 12px; }
.category-select { min-height: 50px; padding: 0 13px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--paper); }
.clear-filter { font-size: 10px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.library-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.library-card { min-height: 400px; padding: 26px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 2px 25px 2px 25px; background: var(--paper); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.library-card:hover { transform: translateY(-5px); border-color: rgba(16,43,43,.38); box-shadow: 0 21px 52px rgba(16,43,43,.08); }
.library-card h2 { margin: 56px 0 17px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.library-card h2 a:hover { color: var(--orange); }
.library-card > p { margin: 0; color: var(--ink-2); font-size: 12px; line-height: 1.67; }
.library-meta { margin: 27px 0 19px; padding-top: 15px; display: flex; flex-wrap: wrap; gap: 8px 13px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 8px; font-weight: 750; }
.library-card .article-status { margin-top: auto; }
.empty-articles { min-height: 250px; display: grid; place-content: center; gap: 9px; border: 1px dashed var(--line); text-align: center; }
.empty-articles span { color: var(--ink-2); font-size: 12px; }
.editorial-standard { padding: 66px 0; border-top: 1px solid var(--ink); }
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.standard-grid > div { min-height: 200px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.standard-grid > div:last-child { border-right: 0; }
.standard-grid span { color: var(--orange); font-family: var(--serif); }
.standard-grid strong { margin-top: 48px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.standard-grid p { margin: 11px 0 0; color: var(--ink-2); font-size: 11px; line-height: 1.6; }
.medical-disclaimer { margin-bottom: 84px; padding: 23px 27px; display: grid; grid-template-columns: 150px 1fr; gap: 26px; border-radius: 13px; background: #efe5d2; }
.medical-disclaimer strong { color: var(--orange); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.medical-disclaimer p { margin: 0; color: var(--ink-2); font-size: 12px; line-height: 1.65; }

.article-breadcrumb { width: min(1120px, calc(100% - 40px)); margin: 36px auto 0; display: flex; flex-wrap: wrap; gap: 9px; color: var(--ink-2); font-size: 9px; font-weight: 750; }
.article-breadcrumb a:hover { color: var(--orange); }
.article-hero { width: min(1120px, calc(100% - 40px)); margin-inline: auto; padding: 80px 0 48px; display: grid; grid-template-columns: 1fr 320px; gap: 46px; border-bottom: 1px solid var(--ink); }
.article-title-block { grid-column: 1 / -1; }
.article-hero h1 { max-width: 1050px; margin: 0; font-family: var(--serif); font-size: clamp(56px, 7vw, 92px); font-weight: 500; line-height: .94; letter-spacing: -.058em; }
.article-deck { max-width: 750px; margin: 31px 0 0; color: var(--ink-2); font-family: var(--serif); font-size: 20px; line-height: 1.58; }
.article-byline { display: flex; align-items: center; gap: 14px; }
.byline-monogram { width: 47px; height: 47px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.article-byline > div { display: flex; flex-direction: column; gap: 5px; }
.article-byline strong { font-family: var(--serif); font-size: 16px; font-weight: 500; }
.article-byline div span { color: var(--ink-2); font-size: 9px; line-height: 1.4; }
.article-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.article-facts > span { color: var(--ink-2); font-size: 8px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.article-facts strong { color: var(--ink); font-size: 9px; letter-spacing: 0; text-transform: none; }
.quick-summary { width: min(1120px, calc(100% - 40px)); margin: 24px auto 0; padding: 29px 33px; display: grid; grid-template-columns: 170px 1fr; gap: 28px; border-radius: 4px 23px 4px 23px; background: var(--orange); color: #241711; }
.quick-summary > span { font-size: 8px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.quick-summary p { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.58; }
.article-layout { width: min(1120px, calc(100% - 40px)); margin: 68px auto 0; display: grid; grid-template-columns: 250px minmax(0, 700px); gap: 76px; justify-content: center; align-items: start; }
.article-aside { position: sticky; top: 100px; display: grid; gap: 13px; }
.aside-box { padding: 21px; border: 1px solid var(--line); background: rgba(251,250,246,.9); }
.aside-box > span { color: var(--orange); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.aside-box ol, .aside-box ul { margin: 17px 0 0; padding-left: 18px; }
.aside-box li { margin: 0 0 11px; color: var(--ink-2); font-size: 10px; line-height: 1.5; }
.aside-box a:hover { color: var(--orange); }
.key-box { background: var(--ink); color: var(--paper); }
.key-box li { color: rgba(255,255,255,.7); }
.article-body > section { margin: 0 0 60px; padding: 0 0 60px; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.body-section-number { color: var(--orange); font-family: var(--serif); font-size: 12px; }
.article-body h2 { margin: 17px 0 26px; font-family: var(--serif); font-size: clamp(36px, 4.1vw, 52px); font-weight: 500; line-height: 1.04; letter-spacing: -.04em; }
.article-body p { margin: 0 0 23px; color: #284342; font-family: var(--serif); font-size: 17px; line-height: 1.82; }
.article-body ul { margin: 27px 0 0; padding: 21px 23px 21px 46px; background: var(--cream); }
.article-body li { margin: 0 0 11px; color: var(--ink-2); font-size: 13px; line-height: 1.68; }
.article-body .medical-alert { padding: 29px; display: grid; grid-template-columns: 54px 1fr; gap: 21px; border: 0; border-radius: 2px 27px 2px 27px; background: #492820; color: var(--paper); }
.alert-mark { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #ffb68e; font-family: var(--serif); font-size: 24px; }
.article-body .alert-label { margin: 0 0 10px; color: #ffb68e; font-family: var(--sans); font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.article-body .medical-alert h2 { margin: 0; color: var(--paper); font-size: 32px; }
.article-body .medical-alert ul { margin-top: 21px; background: rgba(255,255,255,.07); }
.article-body .medical-alert li { color: rgba(255,255,255,.78); }
.faq-section > .section-kicker, .references-section > .section-kicker { margin-bottom: 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 19px 38px 19px 0; position: relative; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 17px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 7px; color: var(--orange); }
.faq-list details[open] summary::after { content: '–'; }
.article-body .faq-list p { padding: 0 34px 19px 0; font-size: 14px; line-height: 1.7; }
.reference-list { margin: 0; padding: 0; list-style-position: inside; }
.article-body .reference-list li { margin: 0; padding: 15px 0; border-top: 1px solid var(--line); background: transparent; }
.reference-list a:hover { color: var(--orange); }
.article-closing-note { margin-top: -28px; padding: 23px 26px; border-left: 4px solid var(--orange); background: var(--cream); }
.article-closing-note strong { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.article-body .article-closing-note p { margin: 9px 0 0; font-family: var(--sans); font-size: 11px; line-height: 1.65; }
.related-articles { margin-top: 100px; padding: 65px 0 82px; border-top: 1px solid var(--ink); }
.related-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.related-grid a { min-height: 220px; padding: 23px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); }
.related-grid a:hover { border-color: var(--orange); }
.related-grid span { color: var(--orange); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.related-grid strong { margin: 42px 0 19px; font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.2; }
.related-grid small { margin-top: auto; color: var(--ink-2); font-size: 8px; font-weight: 750; }

/* Panel pengurusan artikel */
.admin-body { min-height: 100vh; background: #eef1ec; }
.admin-login-shell { width: min(520px, calc(100% - 32px)); min-height: 100vh; margin-inline: auto; padding: 42px 0 70px; display: grid; align-content: center; gap: 30px; }
.admin-login-card { padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow); }
.admin-login-card h1, .admin-dashboard h1, .admin-editor h1 { margin: 0; font-family: var(--serif); font-size: clamp(50px, 7vw, 76px); font-weight: 500; letter-spacing: -.055em; }
.admin-form { margin-top: 30px; display: grid; gap: 17px; }
.admin-form label, .editor-form label { display: grid; gap: 7px; color: var(--ink-2); font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.admin-form input, .editor-form input, .editor-form textarea, .editor-form select { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: white; color: var(--ink); font: inherit; font-size: 13px; line-height: 1.5; }
.admin-form input:focus, .editor-form input:focus, .editor-form textarea:focus, .editor-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,127,69,.12); }
.admin-form small, .editor-form small { color: #6b7f7d; font-size: 9px; font-weight: 500; line-height: 1.5; }
.admin-notice, .admin-error, .admin-success { margin-top: 24px; padding: 14px 16px; border-radius: 10px; font-size: 11px; line-height: 1.55; }
.admin-notice { background: var(--cream); }
.admin-error { border-left: 3px solid #a8442d; background: #f6e1da; color: #692c1d; }
.admin-success { border-left: 3px solid #3c8757; background: #dfefe2; color: #245536; }
.admin-notice a, .admin-success a { text-decoration: underline; font-weight: 800; }
.admin-header { min-height: 76px; padding: 0 max(24px, calc((100% - 1240px) / 2)); display: flex; justify-content: space-between; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
.admin-header > div { display: flex; gap: 9px; }
.admin-header form { margin: 0; }
.admin-dashboard, .admin-editor { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 100px; }
.admin-dashboard-heading, .admin-editor-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.admin-dashboard-heading p:last-child { margin: 15px 0 0; color: var(--ink-2); font-size: 11px; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 850px; }
.admin-table th, .admin-table td { padding: 17px; border-bottom: 1px solid var(--line); text-align: left; font-size: 11px; }
.admin-table th { color: var(--ink-2); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.admin-table td:first-child { min-width: 350px; }
.admin-table td:first-child span { display: block; margin-top: 5px; color: #718381; font-size: 8px; }
.admin-table tr:last-child td { border-bottom: 0; }
.status-chip { padding: 6px 9px; border-radius: 999px; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.status-published { background: #d9ecdd; color: #245536; }
.status-draft { background: #f1e6ce; color: #72531d; }
.status-archived { background: #e4e6e5; color: #52615f; }
.editor-form { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; align-items: start; }
.editor-main-fields, .editor-side-fields { padding: 26px; display: grid; gap: 19px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); }
.editor-side-fields { position: sticky; top: 20px; }
.editor-form textarea { resize: vertical; font-family: var(--sans); }
.admin-safety-note { margin: 0; padding: 13px; background: var(--cream); color: var(--ink-2); font-size: 9px; line-height: 1.55; }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }

@media (max-width: 900px) {
  .library-hero { grid-template-columns: 1fr; gap: 45px; }
  .editorial-stamp { width: 225px; min-height: 225px; }
  .featured-article { grid-template-columns: 55px 1fr; }
  .featured-points { grid-column: 2; padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .article-filter { grid-template-columns: 1fr 1fr; }
  .library-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { grid-template-columns: 1fr; }
  .article-title-block { grid-column: auto; }
  .article-facts { max-width: 410px; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .editor-form { grid-template-columns: 1fr; }
  .editor-side-fields { position: static; }
}

@media (max-width: 560px) {
  .library-hero, .featured-article, .article-explorer, .editorial-standard, .medical-disclaimer, .related-articles { width: min(100% - 28px, 1240px); }
  .library-hero { min-height: auto; padding: 64px 0 52px; }
  .library-masthead h1 { font-size: 56px; }
  .library-masthead > p:last-child { margin-top: 28px; font-size: 17px; }
  .featured-article { padding: 24px; grid-template-columns: 1fr; gap: 26px; }
  .featured-label { flex-direction: row; }
  .featured-label p { writing-mode: initial; transform: none; }
  .featured-points { grid-column: auto; }
  .article-explorer { padding: 74px 0 62px; }
  .explorer-heading { align-items: start; flex-direction: column; gap: 17px; }
  .article-filter { grid-template-columns: 1fr; padding: 11px; }
  .library-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .standard-grid > div { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .standard-grid > div:last-child { border-bottom: 0; }
  .medical-disclaimer { grid-template-columns: 1fr; gap: 9px; }
  .article-breadcrumb, .article-hero, .quick-summary, .article-layout { width: min(100% - 28px, 1120px); }
  .article-hero { padding: 56px 0 36px; gap: 30px; }
  .article-hero h1 { font-size: 49px; }
  .article-deck { font-size: 17px; }
  .article-facts { grid-template-columns: 1fr 1fr; }
  .quick-summary { grid-template-columns: 1fr; padding: 23px; gap: 11px; }
  .article-aside { grid-template-columns: 1fr; }
  .article-body h2 { font-size: 36px; }
  .article-body p { font-size: 16px; }
  .article-body .medical-alert { grid-template-columns: 1fr; padding: 23px; }
  .article-body .medical-alert h2 { font-size: 28px; }
  .admin-login-card { padding: 27px 22px; }
  .admin-header { min-height: auto; padding: 16px 20px; align-items: start; }
  .admin-header > div { flex-direction: column; }
  .admin-dashboard, .admin-editor { width: min(100% - 28px, 1240px); padding-top: 52px; }
  .admin-dashboard-heading, .admin-editor-heading { align-items: start; flex-direction: column; }
  .editor-main-fields, .editor-side-fields { padding: 19px; }
}
