:root {
  --ink: #12243a;
  --navy: #173556;
  --blue: #224d75;
  --sage: #8ea596;
  --moss: #526d5d;
  --cream: #f5efe5;
  --paper: #fffaf1;
  --sand: #d9c5a8;
  --gold: #b58a4c;
  --mist: #e8eee9;
  --blush: #efe2d8;
  --line: rgba(18, 36, 58, 0.16);
  --shadow: 0 24px 60px rgba(18, 36, 58, 0.18);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 10px 34px rgba(18, 36, 58, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 238px;
  height: auto;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: invert(17%) sepia(45%) saturate(887%) hue-rotate(174deg) brightness(91%) contrast(91%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: white;
}

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

.hero-media {
  background-image: url("assets/crescent-house-hero-consultation.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 24, 39, 0.76) 0%, rgba(10, 24, 39, 0.52) 39%, rgba(10, 24, 39, 0.1) 74%),
    linear-gradient(0deg, rgba(10, 24, 39, 0.32), rgba(10, 24, 39, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  padding: 22vh 0 15vh;
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1d299;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 11vw, 9.4rem);
  font-weight: 500;
  line-height: 0.88;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--navy);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.section-band {
  background: var(--cream);
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  position: relative;
  padding: clamp(58px, 9vw, 110px) 0;
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: -82px;
  right: -92px;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(142, 165, 150, 0.18);
  border-radius: 50%;
}

.intro-grid,
.workflow-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro-copy > p,
.workflow-grid p,
.feature-copy p,
.detail-copy p,
.contact p {
  color: rgba(18, 36, 58, 0.78);
  font-size: 1.06rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(18, 36, 58, 0.12);
  border: 1px solid rgba(18, 36, 58, 0.12);
  border-radius: 8px;
}

.proof-strip div {
  min-height: 128px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.72);
}

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

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.proof-strip span {
  color: rgba(18, 36, 58, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.services {
  position: relative;
  scroll-margin-top: 94px;
  padding: clamp(66px, 10vw, 126px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, white 0%, var(--paper) 44%, var(--mist) 100%);
}

.services::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1160px, calc(100% - 36px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(181, 138, 76, 0.62), transparent);
  transform: translateX(-50%);
}

.services .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 229, 0.74)),
    white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(18, 36, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--moss), var(--gold));
}

.service-card::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 166px;
  height: 166px;
  content: "";
  background: rgba(142, 165, 150, 0.15);
  border-radius: 50%;
}

.service-card:hover {
  border-color: rgba(181, 138, 76, 0.42);
  box-shadow: 0 24px 46px rgba(18, 36, 58, 0.13);
  transform: translateY(-4px);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(18, 36, 58, 0.72);
}

.package-heading {
  display: block;
  width: min(860px, 100%);
  max-width: 860px;
  margin: clamp(62px, 9vw, 108px) 0 30px;
  margin-inline: auto;
  text-align: center;
}

.package-heading .section-kicker,
.package-heading h2 {
  text-align: center;
}

.package-heading::after {
  display: block;
  max-width: 520px;
  min-height: 112px;
  margin: 24px auto 0;
  padding: 22px;
  color: rgba(18, 36, 58, 0.74);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  content: "Support can begin with one focused pressure point or expand into a full operational reset.";
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(18, 36, 58, 0.12);
  border-radius: 8px;
}

.package-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.package-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 36, 58, 0.06);
}

.package-item[open] {
  background: white;
  border-color: rgba(82, 109, 93, 0.32);
}

.package-item summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.package-item summary::-webkit-details-marker {
  display: none;
}

.package-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  color: var(--moss);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  content: "+";
  transform: translateY(-50%);
}

.package-item[open] summary::after {
  content: "\2212";
}

.package-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: rgba(18, 36, 58, 0.74);
  line-height: 1.65;
}

.image-feature {
  position: relative;
  scroll-margin-top: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  min-height: 680px;
  background: white;
}

.image-feature::before {
  position: absolute;
  top: 38px;
  right: calc(50% - 76px);
  z-index: 2;
  width: 152px;
  height: 152px;
  content: "";
  background: var(--paper);
  border: 1px solid rgba(181, 138, 76, 0.28);
  border-radius: 50%;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(245, 239, 229, 0.58), rgba(255, 255, 255, 0)),
    white;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--moss);
  content: "✓";
}

.workflow {
  position: relative;
  scroll-margin-top: 94px;
  padding: clamp(68px, 10vw, 124px) 0;
  overflow: hidden;
}

.workflow::after {
  position: absolute;
  right: clamp(20px, 7vw, 90px);
  bottom: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(181, 138, 76, 0.28);
  border-radius: 50%;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  position: relative;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid rgba(18, 36, 58, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.04rem;
}

.timeline span {
  color: rgba(18, 36, 58, 0.7);
}

.split-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy), #102238 60%, #203f44);
  color: white;
}

.split-detail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(37% - 1px);
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.split-detail img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.detail-copy {
  padding: clamp(34px, 6vw, 82px);
}

.detail-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.detail-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.recommendations {
  padding: clamp(70px, 10vw, 126px) 0;
  background:
    linear-gradient(180deg, var(--paper), white 68%);
}

.recommendations-heading {
  max-width: 800px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.recommendations-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: start;
}

.recommendation {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--moss);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(18, 36, 58, 0.08);
}

.recommendation-featured {
  color: white;
  background:
    linear-gradient(145deg, var(--navy), #102238);
  border-color: var(--navy);
  border-top-color: var(--gold);
}

.recommendation-sage {
  background: var(--mist);
  border-color: rgba(82, 109, 93, 0.28);
}

.recommendation-taupe {
  background: var(--blush);
  border-color: rgba(181, 138, 76, 0.26);
}

.recommendation-beige {
  background: #f8f3e9;
  border-color: rgba(181, 138, 76, 0.2);
}

.recommendation blockquote {
  margin: 0;
}

.recommendation blockquote::before {
  display: block;
  height: 48px;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 0.9;
  content: "\201C";
}

.recommendation p {
  margin-bottom: 1.15em;
  color: rgba(18, 36, 58, 0.8);
  font-size: 1rem;
  line-height: 1.72;
}

.recommendation-featured p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.recommendation p:last-child {
  margin-bottom: 0;
}

.recommendation figcaption {
  padding-top: 22px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.recommendation-featured figcaption {
  color: white;
  border-top-color: rgba(255, 255, 255, 0.2);
}

.recommendation figcaption span {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact {
  scroll-margin-top: 94px;
  padding: clamp(70px, 10vw, 126px) 0;
  background:
    linear-gradient(180deg, white 0%, var(--cream) 100%);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: white;
  border: 1px solid rgba(18, 36, 58, 0.22);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #102238;
}

.site-footer img {
  width: 160px;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

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

  .nav-cta {
    color: white;
    text-align: center;
    background: var(--navy);
    border-color: var(--navy);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    background-position: 56% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 24, 39, 0.82), rgba(10, 24, 39, 0.42));
  }

  .intro-grid,
  .workflow-grid,
  .contact-grid,
  .recommendations-grid,
  .image-feature,
  .split-detail {
    grid-template-columns: 1fr;
  }

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

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

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

  .package-heading {
    grid-template-columns: 1fr;
  }

  .package-heading::after {
    min-height: 0;
  }

  .service-card {
    min-height: 260px;
  }

  .image-feature {
    min-height: 0;
  }

  .image-feature::before,
  .split-detail::before {
    display: none;
  }

  .split-detail img {
    height: 440px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 180px;
  }

  .hero-content {
    width: min(calc(100% - 32px), 620px);
    padding-top: 21vh;
    margin-inline: 16px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 2.75rem);
    line-height: 1.12;
  }

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

  .feature-image img {
    min-height: 360px;
  }

  .split-detail img {
    height: 330px;
  }

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