
    /* ─── RESET & BASE ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-ui);
      color: var(--white);
      background: var(--white);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    /* ─── DESIGN TOKENS ─── */
    :root {
      --white:     #FFFFFF;
      --primary:   #354D3F;
      --secondary: #1F4F4A;
      --gold:      #C6A86B;
      --gold-dark: #b29357;
      --font-h:    'Montserrat', sans-serif;
      --font-ui:   'Inter', sans-serif;
      --pad:       144px;
      --nav-h:     125px;
    }

    /* ─────────────────────────────────────────────
       NAVBAR
    ───────────────────────────────────────────── */
    .admin-bar .navbar { top: 32px; }

    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background: rgba(31, 42, 38, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 141px;
      z-index: 100;
    }
    .nav-logo img { height: 75px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      padding: 16px;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active { color: var(--gold); }
    .nav-links .btn-contact-nav {
      background: var(--gold);
      color: var(--white) !important;
      padding: 0 28px !important;
      height: 55px;
      line-height: 55px;
      border-radius: 999px;
      font-family: 'Montserrat', sans-serif !important;
      font-weight: 400 !important;
      font-size: 14px !important;
      letter-spacing: 0.4px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: background 0.25s, border-color 0.25s, color 0.25s !important;
    }
    .nav-links .btn-contact-nav:hover {
      background: var(--gold-dark) !important;
      color: var(--white) !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(31, 42, 38, 0.97);
      z-index: 99;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-ui);
      font-size: 16px;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      padding: 16px var(--pad);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--white); }
    .mobile-menu a.active { color: var(--gold); }

    /* ─────────────────────────────────────────────
       SECTION 1 — HERO
    ───────────────────────────────────────────── */
    .sec-hero {
      background: var(--primary);
      min-height: auto;
      position: relative;
      overflow: hidden;
    }

    .sec-hero__bg {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 479px;
      background: url('../../figma-assets/header_img.webp') center center / cover no-repeat;
      clip-path: polygon(
        0% 0%, 100% 0%, 100% 84.5%,
        54.5% 84.5%, 50% 100%, 45.5% 84.5%,
        0% 84.5%
      );
      z-index: 0;
    }


    .sec-hero__inner {
      position: relative;
      z-index: 1;
      padding: 0 var(--pad);
      display: flex;
      flex-direction: column;
    }

    .sec-hero__label {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 60px;
      line-height: 1em;
      text-transform: uppercase;
      text-align: right;
      color: var(--white);
      margin-top: 299px;
    }

    .sec-hero__grid {
      display: grid;
      grid-template-columns: 367px 1fr;
      gap: 24px;
      margin-top: 129px;
      padding-top: clamp(32px, 4vw, 50px);
      padding-bottom: clamp(82px, calc(5vw + 50px), 100px);
    }

    .sec-hero__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
    }

    .sec-hero__right {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .sec-hero__body {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
    }

    .btn-openings {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 55px;
      padding: 0 28px;
      border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      width: fit-content;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
    }
    .btn-openings:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    /* ─────────────────────────────────────────────
       SECTION 2 — THE ESSENCE OF OUR CULTURE
    ───────────────────────────────────────────── */
    .sec-essence {
      background: var(--secondary);
      min-height: 810px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      position: relative;
    }

    .sec-essence__image {
      flex-shrink: 0;
      width: 428px;
      margin-left: 141px;
      position: relative;
      clip-path: path('M427.271 427.081H256.369C256.409 533.417 321.253 624.615 413.568 663.35L352.046 809.992C154.906 793.508 0.0567242 628.382 0 427.081V0H427.263V427.081H427.271Z');
    }
    .sec-essence__image img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .sec-essence__main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 141px 80px 80px;
      gap: 40px;
      max-width: 700px;
    }

    .sec-essence__heading {
      position: absolute;
      left: 340px;
      top: 155px;
      width: 366px;
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      z-index: 2;
    }

    .sec-essence__lead {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.07em;
      color: rgba(255,255,255,0.5);
      text-align: right;
    }

    .sec-essence__body {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
      text-align: right;
    }

    /* ─────────────────────────────────────────────
       SECTION 3 — WHAT IT MEANS TO WORK HERE
    ───────────────────────────────────────────── */
    .sec-means {
      background: var(--primary);
      padding: 100px 141px 100px;
    }

    .sec-means__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-align: right;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 48px;
    }

    .sec-means__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      width: 100%;
    }

    .means-card {
      position: relative;
      aspect-ratio: 388/546;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      isolation: isolate;
      -webkit-mask-image: -webkit-radial-gradient(white, black);
      mask-image: radial-gradient(white, black);
    }

    .means-card__img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .means-card:hover .means-card__img {
      transform: scale(1.05);
    }

    .means-card:hover::before {
      background: var(--secondary);
    }

    .means-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: transparent;
      mix-blend-mode: color;
      transition: background 0.4s;
      z-index: 1;
      pointer-events: none;
    }

    .means-card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(8, 30, 22, 0.92) 0%,
        rgba(8, 30, 22, 0.40) 45%,
        transparent 75%
      );
      z-index: 2;
    }

    .means-card__text {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 3;
      padding: 60px 50px 50px;
      min-height: 280px;
    }

    .means-card__title {
      font-family: var(--font-h);
      font-size: 30px;
      font-weight: 700;
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--white);
      margin-bottom: 8px;
    }

    .means-card__desc {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
    }

    /* ─────────────────────────────────────────────
       SECTION 4 — CAREER GROWTH
    ───────────────────────────────────────────── */
    .sec-growth {
      background: var(--secondary);
      min-height: 810px;
      display: flex;
      align-items: center;
      padding: 120px 141px;
      gap: 80px;
    }

    .sec-growth__left {
      flex: 0 0 367px;
    }

    .sec-growth__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 32px;
    }

    .sec-growth__body {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
    }

    .sec-growth__right {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .growth-item {
      padding: 10px 0;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .growth-item::before {
      content: '•';
      color: var(--gold);
      font-size: 20px;
      line-height: 1.25em;
      flex-shrink: 0;
    }

    .growth-item__text {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.25em;
      color: var(--white);
    }

    /* ─────────────────────────────────────────────
       SECTION 5 — CAREERS OF PURPOSE
    ───────────────────────────────────────────── */
    .sec-purpose {
      background: var(--primary);
      min-height: 810px;
      padding: 80px 141px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sec-purpose__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-align: right;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
    }

    .sec-purpose__super {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.07em;
      text-align: right;
      color: rgba(255,255,255,0.5);
      margin-bottom: 32px;
    }

    .sec-purpose__topics { display: none; }

    .sec-purpose__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 48px;
    }

    .purpose-box {
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 10px;
      height: 107px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 32px;
    }

    .purpose-box__text {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4em;
      text-transform: capitalize;
      color: var(--white);
      text-align: center;
    }

    .sec-purpose__tagline {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.07em;
      color: rgba(255,255,255,0.5);
      text-align: left;
    }

    /* ─────────────────────────────────────────────
       SECTION 6 — LIFE AT TWIN & BULL
    ───────────────────────────────────────────── */
    .sec-life {
      position: relative;
      height: 700px;
      background: url('../../figma-assets/careers_lifeatTAB.webp') center center / cover no-repeat;
      padding: 100px 141px 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .sec-life::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(31, 55, 42, 0.72);
    }

    .sec-life__content {
      position: relative;
      z-index: 1;
    }

    .sec-life__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
    }

    .sec-life__sub {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.07em;
      color: rgba(255,255,255,0.5);
      max-width: 758px;
    }

    .sec-life__bars {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: auto;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .life-bar-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 0 0 268px;
    }

    .life-bar__label {
      font-family: var(--font-h);
      font-size: clamp(12px, 1.4vw, 20px);
      font-weight: 700;
      line-height: 1.2em;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }

    .life-bar {
      width: 100%;
      background: var(--secondary);
      border-radius: 10px 10px 0 0;
    }

    /* ─────────────────────────────────────────────
       SECTION 7 — TEAM TESTIMONIALS
    ───────────────────────────────────────────── */
    .sec-profiles {
      background: var(--secondary);
      padding: 80px 141px 100px;
    }

    .sec-profiles__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding-top: 64px;
    }

    .profile-card {
      background: rgba(255,255,255,0.5);
      border-radius: 10px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .profile-card__avatar {
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px; height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--secondary);
      background: var(--primary);
      flex-shrink: 0;
    }
    .profile-card__avatar img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .profile-card__body {
      padding: 72px 32px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
    }

    .profile-card__name {
      font-family: var(--font-h);
      font-size: 22px;
      font-weight: 700;
      color: #000;
      text-align: center;
    }

    .profile-card__role {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 400;
      color: rgba(0,0,0,0.5);
      text-transform: capitalize;
      text-align: center;
      margin-bottom: 16px;
    }

    .sec-profiles__nav {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 48px;
    }

    .profiles-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: var(--gold);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .profiles-nav-btn:hover { background: var(--gold-dark); }
    .profiles-nav-btn svg { width: 18px; height: 18px; color: var(--white); fill: var(--white); }

    .profile-card__quote {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.33em;
      color: #000;
      text-align: center;
    }

    /* ─────────────────────────────────────────────
       SECTION 8 — JOIN US
    ───────────────────────────────────────────── */
    .sec-join {
      background: var(--primary);
      min-height: 810px;
      display: flex;
      overflow: hidden;
    }

    .sec-join__left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 100px 141px;
    }

    .sec-join__heading {
      font-family: var(--font-h);
      font-size: 50px;
      font-weight: 700;
      line-height: 1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 32px;
    }

    .sec-join__body {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.07em;
      color: rgba(255,255,255,0.5);
      margin-bottom: 48px;
      max-width: 461px;
    }

    .sec-join__buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 0;
    }
    .sec-join__buttons .btn-apply,
    .sec-join__buttons .btn-network { width: 80%; justify-content: center; }

    .btn-apply {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 55px;
      padding: 0 36px;
      border-radius: 100px;
      background: var(--gold);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      width: fit-content;
      transition: opacity 0.2s;
    }
    .btn-apply:hover { opacity: 0.9; }

    .btn-network {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 55px;
      padding: 0 36px;
      border-radius: 100px;
      border: 1.5px solid rgba(255,255,255,0.55);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 400;
      white-space: nowrap;
      width: fit-content;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
    }
    .btn-network:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    .sec-join__note {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      color: var(--white);
    }

    .sec-join__right {
      flex: 0 0 564px;
      margin-right: 141px;
      display: flex;
      flex-direction: column;
      padding: 0 0 60px;
      gap: 20px;
    }

    .sec-join__right-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 0 0 10px 10px;
      overflow: hidden;
      position: relative;
    }
    .sec-join__right-img img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    .site-footer {
      background: var(--primary);
      padding: 28px var(--pad) 22px;
      border-top: 1px dotted rgba(255,255,255,0.08);
    }
    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 18px;
    }
    .footer-logo img { height: 75px; width: auto; object-fit: contain; }
    .footer-nav {
      display: flex;
      align-items: center;
      list-style: none;
    }
    .footer-nav a {
      display: flex;
      align-items: center;
      padding: 16px;
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: var(--white); }
    .footer-nav a.active { color: var(--gold); }
    .footer-divider {
      height: 0;
      border-top: 1px dotted rgba(255,255,255,0.12);
      margin-bottom: 16px;
    }
    .footer-copy {
      text-align: center;
      font-family: var(--font-h);
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.3px;
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE — WIDE (≤1280px)
    ───────────────────────────────────────────── */
    @media (max-width: 1280px) {
      :root { --pad: 80px; }
      .navbar { padding: 0 60px; }
      .nav-links a { padding: 12px 10px; font-size: 14px; }
      .sec-hero__label   { font-size: clamp(32px, 5vw, 56px); }
      .sec-hero__heading { font-size: clamp(28px, 4vw, 46px); }
      .sec-essence__heading,
      .sec-life__heading,
      .sec-growth__heading,
      .sec-join__heading { font-size: clamp(28px, 4vw, 46px); }
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE — TABLET (≤960px)
    ───────────────────────────────────────────── */
    @media (max-width: 960px) {
      :root { --pad: 40px; }
      .navbar { padding: 0 40px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }

      /* Hero */
      .sec-hero__inner { padding: 0 40px; }
      .sec-hero__label { font-size: clamp(36px, 5vw, 50px); margin-top: 230px; }
      .sec-hero__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 90px; }
      .sec-hero__heading { font-size: clamp(32px, 6vw, 44px); }
      .sec-hero__body { font-size: 16px; }

      /* Essence — stack vertically on tablet */
      .sec-essence { flex-direction: column; }
      .sec-essence__image { width: 100%; height: 320px; margin-left: 0; clip-path: none; }
      .sec-essence__image img { position: static; width: 100%; height: 100%; }
      .sec-essence__main { padding: 40px 40px 60px; gap: 24px; max-width: none; }
      .sec-essence__heading { position: relative; left: auto; top: auto; width: auto; font-size: clamp(28px, 5vw, 40px); }
      .sec-essence__lead { font-size: 24px; }
      .sec-essence__body { font-size: 16px; }

      /* Means */
      .sec-means { padding: 100px 40px 100px; }
      .sec-means__heading { font-size: clamp(28px, 5vw, 40px); }
      .sec-means__cards { grid-template-columns: 1fr 1fr; }
      .means-card { aspect-ratio: 3/4; }

      /* Growth */
      .sec-growth { flex-direction: column; padding: 80px 40px; gap: 48px; min-height: auto; }
      .sec-growth__left { flex: none; }
      .sec-growth__heading { font-size: clamp(28px, 5vw, 40px); }

      /* Purpose */
      .sec-purpose { padding: 80px 40px; min-height: auto; }
      .sec-purpose__heading { font-size: clamp(28px, 5vw, 40px); }
      .sec-purpose__super { font-size: 24px; }
      .purpose-box { height: auto; padding: 20px 24px; }
      .purpose-box__text { font-size: 16px; }

      /* Life */
      .sec-life { padding: 80px 40px 0; height: auto; min-height: 600px; }
      .sec-life__heading { font-size: clamp(28px, 5vw, 40px); }
      .sec-life__sub { font-size: 24px; }
      .sec-life__bars { justify-content: flex-start; gap: 12px; }
      .life-bar-col { flex: 1 1 0; min-width: 0; }
      .life-bar { width: 100%; }

      /* Profiles */
      .sec-profiles { padding: 80px 40px 80px; }
      .sec-profiles__cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

      /* Join */
      .sec-join { flex-direction: column; min-height: auto; }
      .sec-join__left { padding: 80px 40px 60px; }
      .sec-join__right { flex: none; width: 100%; margin-right: 0; padding: 0 40px 40px; }
      .sec-join__right-img { aspect-ratio: 1 / 1; }
      .sec-join__heading { font-size: clamp(28px, 5vw, 40px); }
      .sec-join__body { font-size: 24px; }

      /* Footer */
      .site-footer { padding: 48px 40px 32px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
      .footer-nav { flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; }
    }

    /* ─────────────────────────────────────────────
       RESPONSIVE — MOBILE (≤600px)
    ───────────────────────────────────────────── */
    @media (max-width: 600px) {
      :root { --pad: 20px; --nav-h: 90px; }

      .navbar { height: 90px; padding: 0 20px; }
      .nav-logo img { height: 54px; }
      .mobile-menu { top: 90px; }

      /* Hero */
      .sec-hero__inner { padding: 0 20px; }
      .sec-hero__bg { height: 300px; }
      .sec-hero__label { font-size: clamp(28px, 8vw, 36px); margin-top: 187px; }
      .sec-hero__grid {
        grid-template-columns: 1fr;
        margin-top: 75px;
        padding-top: 0;
        padding-bottom: 60px;
        gap: 20px;
      }
      .sec-hero__heading { font-size: clamp(24px, 7vw, 32px); }
      .sec-hero__body { font-size: 16px; }
      .sec-hero__right { gap: 20px; }

      /* Essence */
      .sec-essence { min-height: 810px; }
      .sec-essence__heading { padding: 48px 20px 0; font-size: clamp(24px, 7vw, 32px); }
      .sec-essence__main { padding: 24px 20px 60px; gap: 20px; max-width: none; }

      /* Means */
      .sec-means__cards { grid-template-columns: 1fr; }
      .means-card { aspect-ratio: 4/3; }
      .means-card__text { padding: 40px 24px 32px; min-height: 200px; }
      .means-card__title { font-size: 24px; }
      .sec-means { padding: 100px 20px 100px; }

      /* Growth */
      .sec-growth { padding: 60px 20px; }

      /* Purpose */
      .sec-purpose { padding: 60px 20px; }
      .sec-purpose__grid { grid-template-columns: 1fr; }

      /* Life */
      .sec-life { padding: 60px 20px 0; }

      /* Profiles */
      .sec-profiles { padding: 60px 20px 80px; }
      .sec-profiles__cards { max-width: 100%; gap: 80px; padding-top: 64px; }

      /* Join */
      .sec-join__left { padding: 60px 20px 48px; }
      .sec-join__buttons { flex-direction: column; }
      .btn-apply, .btn-network { width: 100%; justify-content: center; }
      .sec-join__body { font-size: 24px; }

      /* Footer */
      .site-footer { padding: 32px 20px 24px; }
      .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
      .footer-logo img { height: 54px; }
      .footer-nav { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 0; width: 100%; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
      .footer-nav::-webkit-scrollbar { display: none; }
      .footer-nav a { white-space: nowrap; font-size: 14px; padding: 6px 12px; }
      .footer-copy { font-size: 12px; }
    }

    /* ─── SHORT SCREENS (max-height 810px, e.g. 1366x768) ─── */
    @media (max-height: 810px) and (min-width: 961px) {
      .sec-essence { min-height: 810px; }
      .sec-means    { padding: 100px var(--pad); }
      .sec-growth   { min-height: auto; padding: clamp(40px, 5vh, 64px) var(--pad); }
      .sec-life     { min-height: auto; padding-top: clamp(40px, 5vh, 64px); }
      .sec-profiles { padding: clamp(40px, 5vh, 64px) var(--pad); }
      .sec-join     { min-height: auto; }
      .sec-join__left { padding-top: clamp(40px, 5vh, 80px); padding-bottom: clamp(40px, 5vh, 60px); }
    }

    /* ─── Accessibility ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
    :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
