:root{
  --black:#000000;
  --ink:#f7f5ef;
  --muted:rgba(247,245,239,.72);
  --soft:rgba(247,245,239,.18);
  --line:rgba(247,245,239,.28);
  --gold:#d3bd72;
  --gold-dark:#a68d45;
  --footer:#050505;
  --ease:cubic-bezier(.22,1,.36,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  min-width:320px;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:var(--black);
  font-size:14px;
  line-height:1.55;
  text-rendering:geometricPrecision;
}

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

.page{
  width:100%;
  overflow:hidden;
  background:var(--black);
}

.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  isolation:isolate;
  margin:0;
  padding:0;
}

.carousel,
.carousel__slide,
.hero::after{
  position:absolute;
  inset:0;
}

.carousel{
  z-index:-3;
  background:var(--black);
}

.carousel__slide{
  opacity:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.045);
  animation:crossfade 25s infinite;
  will-change:opacity, transform;
}

.carousel__slide:nth-child(1){animation-delay:0s;}
.carousel__slide:nth-child(2){animation-delay:5s;}
.carousel__slide:nth-child(3){animation-delay:10s;}
.carousel__slide:nth-child(4){animation-delay:15s;}
.carousel__slide:nth-child(5){animation-delay:20s;}

@keyframes crossfade{
  0%{opacity:0;transform:scale(1.055);}
  4%{opacity:1;transform:scale(1.045);}
  20%{opacity:1;transform:scale(1.015);}
  24%{opacity:0;transform:scale(1.005);}
  100%{opacity:0;transform:scale(1.055);}
}

.hero__overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 18% 76%, rgba(211,189,114,.18), transparent 24rem),
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 42%, rgba(0,0,0,.60) 100%);
}

.hero__overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.60);
  mix-blend-mode:multiply;
}

.hero__inner{
  width:min(1180px, 100%);
  margin:0 auto;
  min-height:100vh;
  min-height:100svh;
  padding:68px clamp(28px, 5vw, 72px) 74px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:54px;
}

.brand{
  display:flex;
  align-items:center;
  gap:28px;
  letter-spacing:.58em;
  text-transform:uppercase;
  font-weight:800;
  color:rgba(247,245,239,.92);
}

.brand__mark{
  width:88px;
  height:88px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid rgba(247,245,239,.35);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--ink);
  font-family:Georgia, "Times New Roman", serif;
  font-size:28px;
  letter-spacing:0;
  box-shadow:0 0 0 1px rgba(0,0,0,.34) inset;
}

.brand__name{
  font-size:20px;
  line-height:1.35;
  white-space:nowrap;
}

.hero__content{
  width:min(760px, 100%);
  padding-bottom:2vh;
}

.kicker{
  display:flex;
  align-items:center;
  gap:34px;
  margin:0 0 48px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.54em;
  font-weight:800;
  font-size:15px;
}

.kicker::before{
  content:"";
  display:block;
  width:104px;
  height:1px;
  background:var(--gold);
}

h1{
  margin:0;
  color:#fff;
  font-size:clamp(56px, 8.4vw, 116px);
  line-height:.96;
  letter-spacing:-.07em;
  font-weight:900;
  max-width:980px;
}

.hero__text{
  margin:48px 0 0;
  max-width:700px;
  color:var(--muted);
  font-size:clamp(27px, 3.2vw, 44px);
  line-height:1.58;
  letter-spacing:.01em;
  font-weight:520;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-top:64px;
}

.button{
  min-height:74px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 54px;
  border-radius:999px;
  border:1px solid rgba(247,245,239,.28);
  background:rgba(20,20,20,.78);
  color:#fff;
  font-size:17px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 18px 70px rgba(0,0,0,.38);
  backdrop-filter:blur(10px);
  transition:transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
}

.button:hover,
.button:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(247,245,239,.52);
  background:rgba(40,40,40,.86);
}

.button--primary{
  background:linear-gradient(180deg, #ddca82 0%, #c6ad61 100%);
  border-color:transparent;
  color:#0a0a0a;
  min-width:310px;
}

.button--primary:hover,
.button--primary:focus-visible{
  background:linear-gradient(180deg, #e8d691 0%, #cdb666 100%);
}

.scroll-note{
  display:flex;
  align-items:center;
  gap:14px;
  color:rgba(247,245,239,.55);
  letter-spacing:.26em;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
}

.scroll-note::before{
  content:"";
  width:36px;
  height:1px;
  background:rgba(247,245,239,.32);
}

.footer{
  background:var(--footer);
  border-top:1px solid rgba(247,245,239,.08);
  padding:64px clamp(28px, 5vw, 72px);
}

.footer__inner{
  width:min(1180px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 1.6fr;
  gap:42px;
  align-items:start;
}

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

.footer p{
  margin:0;
  color:rgba(247,245,239,.62);
}

.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:flex-end;
}

.footer__links a{
  border:1px solid rgba(247,245,239,.16);
  border-radius:999px;
  padding:13px 18px;
  color:rgba(247,245,239,.82);
  background:rgba(255,255,255,.03);
  transition:border-color .28s var(--ease), background .28s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible{
  border-color:rgba(211,189,114,.58);
  background:rgba(211,189,114,.09);
}

.credit{
  grid-column:1 / -1;
  padding-top:22px;
  border-top:1px solid rgba(247,245,239,.10);
  text-align:right;
  font-size:13px;
}

.credit strong{
  color:#fff;
  font-weight:900;
}

@media (max-width:760px){
  .hero__inner{
    padding:42px 28px 54px;
    gap:52px;
  }

  .brand{
    gap:20px;
    letter-spacing:.38em;
  }

  .brand__mark{
    width:70px;
    height:70px;
    font-size:24px;
  }

  .brand__name{
    font-size:13px;
    white-space:normal;
  }

  .kicker{
    gap:22px;
    margin-bottom:40px;
    font-size:12px;
    letter-spacing:.42em;
  }

  .kicker::before{
    width:104px;
  }

  h1{
    font-size:clamp(58px, 18vw, 86px);
    max-width:10ch;
  }

  .hero__text{
    margin-top:46px;
    font-size:clamp(28px, 8vw, 40px);
    line-height:1.70;
  }

  .actions{
    display:grid;
    gap:20px;
    margin-top:58px;
  }

  .button{
    width:100%;
    min-height:78px;
    padding:0 28px;
    font-size:17px;
  }

  .button--primary{
    min-width:0;
  }

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

  .footer__links{
    justify-content:flex-start;
  }

  .footer__links a{
    width:100%;
  }

  .credit{
    text-align:left;
  }
}

@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition:none !important;
  }
  .carousel__slide:first-child{opacity:1;}
}
