:root {
  --black: #050505;
  --dark: #0b0b0b;
  --panel: #111111;
  --gold: #c88a2d;
  --gold-light: #d7a24b;
  --white: #f3f0e8;
  --grey: #c8c8c8;
  --border: rgba(255,255,255,0.14);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
  background:var(--black);
  color:var(--white);
  font-family:Arial, Helvetica, sans-serif;
}

.page{
  width:100%;
  overflow:hidden;
}

a{
  text-decoration:none;
}

/* =========================
HEADER
========================= */

.header{
  padding:20px 40px;
  background:#040404;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #111;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo{
  width:150px;
  height:150px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-title,
.footer-brand{
  font-size:42px;
  font-weight:900;
  letter-spacing:1px;
}

.brand-ko{
  color:var(--gold);
  font-size:36px;
  margin-top:4px;
}

.header-cta{
  border:1px solid var(--gold);
  color:var(--gold-light);
  padding:16px 28px;
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
  transition:.3s;
}

.header-cta:hover{
  background:var(--gold);
  color:#111;
}

/* =========================
HERO
========================= */

.hero{
  min-height:calc(100vh - 190px);

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.98) 0%,
      rgba(0,0,0,0.92) 35%,
      rgba(0,0,0,0.50) 60%,
      rgba(0,0,0,0.10) 100%
    ),
    url("images/1.jpg") 78% center / contain no-repeat;

  display:flex;
  align-items:center;
  justify-content:flex-start;

  padding:70px 54px;

  position:relative;

  border-bottom:1px solid var(--border);
}

.hero-text{
  max-width:760px;
  z-index:2;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(58px, 8vw, 110px);
  line-height:.92;
  letter-spacing:3px;
  font-weight:950;
}

.hero h2{
  color:var(--gold);
  text-transform:uppercase;
  font-size:clamp(24px, 3vw, 42px);
  line-height:1.18;
  margin:0;
}

.line{
  width:92px;
  height:4px;
  background:var(--gold);
  margin:28px 0;
}

.hero p{
  font-size:24px;
  line-height:1.5;
  color:#eee;
}

.hero-hangul{
  position:absolute;
  right:55px;
  top:50%;
  transform:translateY(-50%);
  font-size:110px;
  line-height:1.15;
  color:rgba(255,255,255,.07);
  font-weight:900;
}

.gold-btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#111;
  padding:18px 34px;
  margin-top:18px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.4px;
  transition:.3s;
}

.gold-btn:hover{
  transform:scale(1.05);
}

/* =========================
ABOUT
========================= */

.about-row{
  display:grid;
  grid-template-columns:1.35fr 1fr 1.05fr;
  border-bottom:1px solid var(--border);
}

.about-box{
  min-height:365px;
  padding:32px;
  background:linear-gradient(180deg,#111,#070707);
  border-right:1px solid var(--border);
}

.about-box h2{
  margin:0 0 18px;
  font-size:28px;
  text-transform:uppercase;
  line-height:1.1;
}

.about-box h3{
  color:var(--gold);
  margin:0 0 12px;
  font-size:22px;
}

.about-box p,
.about-box li{
  color:#dedede;
  line-height:1.55;
  font-size:15px;
}

.about-main span{
  color:var(--gold-light);
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
  text-align:center;
}

.value-icon{
  color:var(--gold);
  font-size:38px;
}

.values-grid h3{
  font-size:13px;
  text-transform:uppercase;
  color:var(--white);
}

.values-grid p{
  font-size:12px;
}

.founder-box,
.master-box{
  display:grid;
  grid-template-columns:42% 58%;
  gap:20px;
  padding:0;
}

.founder-box > div,
.master-box > div{
  padding:32px 22px 24px 0;
}

.founder-box img,
.master-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
PLACES
========================= */

.places{
  padding:0 40px;
  background:#080808;
}

.places h2{
  margin:0;
  padding:18px 0 12px;
  text-align:center;
  text-transform:uppercase;
  font-size:32px;
}

.places-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.place-card{
  min-height:270px;
  background-size:cover;
  background-position:center;
  position:relative;
  border:1px solid var(--border);
  overflow:hidden;
}

.place-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.82),
    rgba(0,0,0,.25)
  );
}

.place-content{
  position:relative;
  z-index:2;
  padding:28px;
  max-width:430px;
}

.place-content h3{
  font-size:38px;
  margin:0;
  text-transform:uppercase;
}

.place-content span{
  display:inline-block;
  background:var(--gold);
  color:#111;
  padding:6px 12px;
  margin:8px 0 12px;
  text-transform:uppercase;
  font-weight:900;
  font-size:14px;
}

.place-content p,
.place-content li{
  color:#eee;
  font-size:14px;
  line-height:1.45;
}

.place-content a{
  display:inline-block;
  margin-top:8px;
  border:1px solid var(--gold);
  color:var(--gold);
  padding:9px 16px;
  text-transform:uppercase;
  font-weight:800;
}

/* =========================
PROGRESSION
========================= */

.progression{
  padding:25px 40px 34px;
  background:#080808;
}

.progression h2{
  margin:0;
  text-align:center;
  text-transform:uppercase;
  font-size:32px;
}

.progression > p{
  text-align:center;
  margin:2px 0 22px;
  color:#ccc;
}

.plans-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:26px;
}

.plan{
  min-height:170px;
  padding:22px 18px;
  background:#101010;
  border:1px solid rgba(255,255,255,.20);
  text-align:center;
}

.belt-img{
  width:92px;
  height:auto;
  margin-bottom:12px;
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.7));
}

.plan h3{
  margin:5px 0 6px;
  text-transform:uppercase;
  font-size:17px;
}

.plan h4{
  margin:0 0 12px;
  text-transform:uppercase;
  color:#fff;
  font-size:15px;
}

.plan p{
  margin:0;
  font-size:13px;
  color:#d6d6d6;
  line-height:1.45;
}

.plan.yellow h3{
  color:#ced016;
}

.plan.green h3{
  color:#46d016;
}

.plan.blue h3{
  color:#1669d0;
}

.plan.red h3{
  color:#d02816;
}

.plan.black h3{
  color:gray;
}

/* =========================
CTA
========================= */

.final-cta{
  position:relative;
  padding:90px 20px;
  background:url("images/6.jpg") center/cover no-repeat;
  text-align:center;
  overflow:hidden;
}

.final-cta::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.70) 0%,
      rgba(0,0,0,.30) 35%,
      rgba(0,0,0,.30) 65%,
      rgba(0,0,0,.70) 100%
    );

  z-index:1;
}

.cta-center{
  position:relative;
  z-index:2;
  max-width:1000px;
  margin:auto;
}

.final-cta h2{
  font-size:36px;
  margin-bottom:10px;
}

.final-cta h3{
  color:var(--gold);
  margin-bottom:25px;
}

.cta-icons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px 40px;
  margin-bottom:30px;
}

.cta-icons span{
  position:relative;
  padding-left:14px;
  width:220px;
  text-align:left;
  font-size:14px;
  color:#eee;
}

.cta-icons span::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:2px;
  height:18px;
  background:var(--gold);
}

/* =========================
FOOTER
========================= */

.footer{
  display:grid;
  grid-template-columns:1fr 1fr 1.25fr;
  gap:42px;
  padding:35px 55px;
  background:#090909;
  border-top:1px solid #222;
}

.footer h3{
  text-transform:uppercase;
  margin:0 0 12px;
}

.footer p{
  color:#ccc;
  line-height:1.45;
  margin:6px 0;
}

form{
  display:flex;
  margin-top:12px;
}

input{
  flex:1;
  padding:14px;
  background:#111;
  border:1px solid rgba(255,255,255,.25);
  color:white;
}

button{
  background:var(--gold);
  border:none;
  padding:14px 22px;
  color:#111;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

.legal{
  padding:14px 55px;
  background:#050505;
  color:#777;
  font-size:13px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width:1100px){

  .about-row{
    grid-template-columns:1fr;
  }

  .founder-box,
  .master-box{
    grid-template-columns:280px 1fr;
  }

  .plans-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 620px;
  background: #0d0d0d;
  border: 1px solid var(--gold);
  padding: 34px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-content h2 {
  margin-top: 0;
  color: var(--gold);
  text-transform: uppercase;
}

.modal-content p {
  color: #ddd;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 34px;
  cursor: pointer;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid rgba(255,255,255,.25);
  color: white;
}

.modal-content textarea {
  min-height: 110px;
  resize: vertical;
}

@media (max-width:760px){

  .header{
    flex-direction:column;
    gap:14px;
    padding:20px;
  }

  .brand{
    justify-content:center;
  }

  .logo{
    width:90px;
    height:90px;
  }

  .brand-title{
    font-size:24px;
  }

  .brand-ko{
    font-size:20px;
  }

  .header-cta{
    width:100%;
    max-width:320px;
    text-align:center;
  }

  .hero{
    min-height:680px;

    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.92) 55%,
        rgba(0,0,0,1) 100%
      ),
      url("images/1.jpg") center top / cover no-repeat;

    padding:42px 24px;
  }

  .hero h1{
    font-size:54px;
  }

  .hero h2{
    font-size:26px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-hangul{
    display:none;
  }

  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .founder-box,
  .master-box{
    grid-template-columns:1fr;
  }

  .founder-box img,
  .master-box img{
    height:320px;
  }

  .founder-box > div,
  .master-box > div{
    padding:24px;
  }

  .places{
    padding-left:18px;
    padding-right:18px;
  }

  .places-grid{
    grid-template-columns:1fr;
  }

  .plans-grid{
    grid-template-columns:1fr;
  }

  .footer{
    grid-template-columns:1fr;
    padding:30px 24px;
  }

  form{
    flex-direction:column;
  }

  button{
    width:100%;
  }

  .legal{
    padding:14px 24px;
  }

}

@media (max-width:480px){

  .hero h1{
    font-size:42px;
  }

  .hero h2{
    font-size:20px;
  }

  .about-box h2,
  .places h2,
  .progression h2,
  .final-cta h2{
    font-size:25px;
  }

  .values-grid{
    grid-template-columns:1fr;
  }

  .place-content h3{
    font-size:30px;
  }

}