@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap');
/* ===== Variables ===== */
:root {
  --green: #3c4531;
  --green-dark: #2d331f;
  --cream: #f2ede1;
  --black: #17170f;
  --tan: #a8935f;
  --white: #ffffff;
  --text-dark: #262620;
  /*--font: 'Helvetica Neue', Arial, "Noto Sans TC", sans-serif;*/
  --font: "Montserrat","Noto Sans TC", serif;
  --container-width: 1440px;
}

/*
* { box-sizing: border-box; margin: 0; padding: 0; }
*/
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--tan);
  margin-bottom: 8px;
}

.eyebrow.center { text-align: center; }

.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: opacity .2s ease;
}
.btn:hover { opacity: 0.8; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.main-nav a:hover { color: var(--tan); }

.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* ===== Hero ===== */
.hero { width: 100%; }
.hero-img { width: 100%; /*height: 60vh;*/ min-height: 380px; object-fit: cover; }

/* ===== Welcome ===== */
.welcome { background: var(--cream); padding: 90px 0 60px; }
.welcome-inner { text-align: center; max-width: 720px; }
.welcome-inner h1 { font-size: 38px; font-weight: 700; margin-bottom: 22px; color: var(--text-dark); }
.welcome-copy { font-size: 15px; color: #555; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.feature-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.feature-card:hover .feature-card-overlay,
.feature-card:focus-within .feature-card-overlay {
  opacity: 1;
  transform: translateY(0);
}
.feature-card-overlay h3 {
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.feature-card-overlay p {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ===== Section heading pattern ===== */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 80px;
  padding-bottom: 30px;
}
.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.section-tagline {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-style: italic;
  font-weight: 700;
}
.classes-intro .section-tagline {
  font-weight: 700;
  font-style: italic;
}

/* ===== Classes intro ===== */
.classes-intro {
  background: var(--green);
  color: var(--white);
  padding-bottom: 70px;
}
.classes-intro .section-heading h2 { color: var(--white); }
.classes-copy {
  max-width: 900px;
  font-size: 15px;
  color: #e3e3d8;
}

/* ===== korformer section ===== */
.korformer-section {
  position: relative;
  background: var(--cream);
  padding: 90px 0 100px;
  overflow: hidden;
}
.bg-number {
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 220px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.korformer-section .container,
.private-training .container { position: relative; z-index: 1; }

.korformer-section h2 { font-size: 30px; font-weight: 700; margin-bottom: 18px; }
.center-copy {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tabs .box{
  width: max-content;
  border-radius: 100px;
  display: flex;
  background-color: var(--cream);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.35);
  margin: 0 auto;
}
.tabs .box .tab{
  border-radius: 100px;
  border: none; 
}
.tab {
  padding: 12px 22px;
  border: 1px solid var(--green);
  background: transparent;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--green);
  transition: background .2s ease, color .2s ease;
}
.tab.active,
.tab:hover {
  background: var(--green);
  color: var(--white);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.tab-panel.active { display: grid; }
.tab-panel img { width: 100%; border-radius: 2px; }
.tab-panel-copy h3 { font-size: 22px; font-weight: 700; margin: 6px 0 16px; }
.tab-panel-copy p { font-size: 14px; color: #555; }

/* ===== Private Training ===== */
.private-training {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.private-training .bg-number { color: rgba(255,255,255,0.06);  right: 55%;}
.private-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.private-copy h2 { font-size: 30px; font-weight: 700; margin: 6px 0 20px; }
.private-copy p { font-size: 14px; color: #d6d8cc; margin-bottom: 16px; }
.private-img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }

/* ===== Membership ===== */
.membership { background: var(--black); color: var(--white); padding-bottom: 90px; }
.membership .section-heading h2 { color: var(--white); }
.membership-copy {
  max-width: var(--container-width);
  font-size: 14px;
  color: #cfcfc4;
  margin: 0 auto 40px;
  
}
.membership-copy p { margin-bottom: 14px; }
.membership-copy strong { color: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: transparent;
  max-width: var(--container-width);
  margin: 0 auto;
 
}
.price-card {
  position: relative;
  overflow: hidden;
  background: #c7c8ba;
  color: var(--text-dark);
  padding: 26px 20px;
  min-height: 100%;
  text-align: center;
  border-radius: 4px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform .7s ease, opacity .3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.price-card:hover::before {
  opacity: 1;
  transform: translateX(100%);
}
.price-card.highlight { background: var(--green); color: var(--white); }
.price-card h4 {
  font-size: 15px;
  margin-bottom: 18px;
  min-height: 40px;
  font-weight: 700;
}
.price-card ul li {
  font-size: 12.5px;
  padding: 2px 0;
}
.price-card ul li.sub-label {
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  padding-top: 16px;
  font-weight: 600;
}
.price-card.highlight ul li.sub-label { color: #cfd8bd; }

/* ===== New to Pike Six ===== */
.new-to-pike { background: var(--cream); padding-bottom: 90px; }
.new-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}
.new-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*border-radius: 24px;*/
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  border-radius: 20px;
  background: #faf7ed;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.steps li.active {
  background: var(--green-dark);
  color: #fff;
  border-color: transparent;
}
.steps li:hover {
  transform: translateX(8px);
  box-shadow: rgba(0,0,0,0.12) 0px 18px 30px;
  background: var(--green-dark);
  color: #fff;
  border-color: transparent;
}
.steps li:hover .icon-download{
  background-image: url(img/download_1_light.png) !important;
}
.steps li:hover .icon-check{
  background-image: url(img/Union_light.png) !important;
}
.steps li:hover .icon-book{
  background-image: url(img/clipboard_1_light.png) !important;
}
.steps li:hover .icon-bag{
  background-image: url(img/briefcase_2_light.png) !important;
}
.steps li:hover .icon-clock{
  background-image: url(img/clock_1_light.png) !important;
}
.steps li:hover .icon-people{
  background-image: url(img/users_1_light.png) !important;
}
.steps li:hover:not(.active) {
  /*background: #f3f1e6;*/
}
.steps li:hover .step-icon,
.steps li:hover .step-num,
.steps li:hover h4,
.steps li:hover p {
  color: inherit;
}
.steps:hover > li:not(:hover) {
  opacity: 0.88;
}
.steps li > div {
  overflow: hidden;
}
.steps p {
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin .25s ease;
}
.steps li:hover p,
.steps li:focus-within p,
.steps li.active p {
  max-height: 240px;
  opacity: 1;
  margin-top: 10px;
}
.step-num {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(60,69,49,0.12);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
}
.steps li.active .step-num {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.step-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(0,0,0,0.45);
  background: rgba(120,125,111,0.12);
  font-size: 18px;
}
.steps li.active .step-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
/*.icon-download::before { content: "⤓"; }*/
.icon-download{
  background-image: url(img/download_1.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
/*.icon-check::before { content: "✔"; }*/
.icon-check{
  background-image: url(img/Union.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
/*.icon-book::before { content: "📋"; }*/
.icon-book{
  background-image: url(img/clipboard_1.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
/*.icon-bag::before { content: "🎒"; }*/
.icon-bag{
  background-image: url(img/briefcase_2.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
/*.icon-clock::before { content: "⏰"; }*/
.icon-clock{
  background-image: url(img/clock_1.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
/*.icon-people::before { content: "👥"; }*/
.icon-people{
  background-image: url(img/users_1.png) !important;
  background-color: transparent !important;
  background-position: center;
  background-repeat: no-repeat;
}
.steps h4 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.steps p {
  margin: 0;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
  line-height: 1.65;
}
.steps li.active p {
  color: rgba(255,255,255,0.85);
}
@media (max-width: 900px) {
  .new-inner { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: var(--black); color: #cfcfc4; padding: 70px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}
.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
  color: #888;
}
.booking {
    position: fixed;
    z-index: 50;
    right: 0;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 156px;
    background-color: #E5A930;
    border-radius: 15px 0 0 15px;
}
/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .feature-cards { grid-template-columns: 1fr; }
  .tab-panel { grid-template-columns: 1fr; }
  .private-inner { grid-template-columns: 1fr; padding-top: 32px;  padding-bottom: 32px;}
  .new-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { flex-direction: column; align-items: flex-start; }
  .section-tagline { text-align: left; }
  .bg-number { font-size: 140px; }
  .membership-copy{ padding: 32px;  }
  .pricing-grid{ padding-left: 32px; padding-right: 32px; }
  .private-training .bg-number{
    right: 5%;
  }
}

@media (max-width: 900px) {
  .site-header .header-inner { position: relative; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 20px 32px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open { display: flex; }
}

@media (max-width: 600px) {
  .welcome-inner h1 { font-size: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
