:root {
  --olive: #8a8650;
  --olive-deep: #686b3b;
  --sage: #bfc88e;
  --sage-pale: #eef3df;
  --sage-soft: #dce6bf;
  --tiffany: #7fc7b3;
  --tiffany-pale: #dff3ed;
  --blush: #e9a7a0;
  --blush-pale: #fae6e2;
  --champagne: #d7c299;
  --champagne-pale: #f6ead0;
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --ink: #596149;
  --muted: #7a806e;
  --line: rgba(138, 134, 80, 0.18);
  --shadow: 0 18px 54px rgba(129, 112, 74, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(250, 230, 226, 0.76) 31%, rgba(246, 234, 208, 0.78) 64%, rgba(238, 243, 223, 0.78)),
    var(--cream);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid rgba(138, 134, 80, 0.14);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(230px, 24vw, 330px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.56);
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--olive-deep);
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(215, 194, 153, 0.3);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--olive-deep);
  border: 1px solid rgba(138, 134, 80, 0.2);
  background: linear-gradient(135deg, rgba(250, 230, 226, 0.92), rgba(246, 234, 208, 0.9));
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(129, 112, 74, 0.12);
}

.section-phone {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 22px;
  border: 1px solid rgba(215, 194, 153, 0.58);
  border-radius: 999px;
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(246, 234, 208, 0.7));
  box-shadow: 0 14px 34px rgba(129, 112, 74, 0.11);
  font-weight: 600;
}

.section-band,
.section-grid,
.feature-band,
.values-section,
.outcomes-section,
.director-section,
.team-section,
.referral-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(44px, 7vw, 90px) 0 50px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.16;
  color: var(--olive-deep);
}

h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 4.8vw, 4.65rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(1.9rem, 2.85vw, 2.85rem);
}

h3 {
  margin: 0;
  color: var(--olive-deep);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.34;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 400;
  line-height: 1.75;
}

.section-heading .eyebrow,
.feature-copy .eyebrow,
.outcomes-copy .eyebrow,
.team-copy .eyebrow,
.referral-section .eyebrow {
  margin-bottom: 18px;
}

.feature-copy h2,
.outcomes-copy h2,
.team-copy h2,
.referral-section h2 {
  max-width: 680px;
  font-size: clamp(1.85rem, 2.55vw, 2.65rem);
  line-height: 1.24;
}

.feature-copy p,
.outcomes-copy p,
.team-copy p,
.referral-section p {
  max-width: 620px;
}

.feature-copy h2 + p,
.outcomes-copy h2 + p,
.team-copy h2 + p,
.referral-section h2 + p {
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.primary-button {
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(233, 167, 160, 0.72), rgba(215, 194, 153, 0.86));
  box-shadow: 0 16px 36px rgba(129, 112, 74, 0.16);
}

.secondary-button {
  color: var(--olive-deep);
  border: 1px solid rgba(138, 134, 80, 0.2);
  background: rgba(255, 253, 248, 0.62);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 11% 9% 3%;
  border-radius: 48% 52% 44% 56%;
  background:
    linear-gradient(135deg, rgba(250, 230, 226, 0.84), rgba(255, 253, 248, 0.24) 48%),
    linear-gradient(155deg, rgba(246, 234, 208, 0.86), rgba(238, 243, 223, 0.7));
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  width: 82%;
  height: 470px;
  margin-top: 28px;
  margin-left: auto;
  object-fit: cover;
  border: 12px solid rgba(255, 253, 248, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(215, 194, 153, 0.34);
  border-radius: 8px;
  background: rgba(215, 194, 153, 0.2);
  box-shadow: 0 16px 48px rgba(129, 112, 74, 0.07);
}

.intro-strip div {
  min-height: 148px;
  padding: 24px;
  background: linear-gradient(150deg, rgba(255, 253, 248, 0.9), rgba(238, 243, 223, 0.48));
}

.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--olive-deep);
  font-size: 1.08rem;
  font-weight: 600;
}

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

.intro-strip .cqc-strip {
  background: linear-gradient(145deg, rgba(250, 230, 226, 0.78), rgba(255, 253, 248, 0.9));
}

.intro-strip .cqc-strip strong {
  font-size: 1.18rem;
}

.intro-strip .cqc-strip span {
  color: var(--olive);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 96px 0 78px;
}

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

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

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

.support-grid article,
.values-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(138, 134, 80, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.88), rgba(250, 230, 226, 0.42) 52%, rgba(238, 243, 223, 0.42)),
    var(--paper);
  box-shadow: 0 15px 40px rgba(129, 112, 74, 0.06);
}

.support-grid article {
  display: grid;
  align-content: start;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.service-photo {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(215, 194, 153, 0.28);
}

.service-content {
  display: grid;
  gap: 14px;
  padding: 24px 28px 30px;
}

.support-grid span {
  display: block;
  margin: 0;
  color: var(--blush);
  font-weight: 600;
}

.support-grid h3,
.support-grid p {
  margin-left: 0;
  margin-right: 0;
}

.support-grid p,
.values-grid p,
.feature-copy p,
.outcomes-copy p,
.referral-section p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

.standards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.standards-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(138, 134, 80, 0.14);
  border-radius: 999px;
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.76), rgba(238, 243, 223, 0.62));
  font-size: 0.9rem;
  font-weight: 500;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 230, 226, 0.74), rgba(255, 253, 248, 0.92) 44%, rgba(238, 243, 223, 0.68)),
    rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  line-height: 1.58;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--tiffany) 0 32%, transparent 34%),
    var(--sage);
}

.values-section {
  padding: 100px 0 70px;
}

.centered {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.values-grid article {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
  min-height: 174px;
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.84), rgba(246, 234, 208, 0.42) 52%, rgba(250, 230, 226, 0.42)),
    var(--paper);
  padding: 0;
  overflow: hidden;
}

.values-grid article h3 {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 24px;
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(238, 243, 223, 0.9), rgba(246, 234, 208, 0.62));
  text-align: center;
}

.values-grid article p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 28px 30px 28px 0;
  line-height: 1.72;
}

.values-grid article:nth-child(2) {
  border-color: rgba(127, 199, 179, 0.48);
}

.values-grid article:nth-child(3) {
  border-color: rgba(233, 167, 160, 0.48);
}

.outcomes-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 26px 0 104px;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  color: var(--olive-deep);
  border: 1px solid rgba(233, 167, 160, 0.34);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 253, 248, 0.9), transparent 34%),
    linear-gradient(135deg, rgba(233, 167, 160, 0.38), rgba(246, 234, 208, 0.92) 48%, rgba(238, 243, 223, 0.82)),
    var(--champagne-pale);
  box-shadow: 0 24px 68px rgba(129, 112, 74, 0.14);
}

.quote-panel::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 30px;
  color: rgba(138, 134, 80, 0.16);
  font-size: clamp(8rem, 14vw, 13rem);
  font-weight: 700;
  line-height: 1;
}

.quote-kicker {
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(138, 134, 80, 0.16);
  border-radius: 999px;
  color: var(--olive-deep);
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-panel p {
  position: relative;
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.15vw, 3.2rem);
  line-height: 1.18;
  text-wrap: balance;
}

.director-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  margin-bottom: 86px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(215, 194, 153, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(250, 230, 226, 0.5) 54%, rgba(238, 243, 223, 0.54)),
    var(--paper);
  box-shadow: var(--shadow);
}

.director-image {
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--champagne-pale);
}

.director-image img {
  width: 100%;
  height: clamp(340px, 34vw, 440px);
  min-height: 0;
  object-fit: cover;
  object-position: center 18%;
}

.director-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(10px, 2vw, 22px) 0;
}

.director-copy h2 {
  max-width: 680px;
}

.director-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.director-name {
  display: block;
  margin-top: 26px;
  color: var(--olive);
  font-size: 0.92rem;
  font-weight: 600;
}

.referral-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin-bottom: 84px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(215, 194, 153, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(250, 230, 226, 0.72) 52%, rgba(246, 234, 208, 0.74)),
    var(--paper);
  box-shadow: var(--shadow);
}

.team-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  margin-bottom: 84px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(215, 194, 153, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 230, 226, 0.72), rgba(255, 253, 248, 0.9) 45%, rgba(238, 243, 223, 0.64)),
    var(--paper);
  box-shadow: var(--shadow);
}

.team-image {
  overflow: hidden;
  border-radius: 8px;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 900ms ease;
}

.team-section:hover .team-image img {
  transform: scale(1.025);
}

.team-copy p {
  max-width: 620px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.benefits-list span {
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(138, 134, 80, 0.14);
  border-radius: 8px;
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.78), rgba(246, 234, 208, 0.54));
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  transition: transform 220ms ease, background 220ms ease;
}

.benefits-list span:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(250, 230, 226, 0.82), rgba(238, 243, 223, 0.7));
}

.referral-section > div:first-child {
  display: grid;
  align-content: start;
}

.referral-section h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 2.8vw, 2.95rem);
  line-height: 1.28;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(138, 134, 80, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.88), rgba(250, 230, 226, 0.54));
  box-shadow: 0 14px 38px rgba(129, 112, 74, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--olive-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(138, 134, 80, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  font: inherit;
  font-size: 0.94rem;
  padding: 11px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(233, 167, 160, 0.8);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 0 0 4px rgba(233, 167, 160, 0.16);
}

.full-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--olive-deep);
  background: linear-gradient(135deg, rgba(233, 167, 160, 0.72), rgba(215, 194, 153, 0.86));
  box-shadow: 0 16px 36px rgba(129, 112, 74, 0.14);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(129, 112, 74, 0.18);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 300px);
  align-items: start;
  gap: clamp(22px, 4vw, 54px);
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--olive-deep);
  border-top: 1px solid rgba(85, 87, 45, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(245, 232, 204, 0.86)),
    var(--champagne);
}

.footer-left {
  display: grid;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--olive);
  font-size: 1.08rem;
}

.footer-brand img {
  width: min(310px, 78vw);
  height: auto;
  object-fit: contain;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-self: end;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

.footer-contact a {
  color: var(--olive-deep);
  font-weight: 600;
}

.footer-contact span {
  max-width: 300px;
}

.site-footer p {
  margin: 0;
  color: rgba(104, 107, 59, 0.78);
  font-size: 0.9rem;
  text-align: left;
}

.site-header {
  animation: header-enter 700ms ease both;
}

.hero-copy {
  animation: rise-in 820ms ease 120ms both;
}

.hero-visual {
  animation: soften-in 900ms ease 260ms both;
}

.hero-visual::before {
  animation: gradient-breathe 8s ease-in-out infinite;
}

.hero-photo {
  transform-origin: center;
  animation: image-settle 1100ms ease 220ms both, image-drift 14s ease-in-out 1200ms infinite;
}

.feature-image img {
  animation: image-drift 16s ease-in-out infinite;
}

.primary-button,
.secondary-button,
.header-cta,
.section-phone,
.standards-list span {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.section-phone:hover,
.section-phone:focus-visible,
.standards-list span:hover {
  transform: translateY(-2px);
}

.support-grid article,
.values-grid article {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.support-grid article:hover,
.values-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 167, 160, 0.34);
  box-shadow: 0 22px 52px rgba(129, 112, 74, 0.1);
}

.service-photo {
  transition: transform 700ms ease;
}

.support-grid article:hover .service-photo {
  transform: scale(1.035);
}

.check-list li::before {
  animation: soft-pulse 3.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 240ms;
}

.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 320ms;
}

.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 400ms;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes soften-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes image-settle {
  from {
    filter: saturate(0.86) brightness(1.04);
  }
  to {
    filter: saturate(1) brightness(1);
  }
}

@keyframes image-drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.012);
  }
}

@keyframes gradient-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.96;
  }
  50% {
    transform: scale(1.025) rotate(1deg);
    opacity: 1;
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

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

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .section-grid,
  .feature-band,
  .outcomes-section,
  .director-section,
  .team-section,
  .referral-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo {
    width: 88%;
  }

  .director-image img {
    height: clamp(320px, 56vw, 430px);
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: min(218px, 54vw);
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .section-band,
  .section-grid,
  .feature-band,
  .values-section,
  .outcomes-section,
  .director-section,
  .team-section,
  .referral-section,
  .intro-strip {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.2rem, 8.4vw, 3rem);
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    line-height: 1.22;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-photo {
    width: 100%;
    height: 340px;
  }

  .support-grid,
  .values-grid,
  .benefits-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .values-grid article {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .values-grid article h3 {
    min-height: auto;
    justify-items: start;
    padding: 22px 24px 10px;
    text-align: left;
    background: transparent;
  }

  .values-grid article p {
    padding: 0 24px 24px;
  }

  .support-grid article,
  .values-grid article {
    min-height: auto;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

/* Emerald and gold brand refresh */
:root {
  --emerald-black: #031d18;
  --emerald-deep: #042d25;
  --emerald: #075544;
  --emerald-bright: #0d8669;
  --gold-deep: #b98525;
  --gold: #e2b64f;
  --gold-light: #ffe39b;
  --white: #fffaf0;
  --white-soft: rgba(255, 250, 240, 0.82);
  --panel: rgba(4, 45, 37, 0.82);
  --panel-strong: rgba(2, 28, 24, 0.94);
  --line: rgba(226, 182, 79, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --sparkle-field:
    radial-gradient(circle 1.6px at 8% 18%, rgba(255, 239, 184, 0.45), transparent 3px),
    radial-gradient(circle 1.4px at 23% 76%, rgba(21, 175, 132, 0.34), transparent 3px),
    radial-gradient(circle 1.5px at 46% 24%, rgba(255, 227, 155, 0.36), transparent 3px),
    radial-gradient(circle 1.2px at 71% 62%, rgba(255, 250, 240, 0.26), transparent 3px),
    radial-gradient(circle 1.6px at 88% 16%, rgba(226, 182, 79, 0.42), transparent 3px),
    radial-gradient(circle 1.3px at 61% 86%, rgba(255, 239, 184, 0.32), transparent 3px);
  --sparkle-sheen:
    linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, 0.07) 18%, rgba(21, 175, 132, 0.18) 25%, transparent 39%),
    linear-gradient(128deg, transparent 46%, rgba(255, 227, 155, 0.13) 55%, rgba(255, 255, 255, 0.05) 61%, transparent 72%),
    radial-gradient(ellipse at 74% 18%, rgba(24, 159, 124, 0.42), transparent 42%),
    radial-gradient(ellipse at 28% 70%, rgba(226, 182, 79, 0.18), transparent 36%);
}

body {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 29, 24, 0.18), rgba(3, 29, 24, 0.52) 42%, rgba(2, 20, 17, 0.86)),
    radial-gradient(circle at 18% 28%, rgba(226, 182, 79, 0.1), transparent 28%),
    url("assets/emerald-shimmer-generated.png") center top / cover no-repeat fixed,
    var(--emerald-black);
}

html,
body {
  overflow-x: hidden;
}

.site-header {
  background: rgba(3, 29, 24, 0.88);
  border-bottom: 1px solid rgba(226, 182, 79, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand img {
  width: clamp(220px, 24vw, 315px);
  max-height: 78px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.main-nav {
  border-color: rgba(226, 182, 79, 0.28);
  background: rgba(0, 0, 0, 0.18);
}

.main-nav a {
  color: var(--white);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--emerald-black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.header-cta,
.primary-button,
.contact-form button {
  color: var(--emerald-black);
  border: 1px solid rgba(255, 227, 155, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.secondary-button,
.section-phone {
  color: var(--gold-light);
  border-color: rgba(226, 182, 79, 0.42);
  background: rgba(4, 45, 37, 0.72);
}

.hero {
  min-height: calc(100vh - 88px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 auto;
  height: 58vh;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 20%, rgba(13, 134, 105, 0.5), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(226, 182, 79, 0.16), transparent 30%);
  opacity: 0.9;
  z-index: -1;
}

.eyebrow,
.director-name,
.intro-strip .cqc-strip span {
  color: var(--gold);
}

h1,
h2,
h3 {
  color: var(--gold-light);
}

h1 {
  color: var(--white);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

h1 span {
  display: block;
}

.hero-lede,
.support-grid p,
.values-grid p,
.feature-copy p,
.outcomes-copy p,
.referral-section p,
.director-copy p:not(.eyebrow),
.team-copy p,
.footer-contact,
.site-footer p,
.intro-strip span {
  color: var(--white-soft);
}

.hero-visual {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 0;
  grid-column: 2;
}

.hero-visual::before {
  inset: 0;
  border: 1px solid rgba(226, 182, 79, 0.34);
  border-radius: 8px;
  background: none;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: min(92%, 720px);
  height: auto;
  margin: 0;
  position: relative;
  z-index: 1;
  transform: none;
  animation: none !important;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  position: relative;
  grid-column: 1;
  z-index: 1;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-visual {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.intro-strip {
  border-color: rgba(226, 182, 79, 0.34);
  background: rgba(226, 182, 79, 0.22);
}

.intro-strip div,
.intro-strip .cqc-strip,
.support-grid article,
.values-grid article,
.feature-band,
.director-section,
.team-section,
.referral-section,
.contact-form {
  border-color: rgba(226, 182, 79, 0.26);
  background:
    linear-gradient(145deg, rgba(6, 70, 57, 0.86), rgba(2, 27, 23, 0.94)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.intro-strip strong,
.support-grid span,
.values-grid article h3,
.standards-list span,
.benefits-list span,
.contact-form span,
.footer-contact a,
.section-phone {
  color: var(--gold-light);
}

.support-grid article {
  padding: 0;
}

.service-content {
  padding: 26px 28px 30px;
}

.feature-image,
.team-image,
.director-image {
  border: 1px solid rgba(226, 182, 79, 0.24);
  background: var(--emerald-black);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.feature-image img,
.team-image img,
.director-image img {
  filter: saturate(0.82) contrast(1.08) sepia(0.12);
}

.check-list li {
  color: var(--white);
}

.check-list li::before {
  background:
    radial-gradient(circle at 50% 50%, var(--emerald-black) 0 29%, transparent 31%),
    var(--gold);
}

.values-grid article h3 {
  background: rgba(226, 182, 79, 0.12);
}

.quote-panel {
  color: var(--white);
  border-color: rgba(226, 182, 79, 0.36);
  background:
    radial-gradient(circle at 82% 12%, rgba(226, 182, 79, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(226, 182, 79, 0.2), rgba(3, 29, 24, 0.88));
}

.quote-panel::before {
  color: rgba(255, 227, 155, 0.2);
}

.quote-kicker,
.standards-list span,
.benefits-list span {
  border-color: rgba(226, 182, 79, 0.34);
  background: rgba(4, 45, 37, 0.76);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--white);
  border-color: rgba(226, 182, 79, 0.3);
  background: rgba(2, 28, 24, 0.68);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-light);
  background: rgba(2, 28, 24, 0.92);
  box-shadow: 0 0 0 4px rgba(226, 182, 79, 0.16);
}

.site-footer {
  color: var(--white);
  border-top-color: rgba(226, 182, 79, 0.3);
  background:
    linear-gradient(135deg, rgba(2, 20, 17, 0.96), rgba(6, 70, 57, 0.92)),
    var(--emerald-black);
}

.footer-brand img {
  width: min(330px, 78vw);
  max-height: 100px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.support-grid article:hover,
.values-grid article:hover {
  border-color: rgba(255, 227, 155, 0.58);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
  .hero-copy,
  .hero-visual {
    grid-column: 1;
  }

  .hero {
    min-height: 0;
    padding-top: 84px;
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual {
    grid-column: 1;
  }

  .brand img {
    width: min(198px, 54vw);
    max-height: 58px;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy,
  .hero-lede {
    max-width: 30ch;
  }

  .hero-photo {
    width: 96%;
    height: auto;
  }

}

/* Keep imagery natural and remove hard hero boxes */
.hero {
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.hero::before,
.hero-visual::before {
  content: none;
}

.hero-copy {
  max-width: 650px;
}

.hero-visual {
  display: block;
  min-height: 0;
  grid-column: 2;
  overflow: visible;
  padding: 0;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: clamp(430px, 43vw, 560px);
  border: 1px solid rgba(226, 182, 79, 0.3);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.34);
}

.hero-photo {
  z-index: 1;
}

.service-photo,
.feature-image img,
.team-image img,
.director-image img {
  filter: saturate(0.92) contrast(1.04);
}

.support-grid article {
  background:
    var(--sparkle-sheen),
    linear-gradient(145deg, rgba(4, 45, 37, 0.76), rgba(2, 27, 23, 0.94)),
    var(--panel-strong);
}

.service-photo {
  border-bottom-color: rgba(226, 182, 79, 0.24);
}

.feature-band,
.director-section,
.team-section,
.referral-section {
  background:
    linear-gradient(145deg, rgba(4, 45, 37, 0.58), rgba(2, 27, 23, 0.86)),
    url("assets/emerald-shimmer-generated.png") center / cover no-repeat,
    var(--panel-strong);
}

.intro-strip div,
.values-grid article,
.contact-form {
  background:
    linear-gradient(145deg, rgba(4, 45, 37, 0.68), rgba(2, 27, 23, 0.88)),
    url("assets/emerald-shimmer-generated.png") center / cover no-repeat,
    var(--panel-strong);
}

.hero,
.feature-band,
.director-section,
.team-section,
.referral-section,
.quote-panel,
.site-footer {
  position: relative;
  overflow: hidden;
}

.feature-band::before,
.director-section::before,
.team-section::before,
.referral-section::before,
.quote-panel::after,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    var(--sparkle-field),
    var(--sparkle-sheen);
  mix-blend-mode: screen;
  opacity: 0.26;
}

.feature-band::before,
.director-section::before,
.team-section::before,
.referral-section::before,
.quote-panel::after {
  opacity: 0.44;
}

.feature-band > *,
.director-section > *,
.team-section > *,
.referral-section > *,
.quote-panel > *,
.site-footer > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero-visual {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  .hero-visual {
    display: block;
    margin-top: 10px;
  }

  .hero-photo {
    width: 100%;
    height: 300px;
  }

  .hero-copy,
  .hero-lede {
    max-width: 31ch;
  }
}

/* Final Complex Care brand palette and gold line accents */
:root {
  --complex-night: #041D1E;
  --complex: #083335;
  --complex-light: #17615E;
  --complex-gold: #D9A93A;
  --complex-gold-soft: #F2D889;
  --complex-line: rgba(217, 169, 58, 0.58);
}

body {
  background:
    radial-gradient(circle at 86% 12%, rgba(23, 97, 94, 0.58), transparent 32%),
    linear-gradient(126deg, var(--complex-night) 0%, var(--complex) 48%, var(--complex-light) 100%);
}

.site-header {
  background: rgba(4, 29, 30, 0.92);
  border-bottom: 1px solid rgba(217, 169, 58, 0.36);
  padding: 12px 0;
}

.brand img,
.footer-brand img {
  object-fit: contain;
  object-position: left center;
  background: transparent;
  box-shadow: none;
}

.brand img {
  width: auto;
  height: clamp(58px, 6vw, 84px);
  max-width: min(360px, 42vw);
  max-height: none;
}

.footer-brand img {
  width: min(380px, 78vw);
  height: auto;
  max-height: none;
}

.hero,
.feature-band,
.values-section,
.outcomes-section,
.director-section,
.team-section,
.referral-section {
  isolation: isolate;
}

.hero::before,
.feature-band::after,
.director-section::after,
.team-section::after,
.referral-section::after,
.outcomes-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
}

.hero::before {
  inset: 80px -14vw auto -18vw;
  height: min(58vw, 620px);
  border-radius: 0 0 50% 50%;
  border-bottom: 1px solid var(--complex-line);
  background:
    linear-gradient(128deg, rgba(23, 97, 94, 0.58), rgba(8, 51, 53, 0.12) 48%, transparent 72%);
  transform: rotate(7deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28% -10vw auto 6vw;
  height: 34vw;
  max-height: 390px;
  pointer-events: none;
  z-index: 0;
  border-bottom: 1px solid rgba(217, 169, 58, 0.5);
  border-radius: 0 0 48% 58%;
  transform: rotate(8deg);
}

.hero-copy,
.hero-visual,
.section-heading,
.support-grid,
.values-grid,
.outcomes-section > *,
.feature-band > *,
.director-section > *,
.team-section > *,
.referral-section > * {
  position: relative;
  z-index: 1;
}

.feature-band::after,
.director-section::after,
.team-section::after,
.referral-section::after,
.outcomes-section::after {
  inset: auto -8% 8% -8%;
  height: 42%;
  border-bottom: 1px solid rgba(217, 169, 58, 0.42);
  border-radius: 0 0 52% 48%;
  background: linear-gradient(110deg, rgba(23, 97, 94, 0.22), transparent 64%);
  transform: rotate(3deg);
}

.intro-strip,
.support-grid article,
.values-grid article,
.feature-band,
.quote-panel,
.director-section,
.team-section,
.referral-section,
.contact-form {
  border-color: rgba(217, 169, 58, 0.32);
  background:
    linear-gradient(135deg, rgba(4, 29, 30, 0.92), rgba(8, 51, 53, 0.82) 52%, rgba(23, 97, 94, 0.5));
}

.quote-panel {
  background:
    linear-gradient(128deg, rgba(4, 29, 30, 0.9), rgba(8, 51, 53, 0.78) 45%, rgba(23, 97, 94, 0.58));
}

.primary-button,
.header-cta,
.contact-form button {
  background: linear-gradient(135deg, #F5D66F, var(--complex-gold) 58%, #B78322);
}

.secondary-button,
.section-phone,
.standards-list span,
.benefits-list span {
  border-color: rgba(217, 169, 58, 0.42);
  background: rgba(4, 29, 30, 0.5);
}

.eyebrow,
.support-grid span,
.director-name,
.intro-strip strong,
.values-grid article h3,
.contact-form span {
  color: var(--complex-gold-soft);
}

.hero-photo,
.feature-image,
.team-image,
.director-image {
  border-color: rgba(217, 169, 58, 0.38);
}

@media (max-width: 640px) {
  .brand img {
    width: auto;
    height: 54px;
    max-width: 68vw;
  }

  .hero::before {
    inset: 42px -50vw auto -50vw;
    height: 320px;
  }

  .hero::after {
    inset: 28% -40vw auto -18vw;
    height: 210px;
  }
}

/* Softer Complex Care wave accents */
.hero.section-band {
  overflow: visible;
  background: transparent;
}

.hero::before {
  left: 50%;
  right: auto;
  top: -15vw;
  bottom: auto;
  width: 168vw;
  height: min(82vw, 900px);
  transform: translateX(-52%) rotate(3deg);
  border-radius: 0 0 52% 48% / 0 0 44% 40%;
  border: 0;
  border-bottom: 1px solid rgba(23, 97, 94, 0.5);
  background:
    radial-gradient(ellipse at 82% 22%, rgba(23, 97, 94, 0.7), transparent 40%),
    linear-gradient(118deg, rgba(23, 97, 94, 0.66) 0%, rgba(8, 51, 53, 0.5) 38%, rgba(4, 29, 30, 0.08) 72%);
  box-shadow:
    inset 0 -140px 180px rgba(23, 97, 94, 0.34),
    inset 0 70px 110px rgba(4, 29, 30, 0.56);
  opacity: 1;
}

.hero::after {
  left: 50%;
  right: auto;
  top: 11vw;
  bottom: auto;
  width: 178vw;
  height: min(72vw, 800px);
  max-height: none;
  transform: translateX(-57%) rotate(6deg);
  border: 0;
  border-bottom: 1px solid rgba(217, 169, 58, 0.44);
  border-radius: 0 0 58% 42% / 0 0 38% 46%;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(23, 97, 94, 0.48), transparent 42%),
    linear-gradient(112deg, rgba(4, 29, 30, 0.72), rgba(8, 51, 53, 0.48) 42%, rgba(23, 97, 94, 0.16) 68%, transparent 82%);
  box-shadow: inset 0 -90px 150px rgba(4, 29, 30, 0.42);
  opacity: 0.96;
}

.hero-copy::before,
.hero-copy::after {
  content: none;
}

.hero-copy::before {
  left: -34vw;
  top: 33%;
  width: 92vw;
  height: 38vw;
  border-bottom: 1px solid rgba(217, 169, 58, 0.34);
  background: linear-gradient(120deg, rgba(23, 97, 94, 0.2), transparent 66%);
  transform: rotate(10deg);
}

.hero-copy::after {
  left: -18vw;
  top: 24%;
  width: 84vw;
  height: 30vw;
  border-bottom: 1px solid rgba(23, 97, 94, 0.45);
  background: linear-gradient(120deg, rgba(4, 29, 30, 0.32), transparent 70%);
  transform: rotate(8deg);
}

.feature-band::after,
.director-section::after,
.team-section::after,
.referral-section::after,
.outcomes-section::after {
  left: 50%;
  right: auto;
  bottom: 4%;
  width: 126vw;
  height: min(34vw, 360px);
  transform: translateX(-50%) rotate(3deg);
  border: 0;
  border-bottom: 1px solid rgba(217, 169, 58, 0.34);
  border-radius: 0 0 55% 45% / 0 0 44% 40%;
  background:
    linear-gradient(112deg, rgba(23, 97, 94, 0.2), rgba(8, 51, 53, 0.07) 46%, transparent 72%);
}

@media (max-width: 640px) {
  .hero::before {
    top: -42px;
    width: 180vw;
    height: 420px;
    transform: translateX(-54%) rotate(4deg);
  }

  .hero::after {
    top: 360px;
    width: 190vw;
    height: 250px;
    transform: translateX(-56%) rotate(6deg);
  }

  .hero-copy::before {
    content: none;
  }

  .hero-copy::after {
    content: none;
  }
}
