:root {
  --hc-ink: #112238;
  --hc-navy: #10213b;
  --hc-navy-deep: #091525;
  --hc-emerald: #087d6b;
  --hc-emerald-dark: #056454;
  --hc-mint: #dff3ed;
  --hc-cream: #f7f4ee;
  --hc-sand: #ece5d8;
  --hc-gold: #c89442;
  --hc-text: #26364a;
  --hc-muted: #667385;
  --hc-line: rgba(17, 34, 56, .12);
  --hc-white: #fff;
  --hc-shadow: 0 24px 70px rgba(17, 34, 56, .10);
  --hc-font: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hc-display: var(--hc-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 78px;
}

body.homecare-brand-page {
  margin: 0;
  color: var(--hc-text);
  background: var(--hc-white);
  font-family: var(--hc-font);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

.homecare-brand-page img {
  display: block;
  max-width: 100%;
}

.homecare-brand-page a {
  color: inherit;
}

.homecare-brand-page h1,
.homecare-brand-page h2,
.homecare-brand-page h3,
.homecare-brand-page p {
  margin-top: 0;
}

.hc-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(17, 34, 56, .08);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 28px rgba(17, 34, 56, .04);
  backdrop-filter: blur(18px);
}

.hc-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--hc-ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hc-logo img {
  width: 116px;
  height: auto;
}

.hc-logo span {
  padding-left: 14px;
  border-left: 1px solid var(--hc-line);
  font-size: 18px;
  letter-spacing: -.02em;
}

.hc-nav nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hc-nav nav a {
  color: #435268;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hc-nav nav a:hover {
  color: var(--hc-emerald);
}

.hc-nav nav .hc-nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--hc-emerald);
  box-shadow: 0 10px 24px rgba(8, 125, 107, .18);
}

.hc-nav nav .hc-nav-cta:hover {
  color: #fff;
  background: var(--hc-emerald-dark);
}

.hc-service-menu {
  position: relative;
}

.hc-service-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #435268;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hc-service-menu summary::-webkit-details-marker {
  display: none;
}

.hc-service-menu summary::after {
  content: "+";
  color: var(--hc-emerald);
  font: 700 16px/1 var(--hc-display);
}

.hc-service-menu[open] summary::after {
  content: "−";
}

.hc-service-menu-panel {
  position: absolute;
  z-index: 70;
  top: calc(100% + 12px);
  left: 50%;
  width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--hc-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(17, 34, 56, .16);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.hc-service-menu-panel a {
  min-height: 74px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 3px 10px;
  align-content: center;
  padding: 13px 14px;
  border-radius: 14px;
  text-decoration: none;
}

.hc-service-menu-panel a:hover {
  background: var(--hc-cream);
}

.hc-service-menu-panel a > span {
  grid-row: 1 / 3;
  color: var(--hc-emerald);
  font: 800 10px/1.8 var(--hc-display);
}

.hc-service-menu-panel a > strong {
  color: var(--hc-ink);
  font-size: 15px;
}

.hc-service-menu-panel a > small {
  color: var(--hc-muted);
  font-size: 12px;
  font-weight: 500;
}

.hc-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background: var(--hc-navy-deep);
}

.hc-hero-img,
.hc-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hc-hero-img {
  object-fit: cover;
  object-position: center;
}

.hc-hero-overlay {
  background:
    radial-gradient(circle at 78% 36%, rgba(8, 125, 107, .10), transparent 28%),
    linear-gradient(90deg, rgba(8, 19, 33, .94) 0%, rgba(11, 26, 45, .82) 45%, rgba(8, 19, 33, .32) 73%, rgba(8, 19, 33, .20) 100%),
    linear-gradient(180deg, rgba(8, 19, 33, .05) 60%, rgba(8, 19, 33, .56));
}

.hc-hero-content {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 48px));
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(56px, 8vw, 124px);
  align-items: center;
  margin: 0 auto;
  padding: 80px 0 90px;
}

.hc-hero-copy {
  max-width: 750px;
}

.hc-eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .60);
  font: 700 12px/1 var(--hc-display);
  letter-spacing: .18em;
}

.hc-hero h1 {
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(48px, 5.3vw, 78px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.055em;
}

.hc-hero h1 em {
  color: #65d4bd;
  font-style: normal;
}

.hc-hero-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.85;
  letter-spacing: -.01em;
}

.hc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hc-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.hc-btn-kakao {
  color: #17202b;
  background: #fee500;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .14);
}

.hc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.hc-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #fff;
  font: 700 15px/1 var(--hc-display);
  text-decoration: none;
}

.hc-phone-link span {
  color: rgba(255, 255, 255, .58);
  font-family: var(--hc-font);
  font-size: 13px;
}

.hc-quick-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .20);
  backdrop-filter: blur(24px);
}

.hc-quick-label {
  margin-bottom: 10px;
  color: #74dec8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hc-quick-card h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.hc-quick-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hc-quick-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.hc-quick-card li > span {
  grid-row: 1 / 3;
  color: rgba(255, 255, 255, .44);
  font: 700 11px/1 var(--hc-display);
}

.hc-quick-card li strong {
  color: #fff;
  font-size: 17px;
}

.hc-quick-card li small {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.hc-quick-note {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .74);
  background: rgba(8, 19, 33, .32);
  font-size: 14px;
  line-height: 1.7;
}

.hc-quick-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.hc-quick-services span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(116, 222, 200, .22);
  border-radius: 999px;
  color: rgba(225, 255, 249, .86);
  background: rgba(8, 19, 33, .22);
  font-size: 11px;
  font-weight: 700;
}

.hc-promise {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -52px auto 0;
  border: 1px solid var(--hc-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--hc-shadow);
}

.hc-promise > div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 3px 12px;
  align-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--hc-line);
}

.hc-promise > div:last-child {
  border-right: 0;
}

.hc-promise span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hc-emerald);
  background: var(--hc-mint);
  font: 800 11px/1 var(--hc-display);
}

.hc-promise strong {
  color: var(--hc-ink);
  font-size: 17px;
}

.hc-promise small {
  color: var(--hc-muted);
  font-size: 13px;
}

.hc-official-facts {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  margin: clamp(72px, 8vw, 118px) auto 0;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(8, 125, 107, .16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(223, 243, 237, .9), transparent 42%),
    linear-gradient(135deg, #fbfdfc, #f7f4ee);
  box-shadow: 0 24px 70px rgba(17, 34, 56, .07);
}

.hc-official-facts-heading h2 {
  margin: 14px 0 18px;
  color: var(--hc-ink);
  font: 800 clamp(30px, 3.3vw, 46px)/1.16 var(--hc-display);
  letter-spacing: -.045em;
}

.hc-official-facts-heading p {
  margin-bottom: 22px;
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hc-official-facts-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hc-emerald-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hc-official-facts-heading .hc-facts-data-download {
  display: flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--hc-muted);
  font-size: 13px;
  font-weight: 700;
}

.hc-official-facts-heading a:hover,
.hc-official-facts-heading a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hc-official-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.hc-official-facts-grid > div {
  min-height: 156px;
  padding: 24px;
  border: 1px solid var(--hc-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
}

.hc-official-facts-grid dt {
  margin-bottom: 16px;
  color: var(--hc-emerald);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hc-official-facts-grid dd {
  margin: 0;
  color: var(--hc-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.hc-official-facts-grid dd > a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hc-official-facts-grid small {
  display: block;
  margin-top: 7px;
  color: var(--hc-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.hc-services,
.hc-flow,
.hc-faq,
.hc-about {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 5vw, 76px);
}

.hc-services,
.hc-flow > *,
.hc-faq > *,
.hc-about > * {
  margin-right: auto;
  margin-left: auto;
}

.hc-services {
  max-width: 1512px;
}

.hc-heading {
  width: min(1180px, 100%);
  margin-bottom: 52px;
}

.hc-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 60px;
  align-items: end;
}

.hc-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hc-emerald);
  font: 800 12px/1 var(--hc-display);
  letter-spacing: .16em;
}

.hc-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hc-label.light {
  color: #6ad4be;
}

.hc-heading h2,
.hc-life h2,
.hc-about h2,
.hc-contact h2 {
  margin-bottom: 0;
  color: var(--hc-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.23;
  letter-spacing: -.05em;
}

.hc-heading > p,
.hc-heading-split > p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.hc-service-grid {
  width: min(1360px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.hc-search-guides {
  max-width: 1240px;
  margin: 34px auto 0;
  padding: 30px;
  border: 1px solid rgba(16, 33, 59, 0.1);
  border-radius: 22px;
  background: #f5f8f7;
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.hc-search-guides h3 {
  margin: 8px 0 10px;
  color: #10213b;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

.hc-search-guides p {
  margin: 0;
  color: #586577;
  line-height: 1.7;
}

.hc-search-guides nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.hc-search-guides nav a {
  min-height: 88px;
  padding: 16px 13px;
  border: 1px solid rgba(16, 33, 59, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #10213b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hc-search-guides nav a:hover,
.hc-search-guides nav a:focus-visible {
  transform: translateY(-2px);
  border-color: #087d6b;
  box-shadow: 0 10px 24px rgba(16, 33, 59, 0.08);
}

.hc-search-guides nav strong {
  font-size: 0.93rem;
  letter-spacing: -0.025em;
}

.hc-search-guides nav span {
  color: #6e7987;
  font-size: 0.78rem;
}

.hc-service-card {
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: 24px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 34, 56, .06);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hc-service-card:hover {
  border-color: rgba(8, 125, 107, .34);
  box-shadow: 0 24px 58px rgba(17, 34, 56, .12);
  transform: translateY(-6px);
}

.hc-service-media {
  height: 226px;
  overflow: hidden;
  background: var(--hc-cream);
}

.hc-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.hc-service-card:hover .hc-service-media img {
  transform: scale(1.04);
}

.hc-service-featured .hc-service-media img {
  object-position: center 42%;
}

.hc-service-body {
  padding: 28px 28px 30px;
}

.hc-service-order {
  color: var(--hc-emerald);
  font-size: 12px;
  font-weight: 800;
}

.hc-service-body h3 {
  margin: 10px 0 12px;
  color: var(--hc-ink);
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.035em;
}

.hc-service-body p {
  min-height: 76px;
  margin-bottom: 24px;
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.72;
}

.hc-service-body strong {
  color: var(--hc-ink);
  font-size: 14px;
}

.hc-service-body strong span {
  margin-left: 4px;
  color: var(--hc-emerald);
}

.hc-inline-cta {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 34px auto 0;
  padding: 28px 34px;
  border-radius: 20px;
  color: #fff;
  background: var(--hc-ink);
}

.hc-inline-cta p {
  margin: 0;
}

.hc-inline-cta p strong,
.hc-inline-cta p span {
  display: block;
}

.hc-inline-cta p strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.hc-inline-cta p span {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.hc-inline-cta > a {
  flex: 0 0 auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--hc-ink);
  background: #fee500;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hc-service-details {
  padding: clamp(88px, 10vw, 150px) max(24px, calc((100vw - 1360px) / 2));
  background:
    radial-gradient(circle at 92% 4%, rgba(8, 125, 107, .10), transparent 26%),
    #f4f1e9;
}

.hc-service-details-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.hc-service-details-heading p {
  max-width: 720px;
  margin-top: 24px;
}

.hc-service-detail {
  width: min(1360px, 100%);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(390px, .88fr) minmax(0, 1.12fr);
  margin: 0 auto 24px;
  overflow: hidden;
  scroll-margin-top: 108px;
  border: 1px solid rgba(16, 33, 59, .10);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 33, 59, .08);
}

.hc-service-detail:nth-of-type(even) {
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
}

.hc-service-detail:nth-of-type(even) .hc-service-detail-media {
  order: 2;
}

.hc-service-detail-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--hc-navy-deep);
}

.hc-service-detail-media::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(8, 18, 31, .76));
}

.hc-service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hc-service-detail-media > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: #fff;
  font: 800 11px/1.4 var(--hc-display);
  letter-spacing: .12em;
}

.hc-service-detail-copy {
  align-self: center;
  padding: clamp(38px, 5vw, 72px);
}

.hc-service-detail-copy h3 {
  margin: 4px 0 20px;
  color: var(--hc-ink);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.22;
  letter-spacing: -.055em;
}

.hc-service-detail-copy > p {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--hc-muted);
  font-size: 16px;
  line-height: 1.8;
}

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

.hc-detail-columns > div {
  padding: 20px;
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  background: #f8faf9;
}

.hc-detail-columns strong {
  color: var(--hc-ink);
  font-size: 14px;
}

.hc-detail-columns ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hc-detail-columns li {
  position: relative;
  padding-left: 15px;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.hc-detail-columns li + li {
  margin-top: 5px;
}

.hc-detail-columns li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hc-emerald);
}

.hc-detail-price {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 22px 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--hc-ink);
}

.hc-detail-price span {
  color: #7ad6c2;
  font-size: 11px;
  font-weight: 800;
}

.hc-detail-price strong {
  font-size: 19px;
  line-height: 1.4;
}

.hc-detail-price small {
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  line-height: 1.65;
}

.hc-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hc-detail-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--hc-emerald);
  border-radius: 999px;
  color: var(--hc-emerald);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.hc-detail-actions a:last-child {
  border-color: #fee500;
  color: #1d1d1b;
  background: #fee500;
}

.hc-service-detail-note {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 42px auto 0;
  padding: 30px 34px;
  border-radius: 22px;
  color: #fff;
  background: var(--hc-emerald);
}

.hc-service-detail-note strong {
  font-size: 18px;
}

.hc-service-detail-note p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.65;
}

.hc-service-detail-note a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--hc-ink);
  background: #fee500;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hc-life {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: clamp(88px, 9vw, 140px) max(24px, calc((100vw - 1360px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 8% 16%, rgba(8, 125, 107, .30), transparent 28%),
    var(--hc-navy-deep);
}

.hc-life h2 {
  color: #fff;
}

.hc-life-copy > p {
  max-width: 580px;
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.85;
}

.hc-life-points {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hc-life-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.hc-life-points span {
  grid-row: 1 / 3;
  color: #5bc8b2;
  font: 800 11px/1.8 var(--hc-display);
}

.hc-life-points strong {
  color: #fff;
  font-size: 17px;
}

.hc-life-points p {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.6;
}

.hc-life-gallery {
  height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.hc-life-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #1a2b42;
}

.hc-life-gallery .hc-life-tall {
  grid-row: 1 / 3;
}

.hc-life-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-life-gallery figure::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 15, 27, .72));
}

.hc-life-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hc-quality {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding: clamp(88px, 10vw, 142px) max(24px, calc((100vw - 1360px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(27, 145, 113, 0.25), transparent 32%),
    linear-gradient(135deg, #0f1d2d 0%, #17283a 100%);
  color: #fff;
}

.hc-quality-heading h2 {
  max-width: 640px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.14;
  letter-spacing: -.06em;
}

.hc-quality-heading > p {
  max-width: 620px;
  margin: 24px 0 26px;
  color: #bdc9d4;
  font-size: 16px;
  line-height: 1.8;
}

.hc-quality-heading > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(120, 210, 185, .5);
  border-radius: 999px;
  color: #d9fff4;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.hc-quality-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  min-height: 208px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
}

.hc-quality-grid article > span {
  color: #75d1b9;
  font: 800 14px/1.4 var(--hc-display);
}

.hc-quality-grid small {
  color: #75d1b9;
  font: 800 9px/1 var(--hc-display);
  letter-spacing: .1em;
}

.hc-quality-grid h3 {
  margin: 13px 0 9px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.04em;
}

.hc-quality-grid p {
  margin: 0;
  color: #afbdca;
  font-size: 13px;
  line-height: 1.68;
}

.hc-editorial {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(600px, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding: clamp(88px, 9vw, 132px) max(24px, calc((100vw - 1360px) / 2));
  background: #f7f3ea;
}

.hc-editorial header h2 {
  max-width: 560px;
  margin: 18px 0 22px;
  color: var(--hc-navy);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.16;
  letter-spacing: -.055em;
}

.hc-editorial header > p {
  margin: 0 0 24px;
  color: var(--hc-muted);
  font-size: 14px;
  font-weight: 700;
}

.hc-editorial header > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--hc-green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.hc-editorial-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(16, 33, 59, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.hc-editorial-grid article > span {
  color: var(--hc-green);
  font: 800 13px/1 var(--hc-display);
}

.hc-editorial-grid h3 {
  margin: 28px 0 10px;
  color: var(--hc-navy);
  font-size: 20px;
}

.hc-editorial-grid p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.7;
}

.hc-flow {
  background: var(--hc-cream);
}

.hc-flow .hc-heading {
  text-align: center;
}

.hc-flow .hc-heading p {
  max-width: 720px;
  margin: 20px auto 0;
}

.hc-flow-list {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.hc-flow-list li {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(17, 34, 56, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
}

.hc-flow-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 48%;
  right: -13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hc-emerald);
  background: #fff;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(17, 34, 56, .10);
}

.hc-flow-list > li > span {
  color: var(--hc-sand);
  font: 800 36px/1 var(--hc-display);
}

.hc-flow-list small {
  color: var(--hc-emerald);
  font: 800 10px/1 var(--hc-display);
  letter-spacing: .14em;
}

.hc-flow-list h3 {
  margin: 10px 0 8px;
  color: var(--hc-ink);
  font-size: 21px;
  letter-spacing: -.03em;
}

.hc-flow-list p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.62;
}

.hc-flow-note {
  width: min(1180px, 100%);
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--hc-muted);
  font-size: 13px;
  text-align: center;
}

.hc-about {
  width: min(1360px, 100%);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(480px, 1.15fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.hc-about-intro > p {
  max-width: 570px;
  margin: 24px 0 28px;
  color: var(--hc-muted);
  font-size: 16px;
  line-height: 1.84;
}

.hc-about-intro > a {
  color: var(--hc-emerald);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.hc-about-intro > a + a {
  margin-left: 18px;
}

@media (max-width: 640px) {
  .hc-about-intro > a + a {
    margin: 12px 0 0;
  }
}

.hc-about-cards {
  display: grid;
  gap: 12px;
}

.hc-about-cards article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 5px 16px;
  padding: 28px;
  border: 1px solid var(--hc-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 34, 56, .05);
}

.hc-about-cards span {
  grid-row: 1 / 3;
  color: var(--hc-emerald);
  font: 800 13px/1.8 var(--hc-display);
}

.hc-about-cards h3 {
  margin: 0;
  color: var(--hc-ink);
  font-size: 20px;
}

.hc-about-cards p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.hc-company-details {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

.hc-company-details summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 46px 16px 0;
  color: var(--hc-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.hc-company-details summary::-webkit-details-marker {
  display: none;
}

.hc-company-details summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--hc-emerald);
  font-size: 24px;
}

.hc-company-details[open] summary::after {
  content: "−";
}

.hc-company-details > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
  padding: 4px 0 28px;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.7;
}

.hc-company-details p {
  margin: 0;
}

.hc-company-details nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.hc-company-details a {
  color: var(--hc-ink);
  font-weight: 700;
  text-underline-offset: 3px;
}

.hc-faq {
  background: #f9fafb;
}

.hc-faq .hc-heading {
  text-align: center;
}

.hc-faq-list {
  width: min(920px, 100%);
  border-top: 1px solid var(--hc-line);
}

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

.hc-faq-list summary {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 22px 54px 22px 0;
  cursor: pointer;
  list-style: none;
}

.hc-faq-list summary::-webkit-details-marker {
  display: none;
}

.hc-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--hc-emerald);
  font-size: 28px;
  font-weight: 400;
}

.hc-faq-list details[open] summary::after {
  content: "−";
}

.hc-faq-list h3 {
  margin: 0;
  color: var(--hc-ink);
  font-size: 19px;
  line-height: 1.5;
}

.hc-faq-list details > p {
  max-width: 790px;
  margin: -2px 0 0;
  padding: 0 54px 26px 0;
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hc-contact {
  width: min(1360px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  margin: clamp(64px, 8vw, 110px) auto;
  padding: clamp(54px, 7vw, 90px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 178, 148, .36), transparent 36%),
    var(--hc-navy);
  box-shadow: 0 30px 80px rgba(17, 34, 56, .18);
}

.hc-contact h2 {
  color: #fff;
}

.hc-contact > div > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.8;
}

.hc-contact aside {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
}

.hc-contact aside > p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 18px 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.hc-contact aside > p span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hc-emerald);
  font: 700 10px/1 var(--hc-display);
}

.hc-contact .hc-btn {
  width: 100%;
  margin-top: 6px;
}

.hc-contact-phone {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration-color: rgba(255, 255, 255, .34);
  text-underline-offset: 4px;
}

.hc-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(150px, .7fr));
  gap: 48px;
  padding: 56px max(24px, calc((100vw - 1360px) / 2));
  color: rgba(255, 255, 255, .56);
  background: #07111e;
  font-size: 13px;
}

.hc-footer-brand img {
  width: 120px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.hc-footer-brand > strong {
  display: block;
  color: #fff;
  font-size: 19px;
}

.hc-footer-brand p {
  margin: 12px 0 0;
  line-height: 1.72;
}

.hc-footer-links,
.hc-footer-facts,
.hc-footer-policy {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.hc-footer-links > strong,
.hc-footer-facts > strong,
.hc-footer-policy > strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

.hc-footer a {
  color: rgba(255, 255, 255, .76);
  font-weight: 600;
  text-decoration: none;
}

.hc-footer a:hover {
  color: #fff;
}

.hc-footer p {
  margin: 4px 0 0;
  line-height: 1.65;
}

.hc-mobile-cta {
  display: none;
}

.homecare-brand-page a:focus-visible,
.homecare-brand-page summary:focus-visible {
  outline: 3px solid rgba(40, 194, 164, .46);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .hc-hero-copy,
  .hc-quick-card,
  .hc-promise {
    animation: hc-rise .65s ease both;
  }

  .hc-quick-card {
    animation-delay: .10s;
  }

  .hc-promise {
    animation-delay: .16s;
  }
}

@keyframes hc-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hc-nav nav {
    gap: 18px;
  }

  .hc-hero,
  .hc-hero-content {
    min-height: 720px;
  }

  .hc-hero-content {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
  }

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

  .hc-search-guides {
    grid-template-columns: 1fr;
  }

  .hc-search-guides nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hc-service-detail,
  .hc-service-detail:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .hc-service-detail:nth-of-type(even) .hc-service-detail-media {
    order: 0;
  }

  .hc-service-detail-media,
  .hc-service-detail-media img {
    min-height: 420px;
    max-height: 420px;
  }

  .hc-service-detail-note {
    grid-template-columns: 1fr auto;
  }

  .hc-service-detail-note strong {
    grid-column: 1 / -1;
  }

  .hc-life {
    grid-template-columns: 1fr;
  }

  .hc-quality {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 84px 16px;
  }

  .hc-quality-grid {
    grid-template-columns: 1fr;
  }

  .hc-quality-grid article {
    min-height: auto;
    padding: 22px;
  }

  .hc-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 84px 16px;
  }

  .hc-life-gallery {
    height: 520px;
  }

  .hc-flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .hc-flow-list li:not(:last-child)::after {
    display: none;
  }

  .hc-about,
  .hc-contact {
    grid-template-columns: 1fr;
  }

  .hc-about {
    width: 100%;
  }

  .hc-footer {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 68px;
  }

  .hc-editorial-grid {
    grid-template-columns: 1fr;
  }

  .hc-editorial-grid article {
    min-height: auto;
  }

  body.homecare-brand-page {
    padding-bottom: 68px;
  }

  .hc-hero-copy,
  .hc-quick-card,
  .hc-promise {
    animation: none;
  }

  .hc-nav {
    min-height: 66px;
    padding: 0 16px;
  }

  .hc-logo {
    gap: 9px;
  }

  .hc-logo img {
    width: 83px;
  }

  .hc-logo span {
    padding-left: 9px;
    font-size: 13px;
  }

  .hc-nav nav > a:not(.hc-nav-cta) {
    display: none;
  }

  .hc-nav nav .hc-nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hc-service-menu summary {
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid var(--hc-line);
    border-radius: 999px;
    font-size: 12px;
  }

  .hc-service-menu-panel {
    position: fixed;
    top: 72px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 92px);
    grid-template-columns: 1fr;
    overflow-y: auto;
    transform: none;
  }

  .hc-service-menu-panel a {
    min-height: 64px;
  }

  .hc-hero {
    min-height: auto;
  }

  .hc-hero-img {
    object-position: 62% center;
  }

  .hc-hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 18, 32, .82) 0%, rgba(7, 18, 32, .88) 56%, rgba(7, 18, 32, .97) 100%);
  }

  .hc-hero-content {
    width: calc(100% - 32px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0 72px;
  }

  .hc-eyebrow {
    margin: 0 0 14px;
    font-size: 10px;
  }

  .hc-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(39px, 11.7vw, 48px);
    line-height: 1.18;
  }

  .hc-hero-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .hc-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 26px;
  }

  .hc-btn {
    width: 100%;
    min-height: 52px;
  }

  .hc-phone-link {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
  }

  .hc-quick-card {
    padding: 26px;
    border-radius: 22px;
  }

  .hc-quick-card h2 {
    font-size: 24px;
  }

  .hc-promise {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin-top: -26px;
    border-radius: 20px;
  }

  .hc-promise > div {
    min-height: 88px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-promise > div:last-child {
    border-bottom: 0;
  }

  .hc-official-facts {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 64px;
    padding: 32px 24px;
    border-radius: 22px;
  }

  .hc-official-facts-grid {
    grid-template-columns: 1fr;
  }

  .hc-official-facts-grid > div {
    min-height: 0;
  }

  .hc-services,
  .hc-flow,
  .hc-editorial,
  .hc-faq,
  .hc-about {
    padding: 84px 16px;
  }

  .hc-heading {
    margin-bottom: 34px;
  }

  .hc-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hc-heading h2,
  .hc-life h2,
  .hc-about h2,
  .hc-contact h2 {
    font-size: 36px;
  }

  .hc-heading > p,
  .hc-heading-split > p {
    font-size: 15px;
    line-height: 1.72;
  }

  .hc-service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hc-service-card {
    border-radius: 20px;
  }

  .hc-service-media {
    height: 210px;
  }

  .hc-service-body {
    padding: 24px;
  }

  .hc-service-body h3 {
    font-size: 25px;
  }

  .hc-service-body p {
    min-height: auto;
  }

  .hc-search-guides {
    margin-top: 24px;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .hc-search-guides nav {
    grid-template-columns: 1fr;
  }

  .hc-search-guides nav a {
    min-height: 68px;
  }

  .hc-inline-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    text-align: center;
  }

  .hc-inline-cta > a {
    justify-content: center;
  }

  .hc-service-details {
    padding: 84px 16px;
  }

  .hc-service-details-heading {
    margin-bottom: 34px;
  }

  .hc-service-detail {
    min-height: auto;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .hc-service-detail-media,
  .hc-service-detail-media img {
    min-height: 260px;
    max-height: 260px;
  }

  .hc-service-detail-copy {
    padding: 28px 22px 30px;
  }

  .hc-service-detail-copy h3 {
    font-size: 31px;
  }

  .hc-service-detail-copy > p {
    font-size: 15px;
  }

  .hc-detail-columns {
    grid-template-columns: 1fr;
  }

  .hc-detail-price {
    padding: 20px;
  }

  .hc-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hc-service-detail-note {
    grid-template-columns: 1fr;
    padding: 26px 22px;
    text-align: left;
  }

  .hc-service-detail-note strong {
    grid-column: auto;
  }

  .hc-service-detail-note a {
    justify-content: center;
  }

  .hc-life {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 84px 16px;
  }

  .hc-life-copy > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hc-life-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px;
  }

  .hc-life-gallery .hc-life-tall {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hc-flow .hc-heading {
    text-align: left;
  }

  .hc-flow .hc-heading p {
    margin-left: 0;
  }

  .hc-flow-list {
    grid-template-columns: 1fr;
  }

  .hc-flow-list li {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0 14px;
    padding: 22px;
  }

  .hc-flow-list > li > span {
    grid-row: 1;
    font-size: 30px;
  }

  .hc-flow-list li > div {
    grid-column: 2;
    grid-row: 1;
  }

  .hc-flow-note {
    text-align: left;
    line-height: 1.6;
  }

  .hc-about {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hc-about-cards article {
    grid-template-columns: 36px 1fr;
    padding: 22px;
  }

  .hc-company-details {
    grid-column: auto;
  }

  .hc-company-details > div {
    grid-template-columns: 1fr;
  }

  .hc-company-details nav {
    grid-column: auto;
    flex-direction: column;
  }

  .hc-faq .hc-heading {
    text-align: left;
  }

  .hc-faq-list summary {
    min-height: 74px;
    padding: 20px 42px 20px 0;
  }

  .hc-faq-list h3 {
    font-size: 17px;
  }

  .hc-faq-list details > p {
    padding: 0 34px 24px 0;
    font-size: 14px;
  }

  .hc-contact {
    width: calc(100% - 32px);
    gap: 38px;
    margin: 64px auto;
    padding: 42px 24px 28px;
    border-radius: 24px;
  }

  .hc-contact > div > p {
    font-size: 15px;
  }

  .hc-contact aside {
    padding: 22px;
  }

  .hc-footer {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
    padding: 48px 22px;
  }

  .hc-footer-brand {
    grid-column: 1 / -1;
  }

  .hc-footer-policy {
    grid-column: 1 / -1;
  }

  .hc-mobile-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--hc-line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 30px rgba(17, 34, 56, .12);
    backdrop-filter: blur(14px);
  }

  .hc-mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--hc-ink);
    background: var(--hc-cream);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .hc-mobile-cta a:last-child {
    background: #fee500;
  }
}

@media (max-width: 390px) {
  .hc-logo span {
    display: none;
  }

  .hc-life-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 180px 180px;
  }

  .hc-life-gallery .hc-life-tall {
    grid-column: 1;
  }

  .hc-footer {
    grid-template-columns: 1fr;
  }

  .hc-footer-brand,
  .hc-footer-policy {
    grid-column: auto;
  }
}

.hc-apartment-finder {
  padding: clamp(88px, 10vw, 148px) clamp(24px, 5vw, 76px);
  background:
    radial-gradient(circle at 86% 12%, rgba(8, 125, 107, .11), transparent 28%),
    #f4f7f5;
}

.hc-apartment-finder-inner {
  width: min(1360px, 100%);
  margin: 0 auto;
}

.hc-apartment-finder-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.hc-apartment-finder-heading h2 {
  margin-bottom: 0;
  color: var(--hc-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.hc-apartment-finder-heading > div > p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 16px;
  line-height: 1.8;
}

.hc-apartment-finder-heading > div > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--hc-emerald);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.hc-apartment-finder-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.hc-apartment-finder-stats div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border: 1px solid var(--hc-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
}

.hc-apartment-finder-stats span {
  margin-bottom: 6px;
  color: var(--hc-muted);
  font-size: 12px;
  font-weight: 700;
}

.hc-apartment-finder-stats strong {
  color: var(--hc-ink);
  font-size: 20px;
}

.hc-apartment-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 260px) auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(17, 34, 56, .1);
  border-radius: 22px;
  background: var(--hc-ink);
  box-shadow: 0 18px 50px rgba(17, 34, 56, .12);
}

.hc-apartment-controls label {
  display: grid;
  gap: 7px;
}

.hc-apartment-controls label span {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hc-apartment-controls input,
.hc-apartment-controls select,
.hc-apartment-controls button {
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  font: inherit;
}

.hc-apartment-controls input,
.hc-apartment-controls select {
  width: 100%;
  padding: 0 15px;
  color: var(--hc-ink);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hc-apartment-controls button {
  align-self: end;
  padding: 0 20px;
  cursor: pointer;
  color: #132015;
  background: #fee45f;
  font-size: 14px;
  font-weight: 800;
}

.hc-apartment-controls :focus-visible {
  outline: 3px solid rgba(254, 228, 95, .7);
  outline-offset: 2px;
}

.hc-apartment-status {
  min-height: 24px;
  margin: 16px 2px;
  color: var(--hc-muted);
  font-size: 13px;
  font-weight: 700;
}

.hc-apartment-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hc-apartment-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--hc-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 34, 56, .06);
}

.hc-apartment-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--hc-emerald);
  font-size: 11px;
  font-weight: 800;
}

.hc-apartment-card-meta small {
  color: var(--hc-muted);
  font-size: 11px;
  font-weight: 700;
}

.hc-apartment-card h3 {
  margin-bottom: 12px;
  color: var(--hc-ink);
  font-size: 22px;
  line-height: 1.38;
  letter-spacing: -.035em;
}

.hc-apartment-schedule {
  margin-bottom: 8px;
  color: var(--hc-text);
  font-size: 13px;
  font-weight: 800;
}

.hc-apartment-disclosure {
  margin-bottom: 18px;
  color: var(--hc-muted);
  font-size: 13px;
  line-height: 1.65;
}

.hc-apartment-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.hc-apartment-card-links a,
.hc-apartment-empty > a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--hc-ink);
  background: var(--hc-cream);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.hc-apartment-card-links a:first-child {
  color: #fff;
  background: var(--hc-emerald);
}

.hc-apartment-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px;
  border: 1px dashed rgba(17, 34, 56, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
}

.hc-apartment-empty strong {
  margin-bottom: 8px;
  color: var(--hc-ink);
  font-size: 20px;
}

.hc-apartment-empty p {
  max-width: 680px;
  color: var(--hc-muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .hc-apartment-finder-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hc-apartment-finder-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hc-apartment-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hc-apartment-finder {
    padding: 82px 16px;
  }

  .hc-apartment-finder-heading h2 {
    font-size: 36px;
  }

  .hc-apartment-finder-stats {
    gap: 8px;
  }

  .hc-apartment-finder-stats div {
    min-height: 86px;
    padding: 15px;
  }

  .hc-apartment-finder-stats strong {
    font-size: 17px;
  }

  .hc-apartment-controls {
    grid-template-columns: 1fr 1fr;
  }

  .hc-apartment-controls label:first-child {
    grid-column: 1 / -1;
  }

  .hc-apartment-results {
    grid-template-columns: 1fr;
  }

  .hc-apartment-card {
    min-height: 254px;
    padding: 21px;
  }
}
