:root{
  --navy:#111B2A;
  --navy-soft:#1B2B42;
  --gold:#9A742B;
  --gold-light:#C39B4A;
  --cream:#F7F2EA;
  --cream-2:#FBF8F2;
  --line:#E7D9C4;
  --text:#4B4F57;
  --white:#FFFFFF;
  --shadow:0 24px 60px rgba(17,27,42,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--cream-2);
  line-height:1.7;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(22px, 6vw, 86px);
  background:rgba(251,248,242,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(231,217,196,.75);
}

.brand img{
  width:58px;
  height:auto;
}

.nav{
  display:flex;
  align-items:center;
  gap:34px;
  color:var(--navy);
  font-weight:700;
  font-size:14px;
  letter-spacing:.01em;
}

.nav a{
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s ease;
}

.nav a:hover::after{width:100%}

.nav-toggle{
  display:none;
  border:0;
  background:none;
  width:34px;
  height:34px;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--navy);
  margin:8px 0;
}

.hero{
  min-height:680px;
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(380px, 1.15fr);
  align-items:center;
  gap:50px;
  padding:86px clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 42% 16%, rgba(195,155,74,.12), transparent 34%),
    linear-gradient(110deg, var(--cream-2) 0%, #fffaf3 50%, var(--cream) 100%);
  overflow:hidden;
}

.eyebrow{
  margin:0 0 12px;
  color:var(--gold);
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

h1,h2,h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--navy);
  line-height:1.02;
  margin:0;
  font-weight:700;
}

h1{
  font-size:clamp(54px, 7vw, 102px);
  letter-spacing:-.045em;
  max-width:760px;
}

h1 em{
  display:block;
  color:var(--gold);
  font-style:italic;
  font-weight:600;
  letter-spacing:-.035em;
}

.subhead{
  margin:24px 0 18px;
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--gold);
  font-size:clamp(22px, 2vw, 30px);
  font-style:italic;
}

.intro{
  max-width:610px;
  margin:0;
  font-size:18px;
  color:#555861;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:38px;
}

.btn{
  min-width:184px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:58px;
  padding:0 28px;
  border-radius:4px;
  font-weight:800;
  transition:.25s ease;
}

.btn-primary{
  background:var(--gold);
  color:white;
  box-shadow:0 16px 34px rgba(154,116,43,.18);
}

.btn-primary:hover{
  background:#866223;
  transform:translateY(-2px);
}

.btn-secondary{
  color:var(--navy);
  border:1.5px solid var(--navy);
  background:rgba(255,255,255,.38);
}

.btn-secondary:hover{
  background:var(--navy);
  color:#fff;
}

.hero-image{
  border-radius:0 0 0 120px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:500px;
}

.hero-image img{
  width:100%;
  height:100%;
  min-height:500px;
  object-fit:cover;
}

.section{
  padding:84px clamp(22px, 7vw, 112px);
}

.about{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(300px, .75fr);
  gap:72px;
  align-items:center;
  background:#fff;
}

.rule{
  width:64px;
  height:3px;
  display:block;
  background:var(--gold);
  margin-bottom:24px;
}

.rule.centered{
  margin-left:auto;
  margin-right:auto;
}

.section h2,
.section-title h2,
.cta h2{
  font-size:clamp(42px, 4.3vw, 68px);
  letter-spacing:-.035em;
  margin-bottom:28px;
}

.section-copy p{
  max-width:660px;
  margin:0 0 20px;
  font-size:17px;
}

.about-panel{
  min-height:420px;
  display:flex;
  align-items:flex-end;
  padding:42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.56), rgba(247,242,234,.96)),
    url("../img/perfumes-js-crop.jpg") center/cover;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.about-panel p{
  max-width:390px;
  margin:0;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:34px;
  line-height:1.1;
  color:var(--navy);
}

.benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:var(--cream-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:58px clamp(22px, 7vw, 112px);
}

.benefits article{
  padding:0 34px;
  text-align:center;
  border-right:1px solid var(--line);
}

.benefits article:last-child{border-right:0}
.icon{
  display:block;
  margin-bottom:18px;
  color:var(--gold);
  font-size:42px;
  line-height:1;
}
.benefits h3{
  font-size:30px;
  margin-bottom:12px;
}
.benefits p{
  margin:0 auto;
  max-width:280px;
  font-size:14px;
}

.products{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:70px;
  background:#fff;
}

.product-list{
  border:1px solid var(--line);
  background:rgba(251,248,242,.62);
}

.product-list article{
  display:grid;
  grid-template-columns:minmax(250px, .78fr) 1.22fr;
  gap:28px;
  align-items:center;
  padding:32px 46px;
  border-bottom:1px solid var(--line);
}

.product-list article:last-child{border-bottom:0}
.product-list h3{
  font-size:31px;
}
.product-list p{
  margin:0;
  font-size:16px;
}

.process{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:52px;
  background:var(--cream-2);
  border-top:1px solid var(--line);
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.steps article{
  position:relative;
  padding:0 12px;
}

.steps article:not(:last-child)::after{
  content:"›";
  position:absolute;
  right:-18px;
  top:26px;
  color:var(--navy);
  font-size:38px;
  font-weight:300;
}

.steps strong{
  display:block;
  color:var(--gold);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:54px;
  line-height:1;
  margin-bottom:12px;
}

.steps h3{
  font-size:25px;
  margin-bottom:10px;
}

.steps p{
  margin:0;
  font-size:14px;
  line-height:1.55;
}

.brand-band{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  min-height:430px;
  background:var(--cream);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.band-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.band-quote{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:60px;
}

.band-quote p{
  margin:0;
  max-width:520px;
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--navy);
  font-size:clamp(34px, 3.4vw, 54px);
  line-height:1.12;
}

.band-quote span{
  color:var(--gold);
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:80px;
  line-height:1;
}

.cta{
  text-align:center;
  padding:76px 22px 82px;
  background:#fff;
}

.cta h2{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:18px;
}

.cta p{
  max-width:600px;
  margin:0 auto 30px;
  font-size:17px;
}

.footer{
  display:grid;
  grid-template-columns:1.2fr .9fr 1fr;
  gap:42px;
  padding:54px clamp(22px, 7vw, 112px);
  background:var(--cream-2);
  border-top:1px solid var(--line);
  color:var(--navy);
}

.footer-logo{
  width:82px;
  margin-bottom:18px;
}

.footer h4{
  margin:0 0 14px;
  color:var(--gold);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.14em;
}

.footer a,
.footer p{
  display:block;
  margin:0 0 8px;
  font-size:14px;
}

.footer a:hover{color:var(--gold)}

@media (max-width: 980px){
  .hero,
  .about,
  .products,
  .process,
  .brand-band{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:58px;
    min-height:auto;
  }

  .hero-image{
    border-radius:40px;
  }

  .benefits{
    grid-template-columns:repeat(2,1fr);
  }

  .benefits article:nth-child(2){border-right:0}
  .benefits article:nth-child(1),
  .benefits article:nth-child(2){
    padding-bottom:34px;
    margin-bottom:34px;
    border-bottom:1px solid var(--line);
  }

  .steps{
    grid-template-columns:repeat(2,1fr);
  }

  .steps article::after{display:none}

  .footer{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .site-header{
    height:74px;
    padding:0 20px;
  }

  .brand img{width:48px}

  .nav-toggle{display:block}

  .nav{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:18px 22px 26px;
    background:var(--cream-2);
    border-bottom:1px solid var(--line);
    box-shadow:0 20px 40px rgba(17,27,42,.08);
  }

  .nav.is-open{display:flex}

  .nav a{
    width:100%;
    padding:13px 0;
  }

  .hero{
    gap:34px;
    padding:44px 22px 62px;
  }

  h1{font-size:56px}
  .intro{font-size:16px}
  .btn{width:100%}

  .section{
    padding:60px 22px;
  }

  .section h2,
  .section-title h2,
  .cta h2{
    font-size:44px;
  }

  .about-panel{
    min-height:320px;
    padding:30px;
  }

  .benefits{
    grid-template-columns:1fr;
    padding:48px 22px;
  }

  .benefits article{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:0 0 30px;
    margin-bottom:30px;
  }

  .benefits article:last-child{
    border-bottom:0;
    margin-bottom:0;
    padding-bottom:0;
  }

  .product-list article{
    grid-template-columns:1fr;
    padding:28px 24px;
    gap:12px;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .brand-band{
    min-height:auto;
  }

  .band-image img{
    height:360px;
  }

  .band-quote{
    padding:44px 22px;
  }

  .band-quote span{
    font-size:50px;
  }

  .cta{
    padding:62px 22px;
  }
}
