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

:root {
    --cream: #ffffff;
    --cream2: #eef2fb;
    --ink: #0d1b3e;
    --rust: #c9a84c;
    --steel: #4a5568;
    --white: #ffffff;
    --border: rgba(13, 27, 62, 0.12);
    --light: rgba(13, 27, 62, 0.045);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

/* ── PAGE LOADER ── */
#page-loader {
    position: fixed;
    inset: 0;
    background: #0d1b3e;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

#page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    animation: loader-rise 0.5s ease both;
}

.loader-brand span {
    color: #c9a84c;
}

.loader-tagline {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 36px;
    animation: loader-rise 0.5s 0.1s ease both;
}

.loader-bar {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #c9a84c;
    animation: loader-fill 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loader-fill {
    0%   { width: 0%; }
    65%  { width: 78%; }
    100% { width: 78%; }
}

@keyframes loader-rise {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

/* ── HEADER STRIP ── */
.top-strip {
    background: var(--ink);
    color: #fff;
    padding: 10px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.strip-left {
    opacity: 1;
}

.strip-right {
    display: flex;
    gap: 32px;
}

.strip-right a {
    color: inherit;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.2s;
}

.strip-right a:hover {
    opacity: 1;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--INK);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: stretch;
}

.nav-brand {
    padding: 0 40px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border);
    text-decoration: none;
    min-width: 240px;
}

.brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}

.brand-name span {
    color: var(--rust);
}

.nav-logo {
    height: 38px;
    width: auto;
    display: block;
}

.nav-items {
    display: flex;
    flex: 1;
    list-style: none;
}

.nav-items li {
    border-right: 1px solid var(--border);
}

.nav-items a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 20px 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-items a:hover {
    background: var(--light);
    color: var(--ink);
}

.nav-contact {
    margin-left: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
}

.nav-contact a {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--rust);
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-contact a:hover {
    background: var(--ink);
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    border-bottom: 1px solid var(--border);
}

.hero-left {
    padding: 80px 56px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: auto;
    font-weight: 600;
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 48px 0;
}

.hero-headline .line2 {
    display: block;
    color: var(--rust);
}

.hero-slogan {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-meta {
    display: flex;
    gap: 0;
}

.hero-meta-item {
    flex: 1;
    padding: 24px 0;
    border-top: 2px solid var(--ink);
}

.hero-meta-item+.hero-meta-item {
    padding-left: 24px;
    border-left: 1px solid var(--border);
}

.meta-label {
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 8px;
}

.meta-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
}

.meta-value.small {
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.3;
}

.hero-right {
    display: grid;
    grid-template-rows: 1fr auto;
}

.hero-image-area {
    background: var(--rust);
    position: relative;
    overflow: hidden;
    padding: 28px 0 0 28px;
}

.hero-portrait {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 0;
    bottom: 0;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, transparent, rgba(13, 27, 62, 0.38));
    pointer-events: none;
    z-index: 1;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    left: 52px;
    z-index: 2;
    display: none;
    flex-direction: column;
    gap: 4px;
}

.hero-badge-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge-title {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hero-desc-panel {
    padding: 40px 56px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--steel);
    max-width: 100%;
}

/* ── SECTION UTILITY ── */
.section-header {
    padding: 60px 56px;
    background: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.sh-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--rust);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sh-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.about-col {
    padding: 56px;
    border-right: 1px solid var(--border);
}

.about-col:last-child {
    border-right: none;
}

.col-head {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.col-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--steel);
}

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

.col-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

.col-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--rust);
}

/* ── FOCUS AREAS ── */
.focus-section {
}

.focus-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.focus-card {
    padding: 48px 40px;
    position: relative;
    transition: background 0.25s;
    cursor: default;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    justify-content: flex-end;
}

.focus-card:last-child {
    border-right: none;
}

.focus-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 13, 10, 0.72);
    transition: background 0.3s;
    z-index: 0;
}

.focus-card:hover .focus-overlay {
    background: rgba(16, 13, 10, 0.55);
}

.focus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rust);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
    z-index: 2;
}

.focus-card:hover::after {
    transform: scaleX(1);
}

.focus-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.focus-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.focus-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(242, 237, 230, 0.75);
    position: relative;
    z-index: 1;
}

/* ── EXPERIENCE ── */
.exp-section {
}

.exp-list {
    list-style: none;
    padding: 0;
}

.exp-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 36px 56px;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background 0.25s;
    overflow: hidden;
}

.exp-item:hover {
    background: var(--cream2);
}

.exp-item:hover .exp-company {
    color: var(--rust);
}

.exp-index {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 800;
    color: rgba(13, 27, 62, 0.055);
    line-height: 1;
    min-width: 120px;
    flex-shrink: 0;
    user-select: none;
    transition: color 0.25s;
}

.exp-item:hover .exp-index {
    color: rgba(201, 168, 76, 0.15);
}

.exp-body {
    flex: 1;
    padding: 0 24px;
}

.exp-company {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    transition: color 0.25s;
}

.exp-role {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rust);
    margin-top: 10px;
}

.exp-period {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--steel);
    text-align: right;
    flex-shrink: 0;
    min-width: 120px;
}

.exp-table {
    width: 100%;
    border-collapse: collapse;
}

.exp-table thead th:first-child {
    width: 200px;
}

.exp-table thead tr {
    background: var(--ink);
    color: var(--cream);
}

.exp-table thead th {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 16px 24px;
    text-align: left;
    font-family: 'Barlow', sans-serif;
}

.exp-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.exp-table tbody tr:hover {
    background: var(--cream2);
}

.exp-table td {
    padding: 28px 24px;
    font-size: 14px;
    vertical-align: top;
}

.td-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.td-org {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rust);
    margin-top: 4px;
}

.td-period {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--steel);
    white-space: nowrap;
}

.td-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel);
    max-width: 500px;
}

.td-badge {
    display: inline-block;
    background: var(--light);
    border: 1px solid var(--border);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    color: var(--steel);
}

/* ── CONTACT ── */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-left {
    padding: 80px 56px;
    border-right: 1px solid var(--border);
}

.contact-left h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.contact-left h2 span {
    color: var(--rust);
}

.contact-left p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--steel);
    margin-bottom: 40px;
    max-width: 380px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--ink);
    color: var(--cream);
    padding: 18px 36px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-link:hover {
    background: var(--rust);
}

.contact-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.contact-info-block {
    padding: 48px 56px;
    border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
    border-bottom: none;
}

.cib-label {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 12px;
}

.cib-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 28px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fcopy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
}

.flinks {
    display: flex;
    gap: 0;
    list-style: none;
}

.flinks li a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.flinks li:last-child a {
    border-right: none;
}

.flinks li a:hover {
    color: var(--cream);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

/* ── MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 62, 0.78);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--cream);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    padding: 32px 40px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    position: sticky;
    top: 0;
    background: var(--cream);
    z-index: 1;
}

.modal-eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.modal-title span {
    color: var(--rust);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--steel);
    padding: 6px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-top: 2px;
}

.modal-close:hover {
    color: var(--ink);
}

.modal-body {
    padding: 32px 40px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

.form-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    font-weight: 500;
}

.form-req {
    color: var(--rust);
}

.form-input,
.form-textarea {
    border: 1px solid var(--border);
    background: #fff;
    padding: 11px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(74, 85, 104, 0.45);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--rust);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--ink);
    color: var(--cream);
    padding: 16px 32px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--rust);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-feedback {
    display: none;
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
    border-left: 3px solid var(--rust);
}

.form-feedback.success {
    display: block;
    background: rgba(74, 85, 104, 0.07);
    color: var(--ink);
}

.form-feedback.error {
    display: block;
    background: rgba(201, 168, 76, 0.07);
    color: var(--rust);
}

@media (max-width: 560px) {
    .modal-header {
        padding: 24px;
    }

    .modal-body {
        padding: 24px;
    }

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

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    border-left: 1px solid var(--border);
    cursor: pointer;
    padding: 0 22px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav.nav--open {
    background: transparent;
    border-bottom-color: transparent;
}

nav.nav--open .nav-brand {
    opacity: 0;
    pointer-events: none;
}

nav.nav--open .nav-hamburger span {
    background: #ffffff;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0d1b3e;
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 90px 40px 56px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mm-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.mm-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 10vw, 64px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
}

.mm-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mm-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.mm-cta {
    display: inline-block;
    background: var(--rust);
    color: #fff;
    padding: 15px 32px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
}


.mm-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mm-meta a,
.mm-meta span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
}

@media (max-width: 900px) {
    .top-strip {
        display: none;
    }

    .nav-brand {
        min-width: auto;
        padding: 0 16px;
    }

    .brand-name {
        font-size: 18px;
        white-space: nowrap;
    }

    .nav-contact {
        display: none;
    }

    .nav-items {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* ── HERO: compact text, show image ── */
    .hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-left {
        padding: 32px 24px 28px;
        overflow: hidden;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.06em;
    }

    .hero-headline {
        font-size: clamp(48px, 13vw, 72px);
        margin: 20px 0;
    }

    .hero-slogan {
        font-size: 10px;
        letter-spacing: 0.1em;
        margin-bottom: 24px;
    }

    .meta-label {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .meta-value {
        font-size: 22px;
    }

    .hero-meta-item {
        padding: 14px 0;
    }

    .hero-right {
        display: grid;
    }

    .hero-image-area {
        height: 300px;
        padding: 20px 0 0 20px;
    }

    .hero-portrait {
        top: 20px;
        left: 20px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .hero-image-area::after {
        left: 20px;
        background: linear-gradient(to bottom, transparent, rgba(13, 27, 62, 0.38));
    }

    .hero-desc-panel {
        display: none;
    }

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

    /* ── FOCUS: 1 per row ── */
    .focus-row {
        grid-template-columns: 1fr;
    }

    .focus-card {
        padding: 36px 24px;
        min-height: 260px;
        border-right: none;
    }

    .focus-card:last-child {
        border-bottom: none;
    }

    /* ── EXPERIENCE ── */
    .exp-item {
        padding: 28px 24px;
        flex-wrap: wrap;
        gap: 8px 0;
    }

    .exp-index {
        font-size: 56px;
        min-width: 72px;
    }

    .exp-body {
        padding: 0 16px;
    }

    .exp-period {
        width: 100%;
        padding-left: 88px;
        text-align: left;
        margin-top: 4px;
    }

    .td-desc {
        max-width: none;
    }

    /* ── CONTACT ── */
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-left,
    nav,
    footer {
        padding-left: 24px;
        padding-right: 24px;
        padding: 10px 24px;
    }

    .contact-left {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .contact-info-block {
        padding: 36px 24px;
    }

    /* ── SECTION UTILITY ── */
    .section-header {
        padding: 16px 24px;
    }

    .about-col {
        padding: 40px 24px;
    }
}