:root {
  color-scheme: light;
  --petroleum: #1f5f7a;
  --petroleum-dark: #17495e;
  --sage: #6c9a8b;
  --terracotta: #c86a5a;
  --sand: #f3efe8;
  --warm-white: #fafaf8;
  --professional-gray: #6b7280;
  --ink: #26333d;
  --muted: var(--professional-gray);
  --soft: var(--sand);
  --paper: var(--warm-white);
  --teal: var(--petroleum);
  --teal-dark: var(--petroleum-dark);
  --mint: #e3eee9;
  --coral: var(--terracotta);
  --line: #dedbd3;
  --shadow: 0 20px 52px rgba(31, 95, 122, 0.11);
  --radius: 8px;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.62;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 16px clamp(16px, 3vw, 44px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(250, 250, 248, 0.96);
  box-shadow: 0 8px 30px rgba(31, 95, 122, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--petroleum);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  background: #ffffff;
  border-radius: 999px;
}

.brand-mark::before {
  width: 20px;
  height: 7px;
  top: 17px;
  left: 11px;
}

.brand-mark::after {
  width: 7px;
  height: 20px;
  top: 10px;
  left: 17px;
}

.brand-mark span {
  width: 12px;
  height: 12px;
  right: 6px;
  bottom: 6px;
  background: var(--terracotta);
  border: 2px solid #ffffff;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 3px;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.95;
}

.site-header:not(.is-scrolled):not(.nav-open) .brand-text small,
.site-footer .brand-text small {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 20px);
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  font-weight: 700;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.nav-dropdown summary:hover {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  opacity: 0.86;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 120;
  display: grid;
  width: min(860px, calc(100vw - 48px));
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(108, 154, 139, 0.24);
  border-radius: 18px;
  background: rgba(250, 250, 248, 0.98);
  box-shadow: 0 28px 70px rgba(31, 95, 122, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

@media (min-width: 901px) {
  .nav-dropdown:not([open]):not(:hover) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
  }
}

.nav-dropdown-menu::before {
  position: absolute;
  content: "";
  top: -8px;
  left: calc(50% + 22px);
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(108, 154, 139, 0.24);
  border-left: 1px solid rgba(108, 154, 139, 0.24);
  background: rgba(250, 250, 248, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  opacity: 1;
  line-height: 1.25;
}

.nav-dropdown-menu a:hover {
  color: var(--petroleum);
  background: var(--sand);
}

.mega-menu {
  gap: 18px;
}

.mega-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 2px 18px;
  border-bottom: 1px solid var(--line);
}

.mega-intro strong {
  color: var(--petroleum);
  font-size: 1.08rem;
  line-height: 1.1;
  white-space: nowrap;
}

.mega-intro span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.mega-columns {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

.mega-group {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(108, 154, 139, 0.16);
  border-radius: 14px;
  background: rgba(243, 239, 232, 0.72);
}

.mega-group:first-child {
  grid-row: span 2;
}

.mega-group .line-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 2px;
  background: var(--warm-white);
}

.mega-group h3 {
  margin: 0 0 8px;
  color: var(--petroleum);
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mega-group a {
  display: block;
  padding: 9px 10px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.52);
}

.mega-group a:hover {
  color: var(--petroleum);
  background: #ffffff;
}

.mega-all {
  justify-self: end;
  padding-inline: 18px !important;
  color: #ffffff !important;
  background: var(--petroleum);
  font-weight: 900;
}

.mega-all:hover {
  color: #ffffff !important;
  background: var(--petroleum-dark) !important;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  padding: 0 16px;
  color: #ffffff;
  background: var(--sage);
}

.site-header.is-scrolled .header-action,
.site-header.nav-open .header-action {
  background: var(--sage);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 70px) 58px;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 95, 122, 0.92) 0%, rgba(31, 95, 122, 0.76) 38%, rgba(31, 95, 122, 0.24) 78%),
    linear-gradient(0deg, rgba(23, 73, 94, 0.64), rgba(23, 73, 94, 0.04) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding-bottom: 8vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8b1a7;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: #ffffff;
  background: var(--sage);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(250, 250, 248, 0.08);
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: #ead6cf;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.3;
}

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

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 50px);
  background: var(--warm-white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--petroleum);
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.process,
.contact {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
}

.institutional {
  align-items: start;
  background: var(--warm-white);
}

.intro-copy,
.team-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.12rem);
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.intro-copy p {
  margin: 0;
}

.intro-copy strong {
  color: var(--petroleum);
  font-weight: 800;
}

.institutional-copy {
  max-width: 690px;
  padding-top: 8px;
}

.audience-routes {
  background: var(--sand);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.route-grid a {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 26px;
  background: var(--warm-white);
}

.route-grid span {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-grid strong {
  display: block;
  margin-top: 42px;
  color: var(--petroleum);
  font-size: clamp(1.15rem, 1.9vw, 1.65rem);
  line-height: 1.18;
}

.care-model {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  background: var(--warm-white);
}

.model-copy h2 {
  margin: 0;
  color: var(--petroleum);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.model-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.model-copy .text-link {
  margin-top: 24px;
}

.model-panel {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.model-panel article {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.model-panel article:last-child {
  border-bottom: 0;
}

.model-panel span {
  color: var(--sage);
  font-weight: 900;
}

.model-panel strong {
  color: var(--petroleum);
  line-height: 1.25;
}

.model-panel p {
  margin: 0;
  color: var(--muted);
}

.why-oga {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--warm-white);
}

.why-media {
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 60% center;
}

.why-content {
  max-width: 760px;
}

.why-content h2 {
  margin: 0;
  color: var(--petroleum);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.06;
}

.why-copy {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.why-copy p {
  margin: 0;
}

.services {
  background: var(--sand);
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

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

.home-service-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.home-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-service-card div {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.home-service-card h3 {
  margin: 0;
  color: var(--petroleum);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.2;
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
}

.services-all,
.process-action,
.institutional-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: #ffffff;
  background: var(--sage);
}

.home-process {
  background: var(--warm-white);
}

.compact-process article {
  min-height: 220px;
}

.compact-process article h3 {
  margin-top: 12px;
}

.why-brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--sand);
}

.institutional-solutions {
  background:
    linear-gradient(90deg, rgba(31, 95, 122, 0.93), rgba(31, 95, 122, 0.82)),
    url("/assets/home-care-general.jpg") center/cover;
  color: #ffffff;
}

.institutional-solutions .eyebrow {
  color: #d8e7e2;
}

.institutional-solutions .section-heading {
  max-width: 860px;
}

.institutional-solutions .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--petroleum);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  color: var(--terracotta);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.service-card.featured {
  border-color: rgba(108, 154, 139, 0.5);
  background: linear-gradient(180deg, rgba(108, 154, 139, 0.12), rgba(250, 250, 248, 0.92));
}

.line-icon {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  background: transparent;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
  border-color: var(--sage);
}

.line-icon.medical::before,
.line-icon.evaluate::before {
  width: 24px;
  height: 0;
  top: 23px;
  left: 12px;
  border-top: 2px solid var(--sage);
}

.line-icon.medical::after,
.line-icon.evaluate::after {
  width: 0;
  height: 24px;
  top: 12px;
  left: 23px;
  border-left: 2px solid var(--sage);
}

.line-icon.nursing::before,
.line-icon.plan::before {
  width: 20px;
  height: 23px;
  top: 12px;
  left: 14px;
  border: 2px solid var(--sage);
  border-radius: 5px;
}

.line-icon.nursing::after,
.line-icon.plan::after {
  width: 10px;
  height: 0;
  top: 20px;
  left: 19px;
  border-top: 2px solid var(--sage);
  box-shadow: 0 6px 0 var(--sage);
}

.line-icon.rehab::before,
.line-icon.occupation::before {
  width: 26px;
  height: 14px;
  top: 18px;
  left: 11px;
  border: 2px solid var(--sage);
  border-radius: 999px 999px 4px 4px;
  transform: rotate(-18deg);
}

.line-icon.rehab::after,
.line-icon.occupation::after {
  width: 8px;
  height: 8px;
  top: 12px;
  right: 10px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.line-icon.home::before {
  width: 25px;
  height: 19px;
  top: 19px;
  left: 12px;
  border: 2px solid var(--sage);
  border-top: 0;
  border-radius: 3px;
}

.line-icon.home::after {
  width: 21px;
  height: 21px;
  top: 10px;
  left: 14px;
  border-left: 2px solid var(--sage);
  border-top: 2px solid var(--sage);
  transform: rotate(45deg);
}

.line-icon.family::before,
.line-icon.team::before,
.line-icon.caregivers::before {
  width: 12px;
  height: 12px;
  top: 11px;
  left: 10px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  box-shadow: 15px 3px 0 -1px var(--warm-white), 15px 3px 0 1px var(--sage);
}

.line-icon.family::after,
.line-icon.team::after,
.line-icon.caregivers::after {
  width: 31px;
  height: 15px;
  top: 27px;
  left: 9px;
  border: 2px solid var(--sage);
  border-bottom: 0;
  border-radius: 999px 999px 4px 4px;
}

.line-icon.prevention::before,
.line-icon.care::before,
.line-icon.paliative::before {
  width: 24px;
  height: 24px;
  top: 12px;
  left: 12px;
  border: 2px solid var(--sage);
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
}

.line-icon.prevention::after,
.line-icon.care::after,
.line-icon.paliative::after {
  width: 11px;
  height: 6px;
  top: 21px;
  left: 19px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  background: transparent;
  transform: rotate(-45deg);
}

.line-icon.monitor::before,
.line-icon.lab::before {
  width: 24px;
  height: 18px;
  top: 15px;
  left: 12px;
  border: 2px solid var(--sage);
  border-radius: 4px;
}

.line-icon.monitor::after,
.line-icon.lab::after {
  width: 14px;
  height: 8px;
  top: 20px;
  left: 17px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: skew(-22deg);
}

.line-icon.speech::before,
.line-icon.psychology::before,
.line-icon.psychiatry::before {
  width: 24px;
  height: 18px;
  top: 12px;
  left: 12px;
  border: 2px solid var(--sage);
  border-radius: 12px;
}

.line-icon.speech::after,
.line-icon.psychology::after,
.line-icon.psychiatry::after {
  width: 8px;
  height: 8px;
  top: 27px;
  left: 18px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-20deg);
}

.line-icon.nutrition::before {
  width: 24px;
  height: 24px;
  top: 11px;
  left: 13px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  border-radius: 0 0 0 18px;
  transform: rotate(-28deg);
}

.line-icon.nutrition::after {
  width: 14px;
  height: 10px;
  top: 13px;
  left: 23px;
  border: 2px solid var(--sage);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-18deg);
}

.line-icon.wound::before,
.line-icon.oxygen::before {
  width: 24px;
  height: 10px;
  top: 19px;
  left: 12px;
  border: 2px solid var(--sage);
  border-radius: 999px;
}

.line-icon.wound::after,
.line-icon.oxygen::after {
  width: 10px;
  height: 24px;
  top: 12px;
  left: 19px;
  border: 2px solid var(--sage);
  border-radius: 999px;
}

.line-icon.check::before {
  width: 26px;
  height: 14px;
  top: 13px;
  left: 8px;
  border-left: 3px solid var(--sage);
  border-bottom: 3px solid var(--sage);
  transform: rotate(-45deg);
}

.line-icon.check::after {
  display: none;
}

.service-card h3,
.process article h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
}

.service-card p,
.process article p {
  margin: 0;
  color: var(--muted);
}

.service-card details {
  margin-top: 18px;
  color: var(--muted);
}

.service-card summary {
  cursor: pointer;
  color: var(--petroleum);
  font-weight: 800;
}

.service-card details p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.services-toggle,
.coverage-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--sage);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.process {
  background: var(--warm-white);
  color: var(--ink);
}

.process .eyebrow {
  color: var(--terracotta);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process article {
  min-height: 270px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.process article:last-child {
  border-right: 0;
}

.process .line-icon {
  margin-bottom: 26px;
}

.process article span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 900;
}

.process article p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.team-photo {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 58% center;
}

.team-panel {
  padding: 30px;
  border-left: 4px solid var(--sage);
  background: var(--sand);
}

.team-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.team-panel li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.team-panel li::before {
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  background: var(--sage);
}

.coverage {
  background: var(--warm-white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.coverage-grid article {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 26px;
  background: var(--sand);
}

.coverage-grid strong {
  color: var(--petroleum);
  font-size: 1.14rem;
}

.coverage-grid span {
  color: var(--muted);
}

.coverage-note {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
}

.emotional-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(62px, 8vw, 96px) clamp(18px, 5vw, 70px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(31, 95, 122, 0.96), rgba(31, 95, 122, 0.86)),
    var(--petroleum);
}

.emotional-band .eyebrow {
  color: #d8e7e2;
}

.emotional-band h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
}

.emotional-band p:not(.eyebrow) {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.emotional-action {
  color: var(--petroleum);
  background: var(--warm-white);
}

.faq {
  background: var(--warm-white);
}

.faq-list {
  max-width: 980px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 800;
}

.faq-list p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--sand);
}

.contact-panel {
  margin-top: 30px;
  border: 1px solid #dedbd3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 0 18px 44px rgba(31, 95, 122, 0.09);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-bottom: 1px solid #dedbd3;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--petroleum);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 18px 44px rgba(31, 95, 122, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--petroleum);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.privacy-field {
  display: flex !important;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.privacy-field input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-submit {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--sage);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.service-page {
  background: var(--warm-white);
}

.service-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(18px, 5vw, 70px) 70px;
  color: #ffffff;
}

.service-hero-media,
.service-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.service-hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 95, 122, 0.94), rgba(31, 95, 122, 0.64) 48%, rgba(31, 95, 122, 0.2)),
    linear-gradient(0deg, rgba(23, 73, 94, 0.55), rgba(23, 73, 94, 0.05));
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d8e7e2;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.service-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  line-height: 0.98;
}

.service-hero p {
  max-width: 700px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
}

.service-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.service-copy p {
  margin: 0;
}

.service-process {
  background: var(--sand);
}

.service-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--warm-white);
}

.service-timeline article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.service-timeline article:last-child {
  border-right: 0;
}

.service-timeline article::after {
  position: absolute;
  content: "→";
  top: 26px;
  right: -10px;
  z-index: 1;
  width: 20px;
  color: var(--terracotta);
  background: var(--warm-white);
  text-align: center;
  font-weight: 900;
}

.service-timeline article:last-child::after {
  display: none;
}

.service-timeline span {
  color: var(--sage);
  font-weight: 900;
}

.service-timeline h3 {
  margin: 20px 0 10px;
  color: var(--petroleum);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-timeline p {
  margin: 0;
  color: var(--muted);
}

.team-service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  margin-top: 42px;
}

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

.discipline-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--petroleum);
  background: var(--sand);
  font-weight: 900;
}

.service-benefits {
  background: var(--warm-white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.benefit-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
}

.benefit-grid h3 {
  margin: 0;
  color: var(--petroleum);
  font-size: 1.12rem;
}

.service-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-nav a {
  display: grid;
  gap: 8px;
  padding: clamp(24px, 5vw, 48px) clamp(18px, 5vw, 70px);
  background: var(--warm-white);
}

.service-nav a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.service-nav span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-nav strong {
  color: var(--petroleum);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.related-services {
  background: var(--sand);
}

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

.service-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.button.secondary.light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--petroleum);
  box-shadow: 0 16px 38px rgba(31, 95, 122, 0.22);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 70px);
  color: #ffffff;
  background: var(--petroleum-dark);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  font-weight: 800;
}

.compact .brand-mark {
  width: 36px;
  height: 36px;
}

.compact .brand-mark::before {
  top: 15px;
  left: 9px;
}

.compact .brand-mark::after {
  top: 8px;
  left: 16px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--warm-white);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px;
  }

  .site-header.nav-open .nav-dropdown summary {
    padding: 14px;
  }

  .site-header.nav-open .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0 0 8px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .site-header.nav-open .nav-dropdown-menu::before {
    display: none;
  }

  .site-header.nav-open .nav-dropdown-menu a {
    padding: 10px 14px;
    color: var(--muted);
  }

  .site-header.nav-open .mega-intro {
    padding: 8px 14px 14px;
  }

  .site-header.nav-open .mega-columns {
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .mega-group {
    padding: 14px;
    background: var(--sand);
  }

  .site-header.nav-open .mega-group .line-icon {
    display: none;
  }

  .site-header.nav-open .mega-group a {
    padding: 9px 0;
  }

  .site-header.nav-open .mega-all {
    justify-self: stretch;
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-content {
    padding-bottom: 116px;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .trust-strip,
  .service-grid,
  .home-service-grid,
  .featured-grid,
  .process-steps,
  .coverage-grid,
  .intro,
  .route-grid,
  .care-model,
  .why-brief,
  .why-oga,
  .team-layout,
  .service-detail,
  .service-timeline,
  .team-service-layout,
  .benefit-grid,
  .compact-grid,
  .service-cta,
  .emotional-band,
  .split,
  .contact,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .model-panel article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .emotional-action {
    justify-self: start;
  }

  .process-steps {
    border-bottom: 0;
  }

  .process article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-timeline article:last-child {
    border-bottom: 0;
  }

  .service-timeline article::after {
    top: auto;
    right: auto;
    left: 26px;
    bottom: -12px;
    content: "↓";
  }

  .service-nav {
    grid-template-columns: 1fr;
  }

  .service-nav a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .why-media,
  .why-media img {
    min-height: 360px;
  }

  .service-card,
  .process article {
    min-height: auto;
  }

  .team-photo,
  .team-photo img {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 94vh;
  }

  .service-hero {
    min-height: 82vh;
    padding-top: 118px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 95, 122, 0.94), rgba(31, 95, 122, 0.62)),
      linear-gradient(0deg, rgba(23, 73, 94, 0.76), rgba(23, 73, 94, 0.12));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .home-service-card {
    grid-template-rows: 210px 1fr;
  }

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

  .section,
  .process,
  .contact {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .floating-contact {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }
}
