/* ============================================================
   Dentsu Careers - Stylesheet
   ============================================================ */

/* ============================================================
   Fonts
   Place font files in assets/fonts/ and the rules below will use them.
   Supported names tried in order: Halcom-Regular.woff2 / .woff / .ttf
   ============================================================ */
@font-face {
    font-family: 'Halcom-Regular';
    src: url('../fonts/Halcom-Regular.woff2') format('woff2'),
         url('../fonts/Halcom-Regular.woff')  format('woff'),
         url('../fonts/Halcom-Regular.ttf')   format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Halcom-Regular';
    src: url('../fonts/Halcom-Bold.woff2') format('woff2'),
         url('../fonts/Halcom-Bold.woff')  format('woff'),
         url('../fonts/Halcom-Bold.ttf')   format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Halcom-Regular', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    background: #f4f4f4;
    color: #000014;
}

a { color: inherit; }

/* ============================================================
   Hero
   ============================================================ */
.career-hero {
    position: relative;
    height: 430px;
    background: #2f2f2f;
    overflow: hidden;
    color: #fff;
}

.career-hero .nav {
    width: 72%;
    margin: 0 auto;
    padding-top: 42px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 5;
}

.career-hero .logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}
.career-hero .logo img {
    display: block;
    height: 38px;
    width: auto;
    object-fit: contain;
}

.career-hero .country {
    display: none;
}

.career-hero .menu {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}
.career-hero .menu:hover { opacity: 0.8; }

.career-hero .menu .bars {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 22px;
}
.career-hero .menu .bars span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease;
}
.career-hero .menu:hover .bars span:nth-child(2) { transform: scaleX(0.7); }

.career-hero .hero-content {
    width: 72%;
    margin: 72px auto 0;
    position: relative;
    z-index: 5;
}
.career-hero .hero-content h1 {
    font-size: 92px;
    line-height: 1;
    margin: 0;
    letter-spacing: -4px;
}

.career-hero .visual {
    position: absolute;
    right: -30px;
    top: 80px;
    width: 48%;
    height: 270px;
    z-index: 1;
}

.career-hero .line {
    position: absolute;
    border-radius: 999px;
    filter: blur(0.2px);
}
.career-hero .line-red {
    background: linear-gradient(90deg, #ff3b24, #ff6b4a, #ff2c19);
    box-shadow: 0 0 18px rgba(255, 60, 35, 0.8);
}
.career-hero .line-red.top    { right: 0; top: 36px;    width: 72%;  height: 22px; }
.career-hero .line-red.bottom { right: 0; bottom: 20px; width: 42%;  height: 14px; }
.career-hero .line-blue {
    right: 0;
    top: 85px;
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #7ef1ff, #48dced, #9fffff);
    box-shadow: 0 0 28px rgba(90, 230, 255, 0.55);
}

.career-hero .ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #444, #181818 70%);
    box-shadow: inset -10px -12px 28px rgba(0, 0, 0, 0.6),
                0 0 12px rgba(255, 255, 255, 0.12);
}
.career-hero .ball-big   { width: 138px; height: 138px; left: 10%; top: 42px; }
.career-hero .ball-mid   { width: 108px; height: 108px; left: 42%; top: 0; }
.career-hero .ball-small { width: 48px;  height: 48px;  left: 62%; bottom: 0; }

@media (max-width: 768px) {
    .career-hero { height: 360px; }
    .career-hero .nav,
    .career-hero .hero-content { width: 86%; }
    .career-hero .hero-content h1 { font-size: 64px; }
    .career-hero .visual { width: 80%; opacity: .75; right: -180px; }
}

/* ============================================================
   Form
   ============================================================ */
.container {
    max-width: 760px;
    margin: 40px auto;
    background: #fff;
    padding: 42px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-top: 6px solid #e60012;
}
.container .header { margin-bottom: 40px; }
.container .header-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.container .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: rgba(230, 0, 18, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #e60012;
    text-transform: uppercase;
    white-space: nowrap;
    width: fit-content;
}
.container .eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #e60012;
    border-radius: 2px;
}
.container h1.title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    letter-spacing: -1px;
}
.container .subtitle {
    margin-top: 12px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    max-width: 620px;
}
.container .badge {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f7f7f7;
    border-radius: 999px;
    font-size: 13px;
    color: #666;
}
.container .badge .dot { color: #e60012; }

.field { margin-bottom: 24px; }
.field label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}
.field label.required::after {
    content: '*';
    color: #e60012;
    margin-left: 4px;
    font-weight: 700;
}
.field .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.field .phone-row {
    display: grid;
    grid-template-columns: minmax(220px, 260px) 1fr;
    gap: 16px;
}
.field input,
.field select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
    font-family: inherit;
}
.field input:focus,
.field select:focus {
    border-color: #e60012;
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.12);
}
.field .helper {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

/* Invalid / error state */
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid .country-picker .cp-trigger {
    border-color: #e60012;
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.10);
}
.field-error,
.field-check .field-error {
    display: none;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e60012;
    line-height: 1.5;
}
.field.is-invalid .field-error,
.field-check.is-invalid .field-error { display: block; }
.field-check.is-invalid .checkbox input { outline: 2px solid #e60012; outline-offset: 2px; }

.checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    margin: 22px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    font-weight: 700;
}
.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #111;
}

.button {
    margin-top: 24px;
    background: #111;
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: inherit;
}
.button:hover { background: #e60012; }
.button:hover .button-icon { transform: scale(1.08); }
.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #fff;
    transition: transform 0.2s ease;
}
.button-icon svg { display: block; width: 100%; height: 100%; }

@media (max-width: 600px) {
    .container { padding: 28px; }
    .container h1.title { font-size: 32px; }
    .field .row { grid-template-columns: 1fr; }
    .field .phone-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Values section
   ============================================================ */
.values {
    background: #fff;
    padding: 110px 24px;
    color: #05051f;
}
.values .inner { max-width: 1100px; margin: 0 auto; }
.values .intro { max-width: 760px; margin-bottom: 70px; }
.values .kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e60012;
    font-weight: 800;
    margin-bottom: 22px;
    padding: 10px 18px;
    background: rgba(230, 0, 18, 0.08);
    border-radius: 999px;
}
.values .kicker::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #e60012;
    border-radius: 2px;
}
.values h2 {
    font-size: 56px;
    line-height: 1.05;
    margin: 0 0 28px;
    font-weight: 800;
    letter-spacing: -2px;
}
.values .lead {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
}

/* ----- Top grid (image card + numbered card) ----- */
.values .top-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-bottom: 28px;
}

.values .card-dark {
    background: linear-gradient(135deg, #0b1120, #05051f 70%);
    border-radius: 32px;
    color: #fff;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.values .card-dark-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 1;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.values .card-dark:hover .card-dark-img { transform: scale(1.05); opacity: 0.55; }
.values .card-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 31, 0.78) 0%, rgba(5, 5, 31, 0.55) 60%, rgba(5, 5, 31, 0.85) 100%);
    z-index: 2;
}
.values .card-dark .blob {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #45dfff;
    right: -70px;
    top: -70px;
    opacity: 0.45;
    filter: blur(14px);
    z-index: 3;
}
.values .card-dark .stripe {
    position: absolute;
    width: 200px;
    height: 18px;
    border-radius: 99px;
    background: #ff3b24;
    right: 40px;
    bottom: 70px;
    box-shadow: 0 0 30px rgba(255, 59, 36, 0.7);
    z-index: 3;
}
.values .card-dark-content {
    position: relative;
    z-index: 4;
    padding: 48px;
    max-width: 560px;
}
.values .card-dark-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}
.values .card-dark h3 {
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.8px;
}
.values .card-dark p {
    font-size: 16px;
    color: #d8d8e5;
    line-height: 1.75;
    margin: 0;
    max-width: 480px;
}

.values .card-light {
    background: #f7f7f8;
    border-radius: 32px;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.values .card-light-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.values .card-light:hover .card-light-img { transform: scale(1.04); }
.values .card-light-body { padding: 32px 36px 36px; }
.values .card-light .num {
    font-size: 44px;
    font-weight: 800;
    color: #e60012;
    margin-bottom: 12px;
    line-height: 1;
}
.values .card-light h3 {
    font-size: 26px;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}
.values .card-light p {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0;
}

/* ----- Bottom grid (3 small cards with icons) ----- */
.values .bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.values .small-card {
    --accent: #e60012;
    position: relative;
    background: #f7f7f8;
    border-radius: 28px;
    padding: 36px 32px 32px;
    border-top: 5px solid var(--accent);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.values .small-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.values .small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
}
.values .small-card:hover::before { opacity: 1; }

.values .small-card.blue { --accent: #008cab; }
.values .small-card.dark { --accent: #111; }

.values .small-card-num {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    opacity: 0.12;
    letter-spacing: -2px;
    pointer-events: none;
}

.values .small-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    color: var(--accent);
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}
.values .small-card:hover .small-card-icon { transform: scale(1.06); }

.values .small-card .tag {
    font-size: 12px;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.values .small-card h3 {
    font-size: 23px;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
    color: #05051f;
}
.values .small-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 0 0 26px;
}

/* Push the arrow to the bottom so all cards align */
.values .small-card .small-card-arrow {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    width: fit-content;
    padding: 4px 0;
}
.values .small-card .small-card-arrow svg {
    transition: transform 0.3s ease;
}
.values .small-card:hover .small-card-arrow svg { transform: translateX(6px); }

@media (max-width: 960px) {
    .values { padding: 70px 20px; }
    .values h2 { font-size: 40px; letter-spacing: -1.2px; }
    .values .top-grid { grid-template-columns: 1fr; }
    .values .bottom-grid { grid-template-columns: 1fr; }
    .values .card-dark-content { padding: 38px; }
    .values .card-dark h3 { font-size: 28px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: #2f2f2f;
    color: #fff;
    padding: 70px 24px 42px;
}
.site-footer .inner { max-width: 1080px; margin: 0 auto; }
.site-footer .grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 50px;
}
.site-footer .brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    margin-bottom: 18px;
}
.site-footer .brand img {
    display: block;
    height: 36px;
    width: auto;
    object-fit: contain;
}
.site-footer .tagline {
    font-size: 14px;
    line-height: 1.8;
    color: #d8d8d8;
    margin: 0;
    max-width: 340px;
}
.site-footer h4 {
    font-size: 17px;
    margin: 0 0 22px;
    font-weight: 700;
}
.site-footer a.link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
}
.site-footer a.link:hover { color: #e60012; }
.site-footer .contact a.link { color: #d8d8d8; }

.site-footer .socials { display: flex; gap: 12px; }
.site-footer .socials a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer .socials a svg { display: block; }
.site-footer .socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.site-footer .legal {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    text-align: center;
}
.site-footer .legal p {
    font-size: 12px;
    line-height: 1.8;
    color: #cfcfcf;
    margin: 0 auto;
    max-width: 900px;
}
.site-footer .copyright {
    margin-top: 24px;
    color: #888;
    font-size: 13px;
}

@media (max-width: 900px) {
    .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
    .site-footer .grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Country picker
   ============================================================ */
.country-picker {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.country-picker .cp-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.country-picker .cp-trigger:hover { border-color: #b5b5b5; }
.country-picker.is-open .cp-trigger,
.country-picker .cp-trigger:focus {
    border-color: #e60012;
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.12);
    outline: none;
}

.country-picker .cp-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

.country-picker .cp-name {
    font-weight: 700;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.country-picker .cp-dial {
    color: #666;
    font-weight: 500;
    margin-left: 2px;
}
.country-picker .cp-caret {
    margin-left: auto;
    color: #888;
    font-size: 13px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.country-picker.is-open .cp-caret { transform: rotate(180deg); }

/* Dropdown */
.country-picker .cp-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: max-content;
    min-width: 100%;
    max-width: min(420px, 90vw);
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    padding: 12px;
    z-index: 50;
    display: none;
}
.country-picker.is-open .cp-dropdown { display: block; }

.country-picker .cp-search {
    padding: 4px 4px 10px;
}
.country-picker .cp-search input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.country-picker .cp-search input:focus {
    border-color: #4a4ad6;
    box-shadow: 0 0 0 3px rgba(74, 74, 214, 0.18);
}

.country-picker .cp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.country-picker .cp-list::-webkit-scrollbar       { width: 8px; }
.country-picker .cp-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.country-picker .cp-list::-webkit-scrollbar-thumb:hover { background: #999; }

.country-picker .cp-item {
    display: grid;
    grid-template-columns: 36px minmax(180px, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
}
.country-picker .cp-item:hover         { background: #f4f4f6; }
.country-picker .cp-item:active        { background: #ececf0; }
.country-picker .cp-item-flag {
    width: 28px;
    height: 20px;
    object-fit: cover;
}
.country-picker .cp-item-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}
.country-picker .cp-item-dial {
    font-size: 14px;
    color: #888;
    font-variant-numeric: tabular-nums;
}

.country-picker .cp-divider {
    list-style: none;
    height: 1px;
    background: #e9e9ef;
    margin: 8px 12px;
}
.country-picker .cp-empty {
    list-style: none;
    padding: 18px 12px;
    text-align: center;
    color: #888;
    font-size: 14px;
}


/* ============================================================
   Slide-down main menu (covers viewport, page can still scroll)
   ============================================================ */
.main-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #2f2f2f;
    color: #fff;
    z-index: 1000;
    padding: 42px 0 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    overflow-y: auto;
}
.career-hero.menu-open ~ .main-menu,
body.menu-open .main-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .menu-close {
    position: absolute;
    top: 42px;
    right: 14%;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}
.main-menu .menu-close:hover { opacity: 0.75; }
.main-menu .menu-close .x {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
}
.main-menu .menu-close .x::before,
.main-menu .menu-close .x::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
.main-menu .menu-close .x::before { transform: translateY(-50%) rotate(45deg); }
.main-menu .menu-close .x::after  { transform: translateY(-50%) rotate(-45deg); }

.main-menu .menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 72%;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    padding-top: 46px;
}
.main-menu .menu-list li { margin: 10px 0; }

.main-menu .menu-list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.25;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.main-menu .menu-list a:hover { opacity: 0.7; }

/* Body scroll is intentionally NOT locked - user can scroll past the menu */

@media (max-width: 768px) {
    .main-menu .menu-close { right: 7%; top: 28px; }
    .main-menu .menu-list  { width: 86%; padding-top: 40px; }
    .main-menu .menu-list a { font-size: 32px; }
}
