:root {
  --ink: #15383f;
  --ink-soft: #4c676c;
  --navy: #0b4f59;
  --navy-deep: #073a43;
  --teal: #319b91;
  --teal-dark: #16766f;
  --mint: #d6eee9;
  --mint-soft: #eff8f6;
  --coral: #28769a;
  --sand: #f4f8f7;
  --white: #ffffff;
  --line: #d3e2df;
  --shadow: 0 24px 64px rgba(11, 79, 89, 0.13);
  --shadow-soft: 0 12px 34px rgba(11, 79, 89, 0.08);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.85rem;
  --shell: min(1160px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #176f91;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 0.6rem;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(8, 47, 61, 0.08);
  box-shadow: 0 8px 30px rgba(7, 47, 61, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-symbol {
  flex: 0 0 auto;
  width: 3.1rem;
  height: 3.1rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(8, 47, 61, 0.08);
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(7, 47, 61, 0.08);
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav > a:not(.button) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: var(--mint);
  transition: right 0.2s ease;
}

.site-header.is-scrolled .main-nav > a:not(.button)::after {
  background: var(--teal);
}

.main-nav > a:not(.button):hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 1.4rem;
  height: 2px;
  margin: 0.17rem auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button svg,
.card-link svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.88rem;
}

.button-header {
  color: var(--navy);
  background: var(--mint);
}

.site-header.is-scrolled .button-header {
  color: var(--white);
  background: var(--navy);
}

.button-primary {
  color: var(--navy);
  background: var(--mint);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-whatsapp {
  width: 100%;
  margin-top: 0.3rem;
  color: var(--white);
  background: #168a70;
  box-shadow: 0 14px 28px rgba(16, 110, 89, 0.2);
}

.button-whatsapp svg {
  width: 1.3rem;
  fill: currentColor;
  stroke: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-block: 0.5rem;
  color: var(--white);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.text-link-dark {
  color: var(--navy);
  text-decoration-color: var(--teal);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

.eyebrow-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.45rem;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 0.3rem rgba(255, 138, 120, 0.18);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-weight: 820;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3.2rem, 5.6vw, 5.6rem);
}

h1 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 9rem 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -12rem;
  width: 42rem;
  height: 25rem;
  background: radial-gradient(circle, rgba(0, 167, 150, 0.33), transparent 68%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(188, 238, 228, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 28rem;
  height: 28rem;
  top: -12rem;
  left: -8rem;
}

.hero-orbit-two {
  width: 15rem;
  height: 15rem;
  top: 7rem;
  left: 42%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 38rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding-bottom: 5.5rem;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.79);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin: 2rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  list-style: none;
}

.hero-tags span {
  display: inline-grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  margin-right: 0.28rem;
  color: var(--navy);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 2rem 0 2.5rem;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9rem 2rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.27);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 47, 61, 0.3), transparent 38%), linear-gradient(0deg, rgba(8, 47, 61, 0.12), transparent 35%);
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  object-position: 60% center;
}

.image-note {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small,
.advisor-signature strong,
.advisor-signature small {
  display: block;
}

.floating-card strong {
  font-size: 0.86rem;
}

.floating-card small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.floating-card-top {
  top: 0;
  right: 1.25rem;
}

.floating-card-bottom {
  left: -1.6rem;
  bottom: 0;
}

.mini-icon,
.avatar {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--mint);
  border-radius: 0.75rem;
}

.mini-icon svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.avatar {
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-weight: 850;
}

.comparison-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-strip > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.4;
}

.comparison-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-strip li {
  font-size: 0.8rem;
  font-weight: 720;
}

.comparison-strip li span {
  margin-right: 0.45rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 900;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.section-heading > p:last-child,
.process-intro > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.area-copy > p:not(.eyebrow):not(.small-note) {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.heading-center {
  margin-inline: auto;
  text-align: center;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.option-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.option-card-featured {
  background: var(--mint-soft);
}

.option-card-featured::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 11rem;
  height: 11rem;
  background: rgba(0, 167, 150, 0.1);
  border-radius: 50%;
}

.option-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.option-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 0.95rem;
}

.option-icon-coral {
  color: var(--navy);
  background: var(--coral);
}

.option-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.option-label {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.option-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.option-card > p {
  min-height: 5.2rem;
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 0.7rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.card-link:hover svg {
  transform: translateX(0.25rem);
}

.card-link svg {
  transition: transform 0.2s ease;
}

.process-section {
  background: var(--sand);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(16, 42, 51, 0.14);
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(16, 42, 51, 0.14);
}

.step-number {
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.77rem;
  font-weight: 900;
}

.steps-list h3 {
  margin: 0.2rem 0 0.55rem;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.criteria-section {
  color: var(--white);
  background: var(--navy-deep);
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.criteria-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.criteria-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.criteria-heading > p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.68);
}

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

.criteria-grid article {
  min-height: 14rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
}

.criteria-grid article:nth-child(2) {
  transform: translateY(1.2rem);
}

.criteria-grid article:nth-child(3) {
  transform: translateY(-0.6rem);
}

.criteria-grid article > span {
  display: block;
  margin-bottom: 3.4rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.criteria-grid h3 {
  margin-bottom: 0.65rem;
}

.criteria-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.area-section {
  overflow: hidden;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.area-graphic {
  position: relative;
  aspect-ratio: 1.1;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--mint-soft);
  border-radius: var(--radius-lg);
}

.area-graphic::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 64%;
  background: var(--navy);
  border-radius: 54% 42% 61% 39% / 43% 58% 42% 57%;
  transform: rotate(-13deg);
  box-shadow: 1.5rem 1.5rem 0 var(--mint);
}

.area-graphic > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.05;
  text-align: center;
}

.area-graphic > p strong {
  font-size: 2.2rem;
  letter-spacing: -0.06em;
}

.area-ring {
  position: absolute;
  border: 1px solid rgba(8, 47, 61, 0.18);
  border-radius: 50%;
}

.area-ring-one {
  width: 80%;
  height: 80%;
}

.area-ring-two {
  width: 55%;
  height: 55%;
}

.area-pin {
  position: absolute;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--coral);
  border: 0.35rem solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 9px 20px rgba(8, 47, 61, 0.2);
  transform: rotate(-45deg);
}

.area-pin span {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--navy);
  border-radius: 50%;
}

.area-pin-main {
  top: 23%;
  left: 27%;
}

.area-pin-small {
  width: 1.8rem;
  height: 1.8rem;
  background: var(--mint);
  border-width: 0.28rem;
}

.area-pin-a {
  right: 25%;
  bottom: 25%;
}

.area-pin-b {
  left: 30%;
  bottom: 18%;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.8rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.location-list li {
  padding: 0.55rem 0.85rem;
  color: var(--navy);
  background: var(--mint-soft);
  border: 1px solid rgba(0, 167, 150, 0.16);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
}

.small-note {
  margin-bottom: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--coral);
  font-size: 0.83rem;
}

.quote-section {
  padding-top: 2rem;
}

.quote-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--navy);
  border-radius: 2.5rem;
  box-shadow: var(--shadow);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.7);
}

.advisor-signature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.advisor-signature small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.avatar-large {
  width: 3rem;
  height: 3rem;
  color: var(--navy);
  background: var(--mint);
}

.quote-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.quote-form fieldset {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}

.quote-form legend,
.select-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.87rem;
  font-weight: 800;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  min-height: 3rem;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  font-size: 0.87rem;
  font-weight: 750;
  text-align: center;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.choice-card input:checked + span {
  color: var(--navy);
  background: var(--mint-soft);
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.choice-card input:focus-visible + span {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.select-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.select-wrap select {
  width: 100%;
  min-height: 3.25rem;
  appearance: none;
  padding: 0.7rem 3rem 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  cursor: pointer;
}

.select-wrap svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1rem;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  pointer-events: none;
  transform: translateY(-50%);
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 8rem;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 0;
  font-size: 1.05rem;
  font-weight: 780;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--mint-soft);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 44rem;
  margin: -0.35rem 0 1.5rem;
  padding-right: 3rem;
  color: var(--ink-soft);
}

.closing-section {
  color: var(--white);
  background: var(--teal-dark);
  padding: 3.5rem 0;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.closing-inner .eyebrow {
  margin-bottom: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.closing-inner h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-deep);
}

.footer-main {
  min-height: 9rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand-footer {
  color: var(--white);
}

.footer-main p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-main > a:last-child {
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  max-width: 52rem;
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.55;
}

.footer-legal p:last-child {
  flex: 0 0 auto;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  max-width: min(24rem, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(8, 47, 61, 0.08);
    backdrop-filter: blur(16px);
  }

  .header-inner {
    min-height: 4.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(0.34rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-0.34rem) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 4.8rem 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(7, 47, 61, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav > a:not(.button) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .button-header {
    margin-top: 1rem;
    color: var(--white);
    background: var(--navy);
  }

  .hero {
    padding-top: 8rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    max-width: 45rem;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-visual {
    max-width: 46rem;
    margin-inline: auto;
  }

  .comparison-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .criteria-grid article:nth-child(2),
  .criteria-grid article:nth-child(3) {
    transform: none;
  }

  .area-grid,
  .quote-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .area-graphic {
    max-width: 36rem;
    width: 100%;
    margin-inline: auto;
  }

  .faq-intro,
  .process-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > a:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 1.5rem, 38rem);
    --radius-lg: 1.5rem;
  }

  .section {
    padding: 4.3rem 0;
  }

  .brand-copy small {
    display: none;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-grid {
    padding-bottom: 4rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

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

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-tags {
    display: grid;
    gap: 0.65rem;
  }

  .photo-frame,
  .photo-frame img {
    min-height: 25rem;
    height: 25rem;
  }

  .photo-frame {
    border-radius: 5rem 1.4rem 1.4rem 1.4rem;
  }

  .photo-frame img {
    object-position: 63% center;
  }

  .floating-card-top {
    right: 0.5rem;
  }

  .floating-card-bottom {
    left: 0.5rem;
  }

  .comparison-strip ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 0.5rem;
  }

  .option-grid,
  .process-grid,
  .criteria-heading,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .option-card > p {
    min-height: auto;
  }

  .process-grid,
  .criteria-heading {
    gap: 2rem;
  }

  .steps-list li {
    grid-template-columns: 3.2rem 1fr;
    gap: 1rem;
  }

  .step-number {
    width: 3rem;
    height: 3rem;
  }

  .criteria-grid article {
    min-height: auto;
  }

  .criteria-grid article > span {
    margin-bottom: 2rem;
  }

  .quote-section {
    padding-top: 1rem;
  }

  .quote-card {
    width: 100%;
    border-radius: 0;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .closing-inner,
  .footer-legal {
    align-items: stretch;
    flex-direction: column;
  }

  .closing-inner .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .footer-main > a:last-child {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Human-wellbeing interface: calm hierarchy, low visual load and accessible contrast. */
body {
  background: #fbfdfc;
}

.site-header,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 253, 252, 0.94);
  border-color: rgba(21, 56, 63, 0.09);
  box-shadow: 0 4px 24px rgba(11, 79, 89, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 5rem;
}

.brand-symbol {
  width: 3.2rem;
  height: 3.2rem;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  opacity: 1;
}

.brand-footer .brand-symbol {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.68);
}

.main-nav {
  gap: 1.65rem;
}

.main-nav > a:not(.button) {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.main-nav > a:not(.button):hover {
  color: var(--navy);
}

.main-nav > a:not(.button)::after,
.site-header.is-scrolled .main-nav > a:not(.button)::after {
  background: var(--teal);
}

.button {
  min-height: 3.45rem;
  border-radius: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button-small {
  min-height: 2.9rem;
  border-radius: 0.8rem;
}

.button-header,
.site-header.is-scrolled .button-header {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(11, 79, 89, 0.16);
}

.button-primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(22, 118, 111, 0.2);
}

.button-primary:hover,
.button-header:hover {
  background: var(--navy-deep);
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.eyebrow-light {
  color: #bce8df;
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: #4a94b3;
  box-shadow: 0 0 0 0.3rem rgba(74, 148, 179, 0.14);
}

h1,
h2 {
  letter-spacing: -0.038em;
}

h1 {
  max-width: 12.5ch;
  font-size: clamp(3.15rem, 5.1vw, 5.15rem);
}

h1 em {
  position: relative;
  display: inline;
  color: var(--teal-dark);
  font-family: inherit;
  font-style: normal;
  font-weight: 820;
  letter-spacing: inherit;
  background: linear-gradient(transparent 72%, rgba(49, 155, 145, 0.15) 72%);
}

h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
}

.hero {
  min-height: auto;
  overflow: hidden;
  padding: 8.7rem 0 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 5%, rgba(49, 155, 145, 0.16), transparent 28rem),
    linear-gradient(135deg, #f7fbfa 0%, #edf7f5 56%, #e9f4f7 100%);
}

.hero::after {
  left: -12rem;
  bottom: -18rem;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(79, 151, 178, 0.11), transparent 68%);
}

.hero-aura {
  position: absolute;
  top: 7rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(11, 79, 89, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-aura::before,
.hero-aura::after {
  content: "";
  position: absolute;
  inset: 4rem;
  border: 1px solid rgba(11, 79, 89, 0.08);
  border-radius: inherit;
}

.hero-aura::after {
  inset: 8rem;
}

.hero-grid {
  min-height: 35rem;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 4.75rem;
}

.hero-lead {
  max-width: 35rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-actions {
  gap: 1rem;
}

.text-link {
  color: var(--navy);
  text-decoration-color: rgba(49, 155, 145, 0.7);
}

.hero-tags {
  gap: 0.75rem 1.15rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.hero-tags span {
  color: var(--white);
  background: var(--teal-dark);
}

.hero-visual {
  padding: 1rem 0 2.25rem;
}

.photo-frame {
  min-height: 31rem;
  border: 0.5rem solid rgba(255, 255, 255, 0.82);
  border-radius: 2rem 7rem 2rem 2rem;
  box-shadow: 0 28px 65px rgba(11, 79, 89, 0.16);
}

.photo-frame::after {
  background: linear-gradient(90deg, rgba(7, 58, 67, 0.16), transparent 38%);
}

.photo-frame img {
  height: 31rem;
  object-position: 61% center;
}

.image-note {
  padding: 0.18rem 0.48rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.75rem;
}

.floating-card {
  border-color: rgba(11, 79, 89, 0.1);
  border-radius: 1.1rem;
  box-shadow: 0 16px 38px rgba(11, 79, 89, 0.15);
}

.floating-card-bottom {
  left: -1rem;
  bottom: 0;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.floating-card small {
  font-size: 0.76rem;
}

.avatar {
  color: var(--white);
  background: var(--teal-dark);
}

.comparison-strip {
  z-index: 3;
  grid-template-columns: 1.05fr 3fr;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 15px 38px rgba(11, 79, 89, 0.08);
  backdrop-filter: blur(12px);
}

.comparison-strip > p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.comparison-strip li {
  color: var(--ink);
  font-size: 0.82rem;
}

.comparison-strip li span {
  color: #267395;
  font-size: 0.75rem;
}

.options-section {
  background: #fbfdfc;
}

.section-heading > p:last-child,
.process-intro > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.area-copy > p:not(.eyebrow):not(.small-note) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.option-grid {
  gap: 1.5rem;
}

.option-card,
.option-card-featured {
  padding: clamp(1.7rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.65rem;
  box-shadow: 0 12px 32px rgba(11, 79, 89, 0.06);
}

.option-card-featured {
  background: linear-gradient(145deg, #f4fbf9, #e9f6f3);
  border-color: rgba(49, 155, 145, 0.32);
}

.option-card-featured::after {
  background: rgba(49, 155, 145, 0.07);
}

.option-card:hover {
  transform: none;
  border-color: rgba(22, 118, 111, 0.52);
  box-shadow: 0 15px 38px rgba(11, 79, 89, 0.09);
}

.option-icon,
.option-icon-coral {
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 1rem;
}

.option-card:not(.option-card-featured) .option-icon {
  background: #28769a;
}

.option-label {
  color: var(--teal-dark);
  font-size: 0.78rem;
}

.check-list li::before {
  background: var(--teal-dark);
}

.card-link {
  min-height: 2.75rem;
  color: var(--navy);
  text-underline-offset: 0.28rem;
}

.process-section {
  background: linear-gradient(180deg, #f0f7f6, #edf6f8);
}

.steps-list {
  display: grid;
  gap: 0.85rem;
}

.steps-list li,
.steps-list li:last-child {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 1.25rem;
}

.step-number {
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.criteria-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(95, 190, 176, 0.16), transparent 25rem),
    linear-gradient(145deg, #073a43, #0b5961);
}

.criteria-section::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(214, 238, 233, 0.11);
  border-radius: 50%;
}

.criteria-section .shell {
  position: relative;
  z-index: 1;
}

.criteria-grid {
  gap: 0.85rem;
}

.criteria-grid article,
.criteria-grid article:nth-child(2),
.criteria-grid article:nth-child(3) {
  min-height: 13rem;
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  transform: none;
}

.criteria-grid article > span {
  margin-bottom: 2.9rem;
  color: #a9ddd5;
  font-size: 0.75rem;
}

.criteria-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.area-section {
  background: #fbfdfc;
}

.area-care-card {
  position: relative;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--navy);
  background:
    radial-gradient(circle at 80% 14%, rgba(40, 118, 154, 0.14), transparent 12rem),
    linear-gradient(145deg, #e9f7f4, #e8f3f7);
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 2rem;
}

.area-care-card::before,
.area-care-card::after {
  content: "";
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 50%;
}

.area-care-card::after {
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
}

.care-symbol {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  left: clamp(2rem, 5vw, 4rem);
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 118, 111, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(11, 79, 89, 0.08);
}

.care-symbol svg {
  width: 2.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.care-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.care-message {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin-bottom: 1.8rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 810;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.care-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.care-details span {
  padding: 0.52rem 0.76rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.location-list li {
  color: var(--navy);
  background: #edf8f5;
  border-color: rgba(22, 118, 111, 0.18);
}

.small-note {
  border-left-color: #28769a;
  font-size: 0.8rem;
}

.quote-section {
  background: linear-gradient(180deg, #fbfdfc, #f2f8f7);
}

.quote-card {
  background:
    radial-gradient(circle at 8% 90%, rgba(100, 190, 177, 0.16), transparent 18rem),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  box-shadow: 0 24px 58px rgba(11, 79, 89, 0.16);
}

.quote-form {
  border: 1px solid rgba(11, 79, 89, 0.1);
  border-radius: 1.5rem;
  box-shadow: 0 15px 34px rgba(7, 58, 67, 0.13);
}

.quote-form legend,
.select-label {
  color: var(--navy);
  font-size: 0.9rem;
}

.choice-card span {
  min-height: 3.2rem;
  font-size: 0.88rem;
}

.choice-card input:checked + span {
  color: var(--navy);
  background: var(--mint-soft);
  border-color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px var(--teal-dark);
}

.choice-card input:focus-visible + span {
  outline-color: #176f91;
}

.select-wrap select {
  min-height: 3.35rem;
}

.button-whatsapp {
  background: #147a67;
  box-shadow: 0 12px 24px rgba(20, 122, 103, 0.18);
}

.button-whatsapp:hover {
  background: #0e6556;
}

.form-note {
  font-size: 0.77rem;
}

.faq-list summary {
  min-height: 4.6rem;
}

.faq-list summary span {
  width: 1.9rem;
  height: 1.9rem;
  background: var(--mint-soft);
}

.closing-section {
  background: linear-gradient(110deg, #16766f, #246f8a);
}

.closing-inner .eyebrow {
  color: #d8f1ec;
}

.site-footer {
  background: var(--navy-deep);
}

.footer-legal p {
  font-size: 0.75rem;
}

.toast {
  background: var(--navy-deep);
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    color: var(--ink);
    background: rgba(251, 253, 252, 0.97);
  }

  .main-nav {
    inset: 5rem 0 auto;
    background: #fbfdfc;
  }

  .hero {
    padding-top: 8.4rem;
  }

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

  .hero-visual {
    width: 100%;
  }

  .area-care-card {
    width: 100%;
    max-width: 38rem;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 4.7rem;
  }

  .main-nav {
    inset: 4.7rem 0 auto;
  }

  .hero {
    padding-top: 7.4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
  }

  .photo-frame,
  .photo-frame img {
    min-height: 24rem;
    height: 24rem;
  }

  .photo-frame {
    border-width: 0.35rem;
    border-radius: 1.5rem 4.5rem 1.5rem 1.5rem;
  }

  .floating-card-bottom {
    left: 0.65rem;
  }

  .comparison-strip {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }

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

  .steps-list li {
    padding: 1.2rem;
  }

  .area-care-card {
    min-height: 28rem;
    border-radius: 1.5rem;
  }

  .quote-card {
    border-radius: 0;
  }
}

/* Portrait-safe hero image: the complete photograph remains visible at every width. */
.hero-visual {
  width: min(100%, 32rem);
  margin-left: auto;
}

.photo-frame {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1122 / 1402;
  background: #eaf4f2;
  border-radius: 2rem 6rem 2rem 2rem;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.floating-card-bottom {
  position: relative;
  left: auto;
  bottom: auto;
  width: calc(100% - 2rem);
  margin: 0.85rem auto 0;
}

@media (max-width: 980px) {
  .hero-visual {
    width: min(100%, 32rem);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .photo-frame,
  .photo-frame img {
    min-height: 0;
    height: auto;
  }

  .photo-frame {
    aspect-ratio: 1122 / 1402;
    border-radius: 1.5rem 4rem 1.5rem 1.5rem;
  }

  .photo-frame img {
    height: 100%;
  }

  .floating-card-bottom {
    left: auto;
  }
}
