:root{
  --bg:#070707;
  --text:#f4efe8;
  --muted:#aaa39a;
  --gold:#d4ad63;
  --line:rgba(255,255,255,.11);
  --card:rgba(255,255,255,.035);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 55% 30%,rgba(212,173,99,.10),transparent 34%),
    linear-gradient(180deg,#0a0908,#050505);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
}
a{text-decoration:none;color:inherit}
.container{
  width:min(1360px,86vw);
  margin:0 auto;
}
.header{
  height:78px;
  border-bottom:1px solid var(--line);
  background:rgba(5,5,5,.86);
}
.header-inner{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:Georgia,serif;
  color:var(--gold);
  letter-spacing:.18em;
  line-height:1.2;
  font-size:14px;
}
.nav{display:flex;gap:34px;color:var(--muted);font-size:14px}
.top-btn{
  border:1px solid rgba(212,173,99,.45);
  border-radius:999px;
  padding:12px 30px;
  color:#fff;
  font-size:14px;
}

.hero{
  min-height:760px;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns:520px 370px 330px;
  gap:44px;
  align-items:center;
}
.label{
  color:var(--gold);
  letter-spacing:.25em;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  margin-bottom:28px;
}
h1{
  margin:0;
  font-family:Georgia,serif;
  font-weight:500;
  font-size:72px;
  line-height:1.02;
  letter-spacing:-.04em;
}
.hero-textbox p{
  margin:30px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}
.actions{display:flex;gap:14px;margin-top:34px}
.btn{
  height:54px;
  border-radius:999px;
  padding:0 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  border:0;
  cursor:pointer;
}
.btn.main{background:#f4efe8;color:#070707}
.btn.ghost{background:transparent;color:#fff;border:1px solid var(--line)}

.hero-photo{
  height:480px;
  border-radius:28px;
  border:1px solid var(--line);
  background:
    linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.10)),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1200&auto=format&fit=crop");
  background-size:cover;
  background-position:center;
}
.hero-info{
  border-left:1px solid var(--line);
  padding-left:34px;
}
.info{
  padding:24px 0;
  border-bottom:1px solid var(--line);
}
.info:last-child{border-bottom:0}
.info h3{
  margin:0 0 10px;
  font-family:Georgia,serif;
  font-size:24px;
  font-weight:500;
}
.info p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.section{
  padding:84px 0;
  border-bottom:1px solid var(--line);
}
.section-head{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:90px;
  margin-bottom:36px;
}
h2{
  margin:0;
  font-family:Georgia,serif;
  font-size:54px;
  font-weight:500;
  letter-spacing:-.03em;
}
.section-head p,.request p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--card);
  padding:30px;
  min-height:190px;
}
.card span{color:rgba(255,255,255,.35)}
.card h3{
  margin:22px 0 12px;
  font-family:Georgia,serif;
  font-size:30px;
  font-weight:500;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.brands{
  padding:34px 0;
  border-bottom:1px solid var(--line);
}
.brand-row{
  display:flex;
  justify-content:space-between;
  gap:30px;
  color:rgba(244,239,232,.48);
  font-family:Georgia,serif;
  font-size:28px;
}

.request{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:90px;
}
.form{
  border:1px solid var(--line);
  border-radius:26px;
  background:var(--card);
  padding:28px;
}
input,textarea{
  width:100%;
  margin-bottom:14px;
  padding:17px;
  border-radius:15px;
  border:1px solid var(--line);
  background:#0b0b0b;
  color:#fff;
  font-size:16px;
}
textarea{min-height:135px}
.footer{padding:34px 0;color:var(--muted)}

@media(max-width:1400px){
  .container{width:min(1240px,90vw)}
  .hero-grid{grid-template-columns:470px 330px 300px;gap:32px}
  h1{font-size:64px}
}
@media(max-width:1050px){
  .hero{padding:70px 0}
  .hero-grid,.section-head,.cards,.request{grid-template-columns:1fr}
  .hero-photo{height:380px}
  .hero-info{border-left:0;padding-left:0}
  .brand-row{flex-wrap:wrap}
}
@media(max-width:700px){
  .nav{display:none}
  .container{width:92vw}
  h1{font-size:46px}
  h2{font-size:38px}
  .actions{flex-direction:column}
  .btn{width:100%}
}
