/*
Theme Name: FTI Restaurant Group
Theme URI: https://ftirestaurant.co.th
Author: FTI Restaurant Group
Author URI: https://ftirestaurant.co.th
Description: Custom one-page corporate theme for FTI Restaurant Group (Food Thai Industry). Fully editable via the WordPress Customizer — hero, about, core values, vision & mission, brands, careers CTA, and footer.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fti-restaurant-group
Tags: restaurant, one-page, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ── LINE Seed Sans TH ───────────────────────────── */
    @font-face {
      font-family: 'LINE Seed Sans TH';
      font-weight: 100;
      font-style: normal;
      font-display: swap;
      src: url('assets/fonts/LINESeedSansTH_W_Th.eot');
      src: url('assets/fonts/LINESeedSansTH_W_Th.eot?#iefix') format('embedded-opentype'),
           url('assets/fonts/LINESeedSansTH_W_Th.woff') format('woff');
    }
    @font-face {
      font-family: 'LINE Seed Sans TH';
      font-weight: 400;
      font-style: normal;
      font-display: swap;
      src: url('assets/fonts/LINESeedSansTH_W_Rg.eot');
      src: url('assets/fonts/LINESeedSansTH_W_Rg.eot?#iefix') format('embedded-opentype'),
           url('assets/fonts/LINESeedSansTH_W_Rg.woff') format('woff');
    }
    @font-face {
      font-family: 'LINE Seed Sans TH';
      font-weight: 700;
      font-style: normal;
      font-display: swap;
      src: url('assets/fonts/LINESeedSansTH_W_Bd.eot');
      src: url('assets/fonts/LINESeedSansTH_W_Bd.eot?#iefix') format('embedded-opentype'),
           url('assets/fonts/LINESeedSansTH_W_Bd.woff') format('woff');
    }
    @font-face {
      font-family: 'LINE Seed Sans TH';
      font-weight: 800;
      font-style: normal;
      font-display: swap;
      src: url('assets/fonts/LINESeedSansTH_W_XBd.eot');
      src: url('assets/fonts/LINESeedSansTH_W_XBd.eot?#iefix') format('embedded-opentype'),
           url('assets/fonts/LINESeedSansTH_W_XBd.woff') format('woff');
    }
    @font-face {
      font-family: 'LINE Seed Sans TH';
      font-weight: 900;
      font-style: normal;
      font-display: swap;
      src: url('assets/fonts/LINESeedSansTH_W_He.eot');
      src: url('assets/fonts/LINESeedSansTH_W_He.eot?#iefix') format('embedded-opentype'),
           url('assets/fonts/LINESeedSansTH_W_He.woff') format('woff');
    }

    :root {
      --bg:         #ffffff;
      --bg-soft:    #f8f6f4;
      --bg-warm:    #f3f0ec;
      --dark:       #1c1c1c;
      --dark-2:     #3a3a3a;
      --muted:      #777777;
      --border:     #e6e2de;
      --maroon:     #800000;
      --maroon-h:   #960202;
      --maroon-soft:#fdf0f0;
      --gold:       #b8843a;
      --font-th:    'LINE Seed Sans TH', 'Noto Sans Thai', sans-serif;
      /* Headings now use LINE Seed Sans TH (was Cormorant Garamond) */
      --font-en:    'LINE Seed Sans TH', 'Noto Sans Thai', sans-serif;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }

    body {
      font-family: var(--font-th);
      background: var(--bg);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ─── STICKY NAV ──────────────────────────────────── */
    #nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      height: 76px;
      padding: 0 6vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: height 0.3s, border-color 0.3s, box-shadow 0.3s;
    }

    #nav.scrolled {
      height: 64px;
      border-color: var(--border);
      box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 44px;
      transition: height 0.3s;
    }

    #nav.scrolled .nav-logo img { height: 36px; }

    .nav-brand { display: flex; flex-direction: column; gap: 2px; }

    .nav-brand-name {
      font-family: var(--font-en);
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: 0.04em;
      line-height: 1;
    }

    .nav-brand-sub {
      font-size: 9px;
      color: var(--muted);
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      color: var(--dark-2);
      text-decoration: none;
      letter-spacing: 0.02em;
      position: relative;
      transition: color 0.2s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 1.5px;
      background: var(--maroon);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.28s ease;
    }

    .nav-links a:hover { color: var(--maroon); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-links a.active { color: var(--maroon); }
    .nav-links a.active::after { transform: scaleX(1); }

    .nav-cta {
      padding: 9px 24px;
      background: var(--maroon);
      color: #fff !important;
      border-radius: 2px;
      font-size: 13px !important;
      letter-spacing: 0.06em;
      transition: background 0.2s !important;
    }

    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--maroon-h) !important; }

    /* ─── HERO ────────────────────────────────────────── */
    #hero {
      position: relative;
      height: var(--hero-h, 560px);
      min-height: 320px;
      display: flex;
      align-items: center;
      padding: 0 10vw;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      background-color:#1c1c1c; background-size:cover; background-position:center; background-repeat:no-repeat;
      opacity: 0;
      transform: scale(1.07);
      transition: opacity 1.2s ease;
    }

    .hero-photo.active {
      opacity: 1;
      animation: heroZoom 8s ease forwards;
    }

    @keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }

    /* slide indicator dots */
    .hero-dots {
      position: absolute;
      bottom: 26px;
      left: 10vw;
      z-index: 3;
      display: flex;
      gap: 10px;
    }

    .hero-dots button {
      width: 9px;
      height: 9px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: width 0.3s, background 0.3s, border-radius 0.3s;
    }

    .hero-dots button.active {
      width: 26px;
      border-radius: 5px;
      background: #fff;
    }

    .hero-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        108deg,
        rgba(10,10,10,0.82) 0%,
        rgba(10,10,10,0.55) 50%,
        rgba(10,10,10,0.22) 100%
      );
    }

    .hero-body {
      position: relative;
      z-index: 2;
      max-width: 660px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 20px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: rgba(255,255,255,0.45);
    }

    .hero-h1 {
      font-family: var(--font-en);
      font-size: clamp(52px, 7vw, 92px);
      font-weight: 300;
      line-height: 1.03;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .hero-h1 em {
      font-style: italic;
      font-weight: 400;
    }

    .hero-th {
      font-size: clamp(15px, 1.8vw, 20px);
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      margin-bottom: 28px;
    }

    .hero-rule {
      width: 52px;
      height: 2px;
      background: var(--maroon);
      margin-bottom: 26px;
    }

    .hero-slogan {
      font-size: clamp(15px, 1.5vw, 18px);
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 48px;
    }

    .hero-slogan small {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.06em;
    }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-solid {
      padding: 13px 34px;
      background: var(--maroon);
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-solid:hover { background: var(--maroon-h); transform: translateY(-2px); }

    .btn-ghost {
      padding: 13px 34px;
      border: 1px solid rgba(255,255,255,0.45);
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 300;
      letter-spacing: 0.04em;
      border-radius: 2px;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.9);
      background: rgba(255,255,255,0.08);
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .scroll-label {
      font-size: 9px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }

    .scroll-stem {
      width: 1px;
      height: 52px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
      animation: stemPulse 2.4s ease-in-out infinite;
    }

    @keyframes stemPulse {
      0%, 100% { opacity: 0.35; transform: scaleY(1); }
      55%       { opacity: 0.9;  transform: scaleY(0.5); }
    }

    /* ─── SECTION COMMONS ─────────────────────────────── */
    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 16px;
    }

    .sec-label::before {
      content: '';
      width: 26px;
      height: 1px;
      background: var(--maroon);
    }

    .sec-h2 {
      font-family: var(--font-en);
      font-size: clamp(30px, 3.6vw, 48px);
      font-weight: 400;
      line-height: 1.2;
      color: var(--dark);
      letter-spacing: -0.01em;
    }

    .sec-h2 em { font-style: italic; color: var(--maroon); }

    .sec-body {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.9;
      color: #2e2e2e;
    }

    /* ─── ABOUT ───────────────────────────────────────── */
    #about {
      padding: 110px 10vw;
      background: var(--bg);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text { display: flex; flex-direction: column; gap: 22px; }

    .about-quote {
      padding: 22px 28px;
      border-left: 3px solid var(--maroon);
      background: var(--maroon-soft);
    }

    .about-quote p {
      font-size: 15px;
      font-style: italic;
      color: var(--maroon);
      line-height: 1.75;
    }

    .about-seal { display: flex; justify-content: center; align-items: center; }

    .seal-wrap {
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: var(--bg-soft);
    }

    .seal-wrap::before {
      content: '';
      position: absolute;
      inset: 14px;
      border-radius: 50%;
      border: 1px solid rgba(128,0,0,0.18);
    }

    .seal-wrap img { width: 222px; }

    /* ─── DIVIDER ─────────────────────────────────────── */
    .sec-divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin: 0 10vw;
      width: calc(100% - 20vw);
    }

    /* ─── VALUES + DIRECTION — 4-card grid ──────────────── */
    #values {
      padding: 100px 10vw;
      background: var(--bg-soft);
    }

    #vision {
      padding: 100px 10vw;
      background: var(--bg);
    }

    .values-head, .vision-head { margin-bottom: 64px; }

    .card4-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card4 {
      background: var(--bg);
      border: 1px solid var(--border);
      border-top: 3px solid transparent;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      display: flex;
      flex-direction: column;
    }

    .card4:hover {
      border-top-color: var(--maroon);
      box-shadow: 0 14px 44px rgba(128,0,0,0.14);
      transform: translateY(-5px);
    }

    .card4-thumb {
      height: 200px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card4-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(128,0,0,0);
      transition: background 0.4s ease;
      z-index: 1;
    }

    .card4:hover .card4-thumb::after {
      background: rgba(128,0,0,0.52);
    }

    .card4-thumb-letter {
      font-family: var(--font-en);
      font-size: 130px;
      font-weight: 700;
      color: rgba(255,255,255,0.16);
      line-height: 1;
      user-select: none;
    }

    .card4-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.55s ease;
    }

    .card4:hover .card4-thumb img { transform: scale(1.06); }

    .c4-maroon { background: linear-gradient(145deg,#800000,#a01010); }
    .c4-brown  { background: linear-gradient(145deg,#7a3b1e,#9e5228); }
    .c4-deep   { background: linear-gradient(145deg,#3d1515,#621a1a); }
    .c4-green  { background: linear-gradient(145deg,#1e3a2a,#2d5c40); }
    .c4-navy   { background: linear-gradient(145deg,#1a2540,#243360); }

    .card4-body {
      padding: 24px 28px 32px;
      flex: 1;
    }

    .card4-num {
      font-size: 10px;
      letter-spacing: 0.20em;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .card4-en {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }

    .card4-th {
      font-size: 13px;
      color: var(--maroon);
      font-weight: 400;
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border);
    }

    .card4-cat {
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--maroon);
      margin-bottom: 12px;
    }

    .card4-title {
      font-family: var(--font-en);
      font-size: clamp(17px, 1.6vw, 22px);
      font-weight: 400;
      color: var(--dark);
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .card4-desc {
      font-size: 15px;
      font-weight: 400;
      color: #2e2e2e;
      line-height: 1.78;
    }

    .card4-imgonly {
      position: relative;
      overflow: hidden;
      flex: 1;
      min-height: 360px;
    }

    .card4-imgonly img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }

    .card4-imgonly::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(128,0,0,0);
      transition: background 0.4s ease;
      z-index: 1;
    }

    .card4:hover .card4-imgonly::after {
      background: rgba(128,0,0,0.52);
    }

    .card4:hover .card4-imgonly img {
      transform: scale(1.06);
    }

    .content-bar {
      margin-top: 20px;
      background: var(--maroon);
      padding: 30px 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .content-bar-tag {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.52);
      white-space: nowrap;
    }

    .content-bar-div {
      width: 1px; height: 24px;
      background: rgba(255,255,255,0.22);
      flex-shrink: 0;
    }

    .content-bar-text {
      font-family: var(--font-en);
      font-size: clamp(15px, 1.6vw, 20px);
      font-weight: 400;
      color: #fff;
    }

    .content-bar-text b { font-style: italic; font-weight: 400; }

    .content-bar-sub {
      margin-left: auto;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.62);
    }

    .slogan-bar2 {
      margin-top: 20px;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      padding: 28px 48px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .slogan-bar2-cat {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }

    .slogan-bar2-div {
      width: 1px; height: 24px;
      background: var(--border);
      flex-shrink: 0;
    }

    .slogan-bar2-text {
      font-family: var(--font-en);
      font-size: clamp(17px, 1.9vw, 24px);
      font-style: italic;
      font-weight: 400;
      color: var(--maroon);
    }

    /* keep old cs-quote selector so nothing breaks */
    .cs-quote {
      font-family: var(--font-en);
      font-size: clamp(17px, 1.8vw, 22px);
      font-weight: 400;
      font-style: italic;
      color: var(--dark);
      line-height: 1.65;
    }

    .cs-box.slogan .cs-quote { color: var(--maroon); }

    /* ─── BRANDS ──────────────────────────────────────── */
    #brands {
      padding: 100px 10vw;
      background: var(--bg-soft);
    }

    .brands-head { margin-bottom: 60px; }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .brand-tile {
      position: relative;
      height: 420px;
      overflow: hidden;
      cursor: pointer;
    }

    .brand-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.65s ease;
    }

    .brand-tile:hover .brand-bg { transform: scale(1.05); }

    .brand-veil {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.42) 55%,
        rgba(0,0,0,0.14) 100%
      );
      transition: background 0.35s;
    }

    .brand-tile:hover .brand-veil {
      background: linear-gradient(
        to top,
        rgba(100,0,0,0.88) 0%,
        rgba(0,0,0,0.48) 58%,
        rgba(0,0,0,0.14) 100%
      );
    }

    .brand-art {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .brand-art svg { opacity: 0.12; }

    .brand-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 36px 40px;
    }

    .brand-tag {
      display: inline-block;
      font-size: 9.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.35);
      padding: 4px 10px;
      margin-bottom: 12px;
    }

    .brand-name-th {
      font-size: 27px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 3px;
      line-height: 1.2;
    }

    .brand-name-en {
      font-family: var(--font-en);
      font-size: 18px;
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.65);
      margin-bottom: 18px;
    }

    .brand-arrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .brand-arrow span {
      width: 28px;
      height: 1px;
      background: #fff;
      transition: width 0.3s;
    }

    .brand-tile:hover .brand-arrow { opacity: 1; transform: translateY(0); }
    .brand-tile:hover .brand-arrow:hover span { width: 44px; }

    /* brand bg colours */
    .b1 .brand-bg { background: linear-gradient(145deg, #071f38 0%, #0e3a5e 100%); }
    .b2 .brand-bg { background: linear-gradient(145deg, #0e2a0e 0%, #1a4620 100%); }
    .b3 .brand-bg { background: linear-gradient(145deg, #14102e 0%, #221a50 100%); }
    .b4 .brand-bg { background: linear-gradient(145deg, #2a1006 0%, #4a1e08 100%); }

    /* ─── CTA JOIN ──────────────────────────────────────── */
    #join {
      position: relative;
      padding: 110px 10vw;
      background: var(--maroon);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

    #join::before {
      content: 'JOIN';
      font-family: var(--font-en);
      font-size: 260px;
      font-weight: 700;
      color: rgba(255,255,255,0.05);
      position: absolute;
      right: 6vw;
      top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .join-left { position: relative; z-index: 1; max-width: 600px; }

    .join-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 20px;
    }

    .join-badge::before {
      content: '';
      width: 26px; height: 1px;
      background: rgba(255,255,255,0.40);
    }

    .join-h2 {
      font-family: var(--font-en);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 300;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .join-h2 em { font-style: italic; font-weight: 400; }

    .join-desc {
      font-size: 15.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.85;
      max-width: 480px;
    }

    .join-right {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      flex-shrink: 0;
    }

    .btn-join {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 40px;
      background: #fff;
      color: var(--maroon);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      border-radius: 2px;
      transition: background 0.25s, transform 0.25s;
    }

    .btn-join:hover {
      background: rgba(255,255,255,0.90);
      transform: translateY(-3px);
    }

    .btn-join-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      letter-spacing: 0.04em;
      border-bottom: 1px solid rgba(255,255,255,0.30);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-join-ghost:hover {
      color: #fff;
      border-color: rgba(255,255,255,0.80);
    }

    @media (max-width: 900px) {
      #join { flex-direction: column; align-items: flex-start; padding: 80px 8vw; }
      .join-right { align-items: flex-start; }
      #join::before { font-size: 160px; right: 0; opacity: 0.04; }
    }
    #footer {
      background: #111111;
      padding: 72px 10vw 40px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 0;
      margin-bottom: 52px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 52px;
    }

    .foot-col {
      padding-right: 52px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

    .foot-col:last-child {
      border-right: none;
      padding-right: 0;
      padding-left: 52px;
    }

    .foot-col:nth-child(2) {
      padding-left: 52px;
    }

    .foot-logo img {
      height: 72px;
      filter: invert(1);
      opacity: 0.75;
      display: block;
      margin-bottom: 18px;
    }

    .foot-tagline {
      font-family: var(--font-en);
      font-size: 15px;
      font-style: italic;
      color: rgba(201,152,90,0.85);
      margin-bottom: 16px;
    }

    .foot-desc {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.30);
      line-height: 1.9;
    }

    .foot-col-title {
      font-size: 11px;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      padding-bottom: 14px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .foot-links a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.38);
      text-decoration: none;
      transition: color 0.2s;
    }

    .foot-links a:hover { color: rgba(255,255,255,0.85); }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .foot-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.28);
    }

    .foot-maroon {
      width: 32px;
      height: 2px;
      background: var(--maroon);
    }

    /* ─── SCROLL REVEAL ───────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.72s ease, transform 0.72s ease;
    }

    .reveal.d1 { transition-delay: 0.10s; }
    .reveal.d2 { transition-delay: 0.20s; }
    .reveal.d3 { transition-delay: 0.30s; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 1100px) {
      #about { grid-template-columns: 1fr; gap: 52px; padding: 80px 8vw; }
      .card4-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
      .card4-imgonly { min-height: 260px; }
      .brands-grid { grid-template-columns: 1fr; }
      .values-cards { grid-template-columns: 1fr; gap: 16px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      #hero { padding: 0 6vw; }
      #about, #values, #vision, #brands, #footer { padding-left: 6vw; padding-right: 6vw; }
      .vm-box, .cs-box { padding: 44px 32px; }
      .fti-banner { padding: 40px 28px; }
      .card4-grid { grid-template-columns: 1fr; gap: 14px; }
      .content-bar, .slogan-bar2 { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
      .content-bar-sub { margin-left: 0; }
      .foot-grid { grid-template-columns: 1fr; gap: 0; }
      .foot-col { padding-right: 0; padding-left: 0 !important; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 32px; margin-bottom: 32px; }
      .foot-col:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
      .fti-bar, .slogan-bar { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
      .fti-bar-sub { margin-left: 0; }
    }

    /* ─── MOBILE NAV TOGGLE (theme addition) ─────────────── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer;
      padding: 8px;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 100%;
      background: var(--dark);
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-links {
        display: flex;
        position: fixed;
        top: 64px; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(255,255,255,0.99);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        padding: 8px 6vw 20px;
        max-height: 0; overflow: hidden;
        opacity: 0; pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
      }
      .nav-links.open {
        max-height: 80vh; opacity: 1; pointer-events: auto;
        padding-top: 16px; padding-bottom: 24px;
      }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; width: 100%; padding: 14px 0; font-size: 16px; }
      .nav-links .nav-cta { display: inline-block; width: auto; margin-top: 8px; }
    }

    /* careers emphasis (theme addition) */
    .join-desc strong { color: #fff; font-weight: 500; }

/* ─── GALLERY CAROUSEL (theme addition) ──────────────── */
#gallery {
	padding: 100px 10vw;
	background: var(--bg-soft);
}

.gallery-head { margin-bottom: 48px; text-align: center; }
.gallery-head .sec-label { justify-content: center; }
.gallery-head .sec-label::before { display: none; }

.gallery-carousel {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
}

.gallery-track {
	position: relative;
	width: 100%;
	height: 460px;
	overflow: hidden;
	border-radius: 4px;
}

.gallery-slide {
	position: absolute;
	inset: 0;
	background-color: #1c1c1c;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1s ease, transform 1.2s ease;
}

.gallery-slide.active {
	opacity: 1;
	transform: scale(1);
}

.gallery-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.85);
	color: var(--maroon);
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	transition: background 0.2s, transform 0.2s;
}

.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 18px; }
.gallery-next { right: 18px; }

.gallery-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.gallery-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--border);
	cursor: pointer;
	transition: width 0.3s, background 0.3s, border-radius 0.3s;
}

.gallery-dots button.active {
	width: 26px;
	border-radius: 5px;
	background: var(--maroon);
}

@media (max-width: 1100px) {
	#gallery { padding: 80px 8vw; }
	.gallery-track { height: 380px; }
}

@media (max-width: 768px) {
	#gallery { padding-left: 6vw; padding-right: 6vw; }
	.gallery-track { height: 280px; border-radius: 2px; }
	.gallery-arrow { width: 36px; height: 36px; font-size: 18px; }
	.gallery-prev { left: 10px; }
	.gallery-next { right: 10px; }
}