:root {
    --ink: #111827;
    --ink-soft: #23314a;
    --night: #0b1220;
    --paper: #fffaf2;
    --copper: #c46c42;
    --amber: #e9b949;
    --teal: #2a7f7a;
    --fog: #cdd5e3;
    --white: #ffffff;
    --radius: 22px;
    --shadow-soft: 0 20px 55px rgba(9, 18, 33, 0.1);
    --shadow-strong: 0 25px 60px rgba(9, 18, 33, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 18%, rgba(233, 185, 73, 0.18), transparent 35%),
        radial-gradient(circle at 88% 14%, rgba(42, 127, 122, 0.14), transparent 30%),
        linear-gradient(180deg, #fff8ee 0%, #fffdf8 45%, #f9f7ff 100%);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 250, 242, 0.68);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 250, 242, 0.92);
    box-shadow: 0 10px 25px rgba(9, 18, 33, 0.08);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    color: var(--ink);
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
}

.nav-phone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
    color: var(--night);
    background: rgba(17, 24, 39, 0.08);
}

.nav-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    display: block;
}

section {
    padding: 5.8rem 2rem;
    position: relative;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    background:
        linear-gradient(140deg, rgba(46, 67, 72, 1) 0%, rgba(60, 88, 102, 1) 100%),
        url('data:image/svg+xml,%3Csvg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"%3E%3Cpath d="M0 60h120M60 0v120"/%3E%3C/g%3E%3C/svg%3E');
    background-size: cover, 120px 120px;
    color: var(--paper);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(3px);
    opacity: 0.7;
    animation: drift 12s ease-in-out infinite;
}

.hero::before {
    width: 340px;
    height: 340px;
    left: -110px;
    top: 16%;
    background: radial-gradient(circle at 35% 35%, rgba(233, 185, 73, 0.55), transparent 70%);
}

.hero::after {
    width: 380px;
    height: 380px;
    right: -130px;
    bottom: 6%;
    background: radial-gradient(circle at 35% 35%, rgba(196, 108, 66, 0.58), transparent 70%);
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    animation: rise 1s ease both;
}

.hero-pretitle {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    margin-bottom: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.hero h1 em {
    color: var(--amber);
    font-style: normal;
}

.hero-tagline {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.96;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto 2.4rem;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: rgba(255, 250, 242, 0.92);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 1.6rem;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
    background: var(--amber);
    color: var(--night);
    box-shadow: 0 10px 30px rgba(233, 185, 73, 0.35);
}

.btn-primary:hover {
    background: #f0c55e;
    box-shadow: 0 16px 35px rgba(233, 185, 73, 0.45);
}

.btn-outline {
    color: var(--paper);
    border-color: rgba(255, 250, 242, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 250, 242, 0.95);
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.8;
}

.scroll-hint svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 250, 242, 0.9);
}

.section-title {
    font-size: clamp(2.1rem, 5vw, 3.9rem);
    text-align: center;
    color: var(--night);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.9rem;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.divider {
    width: 86px;
    height: 7px;
    border-radius: 20px;
    margin: 1.1rem auto 2rem;
    background: linear-gradient(90deg, var(--amber), var(--copper));
}

.offers {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.92));
}

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

.offer-card {
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
}

.offer-card:nth-child(1) {
    background: linear-gradient(165deg, #ffffff 0%, #e8f7f3 100%);
}

.offer-card:nth-child(2) {
    background: linear-gradient(165deg, #fffdf4 0%, #ffeec8 100%);
}

.offer-card:nth-child(3) {
    background: linear-gradient(165deg, #fff8f3 0%, #ffd9c9 100%);
}

.offer-icon {
    font-size: 2rem;
    line-height: 1;
}

.offer-card h3 {
    font-size: 1.65rem;
    color: var(--night);
}

.offer-tagline {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-style: italic;
}

.offer-list {
    list-style: none;
}

.offer-list li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.35rem;
    color: #1f2b42;
    font-size: 0.94rem;
}

.offer-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: 0.3rem;
    color: var(--teal);
}

.offer-card:nth-child(2) .offer-list li::before {
    color: #be8b1f;
}

.offer-card:nth-child(3) .offer-list li::before {
    color: var(--copper);
}

.offer-note {
    margin-top: auto;
    color: #4a556b;
    font-size: 0.82rem;
    font-style: italic;
}

.approach {
    background:
        linear-gradient(180deg, rgba(19, 30, 51, 0.97) 0%, rgba(27, 43, 67, 0.97) 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 16px, rgba(255, 255, 255, 0.02) 16px 32px);
    color: var(--paper);
}

.approach .section-title,
.approach .approach-intro,
.approach .pillars h3,
.approach .pillars p {
    color: var(--paper);
}

.approach .divider {
    background: linear-gradient(90deg, var(--amber), #fbe4aa);
}

.approach-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    font-size: 1.08rem;
    opacity: 0.94;
}

.approach-intro em {
    color: #ffe1ac;
    font-style: normal;
    font-weight: 700;
}

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

.pillar {
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(5, 13, 24, 0.38);
}

.pillar-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    margin: 0 auto 1rem;
    font-size: 1.7rem;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
}

.pillar h3 {
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
}

.pillar p {
    font-size: 0.96rem;
    opacity: 0.95;
}

.focusing {
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.75), rgba(240, 250, 247, 0.75));
}

.focusing-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.6rem;
    align-items: stretch;
}

.focusing-quote,
.focusing-text {
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: var(--shadow-soft);
}

.focusing-quote {
    background: linear-gradient(160deg, #163056 0%, #194d58 100%);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.focusing-quote blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.65rem, 3.3vw, 2.35rem);
    line-height: 1.35;
    margin-bottom: 1rem;
}

.focusing-quote cite {
    color: #f5dca6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
}

.focusing-text h3 {
    color: var(--night);
    font-size: 1.85rem;
    margin-bottom: 0.7rem;
}

.focusing-text p {
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
}

.focusing-steps {
    list-style: none;
    margin-top: 1.2rem;
}

.focusing-steps li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.45rem;
    color: var(--ink-soft);
}

.focusing-steps li::before {
    content: '◦';
    color: var(--copper);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.projects {
    background: linear-gradient(180deg, #fffdf8 0%, #eef8f5 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.project-shot {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dce8eb;
}

.project-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-shot img {
    transform: scale(1.04);
}

.project-body {
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.project-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
}

.project-body h3 {
    color: var(--night);
    font-size: 1.4rem;
    line-height: 1.2;
}

.project-body p {
    color: var(--ink-soft);
}

.project-body .btn {
    margin-top: auto;
}

.for-who {
    background: linear-gradient(180deg, #f7fbff 0%, #fff6ef 100%);
}

.for-who-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.for-who-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 10px 24px rgba(9, 18, 33, 0.08);
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.for-who-card .icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.15rem;
}

.for-who-card h4 {
    font-size: 1.26rem;
    margin-bottom: 0.25rem;
    color: var(--night);
}

.for-who-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

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

.about-content {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: start;
}

.about-photo {
    width: 85%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(160deg, #d8ede7, #f8dfca);
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(17, 24, 39, 0.1);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.08);
    padding: 2rem;
}

.about-text h3 {
    font-size: 1.9rem;
    margin-bottom: 0.65rem;
    color: var(--night);
}

.about-text p {
    color: var(--ink-soft);
    margin-bottom: 0.9rem;
}

.certifications {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cert-badge {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(42, 127, 122, 0.12), rgba(196, 108, 66, 0.12));
    border: 1px solid rgba(17, 24, 39, 0.1);
    color: #1f2e4a;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.faq {
    background: linear-gradient(180deg, #0d1728 0%, #13243f 100%);
    color: var(--paper);
}

.faq .section-title,
.faq .section-subtitle {
    color: var(--paper);
}

.faq .divider {
    background: linear-gradient(90deg, #f4d186, #ffc5a9);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(7px);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--paper);
    text-align: left;
    cursor: pointer;
    padding: 1.1rem 1.2rem;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #ffd083;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    padding: 0 1.2rem 1.1rem;
}

.faq-answer p {
    color: rgba(255, 250, 242, 0.92);
    font-size: 0.95rem;
}

.contact {
    background: linear-gradient(180deg, #ffd684 0%, #f1a97c 100%);
    color: var(--night);
    text-align: center;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--night);
}

.contact .divider {
    background: linear-gradient(90deg, #194d58, #20375f);
}

.contact-cta {
    margin: 2rem 0;
}

.btn-light {
    background: var(--night);
    color: var(--paper);
    border-color: var(--night);
    box-shadow: 0 14px 30px rgba(11, 18, 32, 0.28);
}

.btn-light:hover {
    background: #1f3153;
    color: var(--paper);
}

.contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.contact-link {
    text-decoration: none;
    color: var(--night);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.72;
}

.contact-link svg {
    width: 18px;
    height: 18px;
}

footer {
    background: #0b1220;
    text-align: center;
    padding: 1.4rem 1rem;
    color: var(--fog);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

footer a {
    color: #f9d48f;
    text-decoration: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== AGENDA ===== */

.agenda {
    background: linear-gradient(180deg, #eef8f5 0%, #f9f7ff 100%);
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 2.2rem;
    align-items: stretch;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.event-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(160deg, #d8ede7, #f8dfca);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.event-date {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
}

.event-body h3 {
    font-size: 1.5rem;
    color: var(--night);
    line-height: 1.2;
}

.event-body p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0;
}

.event-body p:not(.event-date) {
    flex: 1;
}

.event-body .btn {
    margin-top: auto;
}

/* ===== AUDIO PLAYER ===== */

.audio-player {
    position: fixed;
    top: 8rem;
    left: 2rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.audio-player.visible {
    opacity: 1;
    transform: translateY(0);
}

.audio-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 250, 242, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17, 24, 39, 0.12);
    box-shadow: 0 8px 24px rgba(9, 18, 33, 0.14);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    line-height: 1;
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(9, 18, 33, 0.2);
}

.audio-btn.playing {
    background: var(--night);
    box-shadow:
        0 0 0 3px rgba(233, 185, 73, 0.5),
        0 0 18px rgba(233, 185, 73, 0.6),
        0 8px 24px rgba(9, 18, 33, 0.3);
}

.audio-btn.playing .audio-icon {
    filter: invert(1);
}

.audio-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: rgba(255, 250, 242, 0.88);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
}

.audio-player:hover .audio-label {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {

    .offers-grid,
    .pillars,
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .focusing-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.4rem 1.2rem;
    }

    .nav-inner {
        padding: 0.85rem 1rem;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav-phone {
        display: block;
        font-size: 0.78rem;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 250, 242, 0.98);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(17, 24, 39, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.9rem 1rem 1rem;
        gap: 0.3rem;
    }

    .nav-links.open {
        display: flex;
    }

    .offers-grid,
    .pillars,
    .for-who-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 92vh;
        padding-top: 7.2rem;
    }

    .hero h1 em {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: min(320px, 100%);
    }

    .about-text,
    .focusing-text,
    .focusing-quote,
    .offer-card,
    .pillar,
    .for-who-card {
        padding: 1.4rem;
    }

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

/* ===== ANIMATIONS ===== */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-7px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 3px rgba(233, 185, 73, 0.5),
            0 0 18px rgba(233, 185, 73, 0.6),
            0 8px 24px rgba(9, 18, 33, 0.3);
    }

    50% {
        transform: scale(1.13);
        box-shadow:
            0 0 0 7px rgba(233, 185, 73, 0.25),
            0 0 32px rgba(233, 185, 73, 0.75),
            0 10px 28px rgba(9, 18, 33, 0.35);
    }
}

.audio-btn.playing {
    animation: pulse 1.8s ease-in-out infinite;
}