:root {
    --ka-ink: #342722;
    --ka-ink-soft: #54433b;
    --ka-brown: #6f4b38;
    --ka-copper: #a96543;
    --ka-copper-dark: #874b31;
    --ka-terracotta: #b8734d;
    --ka-cream: #fbf7f3;
    --ka-cream-deep: #f4e9df;
    --ka-sand: #ead6c6;
    --ka-line: rgba(83, 57, 44, 0.16);
    --ka-white: #ffffff;
    --ka-shadow-sm: 0 12px 32px rgba(70, 42, 29, 0.10);
    --ka-shadow-md: 0 24px 62px rgba(70, 42, 29, 0.16);
    --ka-radius-sm: 16px;
    --ka-radius-md: 28px;
    --ka-radius-lg: 40px;
    --ka-container: 1180px;
    --ka-header-height: 92px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--ka-header-height) + 18px);
}

body {
    margin: 0;
    color: var(--ka-ink);
    background: var(--ka-cream);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
picture,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ka-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.9rem, 6vw, 5.75rem);
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 4vw, 3.75rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

p {
    margin-bottom: 18px;
}

::selection {
    color: var(--ka-white);
    background: var(--ka-copper);
}

.container {
    width: min(calc(100% - 40px), var(--ka-container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    color: var(--ka-white);
    background: var(--ka-ink);
    border-radius: 10px;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--ka-header-height);
    color: var(--ka-white);
    background: rgba(52, 39, 34, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: var(--ka-header-height);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    border-radius: 50%;
}

.brand-link img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.94rem;
    font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ka-sand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a:not(.nav-cta):focus-visible {
    color: var(--ka-white);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 12px 20px;
    color: var(--ka-ink);
    background: var(--ka-cream-deep);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--ka-white);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    color: var(--ka-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(84px, 9vw, 136px) 0 100px;
    background:
        radial-gradient(circle at 13% 18%, rgba(184, 115, 77, 0.18), transparent 27%),
        radial-gradient(circle at 86% 76%, rgba(111, 75, 56, 0.11), transparent 24%),
        linear-gradient(135deg, #fffaf6 0%, #f8eee6 52%, #f1dfd1 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    gap: clamp(52px, 7vw, 92px);
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--ka-copper-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    margin-right: 12px;
    content: "";
    background: currentColor;
}

.eyebrow-dark {
    color: var(--ka-copper-dark);
}

.hero-lead,
.lead-copy {
    color: var(--ka-ink-soft);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.72;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 24px;
    font-weight: 750;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--ka-white);
    background: var(--ka-copper-dark);
    box-shadow: 0 14px 30px rgba(135, 75, 49, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--ka-ink);
    box-shadow: 0 18px 38px rgba(52, 39, 34, 0.24);
}

.button-light {
    color: var(--ka-ink);
    background: var(--ka-cream);
    border-color: rgba(255, 255, 255, 0.34);
}

.button-light:hover,
.button-light:focus-visible {
    background: var(--ka-white);
}

.button-whatsapp {
    color: var(--ka-ink);
    background: var(--ka-cream-deep);
}

.button-large {
    min-height: 58px;
    padding: 16px 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ka-copper-dark);
    font-weight: 750;
    border-bottom: 1px solid rgba(135, 75, 49, 0.4);
    transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--ka-ink);
    border-color: var(--ka-ink);
}

.text-link-dark {
    color: var(--ka-ink);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-meta span {
    padding: 8px 13px;
    color: var(--ka-ink-soft);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(111, 75, 56, 0.13);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-visual {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.hero-photo-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--ka-sand);
    border: 1px solid rgba(111, 75, 56, 0.18);
    border-radius: 48% 48% 30px 30px;
    box-shadow: var(--ka-shadow-md);
}

.hero-photo-frame picture,
.hero-photo-frame picture img {
    width: 100%;
    height: 100%;
}

.hero-photo-frame picture img {
    object-fit: cover;
}

.hero-photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(52, 39, 34, 0.34), transparent 45%);
    pointer-events: none;
}

.hero-brand-seal {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: clamp(92px, 11vw, 132px);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.74);
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(40, 26, 18, 0.28);
}

.hero-brand-seal img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-note {
    position: relative;
    width: min(92%, 420px);
    margin: -30px auto 0;
    padding: 22px 26px 20px 54px;
    color: var(--ka-cream);
    background: var(--ka-ink);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: var(--ka-shadow-sm);
}

.hero-note p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.55;
}

.hero-note-mark {
    position: absolute;
    top: 6px;
    left: 20px;
    color: var(--ka-sand);
    font-family: Georgia, serif;
    font-size: 3.1rem;
    line-height: 1;
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(169, 101, 67, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-one {
    top: -120px;
    left: -170px;
    width: 430px;
    height: 430px;
}

.hero-decoration-two {
    right: -120px;
    bottom: -210px;
    width: 520px;
    height: 520px;
}

.intro-strip {
    color: var(--ka-white);
    background: var(--ka-ink);
}

.intro-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.intro-strip-grid > div {
    display: flex;
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-strip-grid > div:last-child {
    border-right: 0;
}

.intro-strip strong {
    margin-bottom: 4px;
    color: var(--ka-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    font-weight: 500;
}

.intro-strip span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.86rem;
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 56px;
    margin-bottom: 58px;
}

.section-heading > p {
    margin-bottom: 8px;
    color: var(--ka-ink-soft);
    font-size: 1.04rem;
}

.section-heading-centered {
    align-items: center;
}

.audience {
    overflow: hidden;
    background: #fffaf6;
}

.audience::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    content: "";
    background: rgba(184, 115, 77, 0.08);
    border-radius: 50%;
}

.audience-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(52px, 7vw, 94px);
}

.audience-copy {
    max-width: 680px;
}

.audience-cards {
    display: grid;
    gap: 16px;
    margin: 34px 0 24px;
}

.audience-card {
    display: grid;
    align-items: center;
    grid-template-columns: 92px 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--ka-white);
    border: 1px solid var(--ka-line);
    border-radius: 22px;
    box-shadow: var(--ka-shadow-sm);
}

.audience-card-icon {
    overflow: hidden;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(70, 42, 29, 0.14);
}

.audience-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audience-card h3 {
    margin-bottom: 6px;
    color: var(--ka-copper-dark);
}

.audience-card p {
    margin: 0;
    color: var(--ka-ink-soft);
    line-height: 1.62;
}

.audience-note {
    margin: 0;
    padding: 16px 18px;
    color: var(--ka-ink-soft);
    background: var(--ka-cream-deep);
    border-left: 3px solid var(--ka-copper);
    border-radius: 0 14px 14px 0;
    font-size: 0.94rem;
}

.audience-visual {
    position: relative;
    overflow: hidden;
    padding: 18px;
    background: var(--ka-white);
    border: 1px solid var(--ka-line);
    border-radius: var(--ka-radius-lg);
    box-shadow: var(--ka-shadow-md);
}

.audience-visual > img {
    width: 100%;
    border-radius: 28px;
}

.audience-visual-caption {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 34px;
    padding: 18px 20px;
    color: var(--ka-white);
    background: rgba(52, 39, 34, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.audience-visual-caption strong,
.audience-visual-caption span {
    display: block;
}

.audience-visual-caption strong {
    margin-bottom: 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 500;
}

.audience-visual-caption span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.about {
    background: var(--ka-cream-deep);
}

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(56px, 8vw, 108px);
}

.about-media {
    position: relative;
    max-width: 480px;
}

.image-card {
    overflow: hidden;
    background: var(--ka-sand);
    border-radius: 36px 36px 170px 36px;
    box-shadow: var(--ka-shadow-md);
}

.image-card picture,
.image-card img {
    width: 100%;
}

.image-card img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.about-signature {
    position: absolute;
    right: -30px;
    bottom: 42px;
    display: flex;
    width: 128px;
    height: 128px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ka-cream);
    background: var(--ka-copper-dark);
    border: 5px solid var(--ka-cream-deep);
    border-radius: 50%;
    box-shadow: var(--ka-shadow-sm);
}

.about-signature span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.1rem;
    line-height: 1;
}

.about-signature small {
    margin-top: 7px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-copy > p:not(.eyebrow):not(.lead-copy) {
    color: var(--ka-ink-soft);
}

.about-credential {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(111, 75, 56, 0.15);
    border-radius: 18px;
}

.credential-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ka-white);
    background: var(--ka-copper-dark);
    border-radius: 50%;
}

.credential-icon svg {
    width: 27px;
    fill: currentColor;
}

.about-credential strong,
.about-credential span {
    display: block;
}

.about-credential strong {
    margin-bottom: 2px;
}

.about-credential span {
    color: var(--ka-ink-soft);
    font-size: 0.9rem;
}

.trajectory {
    background: var(--ka-cream);
}

.trajectory-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 7vw, 92px);
}

.trajectory-photo {
    position: sticky;
    top: calc(var(--ka-header-height) + 28px);
    overflow: hidden;
    background: var(--ka-sand);
    border-radius: 30px;
    box-shadow: var(--ka-shadow-md);
}

.trajectory-photo picture,
.trajectory-photo img {
    width: 100%;
}

.trajectory-photo img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.photo-caption {
    padding: 14px 18px;
    color: var(--ka-white);
    background: var(--ka-ink);
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

.timeline {
    position: relative;
}

.timeline::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 27px;
    width: 1px;
    content: "";
    background: rgba(111, 75, 56, 0.22);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 8px 0 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: relative;
    z-index: 2;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--ka-white);
    background: var(--ka-copper-dark);
    border: 6px solid var(--ka-cream);
    border-radius: 50%;
    font-size: 0.76rem;
    font-weight: 800;
}

.timeline-item p {
    margin: 0;
    color: var(--ka-ink-soft);
}

.approach {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.75);
    background: var(--ka-ink);
}

.approach::after {
    position: absolute;
    right: -180px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.approach-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: clamp(56px, 8vw, 104px);
}

.approach h2 {
    color: var(--ka-white);
}

.approach .eyebrow {
    color: var(--ka-sand);
}

.approach-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.approach-visual {
    position: relative;
    overflow: hidden;
    border-radius: 190px 190px 28px 28px;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.approach-visual picture,
.approach-visual img {
    width: 100%;
}

.approach-visual img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.approach-quote {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px 20px;
    color: var(--ka-cream);
    background: rgba(52, 39, 34, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.5;
    backdrop-filter: blur(10px);
}

.trust {
    background: #fffaf6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-card {
    padding: 26px 24px 28px;
    background: var(--ka-white);
    border: 1px solid var(--ka-line);
    border-radius: 24px;
    box-shadow: var(--ka-shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ka-shadow-md);
}

.trust-card > img {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(70, 42, 29, 0.13);
}

.trust-card h3 {
    color: var(--ka-copper-dark);
    font-size: 1.28rem;
}

.trust-card p {
    margin: 0;
    color: var(--ka-ink-soft);
    font-size: 0.94rem;
    line-height: 1.65;
}

.process {
    background: var(--ka-cream-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(111, 75, 56, 0.14);
    border-radius: 26px;
}

.process-index {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(111, 75, 56, 0.34);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 34px;
    place-items: center;
    color: var(--ka-white);
    background: var(--ka-copper-dark);
    border-radius: 18px;
}

.process-icon svg {
    width: 34px;
    fill: currentColor;
}

.process-icon.process-icon-image {
    display: block !important;
    align-self: center;
    flex: 0 0 auto;
    width: 92px !important;
    height: 92px !important;
    min-width: 92px;
    min-height: 92px;
    margin: 6px auto 24px !important;
    padding: 0 !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 24px rgba(70, 42, 29, 0.14);
    overflow: hidden !important;
}

.process-card h3 {
    font-size: 1.3rem;
}

.process-card p {
    margin: 0;
    color: var(--ka-ink-soft);
    font-size: 0.94rem;
}

.themes {
    background: var(--ka-cream);
}

.themes-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(52px, 8vw, 106px);
}

.themes-heading {
    position: sticky;
    top: calc(var(--ka-header-height) + 28px);
}

.themes-heading p:last-child {
    color: var(--ka-ink-soft);
}

.theme-list {
    border-top: 1px solid var(--ka-line);
}

.theme-item {
    display: grid;
    align-items: center;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ka-line);
}

.theme-item span {
    color: var(--ka-copper-dark);
    font-size: 0.76rem;
    font-weight: 800;
}

.theme-item strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
    font-weight: 500;
}

.online {
    padding-top: 34px;
    background: var(--ka-cream);
}

.online-card {
    display: grid;
    align-items: center;
    grid-template-columns: 90px 1fr auto;
    gap: 30px;
    padding: 42px 44px;
    color: rgba(255, 255, 255, 0.75);
    background: linear-gradient(135deg, var(--ka-copper-dark), var(--ka-brown));
    border-radius: 32px;
    box-shadow: var(--ka-shadow-md);
}

.online-card h2 {
    margin-bottom: 12px;
    color: var(--ka-white);
    font-size: clamp(2rem, 3vw, 3rem);
}

.online-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.online-card .eyebrow {
    color: var(--ka-sand);
}

.online-symbol {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--ka-ink);
    background: var(--ka-cream-deep);
    border-radius: 24px;
}

.online-symbol svg {
    width: 46px;
    fill: currentColor;
}

.faq {
    background: #fffaf6;
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(54px, 8vw, 104px);
}

.faq-intro {
    position: sticky;
    top: calc(var(--ka-header-height) + 28px);
}

.faq-intro > p:not(.eyebrow) {
    color: var(--ka-ink-soft);
}

.accordion {
    border-top: 1px solid var(--ka-line);
}

.accordion details {
    border-bottom: 1px solid var(--ka-line);
}

.accordion summary {
    position: relative;
    padding: 24px 46px 24px 0;
    color: var(--ka-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.13rem, 2vw, 1.4rem);
    font-weight: 500;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::before,
.accordion summary::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 18px;
    height: 1px;
    content: "";
    background: var(--ka-copper-dark);
    transition: transform 180ms ease;
}

.accordion summary::after {
    transform: rotate(90deg);
}

.accordion details[open] summary::after {
    transform: rotate(0);
}

.accordion details p {
    max-width: 760px;
    margin: -4px 0 24px;
    padding-right: 36px;
    color: var(--ka-ink-soft);
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    color: rgba(255, 255, 255, 0.76);
    background: var(--ka-ink);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.final-cta::before {
    top: -210px;
    left: -170px;
    width: 480px;
    height: 480px;
}

.final-cta::after {
    right: -140px;
    bottom: -260px;
    width: 560px;
    height: 560px;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
}

.final-brand-seal {
    width: 112px;
    height: 112px;
    margin: 0 auto 24px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.final-cta h2 {
    color: var(--ka-white);
}

.final-cta p:not(.eyebrow) {
    max-width: 610px;
    margin-right: auto;
    margin-bottom: 28px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.final-cta .eyebrow {
    color: var(--ka-sand);
}

.site-footer {
    padding: 72px 0 22px;
    color: var(--ka-ink-soft);
    background: var(--ka-cream-deep);
    border-top: 1px solid var(--ka-line);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) 0.65fr 0.9fr;
    gap: 62px;
    padding-bottom: 42px;
}

.footer-brand img {
    width: 112px;
    height: 112px;
    margin-bottom: 18px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--ka-shadow-sm);
}

.footer-brand p {
    max-width: 430px;
    margin: 0;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 8px;
    color: var(--ka-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 500;
}

.footer-links a,
.footer-contact a {
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-links a:focus-visible,
.footer-contact a:focus-visible {
    color: var(--ka-copper-dark);
}

.responsible-note {
    padding: 18px 0;
    border-top: 1px solid var(--ka-line);
    border-bottom: 1px solid var(--ka-line);
}

.responsible-note p {
    max-width: 900px;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    font-size: 0.78rem;
}

.footer-bottom a {
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    z-index: 950;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    color: var(--ka-white);
    background: #226f4b;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(25, 75, 52, 0.28);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    background: #185d3e;
    transform: translateY(-3px);
}

.floating-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

:focus-visible {
    outline: 3px solid rgba(169, 101, 67, 0.5);
    outline-offset: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 90ms;
}

.reveal-delay-2 {
    transition-delay: 180ms;
}

.reveal-delay-3 {
    transition-delay: 270ms;
}

@media (max-width: 1080px) {
    .main-nav {
        gap: 16px;
    }

    .hero-grid,
    .audience-grid,
    .about-grid,
    .approach-grid {
        gap: 52px;
    }

    .trust-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .online-card {
        grid-template-columns: 76px 1fr;
    }

    .online-card .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 900px) {
    :root {
        --ka-header-height: 82px;
    }

    .section {
        padding: 88px 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        z-index: 999;
        top: var(--ka-header-height);
        right: 0;
        left: 0;
        display: flex;
        max-height: calc(100vh - var(--ka-header-height));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        overflow-y: auto;
        visibility: hidden;
        background: rgba(52, 39, 34, 0.99);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav > a {
        padding: 16px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 14px;
        text-align: center;
    }

    .hero-grid,
    .audience-grid,
    .about-grid,
    .trajectory-layout,
    .approach-grid,
    .themes-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-visual {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .intro-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-strip-grid > div:nth-child(2) {
        border-right: 0;
    }

    .intro-strip-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .audience-copy,
    .about-media {
        max-width: none;
    }

    .about-media {
        width: min(100%, 500px);
        margin: 0 auto;
    }

    .trajectory-photo,
    .themes-heading,
    .faq-intro {
        position: relative;
        top: auto;
    }

    .trajectory-photo {
        width: min(100%, 480px);
        margin: 0 auto;
    }

    .approach-visual {
        width: min(100%, 480px);
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--ka-container));
    }

    .section {
        padding: 72px 0;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .brand-link img {
        width: 58px;
        height: 58px;
    }

    .hero {
        padding: 62px 0 78px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        align-self: stretch;
        justify-content: center;
        text-align: center;
    }

    .hero-photo-frame {
        border-radius: 46% 46% 24px 24px;
    }

    .hero-note {
        width: calc(100% - 20px);
        padding-right: 18px;
        padding-left: 48px;
    }

    .intro-strip-grid {
        grid-template-columns: 1fr;
    }

    .intro-strip-grid > div {
        min-height: auto;
        padding: 20px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .intro-strip-grid > div:last-child {
        border-bottom: 0;
    }

    .audience-card {
        align-items: start;
        grid-template-columns: 68px 1fr;
        padding: 16px;
    }

    .audience-card-icon {
        width: 68px;
        height: 68px;
    }

    .audience-visual {
        padding: 10px;
        border-radius: 26px;
    }

    .audience-visual > img {
        border-radius: 20px;
    }

    .audience-visual-caption {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 10px;
        background: var(--ka-ink);
    }

    .about-signature {
        right: 12px;
        bottom: 20px;
        width: 104px;
        height: 104px;
        border-width: 4px;
    }

    .trust-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .online-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 24px;
    }

    .online-card .button {
        grid-column: auto;
        justify-self: stretch;
    }

    .online-symbol {
        width: 68px;
        height: 68px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}