/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/* ===== ACCESSIBILITY: skip link ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 10px 20px;
    background: var(--c-deep);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

/* ===== SEO keyword text (visible to crawlers, hidden visually) ===== */
.seo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

:root {
    --c-deep: #4a3341;
    --c-mid: #6d4d6e;
    --c-purple: #7e6991;
    --c-muted: #a3a4be;
    --c-soft: #e0e6e9;
    --c-cream: #f5f2f0;
    --c-white: #fff;
    --c-dark: #2a1e28;
    --c-text: #3a2e38;
    --c-text-light: #8a7e88;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(74, 51, 65, .10);
    --shadow-lg: 0 12px 48px rgba(74, 51, 65, .14);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px
}

body {
    font-family: var(--font-sans);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.65
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 242, 240, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 51, 65, .08);
    transition: var(--transition)
}

.header.scrolled {
    box-shadow: 0 4px 28px rgba(74, 51, 65, .12)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative
}

/* Logo — far left */
.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--c-deep);
    letter-spacing: -.2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity var(--transition)
}

.nav__logo:hover {
    opacity: .82
}

.nav__logo span {
    color: var(--c-mid)
}

/* Menu — absolute centre */
.nav__menu {
    display: flex;
    gap: 4px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(74, 51, 65, .04);
    border: 1px solid rgba(74, 51, 65, .07);
    border-radius: 50px;
    padding: 5px 8px;
    white-space: nowrap
}

.nav__link {
    font-size: .84rem;
    font-weight: 500;
    color: var(--c-text-light);
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: 50px;
    position: relative
}

.nav__link::after {
    display: none
}

.nav__link:hover,
.nav__link.active {
    color: var(--c-deep);
    background: rgba(74, 51, 65, .07)
}

.nav__link--cta {
    background: var(--c-deep);
    color: var(--c-white) !important;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    margin-left: 4px
}

.nav__link--cta:hover {
    background: var(--c-mid);
    color: var(--c-white) !important
}

/* Right group: lang switcher + hamburger */
.nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.lang-switcher {
    display: flex;
    gap: 3px;
    background: rgba(74, 51, 65, .04);
    border: 1px solid rgba(74, 51, 65, .08);
    border-radius: 50px;
    padding: 4px 6px
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid transparent;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-size: .74rem;
    font-weight: 600;
    color: var(--c-text-light);
    transition: var(--transition)
}

.lang-switcher__btn--active,
.lang-switcher__btn:hover {
    border-color: transparent;
    color: var(--c-deep);
    background: var(--c-white);
    box-shadow: 0 1px 6px rgba(74, 51, 65, .10)
}

.lang-switcher__btn img {
    border-radius: 2px
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(74, 51, 65, .06);
    border: 1px solid rgba(74, 51, 65, .09);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px 10px
}

.nav__hamburger span {
    width: 20px;
    height: 2px;
    background: var(--c-deep);
    border-radius: 2px;
    transition: var(--transition)
}

/* Language row inside mobile nav — hidden on desktop pill menu */
.nav__menu-langs-item {
    display: none
}

.nav__menu-langs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

/* ===== HERO — Split: photo left, text right ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--c-cream)
}

.hero>.container {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
    min-height: calc(100vh - 72px)
}

.hero__photo-col {
    flex: 0 0 42%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-end;
    padding: 0
}

.hero__photo {
    width: auto;
    height: auto;
    max-height: 80vh;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(74, 51, 65, .20));
    border-radius: 0;
    margin: 0 auto
}

.hero__photo-stats {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 40px;
    justify-content: center
}

.pstat {
    text-align: center;
    background: var(--c-white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(74, 51, 65, .07)
}

.pstat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--c-deep);
    line-height: 1
}

.pstat__plus {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--c-mid)
}

.pstat small {
    font-size: .75rem;
    color: var(--c-text-light)
}

.hero__text-col {
    flex: 1;
    padding: 60px 0 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    min-width: 0
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(109, 77, 110, .08);
    border: 1px solid rgba(109, 77, 110, .15);
    font-size: .78rem;
    font-weight: 600;
    color: var(--c-mid);
    margin-bottom: 20px;
    width: fit-content
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    line-height: 1.08;
    color: var(--c-deep);
    margin-bottom: 8px
}

.hero__title em {
    font-style: italic;
    color: var(--c-mid)
}

.hero__langs {
    display: flex;
    gap: 16px;
    margin: 16px 0 20px;
    flex-wrap: wrap
}

.hero__langs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--c-text-light)
}

.hero__langs span img {
    border-radius: 2px
}

.hero__desc {
    max-width: 480px;
    color: var(--c-text-light);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 28px
}

.hero__chooser-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--c-deep);
    margin-bottom: 16px
}

.hero__chooser {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.hcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    background: var(--c-white);
    border: 1.5px solid rgba(74, 51, 65, .08);
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-deep);
    transition: var(--transition);
    cursor: pointer
}

.hcard i {
    font-size: 1.6rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition)
}

.hcard--docs i {
    background: rgba(126, 105, 145, .10);
    color: var(--c-purple)
}

.hcard--cit i {
    background: rgba(180, 160, 100, .10);
    color: #8a7a42
}

.hcard--oral i {
    background: rgba(74, 51, 65, .08);
    color: var(--c-deep)
}

.hcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--c-mid)
}

.hcard:hover i {
    transform: scale(1.1)
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0
}

.section--mauve {
    background: var(--c-deep);
    color: var(--c-white)
}

.section--soft {
    background: var(--c-white)
}

.section__header {
    text-align: center;
    margin-bottom: 56px
}

.section__tag {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    background: rgba(109, 77, 110, .08);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-mid);
    margin-bottom: 12px
}

.section__tag--light {
    background: rgba(255, 255, 255, .10);
    color: var(--c-soft)
}

.section__title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--c-deep)
}

.section__title--light {
    color: var(--c-white)
}

.section__desc {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--c-text-light);
    font-size: .95rem
}

/* ===== BENTO ABOUT (legacy, kept for guarantees strip) ===== */
.bento {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    grid-template-rows: auto auto auto;
    gap: 20px
}

.bento__main {
    grid-row: 1/3;
    padding: 40px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.bento__main p {
    color: var(--c-text-light);
    margin-top: 12px;
    font-size: .93rem;
    line-height: 1.7
}

.bento__card {
    padding: 28px;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.bento__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.bento__card i {
    font-size: 1.5rem;
    color: var(--c-mid);
    margin-bottom: 12px
}

.bento__card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 6px
}

.bento__card p {
    font-size: .85rem;
    color: var(--c-text-light)
}

.bento__guarantees {
    grid-column: 1/-1;
    padding: 32px 40px;
    background: var(--c-deep);
    border-radius: var(--radius);
    color: var(--c-white)
}

.bento__guarantees h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 16px
}

.gtags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.gtags span {
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    font-size: .82rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .15)
}

/* ===== ABOUT SECTION — Redesigned ===== */
.about-section {
    background: var(--c-cream);
    padding-top: 128px;
}

/* Bio + creds two-column */
.about__top {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    margin-bottom: 56px;
    align-items: start
}

.about__lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--c-text);
    margin-bottom: 16px
}

.about__bio p {
    color: var(--c-text-light);
    font-size: .94rem;
    line-height: 1.75;
    margin-bottom: 14px
}

.about__memberships {
    list-style: none;
    margin: 10px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about__memberships li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--c-text-light);
    line-height: 1.55
}

.about__memberships li i {
    color: var(--c-mid);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0
}

.about__memberships a {
    color: var(--c-mid);
    text-decoration: underline;
    text-underline-offset: 2px
}

.about__memberships a:hover {
    color: var(--c-deep)
}

/* Credential cards column */
.about__creds {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cred-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--c-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--c-mid);
    transition: var(--transition)
}

.cred-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg)
}

.cred-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(109, 77, 110, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
    font-size: 1.1rem;
    flex-shrink: 0
}

.cred-card>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.cred-card strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--c-deep)
}

.cred-card span {
    font-size: .78rem;
    color: var(--c-text-light)
}

.cred-card--langs .lang-flags {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap
}

.cred-card--langs img {
    border-radius: 2px;
    vertical-align: middle
}

/* ── Timeline ── */
.about__timeline-wrap {
    margin-bottom: 56px
}

.about__timeline-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--c-deep);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px
}

.about__timeline-title i {
    color: var(--c-mid)
}

.timeline {
    list-style: none;
    position: relative;
    padding-left: 48px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-mid) 0%, rgba(109, 77, 110, .15) 100%);
    border-radius: 2px
}

.timeline__item {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 28px
}

.timeline__item:last-child {
    margin-bottom: 0
}

.timeline__marker {
    position: absolute;
    left: -48px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-white);
    border: 2px solid rgba(109, 77, 110, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1
}

.timeline__marker span {
    font-size: .62rem;
    font-weight: 800;
    color: var(--c-text-light);
    line-height: 1
}

.timeline__item--active .timeline__marker {
    background: linear-gradient(135deg, var(--c-mid), var(--c-deep));
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(109, 77, 110, .15)
}

.timeline__item--active .timeline__marker span {
    color: #fff
}

.timeline__body {
    background: var(--c-white);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    flex: 1;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.timeline__body:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px)
}

.timeline__body h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.timeline__body p {
    font-size: .84rem;
    color: var(--c-text-light);
    line-height: 1.6
}

.tl-badge {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 2px 8px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--c-mid), var(--c-deep));
    color: #fff
}

/* ── Education grid ── */
.about__edu-wrap {
    margin-bottom: 48px
}

.edu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.edu-card {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: var(--c-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--c-purple)
}

.edu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.edu-card--school {
    border-top-color: var(--c-mid)
}

.edu-card__year {
    font-family: var(--font-serif);
    font-size: .9rem;
    font-weight: 700;
    color: var(--c-mid);
    white-space: nowrap;
    padding-top: 2px;
    min-width: 64px
}

.edu-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.edu-card__body strong {
    font-size: .84rem;
    font-weight: 700;
    color: var(--c-deep);
    line-height: 1.4
}

.edu-card__body span {
    font-size: .78rem;
    color: var(--c-text-light);
    line-height: 1.5
}

/* ===== DOCUMENTS GRID ===== */
.docs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.dcard {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    transition: var(--transition)
}

.dcard:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .20)
}

.dcard i {
    font-size: 1.6rem;
    color: var(--c-soft);
    margin-bottom: 16px
}

.dcard h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--c-white)
}

.dcard p {
    font-size: .85rem;
    color: var(--c-muted);
    line-height: 1.6
}

.dcard--note {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

/* ===== ORAL SECTION ===== */
.oral__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.ocard {
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition)
}

.ocard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.ocard i {
    font-size: 1.5rem;
    color: var(--c-mid);
    margin-bottom: 14px
}

.ocard h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 6px
}

.ocard p {
    font-size: .85rem;
    color: var(--c-text-light)
}

/* ===== CITIZENSHIP ===== */
.cit__ways {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 56px
}

.cway {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--c-cream);
    transition: var(--transition)
}

.cway:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.cway__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-mid), var(--c-purple));
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 14px
}

.cway h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 6px
}

.cway p {
    font-size: .82rem;
    color: var(--c-text-light)
}

/* ===== GUIDE BANNER: 0 → Result ===== */
.guide-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    padding: 24px 28px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-mid) 100%);
    color: var(--c-white);
    flex-wrap: wrap
}

.guide-banner__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--c-soft)
}

.guide-banner__body {
    flex: 1;
    min-width: 200px
}

.guide-banner__label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-muted);
    margin-bottom: 4px
}

.guide-banner__title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 6px
}

.guide-banner__title span {
    color: var(--c-soft)
}

.guide-banner__desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6
}

.btn--guide {
    flex-shrink: 0;
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: var(--c-white);
    padding: 11px 22px;
    font-size: .84rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap
}

.btn--guide:hover {
    background: var(--c-soft);
    color: var(--c-deep)
}

.steps__title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--c-deep);
    margin-bottom: 32px;
    margin-top: 48px
}

.steps__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.step {
    text-align: center;
    padding: 24px 20px;
    border-radius: var(--radius);
    background: var(--c-cream);
    min-width: 160px;
    transition: var(--transition)
}

.step:hover {
    box-shadow: var(--shadow)
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-deep);
    color: var(--c-white);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px
}

.step h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--c-deep);
    margin-bottom: 4px
}

.step span {
    font-size: .78rem;
    color: var(--c-mid);
    font-weight: 600;
    display: block;
    margin-bottom: 6px
}

.step p {
    font-size: .8rem;
    color: var(--c-text-light);
    line-height: 1.55;
    margin-top: 4px
}

.step__arrow {
    color: var(--c-muted);
    font-size: 1rem
}

/* ===== PROCESS ===== */
.proc__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: proc
}

.proc {
    padding: 36px 28px;
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition)
}

.proc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.proc span {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(109, 77, 110, .10);
    line-height: 1
}

.proc h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-deep);
    margin: 8px 0 6px
}

.proc p {
    font-size: .85rem;
    color: var(--c-text-light);
    line-height: 1.6
}

/* ===== FAQ ===== */
.faq__list {
    max-width: 720px;
    margin: 0 auto
}

.faq__item {
    border-bottom: 1px solid rgba(74, 51, 65, .08)
}

.faq__q {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-deep);
    transition: var(--transition)
}

.faq__q:hover {
    color: var(--c-mid)
}

.faq__plus {
    font-size: 1.4rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--c-mid)
}

.faq__item.open .faq__plus {
    transform: rotate(45deg)
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq__item.open .faq__a {
    max-height: 240px
}

.faq__a p {
    padding: 0 0 20px;
    color: var(--c-text-light);
    font-size: .92rem;
    line-height: 1.7
}

/* ===== TESTIMONIALS ===== */
.revs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.rev {
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition)
}

.rev:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.rev::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(109, 77, 110, .10);
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1
}

.rev blockquote {
    font-size: .95rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic
}

.rev cite {
    font-size: .82rem;
    color: var(--c-mid);
    font-style: normal;
    font-weight: 600
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: start
}

.contact-form {
    padding: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(6px)
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-form__group {
    margin-bottom: 16px
}

.contact-form__group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--c-soft)
}

.contact-form__group input, .contact-form__group select, .contact-form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .06);
    color: var(--c-white);
    font-family: var(--font-sans);
    font-size: .88rem;
    transition: var(--transition)
}

.contact-form__group input::placeholder, .contact-form__group textarea::placeholder {
    color: rgba(255, 255, 255, .35)
}

.contact-form__group input:focus, .contact-form__group select:focus, .contact-form__group textarea:focus {
    outline: none;
    border-color: var(--c-muted);
    background: rgba(255, 255, 255, .10)
}

.contact-form__group select option {
    background: var(--c-deep);
    color: var(--c-white)
}

.contact-form__error {
    display: none;
    font-size: .75rem;
    color: #f5a5a5;
    margin-top: 4px
}

.contact-form__group.invalid .contact-form__error {
    display: block
}

.contact-form__group.invalid input, .contact-form__group.invalid textarea {
    border-color: #f5a5a5
}

.contact-form__status {
    margin-top: 12px;
    font-size: .88rem;
    text-align: center
}

.contact-form__status.success {
    color: #a5f5c5
}

.contact-form__status.error {
    color: #f5a5a5
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 0
}

.ci {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.ci i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    color: var(--c-soft);
    font-size: 1rem;
    flex-shrink: 0
}

.ci strong {
    display: block;
    font-size: .85rem;
    color: var(--c-soft)
}

.ci a, .ci span {
    font-size: .88rem;
    color: var(--c-muted);
    transition: var(--transition)
}

.ci a:hover {
    color: var(--c-white)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--transition)
}

.btn--primary {
    background: var(--c-soft);
    color: var(--c-deep)
}

.btn--primary:hover {
    background: var(--c-white);
    transform: translateY(-2px)
}

.btn--sm {
    padding: 10px 22px;
    font-size: .82rem
}

.btn--block {
    width: 100%
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-dark);
    color: var(--c-muted);
    padding: 48px 0 28px
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer__brand .nav__logo {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: inline-block
}

.footer__brand p {
    font-size: .85rem;
    color: var(--c-text-light)
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer__links a {
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--c-muted);
    transition: var(--transition)
}

.footer__links a:hover {
    color: var(--c-white)
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: .78rem;
    color: var(--c-text-light)
}

.footer__legal {
    opacity: .6
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-deep);
    color: var(--c-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 90;
    box-shadow: 0 4px 16px rgba(74, 51, 65, .25)
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

.back-to-top:hover {
    background: var(--c-mid);
    transform: translateY(-3px)
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== RESPONSIVE ===== */

/* Tablet: hero stacks, grids go 2-col */
@media(max-width:1024px) {
    .hero>.container {
        flex-direction: column;
        align-items: center
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 0
    }

    .hero__photo-col {
        flex: none;
        width: 100%;
        padding: 40px 0 0;
        align-items: center
    }

    .hero__photo {
        max-width: 280px
    }

    .hero__photo {
        max-height: 60vh
    }

    .hero__photo-stats {
        margin-top: 20px;
        margin-bottom: 0
    }

    .hero__text-col {
        padding: 32px 24px 64px;
        align-items: center;
        text-align: center;
        width: 100%
    }

    .hero__title {
        font-size: 2.6rem
    }

    .hero__langs {
        justify-content: center
    }

    .hero__desc {
        text-align: center
    }

    .hero__chooser-title {
        text-align: center
    }

    .bento {
        grid-template-columns: 1fr
    }

    .bento__main {
        grid-row: auto
    }

    .about__top {
        grid-template-columns: 1fr
    }

    .edu__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .docs__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .oral__row {
        grid-template-columns: repeat(2, 1fr)
    }

    .cit__ways {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc__row {
        grid-template-columns: repeat(2, 1fr)
    }

    .revs {
        grid-template-columns: 1fr
    }

    .contact__grid {
        grid-template-columns: 1fr
    }
}

/* Mobile: hamburger menu, hide desktop nav */
@media(max-width:768px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--c-cream);
        flex-direction: column;
        padding: 12px 16px 20px;
        gap: 2px;
        box-shadow: 0 16px 40px rgba(74, 51, 65, .14);
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: 1px solid rgba(74, 51, 65, .08);
        transform: none;
        z-index: 200
    }

    .nav__menu.active {
        display: flex
    }

    .nav__hamburger {
        display: flex
    }

    /* Hide desktop lang switcher on mobile — shown inside burger menu only */
    .lang-switcher--desktop {
        display: none
    }

    /* Show lang switcher as last item inside the mobile dropdown */
    .nav__menu-langs-item {
        display: flex;
        justify-content: center;
        padding-top: 10px;
        margin-top: 6px;
        border-top: 1px solid rgba(74, 51, 65, .09)
    }

    /* nav__menu-langs handled via CSS when inside the dropdown */

    .hero__title {
        font-size: 2rem
    }

    .hero__chooser {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px
    }

    .section__title {
        font-size: 2rem
    }

    .steps__row {
        flex-direction: column;
        gap: 8px
    }

    .step__arrow {
        transform: rotate(90deg)
    }

    .footer__row {
        flex-direction: column;
        gap: 20px
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }
}

@media(max-width:480px) {
    .hero__photo {
        max-width: 240px
    }

    .hero__photo-stats {
        gap: 8px
    }

    .pstat {
        padding: 10px 14px
    }

    .pstat strong {
        font-size: 1.6rem
    }

    .hero__photo {
        max-height: 55vh
    }

    .hero__title {
        font-size: 1.8rem
    }

    .hero__chooser {
        grid-template-columns: 1fr
    }

    .edu__grid {
        grid-template-columns: 1fr
    }

    .edu-card {
        flex-direction: column;
        gap: 6px
    }

    .edu-card__year {
        min-width: auto
    }

    .timeline {
        padding-left: 36px
    }

    .timeline__marker {
        left: -36px;
        width: 28px;
        height: 28px
    }

    .timeline__marker span {
        font-size: .55rem
    }

    .docs__grid {
        grid-template-columns: 1fr
    }

    .oral__row {
        grid-template-columns: 1fr
    }

    .cit__ways {
        grid-template-columns: 1fr
    }

    .proc__row {
        grid-template-columns: 1fr
    }

    .contact-form__row {
        grid-template-columns: 1fr
    }
}