/* ============================================================
   STARTUP ISLAND TAIWAN — Front-end CSS
   Ported 1:1 from the official design implementation.
   Breakpoints: default(1280+) | max-1279 | max-1023 | max-767
   ============================================================ */

:root {
  /* Brand tokens */
  --sit-background: #f1efe9;
  --sit-primary:    #f50;
  --sit-green:      #96d200;
  --sit-yellow:     #ffc800;
  --sit-blue:       #00afff;
  --sit-purple:     #7b61ff;
  --sit-black:      #333;
  --sit-gray:       #999;
  --sit-lightgray:  #d7d3c8;
  --sit-white:      #fff;

  /* Legacy aliases (about-us page) */
  --orange:  #f50;
  --dark:    #1a1a1a;
  --teal:    #00afff;
  --green:   #6eb33f;
  --lime:    #96d200;
  --yellow:  #ffc800;
  --cream:   #f1efe9;
  --white:   #ffffff;
  --text:    #333333;
  --muted:   #666666;
  --max-w:   1440px;
  --pad:     24px;
  --nav-h:   80px;
  --ease:    0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  color: var(--sit-black);
  background: var(--sit-background);
  padding-top: 80px; /* fixed header */
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
/* ul  { list-style: none; } */
button { font-family: inherit; cursor: pointer; }

/* ── Generic containers (about-us page) ──────────────────── */
.wrap   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.sec    { padding: 80px 0; }
.sec-lg { padding: 100px 0; }
.tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  margin-bottom: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-teal       { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0090cc; }

/* ─────────────────────────────────────────────────────────── */
/* HEADER                                                      */
/* ─────────────────────────────────────────────────────────── */
.sit-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 80px;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  background: var(--sit-background);
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
}
.sit-logo {
  width: 133px;
  height: 80px;
  flex: 0 0 auto;
  background: url('/icons/big-logo.svg') 50% 50% no-repeat;
  cursor: pointer;
}
.sit-menu {
  display: flex;
  gap: 48px;
  height: 80px;
  align-items: center;
  color: var(--sit-black);
}
.sit-menu > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}
.sit-menu > a:hover { color: var(--sit-primary); }

/* Language dropdown */
.sit-lang { position: relative; flex: 0 0 auto; cursor: pointer; }
/* SIT-001: divider between menu and lang select */
@media (min-width: 1280px) {
  .sit-lang { border-left: 1px solid #c6c2b6; padding-left: 14px; }
}
.sit-lang-select {
  width: 108px; /* 80px cramped the 日本語 label */
  height: 40px;
  padding: 0 6px;
  font-size: 14px;
  line-height: 38px;
  font-weight: 400;
  text-align: left;
  color: var(--sit-black);
  background: var(--sit-background);
  border: 0;
  border-bottom: 2px solid var(--sit-gray);
  position: relative;
  display: block;
}
.sit-lang:hover .sit-lang-select { border-color: var(--sit-primary); }
.sit-lang-content { display: flex; align-items: center; gap: 6px; }
.sit-lang-content svg { flex: 0 0 auto; }
.sit-lang-caret {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -6px;
  top: 52%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sit-lang-list {
  display: none;
  text-align: center;
  width: 178px;
  top: 71px;
  left: -20px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  z-index: 100;
  position: absolute;
  box-shadow: 0 2px 2px rgba(0,0,0,.25);
  background-color: var(--sit-background);
}
.sit-lang.is-open .sit-lang-list { display: block; }
.sit-lang-list li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  width: 100%;
  padding: 11px;
  color: var(--sit-gray);
  cursor: pointer;
}
.sit-lang-list li:hover { background: var(--sit-primary); color: var(--sit-white); }
.sit-lang-list li.is-cur { color: var(--sit-primary); }
.sit-lang-list li.is-cur:hover { color: var(--sit-white); }

/* Mobile locale row */
.sit-locale-mobile { display: none; }

/* SIT-001: header spacing & menu type per breakpoint */
@media (min-width: 1280px) and (max-width: 1439px) {
  .sit-header { padding: 0 20px; }
  .sit-menu { gap: 14px; font-size: 12px; }
  .sit-menu > a, .sit-menu .sit-nav-item > a { letter-spacing: -0.25px; }
  .sit-lang-list { left: -80px; }
}
@media (min-width: 1440px) {
  .sit-header { padding: 0 40px; }
  .sit-menu { gap: 16px; font-size: 13px; }
  .sit-lang-list { left: -60px; }
}

/* Hamburger */
.sit-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: url('/icons/hamburger.svg') 50% 50% no-repeat;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .sit-header { padding: 0 40px; }
  .sit-hamburger { display: block; }
  .sit-lang { display: none; }
  .sit-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    padding-top: 40px;
    background: var(--sit-background);
    border-top: 2px solid var(--sit-primary);
    overflow-y: auto;
  }
  .sit-menu.is-open { display: block; padding-bottom: 100px; } /* SIT-027 */
  .sit-menu > a, .sit-menu .sit-nav-item > a {
    font-size: 18px;
    line-height: 60px;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    width: 100%;
    height: auto;
    padding-left: 40px;
  }
  .sit-menu > a:hover, .sit-menu .sit-nav-item > a:hover { background-color: var(--sit-primary); color: var(--sit-white); }
  .sit-locale-mobile {
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 12px;
    gap: 56px;
  }
  .sit-locale-mobile a.is-cur { color: var(--sit-primary) !important; }
}

/* Flash */
.flash { padding: 14px 24px; font-size: 14px; text-align: center; }
.flash-success { background: #d4edda; color: #155724; }
.flash-error   { background: #f8d7da; color: #721c24; }

/* ─────────────────────────────────────────────────────────── */
/* HERO                                                        */
/* ─────────────────────────────────────────────────────────── */
.sit-hero {
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
}
.sit-hero-video {
  width: 100%;
  min-height: 640px;
  height: calc(100vh - 80px);
  object-fit: cover;
  border: 0;
  z-index: 0;
  display: block;
}
.sit-hero-mask {
  width: 100%;
  min-height: 640px;
  height: calc(100vh - 80px);
  background-color: rgba(0,0,0,.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.sit-hero-banner {
  height: 100%;
  padding: 95px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sit-hero-banner h1 {
  font-size: 92px;
  line-height: 110px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--sit-white);
  margin: 0;
}
.sit-hero-banner h3 {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-white);
  margin-top: 20px;
}
.sit-social { display: flex; align-items: center; gap: 6px; }
.sit-social a {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.sit-so-1 { background-image: url('/icons/home/facebook.svg'); }
.sit-so-2 { background-image: url('/icons/home/instagram.svg'); }
.sit-so-3 { background-image: url('/icons/home/youtube.svg'); }
.sit-so-4 { background-image: url('/icons/home/twitter.svg'); }
.sit-so-5 { background-image: url('/icons/home/linkedin.svg'); }
.sit-so-6 { background-image: url('/icons/home/spotify.svg'); }

@media (max-width: 1023px) {
  .sit-hero-video, .sit-hero-mask { min-height: 560px; }
  .sit-hero-banner h1 { font-size: 58px; line-height: 72px; }
  .sit-social { width: 295px; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .sit-hero-banner h3 { font-size: 22px; line-height: 36px; letter-spacing: 0; }
}

/* ─────────────────────────────────────────────────────────── */
/* HOMEPAGE MAIN                                               */
/* ─────────────────────────────────────────────────────────── */
.sit-main {
  padding-top: 76px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.sit-section {
  display: flex;
  justify-content: space-between;
}
.sit-section p {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0;
  font-weight: 400;
  margin: 32px 0 40px;
  white-space: pre-line;
}

/* SIT-002/SIT-004: browsers' UA stylesheet sets hr{color:gray}, which breaks
   currentColor underlines — restore inheritance so underlines match their title */
hr { color: inherit; }

/* Section titles */
.sit-title h2 {
  font-size: 56px;
  line-height: 80px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 570px;
  word-break: break-word;
}
.sit-title hr {
  width: 80px;
  border: 2px solid currentColor;
  margin: 0;
}

/* Section subtitles (h3) */
.sit-sec-1 h3, .sit-sec-3 h3, .sit-sec-4 h3, .sit-caption-2 h3 {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 32px 0 16px;
  white-space: pre-line;
}

/* Buttons */
.sit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  height: 60px;
  padding: 0 24px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-white);
  white-space: nowrap;
  cursor: pointer;
}
.sit-btn-icon {
  width: 40px;
  height: 40px;
  display: block;
  background: url('/icons/home/btn-arrow.svg') 50% 50% / contain no-repeat;
}

/* Cover images + color blocks */
.sit-cover-1 img, .sit-cover-2 img, .sit-cover-3 img, .sit-cover-4 img { max-width: none; }
.sit-caption-1, .sit-caption-3, .sit-caption-4 { flex-shrink: 0; }
.sit-cover-1 { position: relative; display: inline-block; }
.sit-cover-1::before {
  content: "";
  width: 400px; height: 400px;
  position: absolute;
  left: -80px; top: -80px;
  background-color: var(--sit-green);
  z-index: -10;
}
.sit-cover-1 img { width: 480px; height: 480px; object-fit: cover; }

.sit-cover-2 { position: relative; display: inline-block; }
.sit-cover-2::before {
  content: "";
  width: 400px; height: 400px;
  position: absolute;
  right: -80px; top: -80px;
  background-color: var(--sit-primary);
  z-index: -10;
}
.sit-cover-2 img { width: 720px; height: 480px; object-fit: cover; }

.sit-cover-3 { position: relative; }
.sit-cover-3::before {
  content: "";
  width: 400px; height: 400px;
  position: absolute;
  left: -80px; bottom: -80px;
  background-color: var(--sit-yellow);
  z-index: -10;
}
.sit-cover-3 img { width: 480px; height: 620px; object-fit: cover; }

.sit-cover-4 { position: relative; display: inline-block; }
.sit-cover-4::before {
  content: "";
  width: 400px; height: 400px;
  position: absolute;
  right: -80px; bottom: -80px;
  background-color: var(--sit-blue);
  z-index: -10;
}
.sit-cover-4 img { width: 480px; height: 480px; object-fit: cover; }

/* Section 1 — OUR MISSION */
.sit-caption-1 { position: relative; }
.sit-icon-1 {
  display: none;
  width: 169px;
  position: absolute;
  top: 246px; left: 160px;
  z-index: -10;
}
.sit-icon-1 img { width: 100%; height: auto; }
.sit-sec-1 {
  padding-top: 120px;
  margin: 0 0 160px 80px;
  background-image: url('/icons/home/home-section1.svg');
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 282px 204px;
}

/* Section 2 — WHY TAIWAN */
.sit-caption-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sit-why-header {
  margin-top: -90px !important;
  padding-right: 50px;
}
.sit-icon-2 { display: block; }
.sit-icon-2 img { width: 309px; height: auto; }
.sit-sec-2 { padding-top: 80px; position: relative; }
.sit-sec-2 .sit-btn-float {
  position: absolute;
  right: 0;
  margin: -30px 0 0;
}
.sit-sec-2 p { margin: 54px 0 0; max-width: 720px; }

/* Break heading + ecosystem icon */
.sit-break {
  font-size: 56px;
  line-height: 80px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 160px 0 80px;
}
.sit-eco { display: flex; justify-content: flex-end; }
.sit-icon-3 { display: block; }
.sit-icon-3 img { width: 193px; height: 252px; }

/* Section 3 — MEET THE COMMUNITY */
.sit-caption-3 { margin-top: -120px; }
.sit-sec-3 { margin: 0 auto 320px 80px; }
.sit-sec-3 p { margin-top: 0; }

/* Section 4 — HOW WE CAN HELP */
.sit-next-mobile {
  display: none;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.sit-next-inline {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 88px;
}
.sit-icon-4 { display: block; }
.sit-icon-4 img { width: 303px; height: 192px; }
.sit-sec-4 { margin-right: 80px; }
.sit-sec-4 p { margin-top: 0; }
.sit-caption-4 { margin-top: 120px; }

/* ── Homepage responsive ─────────────────────────────────── */
@media (max-width: 1279px) {
  .sit-main { max-width: 100%; padding: 76px 80px 0; }
  .sit-title h2 { font-size: 46px; line-height: 60px; letter-spacing: 0; }
  .sit-break { font-size: 46px; line-height: 60px; letter-spacing: 0; }
  .sit-cover-1::before, .sit-cover-2::before, .sit-cover-3::before, .sit-cover-4::before { width: 280px; height: 280px; }
  .sit-cover-1 img, .sit-cover-4 img { width: 336px; height: 336px; }
  .sit-cover-2 img { width: 504px; height: 336px; }
  .sit-cover-3 img { width: 336px; height: 434px; }
  .sit-sec-1 { padding-top: 143px; background-size: 197px 143px; }
  .sit-icon-2 img { width: 216px; }
  .sit-icon-3 img { width: 135px; height: auto; }
  .sit-icon-4 img { width: 213px; height: auto; }
  .sit-sec-2 p { max-width: 504px; }
}

@media (max-width: 1023px) {
  .sit-main { padding: 36px 40px 0; }
  .sit-cover-1::before { left: -40px; top: -40px; }
  .sit-cover-2::before { right: -40px; top: -40px; }
  .sit-cover-3::before { left: -40px; bottom: -40px; }
  .sit-cover-4::before { right: -40px; bottom: -40px; }
  .sit-sec-1 { background-size: 169px 122px; }
  .sit-caption-2 { width: 214px; gap: 40px; margin-bottom: 80px; }
  .sit-why-header { margin-top: unset !important; padding-right: unset; }
  .sit-icon-2 img { width: 185px; }
  .sit-icon-3 img { width: 116px; height: 151px; }
  .sit-icon-4 img { width: 182px; height: 115px; }
  .sit-sec-2 { padding-top: 40px; }
  .sit-caption-3 { margin: 8px 0 120px; }
  .sit-sec-3 { margin-left: 40px; margin-bottom: 160px; }
  .sit-sec-4 { margin-right: 40px; }
}

@media (max-width: 767px) {
  .sit-section { flex-direction: column; }
  .sit-section-last { flex-direction: column-reverse; align-items: flex-end; }
  .sit-title h2 { font-size: 32px; line-height: 48px; margin-bottom: 20px; }
  .sit-break { font-size: 32px; line-height: 48px; }
  .sit-sec-1 h3, .sit-sec-3 h3, .sit-sec-4 h3, .sit-caption-2 h3 {
    font-size: 22px; line-height: 36px; letter-spacing: 0; margin-top: 24px;
  }
  .sit-cover-1::before, .sit-cover-2::before, .sit-cover-3::before, .sit-cover-4::before { width: 240px; height: 240px; }
  .sit-cover-1 img, .sit-cover-4 img { width: 295px; height: 295px; }
  .sit-cover-2 { display: block; }
  .sit-cover-2 img { width: calc(100% + 40px); height: 100%; margin-left: -40px; }
  .sit-cover-3 img { width: 295px; height: 381px; }
  .sit-icon-1 { display: block; }
  .sit-sec-1 { padding-top: 80px; background-size: 0; margin-left: 0; }
  .sit-why-header { width: 300px; }
  .sit-sec-2 p { max-width: 100%; }
  .sit-sec-3 { margin-left: 0; }
  .sit-sec-4 { margin-right: 0; }
  .sit-next-mobile { display: flex; }
  .sit-next-inline { display: none; }
  .sit-caption-4 { margin: 0 0 120px; }
}

/* ─────────────────────────────────────────────────────────── */
/* GO TOP                                                      */
/* ─────────────────────────────────────────────────────────── */
.sit-gotop {
  width: 56px;
  height: 80px;
  background: url('/icons/gotop-outlined.svg') top / 56px no-repeat;
  position: relative;
  cursor: pointer;
  margin-left: auto;
  margin-right: 80px;
}
.sit-gotop::after {
  content: "Top";
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.sit-gotop:hover {
  background-image: url('/icons/gotop-filled.svg');
  color: var(--sit-primary);
}
@media (max-width: 1023px) {
  .sit-gotop { margin-right: 40px; }
}

/* ─────────────────────────────────────────────────────────── */
/* FOOTER                                                      */
/* ─────────────────────────────────────────────────────────── */
.sit-footer {
  width: 100%;
  padding: 40px 80px;
  background-color: var(--sit-background);
}
.sit-footer-upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sit-footer-email { width: 489px; }
.sit-footer-email h4 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 4px;
}
.sit-filter { width: 100%; position: relative; display: inline-block; }
.sit-filter-input {
  width: 100%;
  height: 60px;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--sit-black);
  background: var(--sit-background);
  padding: 0 56px 0 12px;
  border: 0;
  border-bottom: 2px solid var(--sit-gray);
  outline: none;
}
.sit-filter-input::placeholder { color: var(--sit-gray); }
.sit-filter:hover .sit-filter-input,
.sit-filter-input:focus { border-color: var(--sit-primary); }
.sit-filter-submit {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  border: 0;
  background: transparent url('/icons/arrow-circle-gray.svg') 50% 50% / contain no-repeat;
  cursor: pointer;
}

.sit-footer-info-list { display: flex; gap: 55px; }
.sit-footer-info h5 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 12px;
}
.sit-footer-info a {
  display: block;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
}
.sit-footer-info a:hover { color: var(--sit-primary); }

.sit-footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sit-footer-brand img { display: block; }
.sit-footer-bridging {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-top: 8px;
}
.sit-footer-social { display: flex; align-items: center; gap: 6px; }
.sit-footer-social > a {
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.sit-fso-1 { background-image: url('/icons/footer/facebook.svg'); }
.sit-fso-1:hover { background-image: url('/icons/footer/facebook-sm.svg'); }
.sit-fso-2 { background-image: url('/icons/footer/instagram.svg'); }
.sit-fso-2:hover { background-image: url('/icons/footer/instagram-sm.svg'); }
.sit-fso-3 { background-image: url('/icons/footer/youtube.svg'); }
.sit-fso-3:hover { background-image: url('/icons/footer/youtube-sm.svg'); }
.sit-fso-4 { background-image: url('/icons/footer/twitter.svg'); }
.sit-fso-4:hover { background-image: url('/icons/footer/twitter-sm.svg'); }
.sit-fso-5 { background-image: url('/icons/footer/linkedin.svg'); }
.sit-fso-5:hover { background-image: url('/icons/footer/linkedin-sm.svg'); }
.sit-fso-6 { background-image: url('/icons/footer/spotify.svg'); }
.sit-fso-6:hover { background-image: url('/icons/footer/spotify-sm.svg'); }
.sit-fso-7 {
  display: block;
  width: 32px;
  height: 32px;
  background: url('/icons/footer/mail.svg') 50% 50% / contain no-repeat;
}
.sit-fso-7:hover { background-image: url('/icons/footer/mail-sm.svg'); }
.sit-footer-mailto {
  margin-left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sit-footer-mailto h6 {
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}
.sit-footer-policy {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.sit-footer-policy p { margin: 0; }
.sit-footer-policy a:hover { color: var(--sit-primary); }

@media (max-width: 1279px) {
  .sit-footer-email { width: 295px; }
}
@media (max-width: 1023px) {
  .sit-footer { padding: 40px; }
  .sit-footer-upper { flex-direction: column; gap: 40px; }
  .sit-footer-email { width: 100%; }
  .sit-footer-info-list { flex-direction: column; gap: 0; }
  .sit-footer-info h5 { margin-top: 20px; white-space: nowrap; }
  .sit-footer-info:first-child h5 { margin-top: 0; }
  .sit-footer-lower { align-items: flex-start; flex-direction: column; gap: 40px; }
  .sit-footer-social > a, .sit-fso-7 { width: 40px; height: 40px; }
  .sit-footer-social { flex-wrap: wrap; }
  .sit-footer-mailto { margin: 0; }
  .sit-footer-policy { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 767px) {
  .sit-footer-email { width: 295px; }
}

/* ─────────────────────────────────────────────────────────── */
/* ABOUT US PAGE                                               */
/* ─────────────────────────────────────────────────────────── */

/* 1. Hero: vertical title + video */
.sit-about-hero { padding: 0; }
.sit-about-hero-inner {
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 160px;
}
.sit-about-hero h1 {
  font-size: 92px;
  line-height: 110px;
  letter-spacing: 2px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: translateX(-24px);
  margin: 0;
}
.sit-about-video-wrap {
  margin-top: 80px;
  position: relative;
}
.sit-about-video-wrap::after {
  content: "";
  background-color: var(--sit-black);
  width: 860px;
  height: 360px;
  position: absolute;
  bottom: -80px;
  right: -80px;
  z-index: -10;
}
.sit-about-video { width: 880px; height: 495px; }
.sit-about-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.sit-about-player {
  position: absolute;
  bottom: 0;
  right: 0;
}
.sit-about-play-label { text-decoration: underline; }

@media (max-width: 1279px) {
  .sit-about-hero { padding: 0 80px; }
  .sit-about-video-wrap { margin-top: 130px; }
  .sit-about-video-wrap::after { width: 606px; height: 252px; }
  .sit-about-video { width: 616px; height: 346px; }
}
@media (max-width: 1023px) {
  .sit-about-hero { padding: 0; }
  .sit-about-hero-inner { flex-direction: column; margin: 0 0 120px; }
  .sit-about-hero h1 {
    font-size: 58px;
    line-height: 72px;
    transform: none;
    writing-mode: unset;
    margin-top: 40px;
    padding-left: 24px;
  }
  .sit-about-video-wrap { margin-top: 40px; }
  .sit-about-video-wrap::after { width: 100%; height: 100%; bottom: -40px; right: 0; }
  .sit-about-video { width: 100%; height: auto; aspect-ratio: 16/9; }
  .sit-about-player { bottom: 4px; }
}

/* 2-4. Text sections with L-shaped accents */
.sit-ab-origin,
.sit-ab-brand,
.sit-ab-concept {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  margin: 0 auto 200px;
  /* SIT-006: breathing room between the last line and the color foot */
  padding-bottom: 60px;
}
.sit-ab-title { position: sticky; top: 120px; }
.sit-ab-text { flex: 1 1 0; position: relative; }
/* SIT-005: start the description lower so the scroll reveal reads clearly */
@media (min-width: 1280px) {
  .sit-ab-text { margin-top: 250px; }
}
.sit-ab-text-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sit-ab-text-inner p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
  white-space: pre-line;
}

/* L accents: vertical bar (::before) + bottom foot (::after) */
.sit-ab-origin::before,
.sit-ab-brand::before,
.sit-ab-concept::before {
  content: "";
  position: absolute;
  bottom: -80px;
  width: 80px;
  height: 440px;
  max-height: calc(100% + 50px);
  z-index: 0;
}
.sit-ab-origin::after,
.sit-ab-brand::after,
.sit-ab-concept::after {
  content: "";
  position: absolute;
  bottom: -80px;
  width: 440px;
  height: 80px;
  z-index: 0;
}

/* ORIGIN — title left, text right, green L bottom-right */
.sit-ab-origin { padding-left: 80px; justify-content: flex-end; }
.sit-ab-origin .sit-ab-text { padding-right: 140px; }
.sit-ab-origin::before { right: 0; background-color: var(--sit-green); }
.sit-ab-origin::after  { right: 0; background-color: var(--sit-green); }

/* BRAND STORY — title left (clear of yellow L at container left), text right */
.sit-ab-brand { padding-right: 80px; }
.sit-ab-brand .sit-ab-title { padding-left: 140px; }
.sit-ab-brand::before { left: 0; background-color: var(--sit-yellow); }
.sit-ab-brand::after  { left: 0; background-color: var(--sit-yellow); }

/* NDC logo lockup */
.sit-ndc { margin-top: 48px; }
.sit-ndc-img {
  display: block;
  width: 220px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

/* CONCEPT & VISION — text left, title+icons right, orange L bottom-right */
.sit-ab-concept { padding: 0 140px 60px 80px; } /* SIT-006 */
.sit-ab-concept::before { right: 0; background-color: var(--sit-primary); }
.sit-ab-concept::after  { right: 0; background-color: var(--sit-primary); }
.sit-ab-title-icons {
  width: 424px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 24px;
}
.sit-ab-icons {
  padding: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.sit-ab-iconwrap {
  width: 200px;
  height: 148px;
  display: grid;
  grid-template-rows: 120px auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 4px;
}
.sit-ab-iconwrap > p {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
  text-align: center;
  align-self: flex-start;
}
.sit-ab-icon1 { width: 120px; height: 98px; }
.sit-ab-icon2 { width: 120px; height: 76px; }
.sit-ab-icon3 { width: 124px; height: 90px; }
.sit-ab-icon4 { width: 69px;  height: 90px; }

@media (max-width: 1279px) {
  .sit-ab-origin { padding: 0 0 60px 80px; }
  .sit-ab-brand { padding: 0 0 60px 0; padding-right: 0; }
  .sit-ab-brand .sit-ab-title { padding-left: 120px; }
  .sit-ab-concept { padding: 0 100px 60px 0; max-width: unset; }
  .sit-ab-origin::before, .sit-ab-brand::before, .sit-ab-concept::before { width: 56px; height: 308px; bottom: -56px; }
  .sit-ab-origin::after, .sit-ab-brand::after, .sit-ab-concept::after { width: 308px; height: 56px; bottom: -56px; }
  .sit-ab-origin .sit-ab-text { padding-right: 100px; }
  .sit-ab-title-icons { width: 344px; }
  .sit-ab-iconwrap { width: 160px; grid-template-rows: 96px auto; }
  .sit-ab-icon1 { width: 96px; height: 78px; }
  .sit-ab-icon2 { width: 96px; height: 61px; }
  .sit-ab-icon3 { width: 99px; height: 72px; }
  .sit-ab-icon4 { width: 55px; height: 72px; }
  .sit-ab-icons { justify-content: center; }
}
@media (max-width: 1023px) {
  .sit-ab-origin, .sit-ab-brand { flex-flow: column; gap: 0; padding: 0 40px 60px; margin-bottom: 160px; }
  .sit-ab-concept { flex-flow: column-reverse; gap: 0; padding: 0 40px 60px; margin-bottom: 160px; }
  .sit-ab-title { position: relative; top: unset; }
  .sit-ab-brand .sit-ab-title { padding-left: 0; }
  .sit-ab-text { flex: unset; width: 100%; margin-top: 24px; }
  .sit-ab-origin .sit-ab-text { padding-right: 0; }
  .sit-ab-title-icons { width: unset; }
  .sit-ab-icons { width: 344px; }
}
@media (max-width: 767px) {
  .sit-ab-origin, .sit-ab-brand, .sit-ab-concept { margin-bottom: 120px; }
  .sit-ab-origin::before, .sit-ab-brand::before, .sit-ab-concept::before { display: none; }
  .sit-ab-origin::after, .sit-ab-brand::after, .sit-ab-concept::after { width: 264px; height: 40px; bottom: -40px; }
  .sit-ab-icons { width: 296px; }
  .sit-ab-iconwrap { width: 136px; grid-template-rows: 77px auto; }
  .sit-ab-icon1 { width: 77px; height: 63px; }
  .sit-ab-icon2 { width: 77px; height: 49px; }
  .sit-ab-icon3 { width: 79px; height: 58px; }
  .sit-ab-icon4 { width: 44px; height: 57px; }
}

/* ─────────────────────────────────────────────────────────── */
/* PAGE HERO — Global Expansion / Landing in Taiwan            */
/* ─────────────────────────────────────────────────────────── */
.sit-ph {
  width: 100%;
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 240px;
}
.sit-ph h1 {
  font-size: 92px;
  line-height: 110px;
  letter-spacing: 2px;
  font-weight: 700;
  writing-mode: vertical-rl;
  transform: translateX(-24px);
  margin: 0;
}
.sit-ph-media {
  margin-top: 100px;
  position: relative;
  width: 800px;
  flex: 0 0 auto;
}
/* SIT-007/012/028: ::before removed — the color block is a single solid
   plate behind the photo (Notion spec: height 420, z-index -1) */
.sit-ph-media::before { content: none; }
.sit-ph-media::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 720px;
  height: 420px;
  z-index: -1;
  background: var(--sit-primary);
}
.sit-ph-photo {
  width: 720px;
  height: 405px;
  max-width: none;
  object-fit: cover;
  display: block;
}
.sit-ph-card {
  position: relative;
  width: 720px;
  margin: -80px 0 0 80px;
  background: var(--sit-white);
  padding: 44px 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  z-index: 2;
}
.sit-ph-card h3 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: .5px;
  font-weight: 700;
  margin: 0;
  white-space: pre-line;
}
.sit-ph-card p {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #555;
  margin: 12px 0 0;
  white-space: pre-line;
}

@media (max-width: 1279px) {
  .sit-ph { padding: 0 80px; margin-bottom: 200px; }
  .sit-ph-media { width: 560px; margin-top: 110px; }
  .sit-ph-photo { width: 504px; height: 284px; }
  .sit-ph-media::after { left: -56px; bottom: -56px; width: 504px; }
  .sit-ph-card { width: 504px; margin: -56px 0 0 56px; padding: 32px 36px; }
  .sit-ph-card h3 { font-size: 20px; line-height: 32px; }
}
@media (max-width: 1023px) {
  .sit-ph { flex-direction: column; padding: 0 40px; margin: 40px auto 160px; }
  .sit-ph h1 {
    font-size: 58px;
    line-height: 72px;
    writing-mode: unset;
    transform: none;
    margin-bottom: 8px;
  }
  /* SIT-008/013: full-bleed photo, title margin-left 24, full-width white
     block overlapping the photo by 40px, plate strip visible below */
  .sit-ph { padding: 0; }
  .sit-ph h1 { margin-left: 24px; }
  .sit-ph-media { width: 100%; margin-top: 32px; }
  .sit-ph-photo { width: 100%; height: auto; aspect-ratio: 16/9; }
  .sit-ph-media::after { left: 0; bottom: -40px; width: 100%; height: 40px; }
  .sit-ph-card { width: 100%; margin: -40px 0 0 0; padding: 28px 40px; box-shadow: none; }
}
@media (max-width: 767px) {
  .sit-ph { margin-bottom: 120px; }
  .sit-ph h1 { font-size: 34px; line-height: 46px; margin-right: 24px; overflow-wrap: anywhere; }
  .sit-ph-card { padding: 24px; }
  .sit-ph-card h3 { font-size: 18px; line-height: 28px; }
}

/* ─────────────────────────────────────────────────────────── */
/* GLOBAL EXPANSION — country hub cards + annual plan          */
/* ─────────────────────────────────────────────────────────── */
.sit-ge-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.sit-ge-desc {
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 40px;
  white-space: pre-line;
}
.sit-ge-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 160px;
}
.sit-ge-card {
  background: var(--sit-white);
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  min-height: 336px;
  margin-bottom: 24px; /* SIT-009 */
}
.sit-ge-card h3 {
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: .5px;
  font-weight: 700;
  color: var(--sit-black);
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  white-space: pre-line;
}
.sit-ge-card hr {
  width: 40px;
  border: 1.5px solid var(--sit-primary);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.sit-ge-card p {
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin: 0 0 24px;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}
.sit-ge-map {
  position: absolute;
  z-index: 0;
  background-color: #f6d8c4;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.sit-ge-map-japan { top: 14px; right: 6px;  width: 120px; height: 215px; }
.sit-ge-map-usa   { top: 26px; right: 14px; width: 165px; height: 105px; }
.sit-ge-map-sea   { top: 22px; right: 8px;  width: 170px; height: 130px; }
.sit-ge-map-world { top: 60px; right: 8px;  width: 185px; height: 115px; }
.sit-ge-btn {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--sit-primary);
  color: var(--sit-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.sit-ge-btn.is-soon {
  background: #c9c9c9;
  cursor: default;
}
.sit-ge-arrow {
  width: 27px;
  height: 27px;
  display: block;
  flex: 0 0 auto;
  background: url('/icons/home/btn-arrow.svg') 50% 50% / contain no-repeat;
}

/* Annual plan block */
.sit-ge-annual {
  width: 406px;
  min-height: 150px;
  margin: 0 auto 160px;
  background: var(--sit-black);
  color: var(--sit-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px 0 40px;
  position: relative;
}
.sit-ge-annual-label {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: pre-line;
}
.sit-ge-annual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  height: 14px;
  background: linear-gradient(to right, #f50 0 25%, #00afff 25% 50%, #96d200 50% 75%, #ffc800 75% 100%);
}

@media (max-width: 1279px) {
  .sit-ge-wrap { max-width: 100%; padding: 0 80px; }
}
@media (max-width: 1023px) {
  .sit-ge-wrap { padding: 0 40px; }
  .sit-ge-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 120px; }
}
@media (max-width: 767px) {
  .sit-ge-wrap { padding: 0 24px; }
  .sit-ge-cards { grid-template-columns: 1fr; }
  .sit-ge-annual { width: 100%; max-width: 340px; padding: 0 28px; margin-bottom: 120px; }
  .sit-ge-annual-label { font-size: 24px; line-height: 34px; }
}

/* ─────────────────────────────────────────────────────────── */
/* LANDING IN TAIWAN — explore cards + intro text              */
/* ─────────────────────────────────────────────────────────── */
.sit-lt-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.sit-lt-break {
  font-size: 56px;
  line-height: 80px;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 72px;
}
.sit-lt-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 110px;
}
.sit-lt-card {
  width: 265px;
  background: var(--sit-white);
  padding: 44px 20px 36px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  margin-bottom: 24px; /* SIT-014 */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sit-lt-card > img {
  height: 88px;
  width: auto;
  margin-bottom: 24px;
}
.sit-lt-card h3 {
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 26px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
}
.sit-lt-btn {
  width: 210px;
  height: 46px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: var(--sit-black);
  color: var(--sit-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
}
.sit-lt-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 160px;
}
.sit-lt-text p {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

@media (max-width: 1279px) {
  .sit-lt-wrap { max-width: 100%; padding: 0 80px; }
  .sit-lt-break { font-size: 46px; line-height: 60px; letter-spacing: 0; }
}
@media (max-width: 1023px) {
  .sit-lt-wrap { padding: 0 40px; }
  .sit-lt-card { width: calc(50% - 10px); max-width: 300px; }
}
@media (max-width: 767px) {
  .sit-lt-wrap { padding: 0 24px; }
  .sit-lt-break { font-size: 32px; line-height: 48px; margin-bottom: 48px; }
  .sit-lt-card { width: 100%; max-width: 320px; }
  .sit-lt-text { margin-bottom: 120px; }
}

/* ─────────────────────────────────────────────────────────── */
/* NAV SUBMENUS (desktop hover dropdown / mobile inline)       */
/* ─────────────────────────────────────────────────────────── */
.sit-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sit-nav-item > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.sit-nav-item:hover > a { color: var(--sit-primary); }
.sit-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 178px;
  margin-top: 1px;
  padding: 15px 0;
  background: var(--sit-background);
  box-shadow: 0 2px 2px rgba(0,0,0,.25);
  z-index: 120;
}
.sit-nav-item:hover .sit-submenu { display: block; }
.sit-submenu > a {
  color: var(--sit-gray);
  display: flex;
  width: 100%;
  min-height: 50px;
  padding: 6px 12px;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  white-space: normal;
}
.sit-submenu > a:hover { background-color: var(--sit-primary); color: var(--sit-white); }

@media (max-width: 1279px) {
  .sit-nav-item { height: auto; display: block; position: static; }
  /* SIT-027: submenus collapsed by default, open on hover/tap */
  .sit-submenu {
    display: none;
    position: static;
    width: 100%;
    transform: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .sit-nav-item:hover .sit-submenu { display: block; }
  .sit-submenu > a {
    justify-content: flex-start;
    text-align: left;
    padding: 0 0 0 80px;
    min-height: 48px;
    font-size: 13px;
    line-height: 20px;
  }
}

/* ─────────────────────────────────────────────────────────── */
/* JAPAN MARKET (03.1) + MARKET FAQ (03.1.1)                   */
/* ─────────────────────────────────────────────────────────── */
.sit-jm {
  width: 100%;
  max-width: 1120px;
  margin: 60px auto 160px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.sit-jm-toc {
  flex: 0 0 190px;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 12px;
}
.sit-jm-toc a {
  font-size: 14px;
  line-height: 28px; /* SIT-010/015 */
  color: var(--sit-gray);
}
.sit-jm-toc a:hover { color: var(--sit-primary); }
.sit-jm-toc a.is-cur {
  color: var(--sit-black);
  font-weight: 700;
  border-left: 3px solid var(--sit-primary);
  padding-left: 10px;
  margin-left: -13px;
}
.sit-jm-main {
  flex: 1 1 auto;
  position: relative;
  padding-bottom: 60px;
}
.sit-jm-main::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 72px;
  height: 380px;
  max-height: 80%;
  background: var(--sit-primary);
  z-index: 0;
}
.sit-jm-main::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 420px;
  height: 72px;
  background: var(--sit-primary);
  z-index: 0;
}
.sit-jm-map {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 210px;
  background-color: #f6d8c4;
  -webkit-mask: url('/images/front/map-japan.png') center / contain no-repeat;
  mask: url('/images/front/map-japan.png') center / contain no-repeat;
  z-index: 0;
}
.sit-jm-title {
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 24px 0 48px;
  white-space: pre-line;
  position: relative;
  z-index: 1;
}
.sit-jm-sec { position: relative; z-index: 1; margin-bottom: 56px; max-width: 640px; }
.sit-jm-h2 {
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-primary);
  margin: 0 0 12px;
}
.sit-jm-sec hr {
  width: 44px;
  border: 1.5px solid var(--sit-primary);
  margin: 0 0 24px;
}
.sit-jm-sec p {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  white-space: pre-line;
}
.sit-jm-hub { position: relative; z-index: 1; }

/* FAQ variant */
.sit-jf-title {
  font-size: 56px;
  line-height: 70px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-green);
  margin: 12px 0 14px;
  position: relative;
  z-index: 1;
}
.sit-jf .sit-jm-main::before,
.sit-jf .sit-jm-main::after { background: var(--sit-green); }
.sit-jf-hr {
  width: 44px;
  border: 1.5px solid var(--sit-green);
  margin: 0 0 48px;
  position: relative;
  z-index: 1;
}
.sit-jf-sec {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  max-width: 680px;
  scroll-margin-top: 110px;
}
.sit-jf-sec h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin: 0 0 10px;
}
.sit-jf-sec p { font-size: 15px; line-height: 26px; margin: 0 0 8px; color: #555; }
.sit-jf-soon { color: var(--sit-gray); font-style: italic; }

@media (max-width: 1279px) {
  .sit-jm { padding: 0 80px; }
  .sit-jm-title { font-size: 52px; line-height: 64px; }
}
@media (max-width: 1023px) {
  .sit-jm { flex-direction: column; padding: 0 40px; margin-top: 0; gap: 24px; }
  /* SIT-010/015: aside menu is fixed to the top of the page (under the header) */
  .sit-jm-toc {
    top: 80px;
    z-index: 999;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    background: var(--sit-background);
    padding-bottom: 12px;
  }
  .sit-jm-toc a.is-cur { border-left: 0; padding-left: 0; margin-left: 0; border-bottom: 2px solid var(--sit-primary); }
  .sit-jm-map { width: 100px; height: 140px; }
  .sit-jm-main::before, .sit-jm-main::after { right: -40px; }
}
@media (max-width: 767px) {
  .sit-jm { padding: 0 24px; margin-bottom: 120px; }
  .sit-jm-title { font-size: 40px; line-height: 52px; }
  .sit-jm-h2 { font-size: 26px; line-height: 36px; }
  .sit-jm-main::before { display: none; }
  .sit-jm-main::after { width: 60%; height: 40px; bottom: -40px; right: -24px; }
}

/* ─────────────────────────────────────────────────────────── */
/* NEWS (06.1)                                                 */
/* ─────────────────────────────────────────────────────────── */
.sit-news {
  width: 100%;
  max-width: 1120px;
  margin: 72px auto 160px;
}
.sit-news-filters {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 48px;
}
.sit-news-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23f50' stroke-width='1.6' fill='none'/%3E%3C/svg%3E") right 4px center no-repeat;
  border: 0;
  border-bottom: 2px solid var(--sit-primary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--sit-black);
  padding: 8px 24px 8px 4px;
  min-width: 130px;
  flex: 1 1 0;
  cursor: pointer;
}
.sit-news-search {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--sit-gray);
  padding: 6px 4px;
}
.sit-news-search input {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  outline: none;
  color: var(--sit-black);
}
.sit-news-search input::placeholder { color: var(--sit-gray); }

.sit-news-item { margin-bottom: 36px; }
.sit-news-link {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
/* SIT-022: 320×180 thumbnails */
.sit-news-thumb {
  flex: 0 0 320px;
  height: 180px;
  overflow: hidden;
  display: block;
  background: #ddd;
}
.sit-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sit-news-body { display: block; flex: 1 1 auto; min-width: 0; }
.sit-news-title {
  display: block;
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.sit-news-link:hover .sit-news-title { color: var(--sit-primary); }
.sit-news-date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .5px;
  color: var(--sit-gray);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--sit-primary);
}
.sit-news-more {
  display: block;
  margin: 56px auto 0;
  width: 200px;
  height: 48px;
  background: var(--sit-black);
  color: var(--sit-white);
  border: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
}
.sit-news-more:hover { background: var(--sit-primary); }

@media (max-width: 1279px) {
  .sit-news { padding: 0 80px; }
}
@media (max-width: 1023px) {
  .sit-news { padding: 0 40px; margin-top: 48px; }
  .sit-news-filters { flex-wrap: wrap; gap: 20px; }
  .sit-news-search { flex: 1 1 100%; }
}
@media (max-width: 767px) {
  .sit-news { padding: 0 24px; margin-bottom: 120px; }
  .sit-news-title { font-size: 15px; line-height: 22px; }
  /* SIT-022: below 768 the row stacks — full-width 16:9 image on top */
  .sit-news-link { flex-direction: column; gap: 14px; }
  .sit-news-thumb { flex-basis: auto; height: auto; width: 100%; aspect-ratio: 16 / 9; }
}

/* ─────────────────────────────────────────────────────────── */
/* CONTENT PAGES SHARED (02/05.x/07/08.1)                      */
/* ─────────────────────────────────────────────────────────── */
.sit-pg { width: 100%; max-width: 1120px; margin: 0 auto 160px; }
.sit-pg-head { margin: 72px 0 48px; }
.sit-pg-head h1 {
  font-size: 56px;
  line-height: 70px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 14px;
}
.sit-pg-head hr { width: 44px; border: 1.5px solid; margin: 0; }
.sit-wt-h2 {
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 12px;
  white-space: pre-line;
}
.sit-wt-h2 + hr { width: 44px; border: 1.5px solid; margin: 0 0 24px; }

/* Why Taiwan sections */
.sit-wt-sec { display: flex; gap: 56px; align-items: flex-start; margin: 96px 0; }
/* SIT-025: color-block corner accents per Figma 02_Why_Taiwan */
.sit-wt-sec, .sit-wt-ai, .sit-wt-faq { position: relative; z-index: 0; }
.sit-wt-sec::before, .sit-wt-ai::before, .sit-wt-faq::before,
.sit-wt-sec::after, .sit-wt-ai::after, .sit-wt-faq::after {
  content: "";
  position: absolute;
  z-index: -1;
}
/* keep clear space between the color blocks and the text: the feet sit in this
   padded zone below the last line, the bars in the side gutters */
.sit-wt-green, .sit-wt-ai { padding-bottom: 88px; }
/* INTRODUCTION — green L, bottom right (in the right gutter, clear of the text) */
.sit-wt-green::before { right: -88px; bottom: -48px; width: 64px; height: 240px; background: var(--sit-green); }
.sit-wt-green::after  { right: -88px; bottom: -48px; width: 280px; height: 64px; background: var(--sit-green); }
/* AI HUB — blue L, bottom left (sits in the left gutter, clear of the text) */
.sit-wt-ai::before { left: -88px; bottom: -48px; width: 64px; height: 240px; background: var(--sit-blue); }
.sit-wt-ai::after  { left: -88px; bottom: -48px; width: 280px; height: 64px; background: var(--sit-blue); }
@media (min-width: 1024px) and (max-width: 1439px) {
  /* container side padding is 80px in this band — keep the bars flush, not overflowing */
  .sit-wt-ai::before, .sit-wt-ai::after { left: -80px; }
  .sit-wt-green::before, .sit-wt-green::after { right: -80px; }
}
/* TAIWAN FAQ — yellow L, bottom right */
.sit-wt-faq::before { right: -24px; bottom: -40px; width: 64px; height: 240px; background: var(--sit-yellow); }
.sit-wt-faq::after  { right: -24px; bottom: -40px; width: 280px; height: 64px; background: var(--sit-yellow); }
@media (max-width: 1023px) {
  .sit-wt-green, .sit-wt-ai { padding-bottom: 64px; }
  .sit-wt-green::before, .sit-wt-ai::before, .sit-wt-faq::before { width: 32px; height: 160px; bottom: -32px; }
  .sit-wt-green::after, .sit-wt-ai::after, .sit-wt-faq::after { width: 180px; height: 40px; bottom: -32px; }
  .sit-wt-green::before, .sit-wt-green::after, .sit-wt-faq::before, .sit-wt-faq::after { right: -40px; }
  .sit-wt-ai::before, .sit-wt-ai::after { left: -40px; }
}
@media (max-width: 767px) {
  .sit-wt-ai::before { left: -24px; width: 18px; }
  .sit-wt-ai::after { left: -24px; }
  .sit-wt-green::before, .sit-wt-faq::before { right: -24px; width: 18px; }
  .sit-wt-green::after, .sit-wt-faq::after { right: -24px; }
}
.sit-wt-media { flex: 0 0 400px; }
.sit-wt-media img { width: 100%; height: 300px; object-fit: cover; }
.sit-wt-text { flex: 1; }
.sit-wt-text p, .sit-wt-text div { font-size: 16px; line-height: 28px; margin: 0 0 18px; }
.sit-wt-text a { color: var(--sit-primary); text-decoration: underline; }
.sit-wt-text ul, .sit-wt-text ol { font-size: 16px; line-height: 28px; padding-left: 22px; margin: 0 0 18px; }
.sit-wt-ai { display: flex; gap: 56px; margin: 96px 0; align-items: flex-start; }
.sit-wt-ai-left { flex: 0 0 320px; }
.sit-wt-ai-left p { font-size: 15px; line-height: 26px; }
.sit-wt-ai-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 36px 44px; }
.sit-wt-ai-cell { display: flex; gap: 16px; }
.sit-wt-num { font-size: 44px; line-height: 1; font-weight: 700; }
.sit-wt-ai-cell h3 { font-size: 16px; font-weight: 700; margin: 4px 0 8px; }
.sit-wt-ai-cell p { font-size: 13px; line-height: 21px; color: #666; margin: 0; }
.sit-wt-faq { margin: 96px 0 0; padding-bottom: 72px; }
.sit-wt-faq-lead { font-size: 16px; line-height: 28px; max-width: 640px; margin-bottom: 32px; }
.sit-wt-faq-link { color: #f50; text-decoration: underline; text-underline-offset: 3px; }
.sit-wt-faq-link:hover { opacity: .8; }
/* SIT-026: centered accordion column like the Figma layout */
.sit-wt-faq-acc { max-width: 640px; margin: 0 auto; }
.sit-acc-item {
  border-bottom: 1px solid #ddd8ce;
  padding: 4px 0;
}
.sit-acc-item summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 8px;
  list-style-position: outside;
}
.sit-acc-item summary:hover { color: var(--sit-primary); }
.sit-acc-item p { font-size: 14px; line-height: 25px; color: #555; padding: 0 8px 18px 24px; margin: 0; }

/* Events */
/* Events list — Figma 08: flat cards, orange hover veil, icon meta, #tags */
.sit-ev { width: 100%; max-width: 1120px; margin: 64px auto 160px; }
.sit-ev-title {
  font-size: 44px;
  line-height: 56px;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 44px;
}
.sit-ev-filters { display: flex; gap: 32px; width: 100%; margin-bottom: 48px; }
.sit-ev-select {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 0;
  min-width: 0;
  background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23f50' stroke-width='1.6' fill='none'/%3E%3C/svg%3E") right 4px center no-repeat;
  border: 0;
  border-bottom: 1.5px solid #b9b5aa;
  font-family: inherit;
  font-size: 13px;
  color: #666;
  padding: 8px 24px 8px 4px;
  cursor: pointer;
}
.sit-ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 24px; margin-top: 40px; }
.sit-ev-card { background: none; }
.sit-ev-thumb { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #ddd; }
.sit-ev-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* hover: translucent orange veil over the image (Figma Event UI spec) */
.sit-ev-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 85, 0, .4);
  opacity: 0;
  transition: opacity .18s;
}
.sit-ev-card:hover .sit-ev-thumb::after { opacity: 1; }
.sit-ev-ended {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  background: #333; color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px; padding: 4px 12px;
}
.sit-ev-body { display: block; padding: 13px 2px 0; }
.sit-ev-body h3 { font-size: 15px; line-height: 22px; font-weight: 700; margin: 0 0 9px; }
.sit-ev-meta { display: flex; align-items: flex-start; gap: 6px; font-size: 12.5px; line-height: 18px; color: #666; margin: 0 0 5px; }
.sit-ev-meta svg { width: 13px; height: 13px; flex: 0 0 auto; margin-top: 2px; color: #999; }
.sit-ev-tags { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 7px; }
.sit-ev-tag { font-size: 12px; color: #666; }
.sit-ev-tag i { font-style: normal; color: var(--sit-primary); margin-right: 2px; }
.sit-ev-link { font-size: 14px; font-weight: 700; color: var(--sit-primary); margin-top: auto; }
.sit-ev-link:hover { text-decoration: underline; }
@media (max-width: 1279px) {
  .sit-ev { padding: 0 80px; }
}
@media (max-width: 1023px) {
  .sit-ev { padding: 0 40px; }
  .sit-ev-filters { flex-wrap: wrap; gap: 18px; }
  .sit-ev-select { flex: 1 1 40%; }
}
@media (max-width: 767px) {
  .sit-ev { padding: 0 24px; margin-bottom: 120px; }
  .sit-ev-title { font-size: 34px; line-height: 44px; }
  .sit-ev-select { flex: 1 1 100%; }
}

/* Next Big */
.sit-nb-desc { font-size: 16px; line-height: 28px; max-width: 760px; margin: 0 0 48px; white-space: pre-line; }
.sit-nb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sit-nb-card { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.05); display: flex; flex-direction: column; }
.sit-nb-thumb { height: 160px; overflow: hidden; }
.sit-nb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sit-nb-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.sit-nb-tag {
  align-self: flex-start; font-size: 11px; font-weight: 700;
  color: var(--sit-blue); border: 1px solid var(--sit-blue); padding: 2px 8px; margin-bottom: 10px;
}
.sit-nb-body h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.sit-nb-body > p { font-size: 13px; line-height: 22px; color: #666; margin: 0 0 14px; }
.sit-nb-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.sit-nb-year { color: var(--sit-gray); }
.sit-nb-foot a { color: var(--sit-primary); font-weight: 700; }

/* Ecosystem landscape */
.sit-el-sec { margin: 80px 0; }
.sit-el-lead { font-size: 16px; line-height: 28px; max-width: 720px; margin: 0 0 28px; white-space: pre-line; }
.sit-el-chips { display: flex; flex-wrap: wrap; gap: 14px; }
.sit-el-chip { border: 2px solid; font-size: 15px; font-weight: 700; padding: 10px 22px; }
.sit-el-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sit-el-city { position: relative; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.05); padding: 28px 26px 30px; overflow: hidden; }
.sit-el-corner { position: absolute; top: 0; left: 0; width: 8px; height: 100%; }
.sit-el-city h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.sit-el-city p { font-size: 13px; line-height: 22px; color: #666; margin: 0; white-space: pre-line; }

/* Local partners */
.sit-lp-banner { margin-bottom: 48px; }
.sit-lp-banner img { width: 100%; max-height: 360px; object-fit: cover; }
.sit-lp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
/* legacy partner card styles replaced by Figma 05.3 layout (see bottom of file) */

@media (max-width: 1279px) {
  .sit-pg { max-width: 100%; padding: 0 80px; }
}
@media (max-width: 1023px) {
  .sit-pg { padding: 0 40px; margin-bottom: 120px; }
  .sit-wt-sec, .sit-wt-ai { flex-direction: column; gap: 28px; margin: 64px 0; }
  .sit-wt-media { flex: none; width: 100%; }
  .sit-ev-grid, .sit-nb-grid, .sit-el-cities { grid-template-columns: repeat(2, 1fr); }
  .sit-lp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .sit-pg { padding: 0 24px; }
  .sit-pg-head h1 { font-size: 36px; line-height: 48px; }
  .sit-wt-ai-grid { grid-template-columns: 1fr; }
  .sit-ev-grid, .sit-nb-grid, .sit-el-cities { grid-template-columns: 1fr; }
  .sit-lp-grid { grid-template-columns: 1fr; }
  .sit-lp-logo img { max-width: 100%; }
}

/* ─────────────────────────────────────────────────────────── */
/* HUB SUBPAGES — overview rule + FAQ accordion (per Figma)    */
/* ─────────────────────────────────────────────────────────── */
.sit-jm-rule {
  border: 0;
  border-top: 1px solid #d8d4ca;
  margin: 28px 0 48px;
  /* I-015: stop before the top-right hub map so the line never crosses it */
  width: calc(100% - 190px);
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .sit-jm-rule { width: calc(100% - 120px); }
}
.sit-jf-group {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin: 28px 0 14px;
  position: relative;
  z-index: 1;
}
.sit-jf-acc { margin-bottom: 8px; }
.sit-jf-qa {
  background: transparent;
  border: 1px solid var(--sit-primary);
  box-shadow: none;
  margin-bottom: 14px;
  padding: 0;
}
.sit-jf-qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
}
.sit-jf-qa summary::-webkit-details-marker { display: none; }
.sit-jf-toggle {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
}
.sit-jf-toggle::before,
.sit-jf-toggle::after {
  content: "";
  position: absolute;
  background: var(--sit-black);
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  margin-top: -1px;
}
.sit-jf-toggle::after { transform: rotate(90deg); transition: transform .2s; }
.sit-jf-qa[open] .sit-jf-toggle::after { transform: rotate(0deg); }
.sit-jf-qa > p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: #555;
  white-space: pre-line;
}

/* ─────────────────────────────────────────────────────────── */
/* LANDING TOPIC SUBPAGES (per Figma CONTRACTS)                */
/* ─────────────────────────────────────────────────────────── */
.sit-lt-topic-title {
  font-size: 56px;
  line-height: 70px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 12px 0 0;
  position: relative;
  z-index: 1;
}
.sit-lt-ov-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.sit-lt-ov-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  margin-top: 4px;
}
.sit-lt-faq-title {
  font-size: 34px;
  line-height: 44px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-green);
  margin: 0 0 12px;
}
.sit-lt-topic .sit-jf-hr { margin-bottom: 28px; }

/* expanded card body: answer + chips + note (per Figma) */
.sit-jf-body { padding: 0 20px 20px; }
.sit-jf-body > p {
  padding: 0 0 16px;
  margin: 0;
  font-size: 14px;
  line-height: 25px;
  color: #555;
  white-space: pre-line;
}
.sit-jf-chip {
  display: inline-block;
  background: var(--sit-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.sit-jf-note {
  background: #f6ddc8;
  font-size: 14px;
  line-height: 24px;
  color: #555;
  padding: 16px 20px;
  margin: 4px 0 6px;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .sit-lt-topic-title { font-size: 36px; line-height: 48px; }
  .sit-lt-ov-icon { width: 56px; height: 56px; }
}

/* ─────────────────────────────────────────────────────────── */
/* GE MARKET FAQ — grouped box + structured blocks (03.1.1)    */
/* ─────────────────────────────────────────────────────────── */
.sit-gx-box {
  border: 1px solid var(--sit-primary);
  padding: 4px 26px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.sit-gx-qa { border-top: 1px solid var(--sit-primary); }
.sit-gx-qa:first-of-type { border-top: 0; }
.sit-gx-qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}
.sit-gx-qa summary::-webkit-details-marker { display: none; }
.sit-gx-qa summary:hover { color: var(--sit-primary); }
.sit-gx-qa .sit-jf-toggle::before,
.sit-gx-qa .sit-jf-toggle::after { background: var(--sit-primary); }
.sit-gx-body { padding: 2px 0 26px; }
.sit-gx-body > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 26px;
  color: #444;
  white-space: pre-line;
}
.sit-gx-body > .sit-jf-chip { margin-bottom: 10px; }
.sit-gx-body > .sit-jf-note { margin: 4px 0 18px; }
.sit-gx-legal {
  font-size: 12.5px !important;
  line-height: 21px !important;
  color: #8a857c !important;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .sit-gx-box { padding: 0 16px; }
  .sit-gx-qa summary { padding: 18px 0; font-size: 15px; }
}

/* ─────────────────────────────────────────────────────────── */
/* 10 AI INITIATIVES (05.1)                                    */
/* ─────────────────────────────────────────────────────────── */
.sit-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 48px 0 120px;
}
.sit-ai-card {
  background: #fff;
  padding: 30px 34px 34px;
}
.sit-ai-card h3 { font-size: 18px; line-height: 26px; margin: 0 0 10px; }
.sit-ai-card hr { width: 36px; border: 1.25px solid var(--sit-primary); margin: 0 0 16px; }
.sit-ai-card p { font-size: 13.5px; line-height: 24px; color: #666; margin: 0; white-space: pre-line; }
@media (max-width: 767px) {
  .sit-ai-grid { grid-template-columns: 1fr; gap: 18px; margin: 32px 0 80px; }
}

/* ─────────────────────────────────────────────────────────── */
/* SHARED DETAIL DIALOG (05.3 / 05.4)                          */
/* ─────────────────────────────────────────────────────────── */
.sit-dlg {
  position: fixed;
  inset: 0;
  background: rgba(51, 51, 51, .78);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sit-dlg[hidden] { display: none; }
.sit-dlg-card {
  position: relative;
  background: #f7f5ef;
  width: 100%;
  max-width: 720px;
  max-height: 86vh;
  overflow-y: auto;
  padding: 40px 44px;
  margin-top: 80px; /* SIT-017 */
}
.sit-dlg-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: 0;
  color: var(--sit-primary);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
/* SIT-017: spacing per Figma dialog_AppWorks */
.sit-dlg-cols { display: flex; gap: 52px; }
.sit-dlg-fields { flex: 0 0 170px; }
.sit-dlg-field { border-bottom: 1px solid #ddd8cc; padding: 12px 0 14px; margin-bottom: 6px; }
.sit-dlg-field:first-child { padding-top: 0; }
.sit-dlg-field span { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.sit-dlg-field i { font-style: normal; font-size: 13.5px; line-height: 20px; color: #777; }
.sit-dlg-main { flex: 1 1 auto; min-width: 0; }
.sit-dlg-logo {
  width: 150px;
  height: 130px;
  border: 1px solid #e3ded2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.sit-dlg-logo img { max-width: 84%; max-height: 84%; object-fit: contain; }
.sit-dlg-main h4 { font-size: 15px; margin: 0 0 10px; }
.sit-dlg-main p { font-size: 13.5px; line-height: 25px; color: #555; margin: 0 0 26px; white-space: pre-line; }
.sit-dlg-more {
  display: inline-block;
  background: var(--sit-primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 26px;
}
.sit-dlg-open { cursor: pointer; }
.sit-dlg-open:hover h3 { color: var(--sit-primary); }
@media (max-width: 767px) {
  .sit-dlg { padding: 20px; }
  .sit-dlg-card { max-width: none; max-height: 82vh; padding: 52px 24px 28px; }
  /* SIT-017: description/logo block first, field list below */
  .sit-dlg-cols { flex-direction: column-reverse; gap: 24px; }
  .sit-dlg-fields { flex: none; }
  .sit-dlg-logo {
    width: calc(100vw - 60px);
    height: calc((100vw - 60px) * 0.86);
    max-width: 334px;
    max-height: 286px;
    margin-bottom: 20px;
  }
}

/* ─────────────────────────────────────────────────────────── */
/* EVENTS — pagination + detail page (08 / 08.1)               */
/* ─────────────────────────────────────────────────────────── */
.sit-ev-cardlink { display: block; color: inherit; }
.sit-ev-cardlink:hover h3 { color: var(--sit-primary); }
.sit-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 0;
}
.sit-pager-btn {
  min-width: 34px;
  height: 34px;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  border-radius: 17px;
  padding: 0 8px;
}
.sit-pager-btn:hover:not([disabled]) { color: var(--sit-primary); }
.sit-pager-btn.is-cur { background: var(--sit-primary); color: #fff; }
.sit-pager-btn[disabled] { opacity: .35; cursor: default; }

.sit-evd { max-width: 1120px; }
/* banner with the orange plate offset to the bottom-right (Figma 08.1) */
.sit-evd-hero {
  position: relative;
  margin: 8px 0 72px;
}
.sit-evd-hero::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 100%;
  height: 100%;
  background: var(--sit-primary);
  z-index: 0;
}
.sit-evd-hero img { position: relative; z-index: 1; width: 100%; display: block; }
.sit-evd-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--sit-black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  z-index: 2;
}
.sit-evd-cols { display: flex; gap: 56px; margin-bottom: 64px; }
.sit-evd-main { flex: 1 1 auto; min-width: 0; }
.sit-evd-main h1 { font-size: 30px; line-height: 42px; margin: 0 0 20px; }
.sit-evd-body { font-size: 14.5px; line-height: 27px; color: #555; white-space: pre-line; }
.sit-evd-info { flex: 0 0 300px; }
.sit-evd-info h2 { font-size: 16px; margin: 0 0 14px; }
.sit-evd-meta { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 20px; color: #555; margin: 0 0 10px; }
.sit-evd-meta svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; color: #999; }
.sit-evd-link { color: var(--sit-primary) !important; text-decoration: underline; word-break: break-all; }
.sit-evd-tags { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 14px; }
.sit-evd-recap { margin-bottom: 56px; }
.sit-evd-recap h2 { font-size: 20px; margin: 0 0 18px; }
.sit-evd-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.sit-evd-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.sit-evd-back {
  display: inline-block;
  background: var(--sit-black);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 26px;
  margin-bottom: 100px;
}
@media (max-width: 1023px) {
  .sit-evd-cols { flex-direction: column; gap: 32px; }
  .sit-evd-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .sit-evd-hero::after { top: 14px; left: 14px; }
  .sit-evd-hero { margin-bottom: 48px; }
}

/* ─────────────────────────────────────────────────────────── */
/* NEWS hover + category tag (06.1 News Item spec)             */
/* ─────────────────────────────────────────────────────────── */
.sit-news-link:hover .sit-news-title { color: var(--sit-primary); }
.sit-news-cat {
  align-self: flex-start;
  border: 1px solid var(--sit-primary);
  background: none;
  color: var(--sit-primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  margin: 8px 0 2px;
  cursor: pointer;
}
.sit-news-cat:hover { background: var(--sit-primary); color: #fff; }

/* ─────────────────────────────────────────────────────────── */
/* SIX MUNICIPALITIES (05.2)                                   */
/* ─────────────────────────────────────────────────────────── */
.sit-sm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 44px;
  margin: 40px 0 140px;
}
.sit-sm-card { background: #fff; }
.sit-sm-photo img { width: 100%; height: auto; display: block; }
.sit-sm-body { padding: 30px 34px 36px; }
.sit-sm-body h3 { font-size: 22px; line-height: 30px; margin: 0 0 10px; }
.sit-sm-body hr { width: 36px; border: 1.25px solid var(--sit-primary); margin: 0 0 18px; }
.sit-sm-body p { font-size: 13.5px; line-height: 24px; color: #555; margin: 0; }
/* Industries Showcase (old-site content, below the city grid) */
.sit-sm-ind { margin: -80px 0 140px; }
.sit-sm-ind-lead { font-size: 16px; line-height: 28px; margin: 0 0 26px; }
@media (max-width: 767px) {
  .sit-sm-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 90px; }
  .sit-sm-ind { margin: -40px 0 90px; }
}

/* ─────────────────────────────────────────────────────────── */
/* OUR LOCAL PARTNERS (05.3)                                   */
/* ─────────────────────────────────────────────────────────── */
.sit-lp-tabs {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 8px 0 44px;
}
.sit-lp-tab {
  background: none;
  border: 0;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #8b867d;
  cursor: pointer;
  padding: 2px 0 6px;
}
.sit-lp-tab:hover { color: var(--sit-primary); }
/* SIT-018: tab underline is orange */
.sit-lp-tab.is-cur { color: var(--sit-black); border-bottom: 2px solid var(--sit-primary); }
.sit-lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
  margin-bottom: 140px;
}
.sit-lp-card { background: none; padding: 0; }
.sit-lp-logo {
  background: #fff;
  aspect-ratio: 352 / 198;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sit-lp-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.sit-lp-card h3 { font-size: 15px; margin: 0 0 4px; }
.sit-lp-ind { font-size: 13px; color: #777; margin: 0 0 8px; }
.sit-lp-card .sit-ev-link { font-size: 13px; }
@media (max-width: 1023px) { .sit-lp-grid { grid-template-columns: repeat(2, 1fr); } }
/* SIT-019: one logo per row below 768px */
@media (max-width: 767px) { .sit-lp-grid { grid-template-columns: repeat(1, 1fr); gap: 28px; margin-bottom: 90px; } .sit-lp-tabs { gap: 16px; } }

/* ─────────────────────────────────────────────────────────── */
/* NEXT BIG logo tiles (05.4)                                  */
/* ─────────────────────────────────────────────────────────── */
.sit-nb-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 8px 0 160px;
  position: relative;
  z-index: 1;
}
.sit-nb-logo {
  background: #fff;
  border: 0;
  padding: 0;
  aspect-ratio: 126 / 108;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .15s;
}
.sit-nb-logo:hover { box-shadow: 0 3px 14px rgba(0,0,0,.12); }
.sit-nb-logo img { max-width: 86%; max-height: 82%; object-fit: contain; }
@media (max-width: 767px) { .sit-nb-logos { grid-template-columns: repeat(3, 1fr); margin-bottom: 100px; } }
.sit-nb-head { font-size: 34px; line-height: 44px; letter-spacing: 1px; font-weight: 700; color: var(--sit-primary); margin: 24px 0 12px; }
.sit-nb-headline { width: 44px; border: 1.5px solid var(--sit-primary); margin: 0 0 24px; }
.sit-nb-desc { max-width: 560px; }

/* NEXT BIG — indented content column + L accent hugging the logo grid (05.4) */
.sit-nb-zone { padding-bottom: 60px; }
.sit-nb-inner { max-width: 640px; }
@media (min-width: 1024px) {
  .sit-nb-inner { margin-left: 29%; }
}
.sit-nb-gridwrap {
  position: relative;
  display: inline-block;
  margin: 8px 0 120px;
}
.sit-nb-logos { margin: 0; max-width: 560px; }
.sit-nb-gridwrap::before {
  content: "";
  position: absolute;
  left: calc(100% + 52px);
  top: 96px;
  width: 64px;
  height: calc(100% + 40px);
  background: var(--sit-primary);
}
.sit-nb-gridwrap::after {
  content: "";
  position: absolute;
  left: calc(100% + 52px + 64px - 300px);
  top: calc(100% + 96px + 40px - 64px);
  width: 300px;
  height: 64px;
  background: var(--sit-primary);
}
.sit-nb-logo { border: 1px solid transparent; }
.sit-nb-logo:hover { box-shadow: none; border-color: var(--sit-primary); }
@media (max-width: 1023px) {
  .sit-nb-gridwrap { display: block; margin-bottom: 150px; }
  .sit-nb-gridwrap::before { left: auto; right: -8px; top: 60%; height: 55%; width: 48px; }
  .sit-nb-gridwrap::after { left: auto; right: -8px; top: calc(115% - 44px); width: 190px; height: 44px; }
}
/* SIT-020: two logos per row below 768px */
@media (max-width: 767px) {
  .sit-nb-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────────────── */
/* RESEARCH & REPORTS — accordion + yellow files (06.2)        */
/* ─────────────────────────────────────────────────────────── */
.sit-rp-zone { max-width: 640px; margin-left: auto; margin-right: auto; position: relative; padding-bottom: 80px; }
@media (min-width: 1024px) { .sit-rp-zone { margin-left: calc(50% - 560px + 320px); } }
.sit-rp-head {
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sit-yellow);
  margin: 24px 0 12px;
}
.sit-rp-headline { width: 44px; border: 1.5px solid var(--sit-yellow); margin: 0 0 40px; }
/* yellow L: vertical bar sits flush on top of the horizontal bar, right edges aligned */
.sit-rp-zone::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 104px;
  width: 64px;
  height: 280px;
  background: var(--sit-yellow);
  z-index: 0;
}
.sit-rp-zone::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 40px;
  width: 340px;
  height: 64px;
  background: var(--sit-yellow);
  z-index: 0;
}
.sit-rp-acc { position: relative; z-index: 1; }
.sit-rp-item { border-bottom: 1.5px solid var(--sit-primary); padding: 0 0 6px; margin-bottom: 22px; background: none; }
.sit-rp-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  font-size: 15.5px;
  line-height: 24px;
  font-weight: 700;
  padding: 6px 0 14px;
}
.sit-rp-item summary::-webkit-details-marker { display: none; }
.sit-rp-item summary:hover { color: var(--sit-primary); }
.sit-rp-item[open] > summary .sit-jf-toggle::after { transform: rotate(0deg); }
.sit-rp-item .sit-jf-toggle::before,
.sit-rp-item .sit-jf-toggle::after { background: var(--sit-primary); }
.sit-rp-body { padding: 2px 0 18px; }
.sit-rp-body p { font-size: 13.5px; line-height: 24px; color: #555; margin: 0 0 18px; white-space: pre-line; }
.sit-rp-file {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sit-yellow);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 18px;
  margin-bottom: 12px;
}
.sit-rp-file:hover { filter: brightness(1.05); }
@media (min-width: 1024px) and (max-width: 1279px) {
  .sit-rp-zone::before { right: -60px; }
  .sit-rp-zone::after { right: -60px; }
}
@media (max-width: 1023px) {
  .sit-rp-zone::before { right: -24px; bottom: 92px; height: 220px; }
  .sit-rp-zone::after { right: -24px; width: 240px; height: 52px; }
}
@media (max-width: 767px) {
  .sit-rp-zone::before { display: none; }
  .sit-rp-zone::after { right: 0; }
}

/* NEWS list — full-width rows + Figma hover/click spec (06.1) */
.sit-news-list { max-width: none; }
.sit-news-link { display: flex; gap: 36px; align-items: flex-start; width: 100%; }
.sit-news-date {
  display: block;
  width: fit-content;
  position: relative;
  border-bottom: 0;
  padding-bottom: 7px;
  margin-bottom: 10px;
}
/* underline only under the front half of the yyyy-mm-dd date */
.sit-news-date::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  border-top: 2px solid var(--sit-primary);
}
.sit-news-excerpt {
  display: block;
  font-size: 13px;
  line-height: 22px;
  color: #666;
  margin-top: 10px;
}
.sit-news-more {
  display: flex;
  width: fit-content;
  margin: 0 auto; /* SIT-024: centered */
  align-items: center;
  gap: 12px;
  background: var(--sit-black);
  color: #fff;
  border: 0;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 22px;
  cursor: pointer;
}
.sit-news-more-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  color: #fff;
  transition: background .15s, color .15s;
}
.sit-news-more:hover { background: var(--sit-black); }
.sit-news-more:hover .sit-news-more-ic { background: #fff; color: var(--sit-black); }

/* NEWS internal detail page (SIT-023) */
.sit-nd { width: 100%; max-width: 800px; margin: 72px auto 160px; padding: 0 24px; }
.sit-nd-title { font-size: 30px; line-height: 44px; font-weight: 700; margin: 0 0 14px; }
.sit-nd-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sit-nd-meta .sit-news-date { display: inline-block; width: auto; }
.sit-nd-cat { pointer-events: none; }
.sit-nd-cover { margin: 0 0 30px; }
.sit-nd-cover img { width: 100%; display: block; }
.sit-nd-body { margin-bottom: 56px; font-size: 15px; line-height: 27px; color: #444; }
.sit-nd-body p, .sit-nd-body div { margin: 0 0 18px; }
.sit-nd-body a, .sit-evd-body a { color: var(--sit-primary); text-decoration: underline; }
.sit-nd-body ul, .sit-nd-body ol, .sit-evd-body ul, .sit-evd-body ol { padding-left: 22px; margin: 0 0 18px; }
/* imported old-site article bodies: figures, captions, headings, rules */
.sit-nd-body img, .sit-evd-body img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.sit-nd-body figure, .sit-evd-body figure { margin: 26px 0; }
.sit-nd-body figcaption, .sit-evd-body figcaption { font-size: 13px; line-height: 20px; color: #888; text-align: center; margin-top: 10px; }
.sit-nd-body h2, .sit-evd-body h2 { font-size: 22px; line-height: 32px; margin: 30px 0 14px; color: #222; }
.sit-nd-body h3, .sit-evd-body h3 { font-size: 18px; line-height: 28px; margin: 26px 0 12px; color: #222; }
.sit-nd-body h4, .sit-evd-body h4 { font-size: 16px; line-height: 26px; margin: 22px 0 10px; color: #222; }
.sit-nd-body hr, .sit-evd-body hr { border: 0; border-top: 1px solid #ddd; margin: 28px 0; }
.sit-nd-body u, .sit-evd-body u { text-underline-offset: 3px; }
.sit-evd-body.is-html { white-space: normal; }
.sit-evd-body.is-html p, .sit-evd-body.is-html div { margin: 0 0 14px; }
@media (max-width: 767px) {
  .sit-nd { margin: 48px auto 120px; }
  .sit-nd-title { font-size: 24px; line-height: 36px; }
}
