:root {
  --navy: #102d6a;
  --navy-deep: #0a2152;
  --blue: #2d76dd;
  --powder: #dbe9ff;
  --gold: #bb8f53;
  --gold-soft: #e6cfaa;
  --cream: #fbf6f0;
  --ivory: #fffdfa;
  --text: #2c4361;
  --text-soft: rgba(44, 67, 97, 0.78);
  --line: rgba(16, 45, 106, 0.09);
  --shadow: 0 28px 70px rgba(58, 64, 78, 0.14);
  --shadow-soft: 0 18px 40px rgba(79, 76, 70, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --duration: 10s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 225, 200, 0.68), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(255, 241, 220, 0.7), transparent 24%),
    linear-gradient(135deg, #fffefb 0%, #fffaf4 42%, #f7f2ec 100%);
}

body.intro-active {
  overflow: hidden;
}

body.no-intro {
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1680px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 143, 83, 0.2);
  background: rgba(255, 255, 255, 0.66);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-heading h2,
.hero-copy-card h1,
.story-copy h2,
.contact-copy h2 {
  margin: 0.85rem 0 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4.3vw, 4rem);
}

.section-heading p,
.hero-copy-card p,
.story-copy p,
.contact-copy p,
.resource-card p,
.feature-card p,
.product-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  border-color: rgba(16, 45, 106, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 30;
  padding: 1rem;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 234, 204, 0.48), transparent 38%),
    radial-gradient(circle at 80% 14%, rgba(255, 242, 218, 0.52), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fffdf9 46%, #faf7f2 100%);
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  pointer-events: none;
}

.intro-stage {
  position: relative;
  width: min(100%, 1540px);
  min-height: calc(100vh - 2rem);
  margin-inline: auto;
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 253, 249, 0.84)),
    radial-gradient(circle at 22% 16%, rgba(255, 230, 196, 0.76), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(255, 245, 230, 0.86), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #fffefb 46%, #faf6f0 100%);
  box-shadow: var(--shadow);
}

.ambient,
.glow,
.connection-bloom {
  position: absolute;
  pointer-events: none;
}

.ambient {
  filter: blur(30px);
  opacity: 0.72;
}

.ambient-left {
  inset: 12% auto auto 0;
  width: 30vw;
  height: 42vh;
  background: radial-gradient(circle, rgba(255, 215, 172, 0.88), transparent 72%);
  animation: drift 11s ease-in-out infinite alternate;
}

.ambient-right {
  inset: 20% 0 auto auto;
  width: 35vw;
  height: 38vh;
  background: radial-gradient(circle, rgba(255, 232, 194, 0.82), transparent 68%);
  animation: drift 9s ease-in-out infinite alternate-reverse;
}

.ambient-top {
  inset: 0 18% auto auto;
  width: 30vw;
  height: 28vh;
  background: radial-gradient(circle, rgba(255, 249, 238, 1), transparent 74%);
}

.glow-left {
  inset: auto auto 13% 12%;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(255, 229, 196, 0.82), transparent 72%);
}

.glow-right {
  inset: 10% 8% auto auto;
  width: 13rem;
  height: 13rem;
  background: radial-gradient(circle, rgba(255, 242, 218, 0.88), transparent 72%);
}

.intro-logo-wrap {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  opacity: 0;
  animation: introLogoReveal var(--duration) ease-out both;
}

.intro-logo-img {
  width: clamp(200px, 28vw, 360px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.intro-hands {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90vw, 1100px);
  z-index: 2;
  mix-blend-mode: multiply;
  opacity: 0;
  animation: introHandsReveal var(--duration) ease-out both;
}

.intro-hands-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.connection-bloom {
  left: 49%;
  bottom: 20%;
  width: 22rem;
  height: 22rem;
  transform: translateX(-50%) scale(0.3);
  background: radial-gradient(circle, rgba(255, 252, 238, 1), rgba(255, 225, 155, 0.68), rgba(186, 141, 81, 0.16), transparent 70%);
  filter: blur(26px);
  opacity: 0;
  animation: connectionGlow var(--duration) ease-out both;
}

.ribbons {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 34%;
  opacity: 0.96;
}

.ribbon-back {
  fill: rgba(45, 118, 221, 0.20);
  animation: ribbonWaveBack 9s ease-in-out infinite alternate;
}

.ribbon-mid {
  fill: rgba(45, 118, 221, 0.28);
  animation: ribbonWaveMid 8s ease-in-out infinite alternate-reverse;
}

.ribbon-front {
  fill: rgba(45, 118, 221, 0.15);
  animation: ribbonWaveFront 7s ease-in-out infinite alternate;
}

.brand-reveal {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(50vw, 480px);
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  text-align: center;
  opacity: 0;
  z-index: 5;
  animation: brandReveal var(--duration) ease-out both;
}

.brand-mark {
  width: clamp(240px, 32vw, 400px);
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-name,
.tagline {
  font-family: "Cormorant Garamond", serif;
}

.brand-name {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-name span {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.45em;
  letter-spacing: 0.36em;
}

.brand-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(184, 138, 72, 0.9);
}

.brand-divider span {
  width: 5.5rem;
  height: 1px;
  background: rgba(184, 138, 72, 0.4);
}

.brand-divider i {
  font-style: normal;
  font-size: 1.8rem;
}

.tagline {
  margin: 0.15rem 0 0;
  max-width: 18ch;
  color: rgba(21, 44, 87, 0.92);
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.18;
}

.sound-toggle,
.replay-button,
.enter-button {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(16, 45, 106, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.sound-toggle:hover,
.replay-button:hover,
.enter-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 45, 106, 0.24);
}

.sound-toggle {
  top: 1.5rem;
  right: 1.5rem;
}

.replay-button {
  right: 10.5rem;
  bottom: 1.5rem;
}

.enter-button {
  right: 1.5rem;
  bottom: 1.5rem;
}

.intro-screen.intro-run .intro-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.42) 48%, transparent 60%);
  animation: lightSweep var(--duration) ease-in-out both;
  mix-blend-mode: screen;
  pointer-events: none;
}

.site-shell {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.site-shell.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 252, 247, 0.82);
  border-bottom: 1px solid rgba(16, 45, 106, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.4rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy);
}

.logo-mark {
  width: 54px;
  display: inline-flex;
}

.logo-mark svg,
.logo-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-header .logo-img {
  width: 160px;
  height: 54px;
  object-fit: contain;
}

.logo-img-footer {
  background: #fbf6f0;
  border-radius: 12px;
  padding: 8px 14px;
}

.logo-text {
  display: grid;
}

.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.logo-text small {
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--navy);
  flex: 1;
  justify-content: center;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-chevron {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
}

.nav-contact {
  color: var(--gold) !important;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem;
  border-radius: 10px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, color 150ms ease;
}

.header-icon-btn:hover {
  background: rgba(16, 45, 106, 0.07);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(16, 45, 106, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 45, 106, 0.24);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 260ms ease, opacity 260ms ease;
  transform-origin: center;
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 3px;
}

.page-shell {
  padding-top: 2rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  padding: 2rem 0 3rem;
  align-items: stretch;
}

.about-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 0;
  margin: 0 0 2.5rem;
  overflow: hidden;
  background: #fff;
  min-height: 320px;
  width: 100%;
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 2.5rem 3rem 2.5rem clamp(1.5rem, 5vw, 6rem);
  background: #fff;
}

.about-hero-logo {
  margin-bottom: 0.4rem;
}

.about-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.about-hero-copy h1 {
  margin: 0.2rem 0 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-hero-copy .hero-accent {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
}

.about-hero-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.72;
  max-width: 34ch;
}

.about-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-trust-strip {
  padding: 2.5rem 0 3rem;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(16, 45, 106, 0.07);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.8rem 1.6rem;
  border-right: 1px solid rgba(16, 45, 106, 0.07);
}

.about-trust-item:last-child {
  border-right: none;
}

.about-trust-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  flex-shrink: 0;
}

.about-trust-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  stroke-width: 1.6;
}

.about-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-trust-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.about-trust-copy span {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.about-values {
  padding: 3.5rem 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.about-value-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(230, 207, 170, 0.22);
  border: 1px solid rgba(187, 143, 83, 0.18);
}

.about-value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  stroke-width: 1.5;
}

.about-value-copy h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-value-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.page-hero-copy,
.page-hero-visual {
  border-radius: 0;
}

.page-hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.page-hero-copy h1 {
  margin: 0.85rem 0 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.page-hero-copy h1 span {
  color: var(--gold);
}

.page-hero-copy p {
  color: var(--text-soft);
  line-height: 1.8;
}

.page-hero-visual {
  min-height: 330px;
}

.resource-hero-filled {
  background: #f3e6d7;
  overflow: hidden;
  height: 320px;
}

.resource-hero-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-hero-copy {
  justify-content: center;
}

.resources-hero-shell {
  gap: 0;
  padding: 0;
  border-radius: 0;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.resources-hero-shell .page-hero-copy,
.resources-hero-shell .page-hero-visual {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.resources-hero-shell .page-hero-copy {
  padding: clamp(2rem, 4vw, 4rem) 2.5rem clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem);
}

.resources-hero-copy h1 {
  font-size: clamp(1.95rem, 3.2vw, 3.15rem);
  line-height: 0.96;
  max-width: 11ch;
  letter-spacing: -0.025em;
}

.resources-hero-copy h1 span {
  display: inline-block;
  color: var(--gold);
}

.resources-hero-copy p {
  max-width: 34rem;
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.65;
  margin-top: 1rem;
}

.resources-hero-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--gold);
}

.resources-hero-accent span {
  width: 3.3rem;
  height: 1px;
  background: rgba(187, 143, 83, 0.55);
}

.resources-hero-accent i {
  font-style: normal;
  font-size: 1.25rem;
}

.visual-scene.products-scene::before,
.visual-scene.about-scene::before,
.visual-scene.resources-scene::before,
.visual-scene.contact-scene::before {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.products-scene::after {
  content: "";
  position: absolute;
  inset: auto 12% 14% 12%;
  height: 40%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 50%, #dcecff 0 16%, transparent 17%),
    radial-gradient(circle at 36% 50%, #ffffff 0 16%, transparent 17%),
    radial-gradient(circle at 58% 50%, #dfeeff 0 16%, transparent 17%),
    radial-gradient(circle at 80% 50%, #b2ccf6 0 16%, transparent 17%);
}

.about-scene::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 9rem;
  height: 9rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 228, 0.96), rgba(255, 222, 155, 0.38), transparent 70%);
  filter: blur(18px);
  opacity: 0.65;
  animation: careConnectionPulse 4s ease-in-out infinite 1s;
  pointer-events: none;
}

.resources-scene::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 22%;
  bottom: 18%;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #fffefb, #f2e4d0);
  box-shadow: 0 18px 40px rgba(70, 61, 51, 0.12);
}

.contact-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 35% 28%, rgba(255, 248, 232, 0.75) 0%, transparent 42%),
    radial-gradient(circle at 72% 62%, rgba(220, 185, 140, 0.45) 0%, transparent 35%),
    radial-gradient(circle at 20% 70%, rgba(240, 215, 175, 0.38) 0%, transparent 30%),
    linear-gradient(150deg, #f5e2c8 0%, #e8c99e 55%, #ddb882 100%);
}

/* Two-figure silhouettes inside the contact scene */
.contact-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background:
    /* elderly seated figure */
    radial-gradient(ellipse 11% 13% at 38% 34%, #e8c8a0 0%, transparent 100%),
    radial-gradient(ellipse 18% 36% at 36% 62%, #d4a978 0%, transparent 100%),
    /* caregiver standing figure */
    radial-gradient(ellipse 10% 12% at 58% 28%, #c8956a 0%, transparent 100%),
    radial-gradient(ellipse 15% 42% at 57% 60%, #102d6a 0%, transparent 100%),
    /* product bag accent */
    radial-gradient(ellipse 12% 18% at 78% 55%, rgba(255,255,255,0.72) 0%, transparent 100%);
  z-index: 1;
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  border-radius: 24px;
  margin-bottom: 2.5rem;
  background: #fdf6ed;
  overflow: hidden;
  min-height: 380px;
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem 3rem 3rem;
  gap: 1rem;
}

.contact-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
}

.contact-hero-copy p {
  color: var(--text-soft);
  line-height: 1.78;
  font-size: 0.95rem;
  margin: 0;
}

.contact-hero-sub {
  font-weight: 600;
  color: var(--navy) !important;
  font-size: 0.9rem !important;
}

.contact-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 340px;
  background: url('../images/contact-us-1-2.jpeg') center center / cover no-repeat;
}

.contact-hero-image::before {
  display: none;
}

.home-hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  min-height: 600px;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  background-image: url('../images/home-bg.png');
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 252, 247, 0.72) 0%,
    rgba(255, 252, 247, 0.18) 45%,
    rgba(255, 252, 247, 0.08) 65%,
    rgba(255, 252, 247, 0.55) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.home-hero .hero-copy-card {
  grid-column: 1 / 6;
}

.home-hero .hero-features-col {
  grid-column: 9 / 13;
}

.hero-features-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-copy-card,
.hero-visual,
.story-copy,
.story-visual,
.contact-copy,
.contact-form {
  border-radius: var(--radius-xl);
}

.hero-copy-card {
  padding: clamp(2rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-copy-card h1 {
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  margin-top: 0;
}

.hero-copy-card h1 span {
  display: block;
  color: var(--gold);
}

.hero-accent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}

.hero-accent span {
  display: block;
  width: 3rem;
  height: 1px;
  background: rgba(187, 143, 83, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 45, 106, 0.08);
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--navy);
  stroke: var(--navy);
}

.hero-visual,
.visual-scene {
  min-height: 620px;
}

.visual-scene {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 18% 14%, rgba(248, 233, 210, 0.92), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255, 243, 226, 0.95), transparent 20%),
    linear-gradient(135deg, #fdf7f0 0%, #f4e5d4 52%, #efdac2 100%);
  box-shadow: var(--shadow);
}

.hero-photo-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}

.scene-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 48%, transparent 100%);
}

.elder-figure,
.caregiver-figure {
  position: absolute;
  border-radius: 999px 999px 70px 70px;
}

.elder-figure {
  left: 20%;
  bottom: 6%;
  width: 34%;
  height: 56%;
  background:
    radial-gradient(circle at 50% 18%, #f7ebe2 0 17%, transparent 18%),
    radial-gradient(circle at 50% 16%, #d9dbe1 0 11%, transparent 12%),
    linear-gradient(180deg, transparent 0 24%, #d8c3a8 24% 100%);
}

.caregiver-figure {
  right: 10%;
  bottom: 8%;
  width: 36%;
  height: 58%;
  background:
    radial-gradient(circle at 52% 16%, #f6d8c3 0 16%, transparent 17%),
    radial-gradient(circle at 52% 11%, #8a6546 0 10%, transparent 11%),
    linear-gradient(180deg, transparent 0 24%, #254c8d 24% 100%);
}

.support-card {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: min(230px, 42%);
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 48px rgba(16, 45, 106, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.support-item + .support-item {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(16, 45, 106, 0.07);
}

.support-item-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 8px;
  background: rgba(45, 118, 221, 0.1);
  color: var(--blue);
  stroke: var(--blue);
  margin-top: 1px;
}

.support-item strong,
.contact-methods strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
}

.support-item span,
.contact-methods span {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.support-card strong,
.contact-methods strong {
  display: block;
  color: var(--navy);
}

.support-card span,
.contact-methods span {
  display: block;
  margin-top: 0.4rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.promise-section {
  position: relative;
  padding: 3.5rem 0;
  background-image: url('../images/Homepage-ourpromise-bg.jpeg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.promise-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 247, 0.42);
  pointer-events: none;
  z-index: 0;
}

.promise-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.promise-heading {
  text-align: center;
  max-width: 600px;
}

.promise-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.promise-heading .section-accent {
  justify-content: center;
  margin: 0.7rem 0 1rem;
}

.promise-heading p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}

.promise-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 860px;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.promise-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 45, 106, 0.1);
  color: var(--navy);
  flex-shrink: 0;
}

.promise-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  stroke-width: 1.5;
}

.promise-item h3 {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.15;
}

.promise-item p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.resources-section {
  padding: 4rem 0;
}

.feature-grid,
.resource-grid,
.product-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

.resource-card,
.product-card,
.contact-form,
.contact-copy {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 45, 106, 0.06);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 1.6rem 1.2rem;
}

.resource-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.section-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.6rem 0 1rem;
  color: var(--gold);
  font-size: 1.1rem;
}

.section-accent span {
  display: block;
  width: 2.8rem;
  height: 1px;
  background: rgba(187, 143, 83, 0.45);
}

.feature-card h3,
.resource-card h3,
.site-footer h3 {
  margin: 0.8rem 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 1.5rem;
}

.product-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}

.icon-badge {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 45, 106, 0.1);
  color: var(--navy);
  font-size: 1.25rem;
}

.icon-badge svg {
  width: 34px;
  height: 34px;
  stroke: var(--navy);
  stroke-width: 1.5;
}

.products-section {
  padding: 2rem 0 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 230, 215, 0.4), transparent 40%),
    linear-gradient(180deg, #faf6f0, #f5f0e8);
}

.product-grid {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  padding: 0;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.1rem 1rem;
}

.product-card-body h3 {
  margin: 0 0 0.4rem;
}

.product-card-body p {
  flex: 1;
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(16, 45, 106, 0.07);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  transition: color 160ms ease;
}

.product-link:hover {
  color: var(--blue);
}

.product-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.product-link:hover .product-arrow {
  background: var(--navy);
  transform: translateX(2px);
}

.product-art {
  height: 220px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(180deg, #fffefc, #eef5ff);
  position: relative;
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 16px 24px rgba(35, 52, 80, 0.08);
}

.art-underpads::before {
  width: 62%;
  height: 32%;
  left: 18%;
  top: 28%;
  border-radius: 10px;
  transform: rotate(-8deg);
  background:
    linear-gradient(135deg, #e5f0ff 0 18%, #fff 18% 82%, #cfe0fb 82% 100%);
}

.art-underpads::after {
  width: 56%;
  height: 30%;
  left: 24%;
  top: 42%;
  border-radius: 10px;
  transform: rotate(4deg);
  background:
    linear-gradient(135deg, #dcecff 0 16%, #fff 16% 84%, #cfe0fb 84% 100%);
}

.art-pullups::before {
  width: 42%;
  height: 52%;
  left: 29%;
  top: 22%;
  border-radius: 48% 48% 30% 30%;
}

.art-pullups::after {
  width: 18%;
  height: 18%;
  left: 41%;
  top: 48%;
  border-radius: 50%;
  background: #eef5ff;
}

.art-diapers::before {
  width: 56%;
  height: 44%;
  left: 22%;
  top: 26%;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff 0 18%, #d6e8ff 18% 25%, #fff 25% 75%, #d6e8ff 75% 82%, #fff 82% 100%);
}

.art-diapers::after {
  width: 34%;
  height: 16%;
  left: 33%;
  top: 58%;
  border-radius: 999px;
  background: #eef5ff;
}

.art-masks::before {
  width: 58%;
  height: 30%;
  left: 21%;
  top: 34%;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #deecff);
}

.art-masks::after {
  width: 70%;
  height: 2px;
  left: 15%;
  top: 50%;
  background: rgba(45, 118, 221, 0.28);
  box-shadow:
    0 -14px 0 rgba(45, 118, 221, 0.28),
    0 14px 0 rgba(45, 118, 221, 0.28);
}

.art-gloves::before {
  width: 30%;
  height: 52%;
  left: 36%;
  top: 22%;
  border-radius: 26px 26px 18px 18px;
  background: linear-gradient(180deg, #d8e8ff, #8eb3ef);
  clip-path: polygon(30% 0, 42% 16%, 52% 0, 62% 18%, 72% 4%, 78% 20%, 82% 100%, 18% 100%, 22% 18%, 28% 4%);
}

.story-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: center;
}

.story-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.story-benefit-list {
  list-style: none;
  margin: 0.4rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.story-benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.story-benefit-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
}

.story-benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 1.6;
}

.story-tagline {
  margin: 0.8rem 0 0.5rem;
}

.story-tagline-navy {
  margin: 0 0 0.15rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

.story-tagline-gold {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.15;
}

.comfort-scene {
  min-height: 470px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 247, 231, 0.94), transparent 22%),
    linear-gradient(135deg, #fbf2e7 0%, #f0dfca 100%);
}

.frame-photo,
.note-card,
.candle {
  position: absolute;
  box-shadow: var(--shadow-soft);
}

.frame-photo {
  left: 1.8rem;
  bottom: 1.8rem;
  width: 42%;
  height: 54%;
  border: 14px solid #a78458;
  border-bottom-width: 22px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 45% 32%, #f0dac2 0 11%, transparent 12%),
    radial-gradient(circle at 60% 29%, #f5d8c4 0 11%, transparent 12%),
    linear-gradient(135deg, #9b7c61 0 18%, transparent 18%),
    linear-gradient(180deg, #f6ead9, #d6b693);
  transform: rotate(-6deg);
}

.note-card {
  left: 42%;
  bottom: 1.9rem;
  width: 33%;
  min-height: 34%;
  border-radius: 16px;
  background: #fffdf9;
  padding: 1.2rem;
  color: var(--navy);
  display: grid;
  align-content: center;
  gap: 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.candle {
  right: 2.2rem;
  bottom: 4.6rem;
  width: 58px;
  height: 82px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 245, 225, 0.96), rgba(233, 211, 180, 0.9));
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 18px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50% 50% 70% 70%;
  background: radial-gradient(circle at 50% 35%, #ffe7a9 0 28%, #f0a24b 45%, transparent 46%);
}

.story-copy {
  padding: 1rem 1rem 1rem 0;
  background: transparent;
  box-shadow: none;
}

.contact-copy {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.story-copy h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.benefit-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

.benefit-list li::before {
  content: "\2661";
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

.resources-layout-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.resource-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 45, 106, 0.06);
  box-shadow: var(--shadow-soft);
}

.resource-panel-wide {
  grid-column: span 12;
}

.resource-media-slot {
  grid-column: span 7;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  border: 2px dashed rgba(16, 45, 106, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 227, 0.88));
  color: rgba(16, 45, 106, 0.52);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow: hidden;
}

.resource-media-filled {
  border-style: solid;
  border-width: 1px;
  border-color: rgba(16, 45, 106, 0.08);
  padding: 0;
  background: #f3e6d7;
}

.resource-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-panel-copy {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resource-panel-copy h3,
.resources-highlight-copy h2 {
  margin: 0.95rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 0.98;
}

.resource-panel-copy h3 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.resource-panel-copy p,
.resources-highlight-copy p {
  color: var(--text-soft);
  line-height: 1.75;
}

.resource-panel-copy a,
.resource-card-grid a {
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.resource-card-grid {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 1.15rem;
  min-width: 0;
  padding: 1.7rem 1.8rem;
}

.resource-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff8ef, #f5ebdc);
  flex-shrink: 0;
}

.resource-card-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card-copy {
  min-width: 0;
}

.resource-card-copy h3 {
  margin: 0.15rem 0 0.45rem;
  font-size: clamp(1.85rem, 2vw, 2.25rem);
  line-height: 1;
}

.resource-card-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 15rem;
}

.resource-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  text-decoration: none;
}

.resource-card-link span {
  font-size: 1.3rem;
  line-height: 1;
}

.resources-highlight {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
  margin-bottom: 3rem;
  border-radius: 0;
  background: #fdf7f0;
  border: 1px solid rgba(187, 143, 83, 0.12);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 360px;
}

.resources-highlight-media {
  position: relative;
  overflow: hidden;
}

.resources-highlight-img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-highlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem 3rem 3rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.resources-highlight-accent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.resources-highlight-accent i {
  font-style: normal;
  font-size: 1.15rem;
}

.resources-highlight-accent span {
  width: 2.5rem;
  height: 1px;
  background: rgba(187, 143, 83, 0.5);
}

.resources-highlight-copy h2 span {
  color: var(--gold);
  display: block;
}

.resources-help-btn {
  align-self: flex-start;
  border-radius: 999px;
  min-height: 44px;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.resources-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 160ms ease;
}

.resources-contact-link:hover {
  color: var(--gold);
}

@media (max-width: 1180px) {
  .resource-card-grid {
    grid-column: span 6;
    padding: 1.55rem 1.5rem;
  }

  .resource-media-slot {
    min-height: 280px;
  }

  .resources-highlight {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-guides {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-top: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(16, 45, 106, 0.08);
  box-shadow: var(--shadow-soft);
}

.featured-guides a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

/* Featured Guides â€” styled card variant (resources page) */
.featured-guides-wrap {
  margin-top: 2rem;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(16, 45, 106, 0.07);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.featured-guides-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.8rem 1.5rem 1.25rem;
  width: 100%;
  text-align: center;
}

.featured-guides-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.featured-guides-heart {
  font-style: normal;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
}

/* Remove the card chrome when inside the wrapper */
.featured-guides-wrap .featured-guides {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(16, 45, 106, 0.08);
}

/* Left-align text and add arrow spacing */
.featured-guides-wrap .featured-guides a {
  justify-content: space-between;
  text-align: left;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  min-height: 64px;
  font-size: 0.82rem;
  background: rgba(255, 252, 247, 0.96);
  transition: background 160ms ease, color 160ms ease;
}

.featured-guides-wrap .featured-guides a:hover {
  background: rgba(255, 248, 238, 1);
  color: var(--gold);
}

.featured-guides-wrap .featured-guides a span {
  flex: 1;
}

.featured-guides-wrap .featured-guides a i {
  font-style: normal;
  font-size: 1.15rem;
  color: var(--navy);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.featured-guides-wrap .featured-guides a:hover i {
  opacity: 0.9;
  color: var(--gold);
  transform: translateX(3px);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  padding: 0 0 4rem;
}

.contact-methods {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-methods div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(16, 45, 106, 0.06);
}

.contact-form {
  padding: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea,
.subscribe-row input {
  width: 100%;
  border: 1px solid rgba(16, 45, 106, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.contact-form textarea {
  min-height: 180px;
  margin-top: 0.8rem;
  resize: vertical;
}

.contact-form > input {
  margin-top: 0.8rem;
}

.contact-form button {
  width: 100%;
  margin-top: 1rem;
}
.contact-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status--ok  { color: #2a7a4b; }
.form-status--err { color: #c0392b; }

.support-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 0 3rem;
}

.support-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.support-card-large,
.faq-panel,
.trust-badge {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 45, 106, 0.06);
  box-shadow: var(--shadow-soft);
}

.support-card-large {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.support-card-large h3,
.faq-panel h2,
.closing-copy h2 {
  margin: 1rem 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
}

.support-card-large h3 {
  font-size: 2.4rem;
}

.support-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #2bbf64, #1c914a);
  flex-shrink: 0;
}

.support-icon svg {
  width: 30px;
  height: 30px;
}

.email-card .support-icon {
  background: rgba(45, 118, 221, 0.1);
  color: var(--blue);
}

.support-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.support-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--text-soft);
}

.support-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(48, 178, 100, 0.15);
  color: #1a7a42;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.support-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whatsapp-button {
  background: linear-gradient(135deg, #2cbc63, #1e9f51);
  color: #fff;
}

.email-button {
  background: var(--navy);
  color: #fff;
}

.support-card-large small {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.whatsapp-card small {
  color: #1e9f51;
}

.faq-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 0 0 3rem;
}

.faq-panel {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.faq-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.faq-list {
  margin-top: 1.25rem;
}

.faq-item {
  border-top: 1px solid rgba(16, 45, 106, 0.08);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq-plus {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.trust-rail {
  display: grid;
  gap: 1rem;
}

.trust-badge {
  padding: 1.25rem 1.2rem;
  border-radius: 22px;
}

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

.trust-badge strong {
  color: var(--navy);
}

.trust-badge span {
  margin-top: 0.35rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.closing-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  background: #fdf6ed;
  border: none;
  box-shadow: none;
  overflow: hidden;
  min-height: 260px;
  width: 100%;
  max-width: 100%;
}

.closing-image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.closing-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
}

.closing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.5rem 2rem 2rem;
  gap: 0.75rem;
}

.closing-copy h2 {
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.closing-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}

.site-footer {
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, #0d2458 0%, #0d2b69 52%, #17397e 100%);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  align-items: start;
}

.footer-logo {
  color: #fff;
}

.site-footer h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.6rem;
}

.site-footer a {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.footer-logo-divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0.9rem 0;
}

.subscribe-row {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 0;
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.subscribe-row input {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  outline: none;
}

.subscribe-row input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscribe-row button {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #d8a65f, #b88442);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

@keyframes elderlyEnter {
  0% {
    opacity: 0;
    transform: translateX(-38%) translateY(14%) rotate(-10deg) scale(0.93);
    filter: blur(4px);
  }
  32% {
    opacity: 1;
    filter: blur(0);
  }
  58% {
    transform: translateX(4%) translateY(2%) rotate(-1.5deg) scale(1.004);
  }
  76% {
    transform: translateX(-1%) translateY(0.5%) rotate(-0.5deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes caregiverEnter {
  0% {
    opacity: 0;
    transform: translateX(38%) translateY(18%) rotate(9deg) scale(0.94);
    filter: blur(4px);
  }
  32% {
    opacity: 1;
    filter: blur(0);
  }
  58% {
    transform: translateX(-5%) translateY(2%) rotate(1.5deg) scale(1.004);
  }
  76% {
    transform: translateX(1%) translateY(0.5%) rotate(0.5deg) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes connectionGlow {
  0%,
  40% {
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
    filter: blur(32px);
  }
  54% {
    opacity: 0.94;
    transform: translateX(-50%) scale(0.84);
    filter: blur(18px);
  }
  68% {
    opacity: 0.72;
    transform: translateX(-50%) scale(1.06);
    filter: blur(22px);
  }
  100% {
    opacity: 0.22;
    transform: translateX(-50%) scale(1.26);
    filter: blur(28px);
  }
}

@keyframes introLogoReveal {
  0%, 30% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.94);
    filter: blur(8px);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes introHandsReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }
  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes brandReveal {
  0%,
  46% {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) scale(0.92);
    filter: blur(14px);
  }
  60% {
    opacity: 0.86;
    transform: translateX(-50%) translateY(8px) scale(0.985);
    filter: blur(3px);
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.008);
    filter: blur(0);
  }
  82% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-35%);
    opacity: 0;
  }
  25% {
    opacity: 0.25;
  }
  70% {
    opacity: 0.48;
  }
  100% {
    transform: translateX(28%);
    opacity: 0;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(20px, -18px, 0) scale(1.06);
  }
}

@keyframes ribbonWaveBack {
  from {
    transform: translateX(-1.6%) translateY(0);
  }
  to {
    transform: translateX(1.2%) translateY(-1.4%);
  }
}

@keyframes ribbonWaveMid {
  from {
    transform: translateX(1.4%) translateY(0.9%);
  }
  to {
    transform: translateX(-1.2%) translateY(-0.8%);
  }
}

@keyframes ribbonWaveFront {
  from {
    transform: translateX(-0.8%) translateY(0.8%);
  }
  to {
    transform: translateX(1%) translateY(-1%);
  }
}

/* About-scene figures â€” entrance + float */
.site-shell.is-visible .about-scene .elder-figure {
  animation:
    figureEnter 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.2s both,
    figureFloat 5.5s ease-in-out infinite alternate 1.3s;
}

.site-shell.is-visible .about-scene .caregiver-figure {
  animation:
    figureEnter 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.4s both,
    figureFloat 6.5s ease-in-out infinite alternate-reverse 1.5s;
}

/* Products scene â€” richer ambient glow */
.products-scene {
  background:
    radial-gradient(circle at 18% 18%, rgba(220, 236, 255, 0.9), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(200, 224, 255, 0.85), transparent 24%),
    linear-gradient(135deg, #eef6ff 0%, #ddeeff 52%, #cde4ff 100%);
}

/* Contact scene â€” warm card depth */
.contact-scene {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 240, 215, 0.88), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 234, 200, 0.82), transparent 24%),
    linear-gradient(135deg, #fdf7f0 0%, #f4e5d2 52%, #edcfb4 100%);
}

/* Scroll-reveal â€” cards and badges animate in as they enter the viewport */
.will-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.will-animate.did-animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .will-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero scene figure animations */
@keyframes figureFloat {
  from { transform: translateY(0px); }
  to   { transform: translateY(-9px); }
}

@keyframes figureEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes careConnectionPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.78; transform: translateX(-50%) scale(1.08); }
}

/* Warm connection glow between figures in care-scene */
.care-scene::after {
  content: "";
  position: absolute;
  left: 54%;
  bottom: 14%;
  width: 9rem;
  height: 9rem;
  transform: translateX(-50%) scale(0.6);
  background: radial-gradient(circle, rgba(255, 246, 225, 0.96), rgba(255, 218, 150, 0.42), transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s ease 0.6s, transform 1.4s ease 0.6s;
}

.site-shell.is-visible .care-scene::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: careConnectionPulse 4s ease-in-out infinite 2s;
}

/* Hero figures: entrance + continuous float when site becomes visible */
.site-shell.is-visible .care-scene .elder-figure {
  animation:
    figureEnter 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.2s both,
    figureFloat 5.5s ease-in-out infinite alternate 1.3s;
}

.site-shell.is-visible .care-scene .caregiver-figure {
  animation:
    figureEnter 1.1s cubic-bezier(0.2, 0.85, 0.2, 1) 0.4s both,
    figureFloat 6.5s ease-in-out infinite alternate-reverse 1.5s;
}

@media (max-width: 1120px) {
  .home-hero,
  .story-section,
  .contact-section,
  .contact-hero,
  .page-hero,
  .promise-layout,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    min-height: 260px;
    order: -1;
  }

  .story-photo {
    min-height: 300px;
  }

  .about-hero-copy {
    padding: 2rem 2rem 2rem 2rem;
  }

  .about-values-grid {
    gap: 2rem 2.5rem;
  }

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

  .about-trust-item:nth-child(2) {
    border-right: none;
  }

  .about-trust-item:nth-child(3) {
    border-top: 1px solid rgba(16, 45, 106, 0.07);
  }

  .about-trust-item:nth-child(4) {
    border-top: 1px solid rgba(16, 45, 106, 0.07);
  }

  .promise-heading {
    text-align: center;
  }

  .promise-heading .section-accent {
    justify-content: center;
  }

  .promise-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-hero .hero-copy-card,
  .home-hero .hero-features-col {
    grid-column: 1 / -1;
  }

  .contact-hero-image {
    min-height: 240px;
  }

  .contact-hero-copy {
    padding: 2rem 1.8rem;
  }

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

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

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

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

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

  .support-cards-row,
  .faq-section,
  .closing-banner,
  .resources-highlight {
    grid-template-columns: 1fr;
  }

  .resource-panel-copy,
  .resource-media-slot,
  .resources-highlight-media,
  .resources-highlight-copy {
    grid-column: span 12;
  }

  .resource-card-grid {
    grid-column: span 6;
  }

  .main-nav {
    justify-content: center;
    gap: 1.2rem;
    flex: 1;
  }
}

@media (max-width: 860px) {
  .resources-hero-shell {
    gap: 1rem;
    padding: 1rem;
  }

  .resources-hero-shell .page-hero-copy {
    padding-right: clamp(2rem, 4vw, 4rem);
  }

  .resource-panel {
    gap: 1rem;
    padding: 1rem;
  }

  .resource-panel-copy,
  .resource-media-slot {
    grid-column: span 12;
  }

  .resources-highlight {
    grid-template-columns: 1fr;
  }

  .resources-highlight-media {
    min-height: 280px;
    position: relative;
  }

  .resources-highlight-copy {
    padding: 2rem 1.5rem;
  }

  .resource-card-grid {
    grid-column: span 12;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 1rem;
  }

  .resource-panel-copy h3 {
    font-size: clamp(1.8rem, 5vw, 2.7rem);
  }

  .resource-media-slot {
    min-height: 240px;
  }

  .resource-media-slot-large {
    min-height: 280px;
  }

  .resources-hero-copy h1 {
    max-width: none;
    font-size: clamp(1.8rem, 5.3vw, 2.6rem);
  }

  .resources-hero-copy p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    position: relative;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(16, 45, 106, 0.08);
    box-shadow: 0 12px 32px rgba(16, 45, 106, 0.10);
    padding: 0.5rem 0 1rem;
    z-index: 20;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(16, 45, 106, 0.05);
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.4rem;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .about-hero-copy {
    padding: 1.8rem 1.5rem;
  }

  .about-values {
    padding: 2.5rem 0;
  }

  .support-card {
    width: calc(100% - 2.8rem);
  }

  .brand-reveal {
    width: min(80vw, 420px);
  }

  .hands-wrap {
    inset: auto -4% 4% -4%;
    height: min(44vh, 420px);
  }

  .hand {
    width: min(72vw, 520px);
  }

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

@media (max-width: 720px) {
  .resources-hero-shell {
    padding: 0.9rem;
    border-radius: 24px;
  }

  .resources-hero-shell .page-hero-copy {
    padding-right: 1.3rem;
  }

  .intro-screen {
    padding: 0.7rem;
  }

  .intro-stage {
    min-height: calc(100vh - 1.4rem);
    border-radius: 28px;
  }

  .brand-reveal {
    inset: 6% 50% auto auto;
    gap: 0.35rem;
  }

  .brand-divider span {
    width: 3.6rem;
  }

  .hands-wrap {
    inset: auto -15% 0 -15%;
    height: 36vh;
  }

  .hand {
    width: 86vw;
  }

  .hand-elderly {
    left: -10%;
    bottom: 12%;
  }

  .hand-caregiver {
    right: -13%;
    bottom: 2%;
  }

  .connection-bloom {
    bottom: 19%;
    width: 12rem;
    height: 12rem;
  }

  .ribbons {
    height: 28%;
  }

  .replay-button,
  .enter-button,
  .sound-toggle {
    font-size: 0.88rem;
  }

  .sound-toggle {
    top: 0.9rem;
    right: 0.9rem;
  }

  .replay-button {
    right: auto;
    left: 0.9rem;
    bottom: 0.9rem;
  }

  .enter-button {
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .container {
    width: calc(100% - 1rem);
  }

  .hero-copy-card,
  .story-copy,
  .contact-copy,
  .contact-form,
  .page-hero-copy,
  .resources-highlight-copy {
    padding: 1.3rem;
  }

  .resources-hero-copy h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
    line-height: 1.02;
  }

  .resources-hero-copy p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .resources-hero-accent span {
    width: 2.2rem;
  }

  .product-grid,
  .resource-grid,
  .footer-grid,
  .form-row,
  .resources-layout-12,
  .promise-items,
  .about-values-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

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

  .about-trust-item {
    border-right: none;
    border-top: 1px solid rgba(16, 45, 106, 0.07);
  }

  .about-trust-item:first-child {
    border-top: none;
  }

  .about-hero-image {
    min-height: 220px;
  }

  .about-hero-copy {
    padding: 1.5rem 1.2rem;
  }

  .about-hero-copy h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .about-value-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .about-value-icon svg {
    width: 22px;
    height: 22px;
  }

  .about-values {
    padding: 2rem 0;
  }

  .resource-card-grid,
  .resource-panel,
  .resource-panel-wide {
    grid-column: span 1;
  }

  .resource-panel {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .resource-card-grid {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 1.2rem;
  }

  .resource-media-slot {
    min-height: 200px;
    border-radius: 18px;
    font-size: 0.78rem;
    text-align: center;
    padding: 1rem;
  }

  .resource-media-slot-large {
    min-height: 220px;
  }

  .resource-card-icon {
    width: 58px;
    height: 58px;
  }

  .resource-card-icon svg {
    width: 31px;
    height: 31px;
  }

  .resource-card-copy h3 {
    font-size: 1.65rem;
  }

  .resource-card-copy p {
    font-size: 0.93rem;
    max-width: none;
  }

  .resource-panel-copy h3,
  .resources-highlight-copy h2 {
    line-height: 1.02;
  }

  .hero-visual,
  .visual-scene,
  .hero-photo-scene,
  .page-hero-visual {
    min-height: 360px;
  }

  .resource-hero-filled {
    min-height: 240px;
  }

  .note-card {
    left: 40%;
    width: 40%;
    font-size: 1.35rem;
  }

  .closing-image {
    min-height: 220px;
  }

  .closing-copy {
    padding: 1.8rem 1.5rem;
  }
}

/* â”€â”€ Product real images â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 0.5rem;
}

/* â”€â”€ Product slider controls (hidden on desktop) â”€â”€â”€â”€â”€â”€â”€ */
.product-slider-controls {
  display: none;
}

/* â”€â”€ Mobile product slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .home-hero {
    background-image: url('../images/home-mobile-bg.jpeg');
    background-position: center center;
  }

  .home-hero .hero-features-col {
    display: none;
  }

  .home-hero .hero-actions {
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }

  .home-hero .hero-actions .button {
    flex: 1;
    font-size: 0.76rem;
    padding: 0.65rem 0.75rem;
    text-align: center;
    white-space: nowrap;
    justify-content: center;
  }

  .home-hero .trust-strip {
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin-top: 1rem;
  }

  .home-hero .trust-strip div {
    flex: 1;
    font-size: 0.68rem;
    padding: 0.4rem 0.45rem;
    gap: 0.25rem;
    justify-content: center;
  }

  .home-hero .trust-strip svg {
    width: 13px;
    height: 13px;
  }

  .product-slider-wrap {
    overflow: hidden;
  }

  .product-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding-bottom: 0.25rem;
    grid-template-columns: unset;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .product-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(16, 45, 106, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 160ms ease, color 160ms ease;
  }

  .slider-btn:hover {
    background: var(--navy);
    color: #fff;
  }

  .slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(16, 45, 106, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 160ms ease, transform 160ms ease;
  }

  .slider-dot.is-active {
    background: var(--navy);
    transform: scale(1.3);
  }
}

/* ════════════════════════════════════════════════
   OUR PROMISE PAGE  (op- prefix)
   ════════════════════════════════════════════════ */

.op-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  padding: 2rem 0;
  align-items: stretch;
}

.op-hero-copy {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem 2.5rem 0;
  gap: 0.6rem;
}

.op-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.op-label {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.op-hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.op-hero-copy h1 span {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.op-hero-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.93rem;
  margin: 0.2rem 0;
}

.op-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.op-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Promises section ── */
.op-promises-section {
  padding: 5rem 0;
  background: #fbf6f0;
}

.op-promises-heading {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.op-heading-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}

.op-heading-rule span {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: rgba(187, 143, 83, 0.4);
}

.op-heading-rule h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin: 0;
  white-space: nowrap;
  font-weight: 600;
}

.op-heading-heart {
  display: block;
  font-style: normal;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.5rem;
}

.op-promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  width: 100%;
}

.op-promise-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.op-promise-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  background: rgba(255, 248, 240, 0.8);
  color: var(--navy);
}

.op-promise-icon svg {
  width: 58px;
  height: 58px;
}

.op-promise-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  margin: 0;
}

.op-promise-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
}

/* ── Story section ── */
.op-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: center;
}

.op-story-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-xl);
}

.op-story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-story-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
}

.op-story-heart {
  font-style: normal;
  font-size: 1.4rem;
  color: var(--gold);
}

.op-story-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.op-story-navy {
  color: var(--navy);
  display: block;
}

.op-story-gold {
  color: var(--gold);
  display: block;
}

.op-story-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.op-story-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.op-story-list li i {
  font-style: normal;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.op-story-tagline {
  margin-top: 0.25rem;
}

.op-story-tagline-navy {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.1rem;
  line-height: 1.15;
}

.op-story-tagline-gold {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin: 0;
  line-height: 1.15;
}

/* ── Thank-you bar ── */
.op-thank-bar {
  background: #0a1f4e;
  padding: 1.4rem 0;
}

.op-thank-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.op-thank-inner > p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.op-thank-divider {
  width: 1px;
  height: 52px;
  background: rgba(187, 143, 83, 0.6);
  flex-shrink: 0;
}

.op-thank-right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  flex-shrink: 0;
}

.op-thank-gold {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
}

.op-thank-right > span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

/* ── Responsive: 860px ── */
@media (max-width: 860px) {
  .op-hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .op-hero-copy {
    padding: 2rem 0;
  }

  .op-hero-image {
    min-height: 300px;
  }

  .op-promises-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .op-heading-rule h2 {
    white-space: normal;
    font-size: clamp(1.5rem, 4vw, 1.9rem);
  }

  .op-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .op-story-copy {
    padding-left: 0;
  }

  .op-thank-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .op-thank-divider {
    display: none;
  }

  .op-thank-right {
    align-items: flex-start;
  }
}

/* ── Responsive: 540px ── */
@media (max-width: 540px) {
  .op-promises-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}