:root{
  --bg: #0b0b0c;
  --gold-1: #f6dfa0;
  --gold-2: #d8a94e;
  --silver: #c7cacd;
  --text: #f3f1ec;
  --text-dim: #b7b2a6;
  --line: rgba(216,169,78,0.28);
  --radius-btn: 3px;
  --font-body: "Open Sans", sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ---------- HEADER ---------- */
.site-header{
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, #0d0d0e 0%, #0b0b0c 100%);
  position: relative;
  z-index: 20;
  padding: 8px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 92px;
}

.brand{
  display:flex;
  align-items:center;
}

.brand-mark{
  width:180px;
}

.header-address{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 80px;
  color:var(--gold-1);
  font-size:12px;
  font-weight:400;
  letter-spacing:.2px;
}

.header-address svg{
  flex-shrink:0;
  width:20px;
  height:20px;
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  background-image: url('./assets/background.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow:hidden;
  padding: 70px 0 40px;
  width: 100%;
}

.hero-inner{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items:center;
  min-height: 560px;
}

.hero-eyebrow{
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--text);
}

.hero-copy h1{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 64px;
  line-height: .75;
  letter-spacing: 3px;
  margin-top: 26px;
  color: var(--gold-2);
}

.hero-copy h1 span{
  color: var(--silver);
  font-size: 48px;
  margin-top: 2px;
}

.hero-rule{
  display:flex;
  align-items:center;
  gap: 14px;
  margin: 22px 0 22px;
}

.hero-rule .line{
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.hero-rule .scissors{
  color: var(--gold-2);
  font-size: 16px;
  transform: rotate(90deg);
}

.hero-desc{
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
  font-weight: 300;
}

.hero-actions{
  display:flex;
  gap: 14px;
  margin-top: 34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap: 9px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius-btn);
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-icon{ width:16px; height:16px; }

.btn-gold{
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1));
  color: #171208;
  border: 1px solid transparent;
}
.btn-gold:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(216,169,78,0.25); }

.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover{ border-color: var(--gold-1); color: var(--gold-1); transform: translateY(-1px); }

/* ---------- HERO VISUAL ---------- */
.hero-visual{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(62vw, 500px);
  transform: translate(-50%, -50%);
}

.hero-visual img{
  width: 100%;
  max-width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.55));
}

/* ---------- FEATURES ---------- */
.features{
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0d0d0e;
  padding: 34px 0;
}

.features-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0;
}

.feature{
  display:flex;
  align-items:flex-start;
  gap: 14px;
}

.feature-icon{
  flex-shrink:0;
  width: 80px; height:80px;
  border-radius:50%;
  /* border: 1px solid var(--line); */
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-1);
}
.feature-icon svg{ 
  width: 80px; 
  height: 80px; 
}

.feature h3{
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
  text-transform: uppercase;
}

.feature p{
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 300;
  max-width: 200px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px){
  .hero-inner{ grid-template-columns: 1fr; text-align:center; }
  .hero-copy{ display:flex; flex-direction:column; align-items:center; }
  .hero-rule{ justify-content:center; }
  .hero-desc{ margin: 0 auto; }
  .hero-visual{ width: min(72vw, 680px); }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .container{ padding: 0 22px; }
  .header-inner{ height: 76px; }
  .header-address{
    gap:6px;
    margin-left:14px;
    font-size:9px;
    line-height:1.35;
  }
  .header-address svg{ width:17px; height:17px; }
  .hero-copy h1{ font-size: 38px; }
  .hero-actions{ flex-direction:column; width:100%; }
  .btn{ justify-content:center; }
  .features-grid{ grid-template-columns: 1fr; }
  .hero-inner{
    display:flex;
    flex-direction:column;
  }
  .hero-visual{
    position:relative;
    order:-1;
    top:auto;
    left:auto;
    width: min(94vw, 560px);
    margin: 0 auto 24px;
    transform:none;
  }
  .hero-copy{ order:1; }
}
