:root {
  --gy-bg: #fbf8f3;
  --gy-bg-2: #f4efe7;
  --gy-paper: #ffffff;
  --gy-ink: #2f3f3d;
  --gy-muted: rgba(47, 63, 61, 0.74);

  --gy-sage: #dbe8de;
  --gy-blue: #dbe7ef;
  --gy-gold: #eadfb6;
  --gy-peach: #efd9cd;
  --gy-rose: #e8d8d8;
  --gy-teal: #6f9f99;
  --gy-line: rgba(47, 63, 61, 0.1);

  --gy-shadow: 0 18px 48px rgba(72, 80, 67, 0.09);
  --gy-shadow-soft: 0 10px 24px rgba(72, 80, 67, 0.06);

  --gy-radius-xl: 34px;
  --gy-radius-lg: 28px;
  --gy-radius-md: 20px;
  --gy-radius-sm: 14px;

  --gy-max: 1280px;
  --gy-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --gy-font:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --gy-display: "Cormorant Garamond", Georgia, serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.golden-years-page {
  font-family: var(--gy-font);
  color: var(--gy-ink);
  background:
    radial-gradient(
      circle at 12% 14%,
      rgba(219, 232, 222, 0.72),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(232, 216, 216, 0.6),
      transparent 20%
    ),
    radial-gradient(
      circle at 50% 85%,
      rgba(234, 223, 182, 0.32),
      transparent 26%
    ),
    linear-gradient(180deg, #fffdfa 0%, var(--gy-bg) 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.gy-page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gy-page-glow__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.42;
  animation: gyPageFloat 16s ease-in-out infinite;
}

.gy-page-glow__orb--one {
  width: 260px;
  height: 260px;
  top: 120px;
  left: -80px;
  background: rgba(219, 232, 222, 0.9);
}

.gy-page-glow__orb--two {
  width: 220px;
  height: 220px;
  top: 240px;
  right: -70px;
  background: rgba(232, 216, 216, 0.9);
  animation-delay: 2s;
}

.gy-page-glow__orb--three {
  width: 240px;
  height: 240px;
  top: 980px;
  left: 10%;
  background: rgba(234, 223, 182, 0.75);
  animation-delay: 4s;
}

.gy-page-glow__orb--four {
  width: 260px;
  height: 260px;
  top: 1700px;
  right: 8%;
  background: rgba(219, 231, 239, 0.8);
  animation-delay: 6s;
}

@keyframes gyPageFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-14px) translateX(8px);
  }
}

.gy-topbar,
main,
.gy-footer,
.gy-hero,
.gy-intro,
.gy-mission,
.gy-benefits,
.gy-approach,
.gy-caregivers,
.gy-cta {
  position: relative;
  z-index: 1;
}

.gy-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(47, 63, 61, 0.54);
}

.gy-section-title {
  margin: 0;
  font-family: var(--gy-display);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--gy-ink);
}

/* topbar */
.gy-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gy-line);
}

.gy-topbar__inner {
  width: min(var(--gy-max), 94vw);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gy-brand img {
  width: auto;
  height: 88px;
}

.gy-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gy-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(47, 63, 61, 0.84);
  transition:
    transform 180ms var(--gy-ease),
    background 180ms var(--gy-ease);
}

.gy-menu a:hover {
  transform: translateY(-1px);
  background: rgba(111, 159, 153, 0.12);
}

.gy-menu__cta {
  background: var(--gy-teal);
  color: #fff !important;
}

.gy-menu__cta:hover {
  background: #618f89 !important;
}

.gy-burger,
.gy-mobile-overlay {
  display: none;
}

.gy-burger {
  width: 52px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--gy-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gy-shadow-soft);
  cursor: pointer;
  position: relative;
}

.gy-burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: rgba(47, 63, 61, 0.92);
  border-radius: 999px;
  transition:
    transform 0.22s var(--gy-ease),
    top 0.22s var(--gy-ease),
    opacity 0.2s var(--gy-ease);
}

.gy-burger span:nth-child(1) {
  top: 13px;
}
.gy-burger span:nth-child(2) {
  top: 21px;
}
.gy-burger span:nth-child(3) {
  top: 29px;
}

.gy-burger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.gy-burger.open span:nth-child(2) {
  opacity: 0;
}
.gy-burger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.gy-mobile-overlay {
  position: fixed;
  inset: 84px 0 0 0;
  z-index: 300;
  background: rgba(47, 63, 61, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s var(--gy-ease),
    transform 0.22s var(--gy-ease);
}

.gy-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gy-mobile-panel {
  height: calc(100dvh - 84px);
  display: grid;
  place-items: center;
  padding: 18px 16px;
}

.gy-mobile-nav {
  width: min(560px, 92vw);
  display: grid;
  gap: 14px;
}

.gy-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 18px;
  padding: 16px 18px;
  color: rgba(246, 244, 243, 0.95);
  font-family: var(--icta-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.6;
}

.gy-mobile-link--cta {
  background: var(--gy-teal);
  color: #fff;
}

/* buttons */
.gy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition:
    transform 180ms var(--gy-ease),
    background 180ms var(--gy-ease),
    color 180ms var(--gy-ease);
}

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

.gy-btn--primary {
  background: var(--gy-teal);
  color: #fff;
  box-shadow: 0 12px 24px rgba(111, 159, 153, 0.22);
}

.gy-btn--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--gy-ink);
  border: 1px solid var(--gy-line);
}

/* hero */
.gy-hero {
  padding: clamp(46px, 7vw, 100px) 0 clamp(58px, 8vw, 110px);
  overflow: hidden;
}

.gy-hero__inner {
  width: min(var(--gy-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.gy-hero__title {
  margin: 0 0 20px;
  max-width: 11ch;
  font-family: var(--gy-display);
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.gy-hero__title span {
  color: #7d8f7b;
}

.gy-hero__text {
  margin: 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.9;
  color: var(--gy-muted);
}

.gy-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gy-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gy-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gy-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--gy-line);
}

.gy-hero__visual {
  position: relative;
  min-height: 640px;
}

.gy-hero__image-wrap {
  position: absolute;
  width: 800px;
  /* inset: 52px 38px 60px 38px; */
  overflow: hidden;
}

.gy-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gy-hero__card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 16px 18px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--gy-shadow-soft);
  border: 1px solid var(--gy-line);
}

.gy-hero__card strong {
  font-size: 18px;
  line-height: 1.1;
}

.gy-hero__card span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gy-muted);
}

.gy-hero__card--one {
  left: 0;
  top: 10px;
  background: rgba(234, 223, 182, 0.92);
}

.gy-hero__card--two {
  right: 0;
  top: 88px;
  background: rgba(219, 232, 222, 0.94);
}

.gy-hero__card--three {
  right: 18px;
  bottom: 0;
  background: rgba(219, 231, 239, 0.94);
}

/* intro */
.gy-intro,
.gy-mission,
.gy-benefits,
.gy-approach,
.gy-caregivers,
.gy-cta {
  padding: clamp(42px, 6vw, 96px) 0;
}

.gy-intro__inner,
.gy-mission__inner,
.gy-approach__inner,
.gy-caregivers__inner {
  width: min(var(--gy-max), 94vw);
  margin: 0 auto;
}

.gy-intro__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.gy-intro__right {
  display: grid;
  gap: 22px;
}

.gy-info-card,
.gy-mission-card,
.gy-benefit-card,
.gy-approach-card,
.gy-caregivers__quote {
  border: 1px solid var(--gy-line);
  box-shadow: var(--gy-shadow-soft);
}

.gy-info-card {
  padding: 28px 28px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
}

.gy-info-card--warm {
  background:
    linear-gradient(
      135deg,
      rgba(239, 217, 205, 0.42),
      rgba(219, 232, 222, 0.34)
    ),
    rgba(255, 255, 255, 0.88);
}

.gy-info-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.08;
  font-family: var(--gy-display);
}

.gy-info-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--gy-muted);
}

.gy-info-card p:last-child {
  margin-bottom: 0;
}

/* mission */
.gy-mission__inner {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gy-mission__content p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--gy-muted);
}

.gy-mission__grid {
  display: grid;
  gap: 18px;
}

.gy-mission-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.gy-mission-card:nth-child(1) {
  background: rgba(219, 232, 222, 0.82);
}
.gy-mission-card:nth-child(2) {
  background: rgba(219, 231, 239, 0.82);
}
.gy-mission-card:nth-child(3) {
  background: rgba(239, 217, 205, 0.78);
}
.gy-mission-card:nth-child(4) {
  background: rgba(234, 223, 182, 0.74);
}

.gy-mission-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.08;
  font-family: var(--gy-display);
}

.gy-mission-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gy-muted);
}

/* benefits */
.gy-benefits__inner,
.gy-cta__inner {
  width: min(var(--gy-max), 94vw);
  margin: 0 auto;
}

.gy-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.gy-benefit-card {
  padding: 24px 22px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.gy-benefit-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.06;
  font-family: var(--gy-display);
}

.gy-benefit-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gy-muted);
}

.gy-benefit-card li {
  margin: 0 0 10px;
  line-height: 1.8;
  font-size: 15px;
}

/* approach */
.gy-approach__inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gy-approach__left p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--gy-muted);
}

.gy-approach__right {
  display: grid;
  gap: 18px;
}

.gy-approach-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.gy-approach-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.08;
  font-family: var(--gy-display);
}

.gy-approach-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gy-muted);
}

/* caregivers */
.gy-caregivers__inner {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.gy-caregivers__content p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--gy-muted);
}

.gy-caregivers__panel {
  display: grid;
}

.gy-caregivers__quote {
  padding: 34px 30px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(219, 231, 239, 0.72),
      rgba(255, 255, 255, 0.92)
    ),
    #fff;
}

.gy-caregivers__quote p {
  margin: 0;
  font-family: var(--gy-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  color: var(--gy-ink);
}

/* cta */
.gy-cta__inner {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 36px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(219, 232, 222, 0.62),
      rgba(219, 231, 239, 0.72)
    ),
    rgba(255, 255, 255, 0.92);
  border: 1px solid var(--gy-line);
  box-shadow: var(--gy-shadow);
}

.gy-cta__lead {
  margin: 18px auto 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.95;
  color: var(--gy-muted);
}

.gy-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* footer */
.gy-footer {
  padding: 30px 0 42px;
  background: rgba(47, 63, 61, 0.98);
  color: rgba(255, 255, 255, 0.92);
}

.gy-footer__inner {
  width: min(var(--gy-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.gy-footer__brand img {
  width: auto;
  height: 84px;
  margin-bottom: 14px;
}

.gy-footer__brand p,
.gy-footer__contact span,
.gy-footer__contact a,
.gy-footer__links a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.gy-footer__links,
.gy-footer__contact {
  display: grid;
  gap: 8px;
}

.gy-footer__links a:hover,
.gy-footer__contact a:hover {
  color: #fff;
}

/* responsive */
@media (max-width: 1100px) {
  .gy-hero__inner,
  .gy-intro__inner,
  .gy-mission__inner,
  .gy-approach__inner,
  .gy-caregivers__inner {
    grid-template-columns: 1fr;
  }

  .gy-benefits__grid {
    grid-template-columns: 1fr;
  }

  .gy-hero__visual {
    min-height: 540px;
  }

  .gy-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .gy-menu {
    display: none;
  }

  .gy-burger,
  .gy-mobile-overlay {
    display: block;
  }
}

@media (max-width: 760px) {
  .gy-topbar__inner {
    min-height: 76px;
  }

  .gy-brand img {
    height: 58px;
  }

  .gy-mobile-overlay {
    inset: 76px 0 0 0;
  }

  .gy-mobile-panel {
    height: calc(100dvh - 76px);
  }

  .gy-section-title,
  .gy-hero__title {
    font-size: clamp(42px, 13vw, 64px);
  }

  .gy-hero__visual {
    min-height: 440px;
  }

  .gy-hero__image-wrap {
    inset: 28px 10px 90px 10px;
  }

  .gy-hero__card {
    padding: 12px 14px;
  }

  .gy-hero__card--one {
    left: 0;
    top: 0;
  }

  .gy-hero__card--two {
    right: 0;
    top: 56px;
  }

  .gy-hero__card--three {
    right: 10px;
    bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
