:root{
  --gold: #d4af37;
  --gold-2: #c59b23;
  --gold-soft: #f0dfaa;
  --gold-light: #f7edd0;

  --black: #0f0f0f;
  --black-2: #171717;
  --black-3: #1f1f1f;

  --white: #ffffff;
  --text: #2d2d2d;
  --muted: #6a6a6a;
  --bg: #f8f6f1;
  --cream: #f6f1e6;

  --shadow: 0 14px 34px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --container: min(1180px, 92%);
}

html{
  scroll-behavior:smooth;
}

/* scope everything to landing page only */
.landing-page,
.landing-page *{
  box-sizing:border-box;
}

.landing-page{
  margin:0;
  font-family:"Segoe UI", Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

.landing-page a{
  text-decoration:none;
  color:inherit;
}

.landing-page img{
  max-width:100%;
  display:block;
}

.landing-page .container{
  width:var(--container);
  margin:0 auto;
}

/* HEADER */
.landing-page .header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(212,175,55,.20);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 4%;
}

.landing-page .brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.landing-page .brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  flex-shrink:0;
}

.landing-page .brand-text{
  min-width:0;
}

.landing-page .brand-name{
  color:var(--white);
  font-size:28px;
  font-weight:800;
  letter-spacing:.5px;
  line-height:1;
}

.landing-page .brand-tagline{
  color:rgba(255,255,255,.72);
  font-size:12px;
  letter-spacing:.6px;
  margin-top:4px;
}

.landing-page .nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.landing-page .nav-link{
  color:rgba(255,255,255,.88);
  font-weight:600;
  padding:8px 6px;
  transition:.2s ease;
  position:relative;
}

.landing-page .nav-link:hover{
  color:var(--gold);
}

.landing-page .nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s ease;
}

.landing-page .nav-link:hover::after{
  width:100%;
}

.landing-page .nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  color:var(--white);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}

/* HERO */
.landing-page .hero{
  position:relative;
  min-height:92vh;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.62)),
    url("image/hero-bg.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
}

.landing-page .hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.18), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(212,175,55,.14), transparent 30%);
  pointer-events:none;
}

.landing-page .hero-inner{
  position:relative;
  z-index:1;
  width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
  padding:60px 0;
}

.landing-page .hero-copy{
  max-width:700px;
}

.landing-page .eyebrow{
  color:var(--gold-soft);
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:14px;
}

.landing-page .hero-title{
  color:var(--white);
  font-size:clamp(38px, 5vw, 68px);
  line-height:1.05;
  margin-bottom:16px;
  font-weight:900;
}

.landing-page .hero-title span{
  color:var(--gold);
}

.landing-page .hero-subtitle{
  color:rgba(255,255,255,.84);
  max-width:62ch;
  font-size:18px;
}

.landing-page .hero-actions{
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.landing-page .btn{
  display:inline-block;
  padding:13px 20px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
}

.landing-page .btn-primary{
  background:linear-gradient(90deg, var(--gold), var(--gold-2));
  color:var(--black);
  box-shadow:0 10px 24px rgba(212,175,55,.22);
}

.landing-page .btn-primary:hover{
  transform:translateY(-2px);
}

.landing-page .btn-outline{
  border:2px solid rgba(255,255,255,.55);
  color:var(--white);
}

.landing-page .btn-outline:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.landing-page .hero-showcase{
  display:flex;
  justify-content:flex-end;
}

.landing-page .showcase-card{
  width:100%;
  max-width:470px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(212,175,55,.30);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 48px rgba(0,0,0,.25);
  backdrop-filter:blur(8px);
}

.landing-page .showcase-image{
  width:100%;
  height:310px;
  object-fit:cover;
}

.landing-page .showcase-content{
  padding:18px;
}

.landing-page .showcase-title{
  color:var(--gold);
  font-size:22px;
  font-weight:800;
  margin-bottom:6px;
}

.landing-page .showcase-text{
  color:rgba(255,255,255,.84);
}

.landing-page .hero-bottom-line{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:5px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* SECTIONS */
.landing-page .section{
  padding:82px 0;
}

.landing-page .section-light{
  background:var(--white);
}

.landing-page .section-dark{
  background:linear-gradient(135deg, #101010, #1a1a1a);
  color:var(--white);
}

.landing-page .section-cream{
  background:var(--cream);
}

.landing-page .section-kicker{
  color:var(--gold-2);
  font-size:13px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.landing-page .section-kicker.center{
  text-align:center;
}

.landing-page .section-kicker.gold{
  color:var(--gold-soft);
}

.landing-page .section-title{
  font-size:42px;
  font-weight:900;
  margin-bottom:14px;
}

.landing-page .section-title.left{
  text-align:left;
}

.landing-page .section-title.center{
  text-align:center;
}

.landing-page .section-title.dark{
  color:var(--black);
}

.landing-page .section-title.light{
  color:var(--white);
}

.landing-page .section-subtitle{
  max-width:760px;
  margin:0 auto 32px;
  text-align:center;
  color:var(--muted);
}

.landing-page .dark-subtitle{
  color:#5f5f5f;
}

.landing-page .section-text{
  margin-bottom:12px;
}

.landing-page .light-text{
  color:rgba(255,255,255,.82);
}

/* ABOUT */
.landing-page .about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.landing-page .about-copy p{
  margin-bottom:14px;
}

.landing-page .company-logo-block{
  display:flex;
  align-items:center;
  gap:14px;
  margin:20px 0 18px;
}

.landing-page .company-logo{
  width:90px;
  height:90px;
  object-fit:contain;
  flex-shrink:0;
}

.landing-page .company-name{
  font-size:44px;
  line-height:1;
  color:var(--gold-2);
  font-weight:800;
  letter-spacing:1px;
}

.landing-page .company-subname{
  color:#7c6a36;
  font-weight:700;
  letter-spacing:2px;
  font-size:13px;
}

.landing-page .media-frame{
  border:4px solid rgba(212,175,55,.8);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}

.landing-page .media-photo{
  width:100%;
  height:500px;
  object-fit:cover;
}

/* ESSENCE */
.landing-page .essence-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.landing-page .essence-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.24);
  border-radius:20px;
  padding:20px;
}

.landing-page .essence-item{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.landing-page .essence-item:last-child{
  border-bottom:none;
}

.landing-page .essence-label{
  color:var(--gold);
  font-size:24px;
  font-weight:800;
  margin-bottom:6px;
}

.landing-page .essence-desc{
  color:rgba(255,255,255,.82);
}

/* VALUES */
.landing-page .values-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-top:34px;
}

.landing-page .value-card{
  background:#fff;
  border-radius:20px;
  padding:24px 18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 24px rgba(0,0,0,.05);
  transition:.2s ease;
}

.landing-page .value-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-soft);
}

.landing-page .value-card h3{
  color:var(--black);
  margin-bottom:10px;
  font-size:22px;
}

.landing-page .value-card p{
  color:var(--muted);
}

/* CTA */
.landing-page .cta{
  background:linear-gradient(135deg, #0d0d0d, #171717);
  color:var(--white);
  padding:76px 0;
  border-top:1px solid rgba(212,175,55,.16);
}

.landing-page .cta-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:center;
}

.landing-page .cta h2{
  font-size:40px;
  margin-bottom:10px;
}

.landing-page .cta p{
  color:rgba(255,255,255,.80);
}

.landing-page .portal-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.landing-page .portal-card{
  display:block;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.20);
  border-radius:18px;
  padding:24px;
  transition:.2s ease;
  max-width:460px;
}

.landing-page .portal-card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,175,55,.52);
  background:rgba(255,255,255,.07);
}

.landing-page .portal-title{
  display:block;
  color:var(--gold);
  font-size:24px;
  font-weight:800;
  margin-bottom:6px;
}

.landing-page .portal-desc{
  color:rgba(255,255,255,.78);
  font-size:14px;
}

/* FOOTER */
.landing-page .footer{
  background:#090909;
  color:rgba(255,255,255,.82);
  padding-top:26px;
}

.landing-page .footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  padding-bottom:18px;
}

.landing-page .footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.landing-page .footer-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0;
}

.landing-page .footer-title{
  color:var(--white);
  font-weight:800;
}

.landing-page .footer-sub{
  color:rgba(255,255,255,.64);
  font-size:12px;
}

.landing-page .footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.landing-page .footer-links a:hover{
  color:var(--gold);
}

.landing-page .footer-bottom{
  text-align:center;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:rgba(255,255,255,.58);
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .landing-page .values-grid,
  .landing-page .about-grid,
  .landing-page .essence-grid,
  .landing-page .cta-inner,
  .landing-page .hero-inner{
    grid-template-columns:1fr;
  }

  .landing-page .hero-showcase{
    justify-content:flex-start;
  }

  .landing-page .media-photo{
    height:380px;
  }

  .landing-page .section{
    padding:72px 0;
  }
}

@media (max-width: 900px){
  .landing-page .nav-toggle{
    display:block;
  }

  .landing-page .nav{
    display:none;
    position:absolute;
    top:78px;
    right:4%;
    width:min(320px, 92vw);
    background:#111;
    border:1px solid rgba(212,175,55,.22);
    border-radius:16px;
    padding:12px;
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }

  .landing-page .nav.open{
    display:flex;
  }

  .landing-page .nav-link{
    display:block;
    padding:10px 12px;
    border-radius:10px;
  }

  .landing-page .nav-link::after{
    display:none;
  }

  .landing-page .nav-link:hover{
    background:rgba(255,255,255,.05);
  }

  .landing-page .brand-name{
    font-size:22px;
  }

  .landing-page .brand-tagline{
    font-size:11px;
  }

  .landing-page .hero{
    min-height:auto;
    padding:60px 0 40px;
  }

  .landing-page .hero-inner{
    gap:26px;
    padding:40px 0;
  }

  .landing-page .hero-title{
    font-size:clamp(34px, 7vw, 52px);
  }

  .landing-page .hero-subtitle{
    font-size:16px;
  }

  .landing-page .cta h2{
    font-size:34px;
  }
}

@media (max-width: 640px){
  .landing-page .header{
    padding:10px 4%;
  }

  .landing-page .brand{
    gap:10px;
  }

  .landing-page .brand-logo{
    width:44px;
    height:44px;
  }

  .landing-page .brand-name{
    font-size:18px;
  }

  .landing-page .brand-tagline{
    font-size:10px;
    letter-spacing:.4px;
  }

  .landing-page .section-title{
    font-size:32px;
  }

  .landing-page .hero-title{
    font-size:42px;
  }

  .landing-page .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .landing-page .btn{
    text-align:center;
    width:100%;
  }

  .landing-page .showcase-image{
    height:240px;
  }

  .landing-page .media-photo{
    height:280px;
  }

  .landing-page .company-logo-block{
    align-items:flex-start;
  }

  .landing-page .company-name{
    font-size:34px;
  }

  .landing-page .company-subname{
    font-size:11px;
    letter-spacing:1.2px;
  }

  .landing-page .cta{
    padding:60px 0;
  }

  .landing-page .cta h2{
    font-size:28px;
  }

  .landing-page .portal-card{
    padding:20px;
  }

  .landing-page .portal-title{
    font-size:22px;
  }

  .landing-page .footer-inner{
    align-items:flex-start;
    flex-direction:column;
  }

  .landing-page .footer-links{
    gap:10px 14px;
  }
}