:root {
  --bg: #f6efe4;
  --bg-deep: #e8dcc8;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-strong: #fff9f1;
  --ink: #201a15;
  --muted: #62574b;
  --line: rgba(32, 26, 21, 0.1);
  --accent: #d76d43;
  --accent-deep: #af4f2c;
  --forest: #29584b;
  --gold: #c39b4b;
  --shadow: 0 24px 80px rgba(56, 33, 15, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(215, 109, 67, 0.18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(41, 88, 75, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f4ebdd 55%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.cookie-banner-shell {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.cookie-banner-shell [hidden] {
  display: none !important;
}

.cookie-banner {
  pointer-events: auto;
}

.cookie-banner {
  width: min(760px, calc(100vw - 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(32, 26, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 249, 241, 0.96);
  box-shadow: 0 12px 28px rgba(56, 33, 15, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner[data-expanded="true"] {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.cookie-banner-copy {
  display: grid;
  gap: 0.18rem;
  max-width: none;
}

.cookie-banner-eyebrow {
  margin: 0;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-banner h2,
.cookie-banner h3 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.15;
}

.cookie-banner h2 {
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
}

.cookie-banner h3 {
  font-size: 0.74rem;
}

.cookie-banner-body,
.cookie-banner-status,
.cookie-banner-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.28;
}

.cookie-banner-status {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
}

.cookie-banner-details {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.42rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(32, 26, 21, 0.08);
}

.cookie-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.cookie-banner-item {
  display: grid;
  gap: 0.16rem;
  min-height: 100%;
  padding: 0.42rem;
  border: 1px solid rgba(32, 26, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
  align-items: stretch;
}

.cookie-banner-meta-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-button {
  appearance: none;
  min-height: 2rem;
  padding: 0.42rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(32, 26, 21, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 109, 67, 0.34);
  box-shadow: 0 16px 28px rgba(56, 33, 15, 0.12);
}

.cookie-button-primary {
  background: var(--ink);
  color: #fffaf4;
}

.cookie-button-ghost {
  background: transparent;
}

.cookie-banner-meta-actions .cookie-button {
  min-height: 1.9rem;
  padding: 0.4rem 0.55rem;
}

main {
  padding-top: 0;
}

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

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

.background-glow {
  position: fixed;
  z-index: -1;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  animation: drift 14s ease-in-out infinite;
}

.background-glow-left {
  top: 4rem;
  left: -7rem;
  background: rgba(215, 109, 67, 0.22);
}

.background-glow-right {
  right: -4rem;
  top: 20rem;
  background: rgba(41, 88, 75, 0.18);
  animation-delay: -7s;
}

.section-shell,
.site-footer,
.site-header-inner {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(246, 239, 228, 0.9);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(32, 26, 21, 0.08);
  box-shadow: 0 12px 30px rgba(56, 33, 15, 0.06);
}

.site-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.65rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  flex: none;
}

.brand-text {
  line-height: 1;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 2.7rem;
  padding: 0.22rem;
  border: 1px solid rgba(32, 26, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.7);
  box-shadow: 0 12px 28px rgba(56, 33, 15, 0.06);
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 2.2rem;
  padding: 0.35rem 0.58rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-option[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(56, 33, 15, 0.08);
}

.flag-icon {
  width: 1.2rem;
  height: 0.82rem;
  flex: none;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow:
    inset 0 0 0 1px rgba(32, 26, 21, 0.14),
    0 1px 2px rgba(32, 26, 21, 0.08);
}

.flag-icon-en {
  background:
    linear-gradient(90deg, transparent 37%, #ffffff 37% 44%, #c8102e 44% 56%, #ffffff 56% 63%, transparent 63%),
    linear-gradient(0deg, transparent 35%, #ffffff 35% 44%, #c8102e 44% 56%, #ffffff 56% 65%, transparent 65%), #1f4f8f;
}

.flag-icon-pl {
  background: linear-gradient(180deg, #ffffff 0 50%, #dc143c 50% 100%);
}

.portal-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 26, 21, 0.12);
  background: rgba(255, 249, 241, 0.88);
  box-shadow: 0 12px 28px rgba(56, 33, 15, 0.08);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.portal-login-link:hover,
.portal-login-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent-deep);
}

.portal-login-link:hover,
.portal-login-link:focus-visible {
  border-color: rgba(215, 109, 67, 0.34);
  box-shadow: 0 16px 32px rgba(56, 33, 15, 0.1);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy,
.concern-card,
.outcome-card,
.faq-shell,
.final-cta-card {
  backdrop-filter: blur(14px);
}

.hero-copy {
  max-width: 58rem;
  padding: 2rem 0 0;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.8rem 0 0;
}

.hero-photo-card,
.outcome-visual {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  transform: rotate(-2deg);
  aspect-ratio: 3 / 2;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 0 0.55rem;
}

.hero-visual-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(32, 26, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.76);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 14px 34px rgba(56, 33, 15, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.outcome-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero h1,
.intake-header h2,
.section-heading h2,
.panel-card-highlight h2,
.note-card h2,
.final-cta-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 5.4rem);
}

.lead {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-helper {
  margin: 0.95rem 0 0;
  color: var(--forest);
  font-weight: 700;
}

.hero-assurance {
  width: min(100%, 780px);
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(32, 26, 21, 0.08);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.hero-assurance p {
  margin: 0;
  color: var(--muted);
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.language-option:focus-visible,
.contact-link:focus-visible,
.footer-link:focus-visible,
.social-link:focus-visible {
  outline: 2px solid rgba(175, 79, 44, 0.36);
  outline-offset: 3px;
}

.button-icon {
  width: 1.28rem;
  height: 1.28rem;
  flex: none;
}

.button-icon-whatsapp {
  color: #ffffff;
  background: #25d366;
  border-radius: 999px;
  padding: 0.2rem;
  box-sizing: content-box;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e68b62 100%);
  color: #fff9f2;
  box-shadow: 0 12px 30px rgba(183, 79, 44, 0.28);
}

.cta-free-highlight {
  display: inline-block;
  margin: 0 0.08em;
  padding: 0.06em 0.34em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--forest);
  line-height: 1.05;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(183, 79, 44, 0.34);
}

.button-secondary {
  border-color: rgba(32, 26, 21, 0.14);
  background: rgba(255, 255, 255, 0.48);
}

.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.45rem, 1vw, 0.75rem);
  margin-top: 1.5rem;
}

.hero-badges span {
  flex: 0 0 auto;
  padding: 0.55rem clamp(0.62rem, 0.9vw, 0.85rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(32, 26, 21, 0.08);
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  line-height: 1.1;
  white-space: nowrap;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.25rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 250, 245, 0.74);
  box-shadow: var(--shadow);
}

.proof-number {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-deep);
}

.proof-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
}

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

.proof-card-visual {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.62);
}

.proof-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concern-card,
.outcome-card,
.faq-shell,
.final-cta-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.section-lead {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.intake-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
}

.intake-section {
  padding: 0.75rem 0 1.75rem;
}

.intake-shell {
  padding: 1.4rem;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.94) 0%, rgba(248, 237, 222, 0.92) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.intake-visual {
  margin: 1.35rem 0 0;
}

.intake-visual img {
  display: block;
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.6);
}

.intake-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.intake-band span,
.intake-detail-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 26, 21, 0.08);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 0.95rem;
}

.intake-flow {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(32, 26, 21, 0.08);
}

.intake-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(32, 26, 21, 0.08);
}

.intake-step-index {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--accent-deep);
}

.intake-step-copy h3 {
  margin: 0;
  font-size: 1.26rem;
}

.intake-step-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.intake-step-note {
  margin: 0;
  padding-top: 0.18rem;
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.intake-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

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

.concern-card,
.outcome-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
}

.concern-card {
  position: relative;
}

.concern-card::before {
  content: "";
  display: block;
  width: 3.25rem;
  height: 0.22rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(215, 109, 67, 0.24) 100%);
}

.concern-card h3,
.outcome-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.concern-card p,
.outcome-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.outcome-card-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.98) 0%, rgba(248, 236, 219, 0.92) 100%);
}

.outcome-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: start;
}

.outcome-visual {
  position: sticky;
  top: 5.8rem;
}

.faq-section,
.content-section,
.final-cta {
  padding: 1.5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.faq-shell {
  padding: 1.4rem;
  border-radius: 36px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-item {
  padding: 0 1rem;
  border: 1px solid rgba(32, 26, 21, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.74);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-deep);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p,
.final-cta-card p:last-child {
  color: var(--muted);
}

.faq-item p {
  margin: 0 0 1rem;
}

.final-cta-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 240, 226, 0.92) 100%);
}

.contact-link {
  align-self: center;
  font-weight: 700;
  color: var(--forest);
}

.final-cta-card .final-cta-helper {
  margin: 0.85rem 0 0;
  color: var(--forest);
  font-weight: 700;
}

.site-footer {
  padding: 1.45rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 1.05rem 1.15rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 250, 244, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.65rem;
}

.footer-column,
.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-title {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy,
.footer-bottom p {
  margin: 0;
}

.footer-link {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--accent-deep);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  align-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 91, 79, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  color: var(--accent-deep);
  border-color: rgba(217, 119, 69, 0.2);
  background: rgba(255, 249, 241, 0.96);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 0;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(32, 26, 21, 0.08);
}

.mobile-cta {
  position: fixed;
  inset: auto 0 1rem;
  z-index: 20;
  display: none;
  justify-content: center;
  padding-inline: 1rem;
}

.mobile-cta .button {
  width: min(100%, 26rem);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0.8rem, -1rem, 0) scale(1.05);
  }
}

@media (max-width: 960px) {
  .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: start;
    min-height: auto;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
  }

  .site-actions {
    grid-area: actions;
  }

  .hero-grid,
  .outcome-feature,
  .concern-grid,
  .outcome-grid,
  .final-cta-card,
  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .final-cta-card {
    display: grid;
  }

  .outcome-card-wide {
    grid-column: auto;
  }

  .hero-photo-card {
    transform: none;
  }

  .outcome-visual {
    position: static;
  }

  .intake-step {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .intake-step-note {
    grid-column: 2;
    padding-top: 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-nav {
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .site-actions {
    justify-self: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-proof-strip {
    gap: 0.8rem;
  }

  .hero-badges {
    flex-wrap: wrap;
  }

  .hero-badges span {
    flex: 0 1 auto;
    white-space: normal;
  }

  .intake-shell,
  .faq-shell {
    padding: 1.15rem;
  }

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

  .intake-step {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .intake-step-note {
    grid-column: auto;
    white-space: normal;
  }

  .mobile-cta {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .cookie-banner {
    width: min(100%, calc(100vw - 0.75rem));
    grid-template-columns: 1fr;
    padding: 0.65rem;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner-meta-actions {
    justify-content: stretch;
  }

  .cookie-banner-meta-actions .cookie-button {
    width: 100%;
  }
}
