@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing */
/*
  content-edge：內容版心與瀏覽器邊界的預設距離
  section-py：section 上下留白
  如果不需要上下 padding，可用 .section-py--mobile-0 等類別局部去除。
*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* Text Block Padding */
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* Text Block Padding */
/* =========================================
  📐 Spacing Layout System v2

  規則：
  - .section-py       = section 上下留白，貼在 <section>
  - .section-pt       = section 上方留白，貼在 <section>
  - .section-pb       = section 下方留白，貼在 <section>
  - .container        = 置中內容最大寬度
  - .content-px       = 非 container 內容的左右安全距離
  - .content-ps       = 左側對齊版心，右側可貼邊
  - .content-pe       = 右側對齊版心，左側可貼邊
  - .txt-p*           = 文字區塊內距，用於圖文版型的圖文距離
  - *--mobile-0       = 手機歸零，桌機恢復

  手機滿版用法：
  <section class="section-py">
    <img>
    <div class="content-px">文字</div>
  </section>
========================================= */
/* ─── Root Tokens ────────────────────────────────────────── */
:root {
  --content-edge: clamp(40px, 1.71px + 9.82vw, 99px);
  --container-max-width: 100%;
  --section-py: clamp(37.3px, -0.14px + 9.6vw, 95px);
  --txt-px: clamp(24px, 7.95px + 4.11vw, 48.7px);
  --txt-py: clamp(15.7px, -0.07px + 4.04vw, 40px);
}

@media (min-width: 992px) {
  :root {
    --content-edge: clamp(108.5px, 10.94vw, 210px);
    --container-max-width: clamp(775px, 78.13vw, 1500px);
    --section-py: clamp(62px, 6.25vw, 120px);
    --txt-px: clamp(32px, -2.21px + 3.45vw, 64px);
    --txt-py: clamp(74.4px, 7.5vw, 144px);
  }
}
/* ─── Content Width ──────────────────────────────────────── */
.container {
  width: var(--container-max-width, 100%);
  max-width: none;
  padding-inline: 0;
}

.content-px {
  padding-inline: var(--content-edge);
}

.content-px--mobile-0 {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .content-px--mobile-0 {
    padding-inline: var(--content-edge);
  }
}

.content-ps {
  padding-inline-start: var(--content-edge);
}

.content-ps--mobile-0 {
  padding-inline-start: 0;
}
@media (min-width: 992px) {
  .content-ps--mobile-0 {
    padding-inline-start: var(--content-edge);
  }
}

.content-pe {
  padding-inline-end: var(--content-edge);
}

.content-pe--mobile-0 {
  padding-inline-end: 0;
}
@media (min-width: 992px) {
  .content-pe--mobile-0 {
    padding-inline-end: var(--content-edge);
  }
}

/* ─── Text Block Padding ─────────────────────────────────── */
.txt-px {
  padding-inline: var(--txt-px);
}

.txt-py {
  padding-block: var(--txt-py);
}

.txt-ps {
  padding-inline-start: var(--txt-px);
}

.txt-pe {
  padding-inline-end: var(--txt-px);
}

.txt-pt {
  padding-block-start: var(--txt-py);
}

.txt-pb {
  padding-block-end: var(--txt-py);
}

@media (min-width: 992px) {
  .txt-lg-ps {
    padding-inline-start: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-px {
    padding-inline: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-py {
    padding-block: var(--txt-py);
  }
}

@media (min-width: 992px) {
  .txt-lg-pe {
    padding-inline-end: var(--txt-px);
  }
}

@media (min-width: 992px) {
  .txt-lg-pt {
    padding-block-start: var(--txt-py);
  }
}

@media (min-width: 992px) {
  .txt-lg-pb {
    padding-block-end: var(--txt-py);
  }
}

/* ─── Section Padding ────────────────────────────────────── */
.section-py {
  padding-block: var(--section-py);
}

.section-pt {
  padding-top: var(--section-py);
}

.section-pb {
  padding-bottom: var(--section-py);
}

.section-py--mobile-0 {
  padding-block: 0;
}
@media (min-width: 992px) {
  .section-py--mobile-0 {
    padding-block: var(--section-py);
  }
}

.section-pt--mobile-0 {
  padding-top: 0;
}
@media (min-width: 992px) {
  .section-pt--mobile-0 {
    padding-top: var(--section-py);
  }
}

.section-pb--mobile-0 {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .section-pb--mobile-0 {
    padding-bottom: var(--section-py);
  }
}

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.66;
  letter-spacing: 0.04em;
  font-size: 1rem;
}
@media (max-width: 991px) {
  body {
    font-size: 0.9rem;
  }
}

/* ========================
  🏷 Page Typography Patterns
  語意標題 class — 全站共用標題組合樣式
  修改此處即可全站同步，不需逐一改 section
  需要差異化時，在 style.scss 內的 pageXX 局部覆蓋
======================== */
/* 英文裝飾大標（LOCATION / CONCEPT 等）
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-en-title {
  font-size: clamp(2.25rem, 25.7px + 3.21vw, 4.5rem);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.page-en-title__gradient {
  background: linear-gradient(312deg, #000000 0%, #6e8800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 中文主標題
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-zh-title {
  font-size: clamp(1.2rem, 15.5px + 1.14vw, 2rem);
  font-family: "Noto Serif HK", "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  line-height: 1.8;
  white-space: nowrap;
  margin-bottom: 0;
}
.page-zh-title__gradient {
  background: linear-gradient(312deg, #000000 0%, #6e8800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 中文次標題（Optional）modifier: --primary */
.page-zh-subtitle {
  font-family: "Noto Serif HK", "Noto Serif TC", "PMingLiU", serif;
  font-weight: 400;
  font-size: clamp(14.5px, -2.05px + 4.24vw, 40px);
  color: #6e8800;
}

/* 英文次標題（Optional）modifier: --primary */
.page-en-subtitle {
  font-family: "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 15.8px + 0.57vw, 1.5rem);
}

/* 中文小標籤（Optional）modifier: --primary */
.page-zh-label {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}

/* 英文小標籤（Optional）modifier: --primary */
.page-en-label {
  font-family: "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}

/* 圖說 / 註解（Optional）
  字體切換：直接加 .font-* class
   modifier: --primary */
.page-caption {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 400;
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}

/* ========================
  📢 Slogan（廣告標語系統）
  用於 Banner / Footer 品牌訴求語
  字體切換：直接加 .font-* class
======================== */
/* 廣告標語容器：無預設對齊，搭配 .text-spread 啟用字元均分 */
.slogan-wrap {
  max-width: 100%;
  margin-inline: auto;
}

/* 標語字級一（最大） modifier: --primary */
.page-slogan-heading1 {
  font-family: "Noto Serif HK", "Noto Serif TC", "PMingLiU", serif;
  font-weight: normal;
  letter-spacing: 0.3rem;
  line-height: 1.8;
  font-size: clamp(1.5rem, 17.1px + 2.14vw, 3rem);
}

/* 標語字級二（次大） modifier: --primary */
.page-slogan-heading2 {
  font-family: "Noto Serif HK", "Noto Serif TC", "PMingLiU", serif;
  font-size: clamp(1.25rem, 14px + 1.5vw, 2.4rem);
}

/* 標語字級三（中） modifier: --primary */
.page-slogan-heading3 {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.1rem, 12px + 0.9vw, 1.8rem);
}

/* 標語小標籤（小） modifier: --primary */
.page-slogan-label {
  font-family: "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  color: #6e8800;
  font-size: clamp(0.65rem, 9.9px + 0.14vw, 0.75rem);
}

/* ========================
  ✨ Text Decoration Utilities
======================== */
/* 字元均分
  1. 加在 .slogan-wrap 上 → 所有子行統一均分：<div class="slogan-wrap text-spread">
  2. 單一元素獨立使用 → <h2 class="page-slogan-heading1 text-spread">
   兩者都需在 style.scss 設定 width */
.text-spread {
  max-width: 100%;
  margin-inline: auto;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  white-space: nowrap;
}

/* 文字左右對齊*/
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (min-width: 992px) {
  .text-lg-justify {
    text-align: justify !important;
    text-justify: inter-ideograph;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

/* 最後一行對齊，搭配 .text-justify / .text-lg-justify 使用 */
.text-last-start {
  -moz-text-align-last: start;
       text-align-last: start;
}

.text-last-center {
  -moz-text-align-last: center;
       text-align-last: center;
}

.text-last-end {
  -moz-text-align-last: end;
       text-align-last: end;
}

.text-last-justify {
  -moz-text-align-last: justify;
       text-align-last: justify;
}

@media (min-width: 992px) {
  .text-last-lg-start {
    -moz-text-align-last: start;
         text-align-last: start;
  }
}

@media (min-width: 992px) {
  .text-last-lg-center {
    -moz-text-align-last: center;
         text-align-last: center;
  }
}

@media (min-width: 992px) {
  .text-last-lg-end {
    -moz-text-align-last: end;
         text-align-last: end;
  }
}

@media (min-width: 992px) {
  .text-last-lg-justify {
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
}

/* 線條夾文字
  顏色繼承父層，深色背景自動變白：<p class="title-lined text-white">
   用法：<p class="title-lined page-slogan-heading3"> */
.title-lined {
  display: flex;
  align-items: center;
}
.title-lined::before, .title-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.title-lined::before {
  margin-right: 1.5rem;
}
.title-lined::after {
  margin-left: 1.5rem;
}

/* ========================
  🔤 Font System
======================== */
.font-zh-sans {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

.font-zh-serif {
  font-family: "Noto Serif HK", "Noto Serif TC", "PMingLiU", serif;
}

.font-en-sans {
  font-family: "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
}

.font-en-serif {
  font-family: "Playfair Display", "Times New Roman", serif;
}

/*
  .txt-wrap 標準結構：
  .txt-wrap
    ├── .txt-title    → 標題群組（label / title / subtitle）
    ├── .txt-body     → 段落內文（<p> 自動套用對齊規則）
    └── small.page-caption
*/
@media (max-width: 991px) {
  .txt-title.text-center .page-en-title,
  .txt-title.text-center .page-zh-title,
  .txt-title.text-center .page-zh-subtitle {
    display: flex;
    justify-content: center;
  }
  .txt-title.text-center .page-en-title span,
  .txt-title.text-center .page-zh-title span,
  .txt-title.text-center .page-zh-subtitle span {
    display: inline-block;
    white-space: nowrap;
  }
}
/* ========================
  🎞 Plugins
======================== */
/* slick */
.slick-prev {
  left: 0;
  z-index: 10;
}
.slick-prev:before {
  content: "\f284";
}

.slick-next {
  right: 0;
}
.slick-next:before {
  content: "\f285";
}

.slick-next,
.slick-prev {
  width: auto;
  height: auto;
}

.slick-prev:before,
.slick-next:before {
  font-family: bootstrap-icons !important;
  font-size: 3rem;
}

.slick-dots li.slick-active button:before {
  color: #6e8800;
}

@media (min-width: 992px) {
  .slick-slider.is-multiple .slick-list {
    margin-inline: clamp(-13px, 0.45px - 0.7vw, -6.5px);
  }
  .slick-slider.is-multiple .slick-slide {
    padding-inline: clamp(6.5px, -0.45px + 0.7vw, 13px);
  }
}
/* fancybox */
.fancybox-navigation {
  height: 100vh;
}

/* ========================
  📐 Section Layout
======================== */
/* --- 高度 ---
  手機 / 平板直向：min-height: 100svh
  桌機橫向（≥1200px）：aspect-ratio: 16/9
  加 .is-fullscreen 可強制所有裝置皆 100svh
*/
section {
  width: 100%;
  min-width: 100vw;
}

@media (orientation: landscape) and (min-width: 992px) {
  .section-screen {
    min-height: unset;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.section-screen.is-fullscreen {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (orientation: landscape) and (min-width: 992px) {
  .section-screen.is-fullscreen {
    aspect-ratio: unset;
    min-height: 100svh;
  }
}

/* --- 垂直對齊（需搭配高度 class 或自訂高度才有效果） --- */
.section-v-center {
  display: flex;
  align-items: center;
}

.section-v-between {
  display: flex;
  align-items: stretch;
}
.section-v-between > .container,
.section-v-between > .container-fluid {
  flex: 1 1 auto;
}

/* ========================
  🖼 Image
======================== */
/*
  .img-wrap 支援兩種內部結構：

  舊版（background-image）：
  <div class="img-wrap">
    <div class="img-ratio">
      <div class="img-bg" style="background-image: url(xxx.jpg);"></div>
    </div>
    <div class="img-caption">說明</div>
  </div>

  新版（<img> + aspect-ratio）：
  <div class="img-wrap">
    <img class="img-cover" style="aspect-ratio: 10/7;"
        src="xxx.jpg" alt="..." loading="lazy">
    <div class="img-caption">說明</div>
  </div>
*/
.img-wrap {
  position: relative;
}
.img-wrap a {
  display: block;
}
.img-wrap .img-ratio {
  position: relative;
  width: 100%;
  padding-top: 70%;
  aspect-ratio: var(--ratio);
}
@media (max-width: 991px) {
  .img-wrap .img-ratio {
    aspect-ratio: var(--ratio-m, var(--ratio));
  }
}
.img-wrap .img-ratio .img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.img-wrap.img-gradient::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 23/5;
  background: linear-gradient(123deg, rgba(0, 0, 0, 0) 32.84%, rgb(0, 0, 0) 100%);
  mask: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask: linear-gradient(to bottom, transparent 0%, black 100%);
  pointer-events: none;
}
.img-wrap.img-gradient .img-caption {
  z-index: 2;
}

.img-cover {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: var(--ratio, 3/2);
}
@media (max-width: 991px) {
  .img-cover {
    aspect-ratio: var(--ratio-m, var(--ratio, 3/2));
  }
}

.img-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  text-align: right;
  padding: 3px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.678);
  font-size: clamp(7.9px, 0.05px + 2.01vw, 20px);
}
@media (min-width: 992px) {
  .img-caption {
    font-size: clamp(9.3px, 0.94vw, 18px);
  }
}

/* ========================
  🗺 google Map Embed 
======================== */
.map-embed iframe {
  display: block;
  width: 100% !important;
  height: clamp(300px, 50vh, 700px) !important;
  border: none;
}

/* ========================
  🎭 Stage / Layer（分層進場）
======================== */
.stage-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage,
.layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

html.is-draft {
  --draft-line-width: 2px;
  --draft-bootstrap-color: rgba(255, 193, 7, .28);
  --draft-bootstrap-border: rgba(255, 193, 7, .85);
  --draft-content-padding-color: rgba(0, 132, 255, .18);
  --draft-content-padding-border: rgba(0, 132, 255, .75);
  --draft-txt-padding-color: rgba(255, 0, 180, .16);
  --draft-txt-padding-border: rgba(255, 0, 180, .75);
}
@media (min-width: 992px) {
  html.is-draft {
    --draft-line-width: 1px;
  }
}
html.is-draft body {
  position: relative;
}
html.is-draft body::after {
  content: "";
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0% 21.5%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  border: 2px solid blue;
  opacity: 0.2;
}
@media (min-width: 992px) {
  html.is-draft body::after {
    background-position: 0% 0%;
  }
}
html.is-draft body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 32' preserveAspectRatio='none'%3E%3Cg font-family='Arial,sans-serif' font-size='18' font-weight='700' text-anchor='middle' dominant-baseline='middle' fill='red' stroke='white' stroke-width='4' paint-order='stroke'%3E%3Ctext x='50' y='16'%3E1%3C/text%3E%3Ctext x='150' y='16'%3E2%3C/text%3E%3Ctext x='250' y='16'%3E3%3C/text%3E%3Ctext x='350' y='16'%3E4%3C/text%3E%3Ctext x='450' y='16'%3E5%3C/text%3E%3Ctext x='550' y='16'%3E6%3C/text%3E%3Ctext x='650' y='16'%3E7%3C/text%3E%3Ctext x='750' y='16'%3E8%3C/text%3E%3Ctext x='850' y='16'%3E9%3C/text%3E%3Ctext x='950' y='16'%3E10%3C/text%3E%3Ctext x='1050' y='16'%3E11%3C/text%3E%3Ctext x='1150' y='16'%3E12%3C/text%3E%3C/g%3E%3C/svg%3E"), repeating-linear-gradient(90deg, transparent 0, transparent calc(8.3333333333% - var(--draft-line-width)), red calc(8.3333333333% - var(--draft-line-width)), red 8.3333333333%);
  background-repeat: no-repeat, repeat;
  background-size: 100% 32px, auto;
  background-position: center, 0 0;
}
html.is-draft .container {
  border: var(--draft-line-width) solid rgb(0, 26, 255);
}
html.is-draft .container > .row {
  position: relative;
}
html.is-draft .container > .row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  border: var(--draft-line-width) solid rgb(0, 255, 51);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 32' preserveAspectRatio='none'%3E%3Cg font-family='Arial,sans-serif' font-size='18' font-weight='700' text-anchor='middle' dominant-baseline='middle' fill='rgb(0,255,51)' stroke='white' stroke-width='4' paint-order='stroke'%3E%3Ctext x='50' y='16'%3E1%3C/text%3E%3Ctext x='150' y='16'%3E2%3C/text%3E%3Ctext x='250' y='16'%3E3%3C/text%3E%3Ctext x='350' y='16'%3E4%3C/text%3E%3Ctext x='450' y='16'%3E5%3C/text%3E%3Ctext x='550' y='16'%3E6%3C/text%3E%3Ctext x='650' y='16'%3E7%3C/text%3E%3Ctext x='750' y='16'%3E8%3C/text%3E%3Ctext x='850' y='16'%3E9%3C/text%3E%3Ctext x='950' y='16'%3E10%3C/text%3E%3Ctext x='1050' y='16'%3E11%3C/text%3E%3Ctext x='1150' y='16'%3E12%3C/text%3E%3C/g%3E%3C/svg%3E"), linear-gradient(to right, rgba(123, 255, 0, 0.1) 0, rgba(123, 255, 0, 0.1) calc(100% - var(--draft-line-width)), rgb(0, 255, 51) calc(100% - var(--draft-line-width)), rgb(0, 255, 51) 100%);
  background-repeat: no-repeat, repeat;
  background-size: 100% 32px, 8.3333333333% 100%;
  background-position: center, 0 0;
}
html.is-draft .container > .row::after {
  content: "";
  position: absolute;
  inset-block: calc(var(--bs-gutter-y) / -2);
  inset-inline: 0;
  z-index: 998;
  pointer-events: none;
  border-block: 1px dashed var(--draft-bootstrap-border);
}
html.is-draft .container > .row > [class^=col],
html.is-draft .container > .row > [class*=" col"] {
  position: relative;
  outline: 1px dashed var(--draft-bootstrap-border);
  outline-offset: calc(var(--draft-line-width) * -1);
}
html.is-draft .container > .row > [class^=col]::before,
html.is-draft .container > .row > [class*=" col"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background-image: linear-gradient(90deg, var(--draft-bootstrap-color) 0, var(--draft-bootstrap-color) calc(var(--bs-gutter-x) / 2), transparent calc(var(--bs-gutter-x) / 2), transparent calc(100% - var(--bs-gutter-x) / 2), var(--draft-bootstrap-color) calc(100% - var(--bs-gutter-x) / 2), var(--draft-bootstrap-color) 100%);
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0,
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  --draft-content-ps: 0px;
  --draft-content-pe: 0px;
  --draft-txt-ps: 0px;
  --draft-txt-pe: 0px;
  --draft-txt-pt: 0px;
  --draft-txt-pb: 0px;
  outline-offset: calc(var(--draft-line-width) * -1);
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0 {
  outline: 1px dashed var(--draft-content-padding-border);
}
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  outline: 1px dashed var(--draft-txt-padding-border);
}
html.is-draft .content-px {
  --draft-content-ps: var(--content-edge);
  --draft-content-pe: var(--content-edge);
}
html.is-draft .content-ps {
  --draft-content-ps: var(--content-edge);
}
html.is-draft .content-pe {
  --draft-content-pe: var(--content-edge);
}
@media (min-width: 992px) {
  html.is-draft .content-px--mobile-0 {
    --draft-content-ps: var(--content-edge);
    --draft-content-pe: var(--content-edge);
  }
  html.is-draft .content-ps--mobile-0 {
    --draft-content-ps: var(--content-edge);
  }
  html.is-draft .content-pe--mobile-0 {
    --draft-content-pe: var(--content-edge);
  }
  html.is-draft .ps-lg-0 {
    --draft-content-ps: 0px;
    --draft-txt-ps: 0px;
  }
  html.is-draft .pe-lg-0 {
    --draft-content-pe: 0px;
    --draft-txt-pe: 0px;
  }
  html.is-draft .pt-lg-0 {
    --draft-txt-pt: 0px;
  }
  html.is-draft .pb-lg-0 {
    --draft-txt-pb: 0px;
  }
}
html.is-draft .content-px,
html.is-draft .content-ps,
html.is-draft .content-pe,
html.is-draft .content-px--mobile-0,
html.is-draft .content-ps--mobile-0,
html.is-draft .content-pe--mobile-0 {
  box-shadow: inset var(--draft-content-ps) 0 0 var(--draft-content-padding-color), inset calc(var(--draft-content-pe) * -1) 0 0 var(--draft-content-padding-color);
}
html.is-draft .txt-px {
  --draft-txt-ps: var(--txt-px);
  --draft-txt-pe: var(--txt-px);
}
html.is-draft .txt-py {
  --draft-txt-pt: var(--txt-py);
  --draft-txt-pb: var(--txt-py);
}
html.is-draft .txt-ps {
  --draft-txt-ps: var(--txt-px);
}
html.is-draft .txt-pe {
  --draft-txt-pe: var(--txt-px);
}
html.is-draft .txt-pt {
  --draft-txt-pt: var(--txt-py);
}
html.is-draft .txt-pb {
  --draft-txt-pb: var(--txt-py);
}
@media (min-width: 992px) {
  html.is-draft .txt-lg-px {
    --draft-txt-ps: var(--txt-px);
    --draft-txt-pe: var(--txt-px);
  }
  html.is-draft .txt-lg-py {
    --draft-txt-pt: var(--txt-py);
    --draft-txt-pb: var(--txt-py);
  }
  html.is-draft .txt-lg-ps {
    --draft-txt-ps: var(--txt-px);
  }
  html.is-draft .txt-lg-pe {
    --draft-txt-pe: var(--txt-px);
  }
  html.is-draft .txt-lg-pt {
    --draft-txt-pt: var(--txt-py);
  }
  html.is-draft .txt-lg-pb {
    --draft-txt-pb: var(--txt-py);
  }
}
html.is-draft .txt-px,
html.is-draft .txt-py,
html.is-draft .txt-ps,
html.is-draft .txt-pe,
html.is-draft .txt-pt,
html.is-draft .txt-pb,
html.is-draft .txt-lg-px,
html.is-draft .txt-lg-py,
html.is-draft .txt-lg-ps,
html.is-draft .txt-lg-pe,
html.is-draft .txt-lg-pt,
html.is-draft .txt-lg-pb {
  box-shadow: inset var(--draft-txt-ps) 0 0 var(--draft-txt-padding-color), inset calc(var(--draft-txt-pe) * -1) 0 0 var(--draft-txt-padding-color), inset 0 var(--draft-txt-pt) 0 var(--draft-txt-padding-color), inset 0 calc(var(--draft-txt-pb) * -1) 0 var(--draft-txt-padding-color);
}

/* ========================
  🔧 Base
======================== */
*,
*::before,
*::after {
  position: relative;
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overflow-y: auto;
  background-color: #6e8800;
  background-image: url(../images/img/bg-img.jpg);
  background-position: center top;
  background-size: contain;
  background-repeat: repeat;
}

body {
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* ========================
  🎨 Color System
======================== */
:root {
  --color-primary: #6e8800;
  --color-primary-hover: #444f13;
  --color-secondary: #bea850;
  --color-secondary-hover: #a68915;
  --color-gray: #888888;
  --color-gray-hover: #656565;
  --bs-primary: #6e8800;
  --bs-primary-rgb: 110, 136, 0;
  --bs-secondary: #bea850;
  --bs-secondary-rgb: 190, 168, 80;
  --bs-link-color: #6e8800;
  --bs-link-hover-color: #444f13;
}

.text-gray {
  color: #888888 !important;
}

.bg-gray {
  background-color: #888888 !important;
}

.border-gray {
  border-color: #888888 !important;
}

.form-check-input:checked {
  background-color: #6e8800 !important;
  border-color: #6e8800 !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6e8800;
  --bs-btn-border-color: #6e8800;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #444f13;
  --bs-btn-hover-border-color: #444f13;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #444f13;
  --bs-btn-active-border-color:#444f13;
  --bs-btn-focus-shadow-rgb: 110, 136, 0;
}

.btn-outline-primary {
  --bs-btn-color: #6e8800;
  --bs-btn-border-color: #6e8800;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6e8800;
  --bs-btn-hover-border-color: #6e8800;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #444f13;
  --bs-btn-active-border-color:#444f13;
  --bs-btn-focus-shadow-rgb: 110, 136, 0;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #a68915;
  --bs-btn-hover-border-color: #a68915;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-outline-secondary {
  --bs-btn-color: #bea850;
  --bs-btn-border-color: #bea850;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bea850;
  --bs-btn-hover-border-color: #bea850;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #a68915;
  --bs-btn-active-border-color:#a68915;
  --bs-btn-focus-shadow-rgb: 190, 168, 80;
}

.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #656565;
  --bs-btn-hover-border-color: #656565;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

.btn-outline-gray {
  --bs-btn-color: #888888;
  --bs-btn-border-color: #888888;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #888888;
  --bs-btn-hover-border-color: #888888;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #656565;
  --bs-btn-active-border-color:#656565;
  --bs-btn-focus-shadow-rgb: 136, 136, 136;
}

/* ========================
  🎭 form
======================== */
.form-control {
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.596);
}
.form-control:focus {
  color: #333333;
  background-color: #fff;
  border-color: #6e8800;
  outline: 0;
  box-shadow: 0 0 10px 3px rgba(110, 136, 0, 0.44);
}

/* ========================
  🔗 Link / Button
======================== */
a,
.btn {
  text-decoration: none;
  border-radius: 0;
}
a:hover,
.btn:hover {
  text-decoration: none;
}

a:focus,
button:focus {
  outline: none !important;
}

p {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */