:root {
  --ivory: #f8f4eb;
  --paper: #efe6d8;
  --sand: #e1cfbb;
  --sage: #b6c4b0;
  --sage-strong: #7d967d;
  --terracotta: #c88768;
  --clay: #b87961;
  --moss: #24463a;
  --moss-soft: #315848;
  --ink: #201a16;
  --muted: #6d5d50;
  --line: rgba(48, 41, 35, 0.14);
  --shadow: 0 18px 48px rgba(46, 37, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 0 42px;
  background: rgba(248, 244, 235, 0.74);
  border-bottom: 1px solid rgba(36, 70, 58, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 235, 0.92);
  box-shadow: 0 10px 26px rgba(46, 37, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 121, 97, 0.5);
  border-radius: 50%;
  position: relative;
  background: rgba(255, 255, 255, 0.28);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 20px;
  left: 12px;
  top: 6px;
  transform: rotate(26deg);
  border: 1px solid var(--terracotta);
  background: rgba(248, 244, 235, 0.65);
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.nav-cta,
.button,
.contact-list a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(36, 70, 58, 0.22);
  border-radius: 999px;
  color: var(--moss);
  font-weight: 700;
}

.hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding: 118px 42px 64px;
  background-image: linear-gradient(90deg, rgba(248, 244, 235, 0.98) 0%, rgba(248, 244, 235, 0.84) 44%, rgba(248, 244, 235, 0.3) 72%, rgba(248, 244, 235, 0.06) 100%), url("assets/rafaella-hero.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-content,
.section-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
.quote-band p {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 0.96;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: #473d36;
  font-size: 20px;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #fffaf1;
  background: var(--moss);
  box-shadow: 0 14px 30px rgba(36, 70, 58, 0.24);
}

.button.primary:hover {
  background: #18382e;
}

.button.secondary {
  color: var(--moss);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(36, 70, 58, 0.2);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(760px, 100%);
  margin: 58px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(36, 70, 58, 0.18);
}

.hero-proof div {
  min-width: 0;
}

.hero-proof dt {
  color: var(--moss);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-band {
  background: #fffaf2;
}

section {
  padding: 92px 42px;
}

section[id] {
  scroll-margin-top: 82px;
}

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

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}

.about {
  background: linear-gradient(180deg, #fffaf2 0%, #f1e5d8 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 660px;
}

.about-media img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(36, 70, 58, 0.12);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-photo-main {
  height: 620px;
  object-position: center top;
}

.about-photo-secondary {
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 38%;
  min-width: 190px;
  height: 300px;
  object-position: center top;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.credential-grid article {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(36, 70, 58, 0.12);
  border-radius: 8px;
  background: rgba(248, 244, 235, 0.76);
}

.credential-grid span {
  color: var(--terracotta);
  font-weight: 900;
}

.credential-grid h3 {
  margin: 24px 0 10px;
  color: var(--moss);
  font-size: 24px;
  line-height: 1.08;
}

.credential-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading p + h2,
.method-grid p,
.offer-grid p,
.agenda-grid p {
  margin-top: 0;
}

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

.cycle-node {
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(36, 70, 58, 0.12);
  border-radius: 8px;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cycle-node:nth-child(2) {
  background: #e8d6c4;
}

.cycle-node:nth-child(3) {
  background: #e1c6b4;
}

.cycle-node:nth-child(4) {
  background: #d2ddcd;
}

.cycle-node.is-active,
.cycle-node:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 70, 58, 0.36);
}

.cycle-node span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fffaf2;
  background: var(--moss);
  border-radius: 50%;
  font-weight: 800;
}

.cycle-node strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
}

.cycle-node em {
  display: block;
  margin-top: 12px;
  color: #5d5148;
  font-size: 14px;
  font-style: normal;
}

.method {
  background: var(--ivory);
}

.method-grid,
.offer-grid,
.agenda-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.method-grid > div:first-child p:not(.eyebrow),
.offer-grid > div:first-child p,
.agenda-grid > div:first-child p {
  color: var(--muted);
  font-size: 18px;
}

.method-visual {
  overflow: hidden;
  border: 1px solid rgba(36, 70, 58, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(36, 70, 58, 0.12);
  border-radius: 8px;
  background: var(--ivory);
}

.pillar-card span {
  color: var(--terracotta);
  font-weight: 900;
}

.pillar-card h3 {
  margin: 26px 0 12px;
  font-size: 28px;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.integrated {
  background: linear-gradient(180deg, var(--ivory), #f0e2d1);
}

.care-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 44px;
}

.care-split article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(36, 70, 58, 0.12);
}

.care-split article:first-child {
  background: rgba(182, 196, 176, 0.62);
}

.care-split article:last-child {
  background: rgba(200, 135, 104, 0.34);
}

.role {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-split h3 {
  margin: 0 0 14px;
  font-size: 46px;
}

.care-split p:last-child {
  margin: 0;
  color: #50463f;
}

.bridge {
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: var(--moss);
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-band {
  min-height: 420px;
  display: grid;
  align-items: center;
  color: #f7f0df;
  background: radial-gradient(circle at 24% 10%, rgba(182, 196, 176, 0.18), transparent 28%), var(--moss);
}

.quote-band p {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 44px;
  line-height: 1.12;
}

.offer {
  background: #fffaf2;
}

.price-card {
  padding: 34px;
  border: 1px solid rgba(36, 70, 58, 0.16);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.plan-label {
  margin: 0;
  color: var(--terracotta);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 10px 0 6px;
  color: var(--moss);
  font-size: 58px;
}

.price-card p {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(36, 70, 58, 0.12);
}

.legal-note {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 70, 58, 0.18);
  font-size: 13px;
}

.agenda {
  background-image: linear-gradient(90deg, rgba(239, 230, 216, 0.94), rgba(239, 230, 216, 0.76)), url("assets/hero-texture.png");
  background-size: cover;
  background-position: center 62%;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(36, 70, 58, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  font-weight: 800;
}

.contact-list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fffaf2;
  background: var(--moss);
  border-radius: 50%;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 42px;
  color: #f7f0df;
  background: #172d26;
}

@media (max-width: 900px) {
  .site-header {
    height: 66px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  section {
    padding-inline: 20px;
  }

	  .hero {
	    min-height: 88vh;
	    padding-top: 104px;
	    background-image: linear-gradient(180deg, rgba(248, 244, 235, 0.98) 0%, rgba(248, 244, 235, 0.94) 46%, rgba(248, 244, 235, 0.54) 100%), url("assets/rafaella-hero.jpg");
	    background-position: 64% center;
	  }

  h1 {
    font-size: 46px;
  }

  h2,
  .quote-band p {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

	  .hero-proof,
	  .cycle,
	  .pillar-list,
	  .method-grid,
	  .about-grid,
	  .credential-grid,
	  .offer-grid,
	  .agenda-grid {
	    grid-template-columns: 1fr;
	  }

	  .about-grid {
	    gap: 38px;
	  }

	  .about-copy {
	    order: 1;
	  }

	  .about-media {
	    order: 2;
	    min-height: 0;
	    display: grid;
	    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.42fr);
	    gap: 14px;
	    align-items: end;
	  }

	  .about-photo-main {
	    height: min(680px, 118vw);
	  }

	  .about-photo-secondary {
	    position: static;
	    width: 100%;
	    min-width: 0;
	    height: min(310px, 64vw);
	  }

  .care-split {
    grid-template-columns: 1fr;
  }

  .bridge {
    min-height: 72px;
  }

  .cycle-node,
  .pillar-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 128px;
    line-height: 1.05;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  h1 {
    font-size: 40px;
  }

  h2,
  .quote-band p {
    font-size: 30px;
  }

	  .hero-actions {
	    align-items: stretch;
	    flex-direction: column;
	  }

	  .hero {
	    background-position: 57% center;
	  }

	  .button {
	    width: 100%;
	  }

  .hero-proof {
    gap: 16px;
  }

	  .price-card,
	  .care-split article,
	  .credential-grid article {
	    padding: 24px;
	  }

	  .about-media {
	    grid-template-columns: 1fr;
	  }

	  .about-photo-main {
	    height: min(620px, 138vw);
	  }

	  .about-photo-secondary {
	    height: min(320px, 82vw);
	  }

  .price-card h3 {
    font-size: 46px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 20px;
  }
}
