:root {
  --teal: #079e9c;
  --teal-deep: #057779;
  --orange: #ef681f;
  --yellow: #f3b71c;
  --blue: #5d7194;
  --green: #8ebd28;
  --ink: #18363c;
  --muted: #607176;
  --cream: #fffaf0;
  --paper: #fffdf9;
  --line: rgba(24, 54, 60, 0.13);
  --shadow: 0 28px 80px rgba(25, 76, 81, 0.14);
  --radius: 26px;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding: 120px 0;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--orange));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 38px rgba(24, 54, 60, 0.07);
}

.nav-wrap {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  width: 190px;
  height: 70px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 182px;
  height: 68px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

nav > a:not(.nav-cta) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
}

nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

nav > a:not(.nav-cta):hover::after,
nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--teal-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease;
}

.lead-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: 164px 0 90px;
  background:
    radial-gradient(circle at 7% 12%, rgba(243, 183, 28, 0.22), transparent 23%),
    radial-gradient(circle at 96% 80%, rgba(7, 158, 156, 0.16), transparent 26%),
    linear-gradient(135deg, #fffdf9 0%, #fff8e8 54%, #edf8f6 100%);
}

.lead-hero::after {
  position: absolute;
  right: -145px;
  bottom: -205px;
  width: 430px;
  height: 430px;
  border: 74px solid rgba(239, 104, 31, 0.07);
  border-radius: 50%;
  content: "";
}

.lead-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.92fr 1.08fr;
}

.lead-hero-copy h1 {
  max-width: 690px;
  font-size: clamp(3.65rem, 5.8vw, 5.55rem);
}

.lead-hero-statement {
  max-width: 660px;
  margin: 27px 0 0;
  color: var(--teal-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 2.15vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lead-hero-text {
  max-width: 650px;
  margin: 23px 0 0;
  color: #52686d;
  font-size: 1.04rem;
  line-height: 1.78;
}

.lead-hero-copy .button {
  margin-top: 31px;
}

.lead-hero-trust {
  display: flex;
  margin-top: 29px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.lead-hero-trust strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.lead-hero-trust strong span {
  margin-right: 8px;
  color: var(--yellow);
  letter-spacing: 0.06em;
}

.lead-hero-trust > span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.lead-hero-location {
  margin: 8px 0 0;
  color: #758589;
  font-size: 0.77rem;
  font-weight: 600;
}

.lead-hero-photo {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 34px 145px 34px 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.lead-hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 25px 132px 25px 25px;
  filter: saturate(1.02) contrast(1.02);
}

.lead-hero-photo figcaption {
  position: static;
  max-width: none;
  margin: 10px 5px 3px;
  padding: 15px 18px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
  transform: none;
}

.lead-hero-photo figcaption span,
.lead-hero-photo figcaption strong {
  display: block;
}

.lead-hero-photo figcaption span {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.lead-hero-photo figcaption strong {
  margin-top: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  line-height: 1.3;
}

.lead-hero-shape {
  position: absolute;
  z-index: 1;
  display: grid;
  border: 1px solid rgba(24, 54, 60, 0.12);
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.lead-shape-one {
  top: 128px;
  right: 45%;
  width: 74px;
  height: 74px;
  border-radius: 22px 22px 22px 6px;
  background: var(--teal);
  color: #fff;
  font-size: 1.35rem;
  transform: rotate(-8deg);
}

.lead-shape-two {
  bottom: 48px;
  left: 4%;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.5rem;
  transform: rotate(9deg);
}

.hero {
  position: relative;
  min-height: 810px;
  padding-top: 165px;
  background:
    radial-gradient(circle at 3% 16%, rgba(243, 183, 28, 0.18) 0 8%, transparent 23%),
    radial-gradient(circle at 100% 64%, rgba(7, 158, 156, 0.14) 0 11%, transparent 28%),
    linear-gradient(140deg, #fffdf9 0%, #fffaf0 52%, #f7fbf8 100%);
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border: 80px solid rgba(239, 104, 31, 0.06);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 72px;
  grid-template-columns: 0.92fr 1.08fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 26px;
}

.hero-copy h2 {
  max-width: 660px;
  font-size: clamp(3.4rem, 5.7vw, 5.35rem);
}

.eyebrow {
  display: flex;
  margin: 0 0 21px;
  align-items: center;
  gap: 10px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow-orange {
  color: var(--orange);
}

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

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.044em;
  line-height: 0.99;
}

h1 {
  max-width: 660px;
  font-size: clamp(3.4rem, 5.7vw, 5.35rem);
}

h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.65rem);
}

h1 em,
h2 em {
  position: relative;
  color: var(--orange);
  font-weight: 600;
}

.hero-lead {
  max-width: 600px;
  margin: 29px 0 0;
  color: #52686d;
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.button {
  display: inline-flex;
  min-height: 57px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button span {
  font-size: 1.2em;
  transition: transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 16px 40px rgba(239, 104, 31, 0.25);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(239, 104, 31, 0.34);
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-points {
  display: flex;
  margin: 39px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-points li {
  padding: 7px 12px;
  border: 1px solid rgba(24, 54, 60, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.photo {
  position: absolute;
  overflow: hidden;
  border: 9px solid #fff;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.28, 1);
}

.photo:hover img {
  transform: scale(1.035);
}

.photo-main {
  top: 64px;
  left: 0;
  z-index: 2;
  width: 60%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 120px 120px 32px 32px;
  transform: rotate(-2.5deg);
}

.photo-main img {
  object-position: 48% 50%;
}

.photo-study {
  top: 7px;
  right: -1%;
  width: 44%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 30px 80px 30px 30px;
  transform: rotate(3deg);
}

.photo-study img {
  object-position: 54% 50%;
}

.photo-smile {
  right: 2%;
  bottom: 4px;
  z-index: 3;
  width: 46%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 30px 30px 120px 30px;
  transform: rotate(-3deg);
}

.photo-smile img {
  object-position: 58% center;
}

.hero-note {
  position: absolute;
  bottom: 13px;
  left: -7%;
  z-index: 4;
  width: 220px;
  padding: 18px 19px;
  border: 1px solid rgba(24, 54, 60, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(24, 54, 60, 0.12);
  transform: rotate(2deg);
}

.hero-note strong {
  display: block;
  color: var(--orange);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
}

.hero-note span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  display: grid;
  border: 1px solid rgba(24, 54, 60, 0.12);
  border-radius: 50%;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

.orbit-one {
  top: 135px;
  right: 47%;
  width: 75px;
  height: 75px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 2rem;
  transform: rotate(-8deg);
}

.orbit-two {
  right: 2.5%;
  bottom: 68px;
  width: 82px;
  height: 82px;
  background: var(--teal);
  color: #fff;
  font-size: 1rem;
  transform: rotate(8deg);
}

.signal-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: #fff;
  transform: rotate(-1.2deg) scale(1.02);
}

.ticker {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 31px;
  animation: marquee 34s linear infinite;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ticker i {
  color: var(--yellow);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.turning {
  padding-top: 145px;
}

.turning-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-intro h2 {
  max-width: 750px;
}

.turning-copy {
  padding-top: 62px;
}

.turning-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.quote-card {
  position: relative;
  margin-top: 38px;
  padding: 27px 30px 27px 60px;
  border-radius: 12px 34px 34px 34px;
  background: #dff4ef;
}

.quote-card p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
}

.quote-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.space-story {
  position: relative;
  overflow: hidden;
  padding-top: 145px;
  background:
    radial-gradient(circle at 4% 20%, rgba(243, 183, 28, 0.18), transparent 19%),
    linear-gradient(145deg, #fffdf9 0%, #fff8e8 100%);
}

.space-story::before {
  position: absolute;
  top: 12%;
  right: -120px;
  width: 330px;
  height: 330px;
  border: 62px solid rgba(7, 158, 156, 0.07);
  border-radius: 50%;
  content: "";
}

.space-heading {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.35fr 0.65fr;
}

.space-heading h2 {
  max-width: 810px;
}

.space-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.space-collage {
  position: relative;
  display: grid;
  min-height: 690px;
  margin-top: 62px;
  gap: 15px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 96px);
}

.space-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 24px 70px rgba(24, 54, 60, 0.12);
}

.space-photo img {
  width: 100%;
  height: 100%;
  background: #f7f3e9;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.28, 1);
}

.space-photo:hover img {
  transform: scale(1.035);
}

.space-photo-main {
  border-radius: 32px 120px 32px 32px;
  grid-column: 1 / 8;
  grid-row: 1 / 7;
  transform: rotate(-1.2deg);
}

.space-photo-main img {
  object-position: 50% center;
}

.space-photo-small {
  z-index: 2;
  border-radius: 95px 28px 28px 28px;
  grid-column: 8 / 11;
  grid-row: 1 / 4;
  transform: translate(-10px, 16px) rotate(2.5deg);
}

.space-photo-small img {
  object-position: 47% center;
}

.space-photo-info {
  border-radius: 25px 25px 95px 25px;
  grid-column: 9 / 13;
  grid-row: 4 / 7;
  transform: rotate(1.5deg);
}

.space-photo-info img {
  object-position: top center;
}

.space-seal {
  position: absolute;
  right: 2.5%;
  top: 3%;
  z-index: 4;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(24, 54, 60, 0.14);
  transform: rotate(8deg);
}

.space-facts {
  display: grid;
  margin-top: 40px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.space-facts > div {
  display: grid;
  min-height: 126px;
  padding: 26px 30px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.space-facts > div:last-child {
  border-right: 0;
}

.space-facts strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.space-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.difficulty-story {
  background: var(--paper);
}

.difficulty-grid {
  display: grid;
  align-items: center;
  gap: 95px;
  grid-template-columns: 0.76fr 1.24fr;
}

.difficulty-photo {
  position: relative;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 180px 180px 30px 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.difficulty-photo img {
  width: 100%;
  height: auto;
  border-radius: 168px 168px 22px 22px;
}

.difficulty-photo figcaption {
  position: static;
  max-width: none;
  margin: 9px 3px 3px;
  padding: 16px 19px;
  border-radius: 16px;
  background: var(--teal-deep);
  box-shadow: 0 18px 40px rgba(5, 119, 121, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
  transform: none;
}

.difficulty-copy h2 {
  max-width: 790px;
  font-size: clamp(2.75rem, 4.3vw, 4.25rem);
}

.difficulty-copy > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.difficulty-lines {
  display: grid;
  margin: 29px 0 5px;
  border-top: 1px solid var(--line);
}

.difficulty-lines span {
  position: relative;
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
}

.difficulty-lines span::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.difficulty-belief {
  margin-top: 31px;
  padding: 26px 29px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 22px 22px 0;
  background: #fff7df;
}

.difficulty-belief h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

.difficulty-belief p {
  margin: 11px 0 0;
  color: var(--muted);
}

.signals-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 15%, rgba(243, 183, 28, 0.15), transparent 24%),
    var(--paper);
}

.signals-grid {
  display: grid;
  align-items: center;
  gap: 82px;
  grid-template-columns: 1.05fr 0.95fr;
}

.signals-copy h2 {
  max-width: 720px;
}

.signals-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.signals-list {
  display: grid;
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.signals-list li {
  position: relative;
  padding: 15px 8px 15px 31px;
  border-bottom: 1px solid var(--line);
  color: #3f575c;
  font-weight: 600;
  line-height: 1.5;
}

.signals-list li::before {
  position: absolute;
  top: 24px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.signals-list li:nth-child(2n)::before {
  background: var(--teal);
}

.signals-reassurance {
  display: grid;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 20px;
  background: var(--ink);
  gap: 7px;
}

.signals-reassurance strong {
  color: var(--yellow);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.signals-reassurance span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.6;
}

.signals-visual {
  position: relative;
  min-height: 660px;
}

.signals-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.signals-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.signals-photo-main {
  top: 0;
  left: 2%;
  width: 69%;
  border-radius: 145px 28px 28px 28px;
}

.signals-photo-main img {
  border-radius: 136px 20px 20px 20px;
}

.signals-photo-small {
  right: 0;
  bottom: 36px;
  width: 60%;
  border-radius: 25px 25px 110px 25px;
}

.signals-photo-small img {
  border-radius: 18px 18px 101px 18px;
}

.signals-note {
  position: absolute;
  right: 6%;
  bottom: 0;
  max-width: 250px;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(239, 104, 31, 0.25);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.services {
  background: #eff8f6;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 90px;
  grid-template-columns: 1.45fr 0.55fr;
}

.section-heading h2 {
  max-width: 810px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
}

.services-context {
  display: grid;
  margin-top: 52px;
  padding: 35px 38px;
  border: 1px solid rgba(7, 158, 156, 0.15);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  gap: 25px;
}

.services-context > p {
  max-width: 990px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.learning-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.learning-ribbon span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.learning-ribbon span:nth-child(2n) {
  background: var(--teal-deep);
}

.learning-ribbon span:nth-child(3n) {
  background: var(--orange);
}

.services-context .services-confidence {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.45;
}

.choice-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 94%, rgba(7, 158, 156, 0.12), transparent 24%),
    #fffdf9;
}

.choice-heading {
  display: grid;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.choice-heading .eyebrow {
  justify-content: center;
}

.choice-heading > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.choice-grid {
  display: grid;
  margin-top: 58px;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  min-height: 500px;
  padding: 43px 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
}

.choice-school {
  background: linear-gradient(145deg, #e8f7f4, #fff);
}

.choice-psycho {
  background: linear-gradient(145deg, #fff2ce, #fff9ec);
}

.choice-index {
  display: grid;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  place-items: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-label {
  margin: 32px 0 0;
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-psycho .choice-label {
  color: var(--orange);
}

.choice-card h3 {
  max-width: 480px;
  margin: 11px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.choice-card > p:not(.choice-label) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.choice-card ul {
  display: grid;
  margin: 27px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.choice-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 650;
}

.choice-action {
  display: flex;
  margin-top: 22px;
  padding: 28px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
  background: var(--ink);
}

.choice-action > div {
  display: grid;
  max-width: 590px;
  gap: 6px;
}

.choice-action strong {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.choice-action > div span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.choice-action .button-primary {
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--ink);
}

.fundamental {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(243, 183, 28, 0.18), transparent 25%),
    #fff8e8;
}

.fundamental-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.93fr 1.07fr;
}

.fundamental-copy h2 {
  font-size: clamp(3.1rem, 5vw, 4.85rem);
}

.fundamental-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.fundamental-copy .fundamental-highlight {
  padding: 21px 23px;
  border-left: 5px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.fundamental-photo {
  position: relative;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 34px 125px 34px 34px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.fundamental-photo img {
  width: 100%;
  height: auto;
  border-radius: 25px 112px 25px 25px;
}

.fundamental-photo figcaption {
  position: static;
  max-width: none;
  margin: 9px 3px 3px;
  padding: 15px 18px;
  border-radius: 17px;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(24, 54, 60, 0.2);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.4;
  transform: none;
}

.service-grid {
  display: grid;
  margin-top: 68px;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(24, 54, 60, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 30px rgba(24, 54, 60, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  border-color: rgba(7, 158, 156, 0.35);
  box-shadow: 0 22px 60px rgba(24, 54, 60, 0.1);
  transform: translateY(-7px);
}

.service-number {
  color: rgba(24, 54, 60, 0.42);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 44px 0 22px;
  border-radius: 18px 18px 18px 5px;
  background: var(--yellow);
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  transform: rotate(-4deg);
}

.icon-teal { background: var(--teal); color: #fff; }
.icon-blue { background: var(--blue); color: #fff; }
.icon-yellow { background: var(--yellow); color: var(--ink); }

.service-card h3 {
  max-width: 480px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.16;
}

.service-card > p {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--muted);
}

.service-featured {
  grid-row: span 2;
  min-height: 668px;
  padding: 42px;
  background: #fff7df;
}

.service-featured .service-icon {
  width: 78px;
  height: 78px;
  margin-top: 88px;
  font-size: 1.55rem;
}

.service-featured h3 {
  font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.service-featured ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.service-featured li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(24, 54, 60, 0.12);
  font-weight: 600;
}

.service-featured li::before {
  margin-right: 10px;
  color: var(--orange);
  content: "✓";
  font-weight: 800;
}

.service-dark {
  background: var(--ink);
  color: #fff;
}

.service-dark .service-number,
.service-dark > p {
  color: rgba(255, 255, 255, 0.68);
}

.service-dark a {
  display: inline-block;
  margin-top: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 700;
}

.method {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(24, 54, 60, 0.09) 50%, transparent 50.04%),
    var(--paper);
}

.method-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.95fr 1.05fr;
}

.method-sticky {
  align-self: start;
}

.method-sticky h2 {
  max-width: 560px;
}

.method-sticky > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.method-photos {
  position: relative;
  min-height: 340px;
  margin-top: 56px;
}

.method-photos img {
  position: absolute;
  overflow: hidden;
  width: 58%;
  height: 270px;
  border: 7px solid #fff;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(24, 54, 60, 0.13);
}

.method-photos img:first-child {
  top: 0;
  left: 0;
  object-position: center;
  transform: rotate(-3deg);
}

.method-photos img:last-child {
  right: 0;
  bottom: 0;
  z-index: 2;
  object-position: center;
  transform: rotate(4deg);
}

.button-secondary {
  margin-top: 32px;
  border: 1px solid var(--ink);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: #fff;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  min-height: 190px;
  padding: 31px 0;
  align-items: start;
  gap: 29px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto 1fr;
}

.method-list li:first-child {
  border-top: 1px solid var(--line);
}

.method-list li > span {
  display: grid;
  width: 49px;
  height: 49px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 700;
}

.method-list h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.method-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.signs-panel {
  display: grid;
  margin-top: 95px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff7df;
  box-shadow: 0 24px 65px rgba(24, 54, 60, 0.09);
  grid-column: 1 / -1;
  grid-template-columns: 1.18fr 0.82fr;
}

.signs-copy {
  padding: 55px;
}

.signs-copy .eyebrow {
  justify-content: flex-start;
}

.signs-copy h3 {
  max-width: 690px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.signs-copy ul {
  display: grid;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.signs-copy li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid rgba(24, 54, 60, 0.12);
  color: #435c61;
}

.signs-copy li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff7df;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal);
  content: "";
}

.signs-reassurance {
  display: grid;
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  gap: 8px;
}

.signs-reassurance strong {
  color: var(--yellow);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
}

.signs-reassurance span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.65;
}

.signs-photo {
  min-height: 100%;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.52);
}

.signs-photo img {
  width: 100%;
  height: 100%;
  border-radius: 23px 95px 23px 23px;
  object-fit: contain;
  object-position: center;
}

.gallery {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.gallery .eyebrow {
  color: #7de2d8;
}

.gallery-heading {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  gap: 80px;
  grid-template-columns: 0.4fr 1.6fr;
}

.gallery-heading h2 {
  max-width: 970px;
  font-size: clamp(2.8rem, 4.5vw, 4.35rem);
}

.gallery-heading h2 em {
  color: var(--yellow);
}

.gallery-grid {
  display: grid;
  min-height: 940px;
  gap: 13px;
  grid-auto-rows: 285px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #25494d;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(3, 24, 27, 0.78));
  content: "";
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.28, 1), filter 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.gallery-item span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(1) img { object-position: 50% 45%; }
.gallery-grid .gallery-item:nth-child(2) img { object-position: 58% 50%; }
.gallery-grid .gallery-item:nth-child(3) img { object-position: 53% 45%; }
.gallery-grid .gallery-item:nth-child(4) img { object-position: 50% 42%; }
.gallery-grid .gallery-item:nth-child(5) img { object-position: 50% 48%; }
.gallery-grid .gallery-item:nth-child(6) img { object-position: 50% 44%; }

.gallery-hint {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  text-align: right;
}

.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 11%, rgba(239, 104, 31, 0.13), transparent 20%),
    radial-gradient(circle at 7% 85%, rgba(7, 158, 156, 0.11), transparent 22%),
    #fff8e8;
}

.team-intro {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1.12fr 0.88fr;
}

.team-copy h2 {
  max-width: 760px;
}

.team-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.team-copy .team-names {
  margin-top: 25px;
  color: var(--orange);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.team-story-lines {
  display: grid;
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.team-story-lines span {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.team-copy .team-promise {
  padding: 19px 21px;
  border-radius: 17px;
  background: var(--ink);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.09rem;
  line-height: 1.45;
}

.team-promise strong {
  color: var(--yellow);
}

.team-photo {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transform: none;
}

.team-photo img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.team-photo figcaption {
  position: static;
  width: fit-content;
  margin: 11px auto 2px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(24, 54, 60, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  transform: none;
}

.team-manifesto {
  display: grid;
  margin-top: 75px;
  padding: 40px 44px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  gap: 13px;
}

.team-manifesto p {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
}

.team-manifesto strong {
  max-width: 980px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.3;
}

.people-grid {
  display: grid;
  margin-top: 45px;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.person-card {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  border-radius: 32px;
  grid-template-columns: 1fr 0.44fr;
  grid-template-rows: auto 1fr;
}

.person-amanda {
  background: #f8e9e3;
}

.person-thayrinne {
  background: #dff3f0;
}

.person-main-image {
  position: relative;
  overflow: hidden;
  grid-column: 1 / 3;
}

.person-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.28, 1);
}

.person-amanda .person-main-image img {
  object-position: center 28%;
}

.person-thayrinne .person-main-image img {
  object-position: center 28%;
}

.person-card:hover .person-main-image img {
  transform: scale(1.025);
}

.person-index {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
  place-items: center;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
}

.person-content {
  padding: 35px 30px;
}

.person-role {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.person-thayrinne .person-role {
  color: var(--teal-deep);
}

.person-content h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
}

.person-content > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.person-detail-image {
  width: calc(100% - 24px);
  height: auto;
  margin: 18px 18px 18px 0;
  align-self: end;
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 90px 22px 22px 22px;
  object-fit: contain;
}

.person-amanda .person-detail-image {
  object-position: center 38%;
}

.person-thayrinne .person-detail-image {
  object-position: center;
}

.credential-block {
  display: flex;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-block strong {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.credential-block span {
  padding: 7px 10px;
  border: 1px solid rgba(24, 54, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #40595e;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.reviews-section {
  background:
    radial-gradient(circle at 88% 15%, rgba(239, 104, 31, 0.12), transparent 25%),
    #eff8f6;
}

.reviews-card {
  display: grid;
  min-height: 410px;
  padding: 54px;
  align-items: center;
  gap: 52px;
  border: 1px solid rgba(24, 54, 60, 0.11);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  grid-template-columns: 0.62fr 1.38fr 0.9fr;
}

.reviews-score {
  display: grid;
  min-height: 260px;
  padding: 32px 24px;
  align-content: center;
  justify-items: center;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
}

.reviews-stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
}

.reviews-score strong {
  margin-top: 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.7rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.reviews-score small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-copy h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.15rem);
}

.reviews-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.reviews-action {
  display: grid;
  padding-left: 35px;
  border-left: 1px solid var(--line);
  gap: 22px;
}

.reviews-action p {
  margin: 0;
  color: var(--muted);
}

.reviews-action .button {
  width: 100%;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 92%, rgba(7, 158, 156, 0.12), transparent 24%),
    var(--paper);
}

.process-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 0.45fr 1.55fr;
}

.process-heading .eyebrow {
  margin-bottom: 5px;
}

.process-heading h2 {
  max-width: 930px;
}

.process-grid {
  display: grid;
  margin: 68px 0 0;
  padding: 0;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-grid li {
  min-height: 310px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.process-grid li:nth-child(2) {
  background: #e6f6f3;
}

.process-grid li:nth-child(3) {
  background: #fff3d0;
}

.process-grid li:nth-child(4) {
  background: #f8e9e3;
}

.process-grid li > span {
  display: grid;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--ink);
  place-items: center;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-grid h3 {
  margin: 46px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.17;
}

.process-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.process-action {
  display: flex;
  margin-top: 28px;
  padding: 27px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.process-action p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.process-action .button {
  flex: 0 0 auto;
}

.lightbox {
  width: min(1050px, calc(100vw - 32px));
  max-width: none;
  height: min(790px, calc(100vh - 32px));
  max-height: none;
  padding: 12px;
  border: 0;
  border-radius: 22px;
  background: #10272b;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(6, 24, 27, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  place-items: center;
}

.expertise {
  background:
    radial-gradient(circle at 85% 25%, rgba(243, 183, 28, 0.16), transparent 24%),
    #fff8e8;
}

.expertise-grid {
  display: grid;
  align-items: center;
  gap: 95px;
  grid-template-columns: 0.84fr 1.16fr;
}

.expertise-image {
  position: relative;
  padding: 15px;
  border: 1px solid rgba(24, 54, 60, 0.12);
  border-radius: 190px 190px 32px 32px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.expertise-image img {
  width: 100%;
  aspect-ratio: 0.88;
  border-radius: 175px 175px 22px 22px;
  object-fit: cover;
  object-position: center;
}

.image-stamp {
  position: absolute;
  right: -35px;
  bottom: 32px;
  padding: 17px 23px;
  border-radius: 14px;
  background: var(--orange);
  box-shadow: 0 14px 35px rgba(239, 104, 31, 0.27);
  color: #fff;
  transform: rotate(3.5deg);
}

.image-stamp strong,
.image-stamp span {
  display: block;
}

.image-stamp strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

.image-stamp span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expertise-copy h2 {
  max-width: 710px;
}

.expertise-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.credential-list {
  margin-top: 38px;
}

.credential-list > div {
  display: grid;
  padding: 18px 0;
  align-items: start;
  gap: 21px;
  border-top: 1px solid var(--line);
  grid-template-columns: 38px 1fr;
}

.credential-list span {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 700;
}

.credential-list p {
  margin: 0;
  color: var(--muted);
}

.credential-list strong {
  color: var(--ink);
}

.local {
  background: var(--paper);
}

.local-card {
  display: grid;
  min-height: 590px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--teal-deep);
  box-shadow: 0 34px 90px rgba(5, 119, 121, 0.22);
  color: #fff;
  grid-template-columns: 1.05fr 0.95fr;
}

.local-content {
  padding: 67px;
}

.local .eyebrow {
  color: #9cf1e8;
}

.local h2 {
  max-width: 620px;
  font-size: clamp(2.65rem, 4.2vw, 4.05rem);
}

.local h2 em {
  color: var(--yellow);
}

.local address {
  display: grid;
  margin-top: 34px;
  font-style: normal;
  gap: 4px;
}

.local address strong {
  margin-bottom: 3px;
  font-size: 1rem;
}

.local address span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.local-actions {
  display: flex;
  margin-top: 32px;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.button-light {
  background: #fff;
  color: var(--teal-deep);
}

.local-phone {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 700;
}

.hours {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.map-wrap {
  min-height: 590px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 564px;
  border: 0;
  border-radius: 24px;
  filter: saturate(0.78) contrast(1.06);
}

.faq {
  padding-top: 80px;
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.86fr 1.14fr;
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.75rem, 4.3vw, 4.2rem);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 24px;
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: "DM Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 0 27px;
  color: var(--muted);
}

.final-cta {
  padding-top: 20px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 92px 50px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 95%, rgba(255, 255, 255, 0.24), transparent 25%),
    linear-gradient(125deg, #f4bc1f, #f09f1f 54%, #ee6b22 120%);
  box-shadow: 0 32px 80px rgba(239, 130, 31, 0.24);
  text-align: center;
}

.cta-card .eyebrow {
  justify-content: center;
  color: var(--ink);
}

.cta-card h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.2vw, 5rem);
}

.cta-card h2 em {
  color: #fff;
}

.cta-card > p:not(.eyebrow) {
  max-width: 610px;
  margin: 25px auto 0;
  color: rgba(24, 54, 60, 0.8);
  font-size: 1.05rem;
}

.button-dark {
  margin-top: 32px;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(24, 54, 60, 0.22);
  color: #fff;
}

.cta-card small {
  display: block;
  margin-top: 13px;
  color: rgba(24, 54, 60, 0.65);
}

.cta-spark {
  position: absolute;
  border: 1px solid rgba(24, 54, 60, 0.17);
  color: rgba(24, 54, 60, 0.6);
  font-family: "Fraunces", Georgia, serif;
}

.spark-one {
  top: 49px;
  left: 7%;
  display: grid;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  place-items: center;
  font-size: 1.8rem;
  transform: rotate(-9deg);
}

.spark-two {
  right: 5%;
  bottom: 43px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  transform: rotate(8deg);
}

footer {
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  gap: 65px;
  grid-template-columns: 1.7fr 0.65fr 0.65fr;
}

.footer-brand img {
  width: 205px;
  height: 110px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  margin-top: 66px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
  color: #7c8b8f;
  font-size: 0.75rem;
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 17px;
  z-index: 80;
  display: grid;
  padding: 7px;
  border: 1px solid rgba(24, 54, 60, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 16px 40px rgba(24, 54, 60, 0.13);
  gap: 7px;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.social-rail a {
  display: grid;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-rail a:hover {
  background: var(--ink);
  color: #fff;
  transform: scale(1.08);
}

.social-rail .rail-whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-whatsapp {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.65, 0.28, 1);
}

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

@media (max-width: 1050px) {
  :root { --shell: min(100% - 40px, 920px); }

  nav { gap: 17px; }
  nav > a:not(.nav-cta) { display: none; }

  .lead-hero-grid { gap: 42px; grid-template-columns: 0.95fr 1.05fr; }
  .lead-hero-photo figcaption { right: -8px; }

  .hero-grid { gap: 35px; grid-template-columns: 0.95fr 1.05fr; }
  .hero-visual { min-height: 530px; }
  .photo-main { left: 2%; height: auto; }
  .photo-study { right: 0; height: auto; }
  .photo-smile { right: 0; height: auto; }
  .hero-note { left: -3%; }

  .difficulty-grid,
  .fundamental-grid { gap: 58px; }

  .signals-grid { gap: 50px; }
  .choice-card { padding: 38px 34px; }
  .reviews-card { gap: 38px; grid-template-columns: 0.7fr 1.3fr; }
  .reviews-action { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; grid-column: 1 / -1; }

  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid li { min-height: 270px; }

  .turning-grid,
  .section-heading,
  .space-heading,
  .gallery-heading,
  .expertise-grid,
  .team-intro,
  .faq-grid { gap: 55px; }

  .method-grid { gap: 70px; }
  .local-content { padding: 51px; }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }

  .section-pad { padding: 88px 0; }

  .nav-wrap { min-height: 78px; }
  .brand { width: 170px; height: 64px; }
  .brand img { width: 166px; height: 62px; }
  .menu-toggle { display: block; }

  nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    padding: 25px 24px 31px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 22px 50px rgba(24, 54, 60, 0.12);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  nav > a:not(.nav-cta) {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta { margin-top: 18px; text-align: center; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .lead-hero { min-height: auto; padding: 132px 0 90px; }
  .lead-hero-grid { grid-template-columns: 1fr; }
  .lead-hero-copy { text-align: center; }
  .lead-hero-copy .eyebrow,
  .lead-hero-trust { justify-content: center; }
  .lead-hero-text,
  .lead-hero-statement { margin-inline: auto; }
  .lead-hero-photo { width: min(100%, 650px); margin: 18px auto 0; }
  .lead-shape-one { top: 105px; right: 8%; }
  .lead-shape-two { bottom: 24px; left: 3%; }

  .hero { min-height: auto; padding-top: 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-points { justify-content: center; }
  .hero-visual { min-height: 610px; margin-top: 16px; }
  .photo-main { top: 65px; left: 2%; width: 60%; height: auto; }
  .photo-study { right: 1%; width: 44%; height: auto; }
  .photo-smile { right: 0; width: 46%; height: auto; }
  .hero-note { left: 2%; }
  .orbit-one { top: 115px; right: 8%; }
  .orbit-two { right: 4%; bottom: 20px; }

  .turning-grid,
  .section-heading,
  .space-heading,
  .difficulty-grid,
  .fundamental-grid,
  .method-grid,
  .gallery-heading,
  .expertise-grid,
  .team-intro,
  .process-heading,
  .local-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .signals-grid,
  .choice-grid,
  .reviews-card {
    grid-template-columns: 1fr;
  }

  .signals-grid { gap: 55px; }
  .signals-visual { width: min(100%, 590px); min-height: 640px; margin-inline: auto; }
  .choice-grid { margin-top: 44px; }
  .choice-card { min-height: 0; }
  .choice-action { align-items: stretch; flex-direction: column; }
  .choice-action .button { width: 100%; }
  .reviews-card { padding: 42px; }
  .reviews-score { min-height: 225px; }
  .reviews-action { grid-column: auto; }

  .turning { padding-top: 110px; }
  .turning-grid { gap: 20px; }
  .turning-copy { padding-top: 20px; }
  .space-story { padding-top: 105px; }
  .space-heading { gap: 22px; }
  .space-heading .eyebrow { justify-content: flex-start; }
  .space-heading > p { max-width: 620px; }
  .space-collage { min-height: 720px; grid-template-rows: repeat(7, 88px); }
  .space-photo-main { grid-column: 1 / 9; grid-row: 1 / 6; }
  .space-photo-small { grid-column: 8 / 13; grid-row: 1 / 4; }
  .space-photo-info { grid-column: 7 / 13; grid-row: 4 / 8; }
  .space-seal { top: auto; right: auto; bottom: 1%; left: 2%; width: 130px; height: 130px; }
  .difficulty-grid { gap: 65px; }
  .difficulty-photo { width: min(100% - 25px, 520px); margin-inline: auto; }
  .difficulty-photo figcaption { right: -20px; }
  .section-heading { gap: 25px; }
  .section-heading > p { max-width: 600px; }

  .fundamental-grid { gap: 55px; }
  .fundamental-photo { width: min(100% - 15px, 650px); margin-inline: auto; }

  .method { background: var(--paper); }
  .method-grid { gap: 62px; }
  .method-photos { max-width: 560px; }
  .signs-panel { grid-template-columns: 1fr; }
  .signs-photo { min-height: 0; }
  .signs-photo img { height: auto; }

  .gallery-heading { gap: 15px; }
  .gallery-heading .eyebrow { justify-content: flex-start; }
  .gallery-grid { min-height: 1050px; grid-auto-rows: 260px; grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }

  .expertise-grid { gap: 62px; }
  .expertise-image { max-width: 510px; margin-inline: auto; }

  .team-intro { gap: 55px; }
  .team-photo { width: min(100%, 510px); margin-inline: auto; }
  .people-grid { margin-top: 65px; grid-template-columns: 1fr; }
  .person-card { min-height: 0; grid-template-rows: auto 1fr; }

  .process-heading { gap: 18px; }
  .process-heading .eyebrow { justify-content: flex-start; }

  .local-card { min-height: auto; }
  .map-wrap { min-height: 420px; }
  .map-wrap iframe { min-height: 394px; }

  .faq-grid { gap: 60px; }
  .faq-intro .eyebrow { justify-content: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .social-rail { display: none; }

  .mobile-whatsapp {
    position: fixed;
    right: 13px;
    bottom: 12px;
    left: 13px;
    z-index: 95;
    display: flex;
    min-height: 55px;
    padding: 0 22px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 17px;
    background: #1fb75b;
    box-shadow: 0 16px 42px rgba(22, 126, 62, 0.3);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 800;
  }

  footer { padding-bottom: 95px; }
}

@media (max-width: 570px) {
  :root { --shell: calc(100% - 26px); }

  .section-pad { padding: 76px 0; }
  .lead-hero { padding-top: 122px; }
  .lead-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.15rem); }
  .lead-hero-photo { width: 100%; padding: 7px; border-radius: 24px 74px 24px 24px; }
  .lead-hero-photo img { border-radius: 18px 67px 18px 18px; }
  .lead-hero-photo figcaption { position: static; max-width: none; margin: 9px 3px 2px; box-shadow: none; transform: none; }
  .lead-hero-trust { align-items: center; flex-direction: column; }
  .lead-hero-trust > span { padding-left: 0; border-left: 0; }
  .lead-shape-one { width: 54px; height: 54px; font-size: 1rem; }
  .lead-shape-two { display: none; }

  .hero { padding-top: 88px; }
  h1 { font-size: clamp(2.95rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.45rem, 11vw, 3.45rem); }
  .hero-copy h2 { font-size: clamp(2.75rem, 12vw, 3.85rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { gap: 14px; }
  .button { width: 100%; }
  .text-link { font-size: 0.9rem; }

  .hero-visual { min-height: 475px; }
  .photo { border-width: 6px; }
  .photo-main { top: 55px; left: 0; width: 61%; height: auto; border-radius: 76px 76px 22px 22px; }
  .photo-study { top: 12px; right: 0; width: 44%; height: auto; border-radius: 20px 48px 20px 20px; }
  .photo-smile { right: 0; bottom: 32px; width: 48%; height: auto; border-radius: 20px 20px 68px 20px; }
  .hero-note { bottom: 16px; left: 2%; width: 184px; padding: 14px; }
  .orbit-one { top: 108px; right: 4%; width: 56px; height: 56px; font-size: 1.5rem; }
  .orbit-two { display: none; }

  .turning-grid { gap: 17px; }
  .quote-card { padding: 23px 22px 23px 54px; }
  .quote-card p { font-size: 1.18rem; }

  .space-collage { min-height: 895px; margin-top: 42px; grid-template-rows: repeat(10, 80px); }
  .space-photo { border-width: 6px; }
  .space-photo-main { border-radius: 24px 70px 24px 24px; grid-column: 1 / 13; grid-row: 1 / 6; }
  .space-photo-small { border-radius: 60px 22px 22px 22px; grid-column: 1 / 7; grid-row: 6 / 10; transform: rotate(-2deg); }
  .space-photo-info { border-radius: 22px 22px 60px 22px; grid-column: 7 / 13; grid-row: 6 / 11; transform: rotate(2deg); }
  .space-seal { bottom: 0; left: 3%; width: 90px; height: 90px; }
  .space-facts { grid-template-columns: 1fr; }
  .space-facts > div { min-height: 100px; padding: 20px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .space-facts > div:last-child { border-bottom: 0; }

  .difficulty-grid { gap: 52px; }
  .difficulty-photo { width: calc(100% - 10px); }
  .difficulty-photo figcaption { position: static; max-width: none; margin: 8px 2px 2px; transform: none; }
  .difficulty-belief { padding: 23px 22px; }

  .signals-list li { padding-right: 0; }
  .signals-visual { min-height: 530px; }
  .signals-photo-main { width: 73%; }
  .signals-photo-small { width: 64%; }
  .signals-note { right: 2%; max-width: 220px; }

  .services-context { margin-top: 38px; padding: 27px 23px; }
  .services-context .services-confidence { font-size: 1.15rem; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-featured { min-height: 0; padding: 27px; }
  .service-featured { grid-row: auto; }
  .service-featured .service-icon { margin-top: 44px; }

  .choice-card { padding: 31px 25px; border-radius: 24px; }
  .choice-card h3 { font-size: 2rem; }
  .choice-action { padding: 25px 23px; }

  .fundamental-photo { width: 100%; padding: 7px; border-radius: 24px 70px 24px 24px; }
  .fundamental-photo img { border-radius: 18px 63px 18px 18px; }
  .fundamental-photo figcaption { position: static; max-width: none; margin: 8px 3px 2px; transform: none; }

  .method-list li { min-height: 0; gap: 18px; grid-template-columns: auto 1fr; }
  .method-list h3 { font-size: 1.37rem; }
  .method-photos { min-height: 280px; margin-top: 42px; }
  .method-photos img { height: 220px; }
  .signs-panel { margin-top: 65px; }
  .signs-copy { padding: 34px 24px; }
  .signs-copy h3 { font-size: 2rem; }
  .signs-photo { padding: 8px; }
  .signs-photo img { border-radius: 19px 60px 19px 19px; }

  .gallery-grid { min-height: 0; grid-auto-rows: 250px; grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }
  .gallery-hint { text-align: left; }

  .expertise-image { width: calc(100% - 18px); }
  .image-stamp { right: -8px; }

  .team-photo figcaption { right: -4px; bottom: 17px; }
  .team-manifesto { margin-top: 54px; padding: 30px 25px; }
  .person-card { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .person-main-image { grid-column: 1; }
  .person-content { padding: 31px 25px 23px; }
  .person-detail-image { width: calc(100% - 44px); height: auto; margin: 0 22px 22px; border-radius: 22px 70px 22px 22px; }

  .reviews-card { padding: 22px; border-radius: 26px; }
  .reviews-score { min-height: 200px; }
  .reviews-action { padding-top: 24px; }

  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 0; }
  .process-grid h3 { margin-top: 30px; }
  .process-action { align-items: stretch; flex-direction: column; }
  .process-action .button { width: 100%; }

  .local-content { padding: 38px 26px; }
  .local-actions { align-items: stretch; flex-direction: column; }
  .local-phone { align-self: center; }
  .map-wrap { min-height: 350px; }
  .map-wrap iframe { min-height: 324px; }

  .faq-list summary { min-height: 84px; font-size: 1.08rem; }

  .cta-card { padding: 73px 22px; }
  .spark-one { top: 18px; left: 4%; width: 48px; height: 48px; font-size: 1.1rem; }
  .spark-two { right: 3%; bottom: 19px; }

  .footer-grid { gap: 42px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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

/* Caderno da Família */
.family-journal {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(243, 183, 28, 0.18), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #fffdf9 100%);
}

.family-journal::before {
  position: absolute;
  top: 70px;
  left: -80px;
  width: 210px;
  height: 210px;
  border: 44px solid rgba(7, 158, 156, 0.07);
  border-radius: 50%;
  content: "";
}

.journal-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr;
}

.journal-heading h2 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.9rem);
}

.journal-intro {
  padding-bottom: 10px;
}

.journal-intro p {
  max-width: 510px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.journal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 62px;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 54, 60, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.journal-card:hover {
  box-shadow: 0 26px 62px rgba(24, 54, 60, 0.14);
  transform: translateY(-7px);
}

.journal-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1.08fr 0.92fr;
}

.journal-image {
  position: relative;
  display: block;
  min-height: 230px;
  overflow: hidden;
  background: #eaf6f4;
}

.journal-featured .journal-image {
  min-height: 100%;
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.28, 1);
}

.journal-card:hover .journal-image img {
  transform: scale(1.035);
}

.journal-card:nth-child(2) .journal-image img,
.journal-card:nth-child(4) .journal-image img,
.journal-card:nth-child(6) .journal-image img {
  object-position: center 42%;
}

.journal-card:nth-child(5) .journal-image img {
  object-fit: contain;
  padding: 28px;
  background: #fff;
}

.journal-image > span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 180px;
  min-height: 68px;
  padding: 12px 18px 15px;
  border-radius: 0 0 0 34px;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(24, 54, 60, 0.2);
  place-items: center;
  text-align: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.journal-card:nth-child(2) .journal-image > span,
.journal-card:nth-child(5) .journal-image > span { background: var(--orange); }
.journal-card:nth-child(3) .journal-image > span,
.journal-card:nth-child(6) .journal-image > span { background: var(--teal-deep); }

.journal-card-copy {
  display: flex;
  min-height: 330px;
  padding: 30px 28px 28px;
  flex-direction: column;
}

.journal-featured .journal-card-copy {
  min-height: 430px;
  justify-content: center;
}

.journal-meta {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 1.85rem);
  line-height: 1.13;
}

.journal-card h3 a:hover,
.journal-card h3 a:focus-visible {
  color: var(--teal-deep);
}

.journal-card-copy > p:not(.journal-meta) {
  margin: 18px 0 24px;
  color: var(--muted);
  line-height: 1.55;
}

.journal-read {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--teal-deep);
  font-size: 0.87rem;
  font-weight: 800;
}

/* Páginas editoriais */
.article-page {
  background:
    radial-gradient(circle at 98% 3%, rgba(243, 183, 28, 0.12), transparent 18%),
    var(--paper);
}

.article-page .site-header {
  position: sticky;
}

.article-page .brand {
  overflow: visible;
}

.article-main {
  padding-bottom: 80px;
}

.article-breadcrumb {
  display: flex;
  padding: 34px 0 22px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #728286;
  font-size: 0.8rem;
}

.article-breadcrumb a:hover {
  color: var(--teal-deep);
}

.article-hero {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  grid-template-columns: 1.04fr 0.96fr;
}

.article-hero-copy {
  display: flex;
  padding: clamp(40px, 6vw, 78px);
  justify-content: center;
  flex-direction: column;
}

.article-kicker {
  display: flex;
  margin: 0 0 23px;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-kicker span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.article-hero h1 {
  font-size: clamp(2.75rem, 5.1vw, 5rem);
  line-height: 0.99;
}

.article-hero h1 em {
  color: var(--teal-deep);
  font-style: italic;
}

.article-deck {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-byline {
  display: flex;
  margin-top: 29px;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  color: #75868a;
  font-size: 0.77rem;
  font-weight: 600;
}

.article-byline strong {
  color: var(--ink);
}

.article-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #e8f5f3;
}

.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-media.logo-media img {
  object-fit: contain;
  padding: 70px;
  background: #fffaf0;
}

.article-hero-media > span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  min-width: 190px;
  min-height: 82px;
  padding: 15px 22px 18px;
  border-radius: 0 0 0 42px;
  background: var(--ink);
  color: #fff;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  max-width: 1040px;
  margin: 80px auto 0;
  align-items: start;
  gap: 75px;
  grid-template-columns: minmax(0, 1fr) 250px;
}

.article-content {
  min-width: 0;
  font-size: 1.06rem;
  line-height: 1.82;
}

.article-content > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.09em 0 0;
  color: var(--orange);
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.76;
}

.article-content h2 {
  margin: 62px 0 20px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.article-content h3 {
  margin: 38px 0 14px;
  font-size: 1.45rem;
  line-height: 1.22;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 24px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-content a:not(.button) {
  border-bottom: 1px solid currentColor;
  color: var(--teal-deep);
  font-weight: 700;
}

.quick-answer {
  margin: 0 0 42px;
  padding: 28px 30px;
  border: 1px solid rgba(7, 158, 156, 0.18);
  border-left: 6px solid var(--teal);
  border-radius: 0 22px 22px 0;
  background: #eef9f7;
}

.quick-answer strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-deep);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-answer p {
  margin: 0;
  color: #31575c;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.45;
}

.article-callout {
  margin: 42px 0;
  padding: 32px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}

.article-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.45;
}

.article-note {
  margin: 40px 0;
  padding: 24px 27px;
  border-radius: 20px;
  background: #fff5e5;
  color: #63451f;
  font-size: 0.95rem;
}

.article-aside {
  position: sticky;
  top: 120px;
  display: grid;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  gap: 14px;
}

.article-aside strong {
  margin-bottom: 2px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-aside a {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.article-aside a:hover {
  color: var(--orange);
}

.source-box {
  margin-top: 58px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  color: #6d7f83;
  font-size: 0.85rem;
}

.source-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.article-cta {
  max-width: 1040px;
  margin: 82px auto 0;
  padding: 58px;
  border-radius: 30px;
  background: linear-gradient(130deg, #079e9c, #057779);
  color: #fff;
  text-align: center;
}

.article-cta h2 {
  max-width: 750px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.article-cta p {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.article-cta .button {
  margin-top: 27px;
  background: #fff;
  color: var(--teal-deep);
}

.journal-index-hero {
  padding: 110px 0 85px;
  background:
    radial-gradient(circle at 90% 20%, rgba(243, 183, 28, 0.22), transparent 25%),
    linear-gradient(140deg, #fffaf0, #eef9f7);
  text-align: center;
}

.journal-index-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3.4rem, 6.7vw, 6.5rem);
}

.journal-index-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.journal-index {
  padding: 90px 0 120px;
}

@media (max-width: 1050px) {
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-featured { grid-column: span 2; }
  .article-layout { gap: 45px; grid-template-columns: minmax(0, 1fr) 220px; }
}

@media (max-width: 820px) {
  .journal-heading,
  .article-hero,
  .article-layout { grid-template-columns: 1fr; }
  .journal-heading { gap: 24px; }
  .journal-heading .eyebrow { justify-content: flex-start; }
  .journal-featured { grid-template-columns: 1fr; }
  .journal-featured .journal-image { min-height: 360px; }
  .journal-featured .journal-card-copy { min-height: 0; }
  .article-hero { min-height: 0; }
  .article-hero-media { min-height: 480px; grid-row: 1; }
  .article-hero-copy { grid-row: 2; }
  .article-layout { margin-top: 60px; }
  .article-aside { position: static; padding: 25px; grid-row: 1; }
  .article-cta { padding: 48px 30px; }
}

@media (max-width: 570px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-featured { grid-column: auto; }
  .journal-card-copy { min-height: 0; }
  .journal-image,
  .journal-featured .journal-image { min-height: 260px; }
  .article-breadcrumb { padding-top: 24px; }
  .article-hero { border-radius: 24px; }
  .article-hero-media { min-height: 330px; }
  .article-hero-media.logo-media img { padding: 45px; }
  .article-hero-copy { padding: 34px 24px 39px; }
  .article-hero h1 { font-size: clamp(2.65rem, 13vw, 3.75rem); }
  .article-deck { font-size: 1rem; }
  .article-layout { margin-top: 48px; gap: 40px; }
  .article-content { font-size: 1rem; }
  .quick-answer { padding: 23px 21px; }
  .article-callout { padding: 25px 22px; }
  .article-cta { margin-top: 60px; padding: 44px 22px; border-radius: 24px; }
  .journal-index-hero { padding: 90px 0 70px; }
  .journal-index { padding: 65px 0 90px; }
}
