:root{
  --black:#050505;
  --dark:#101010;
  --panel:#141414;
  --panel-soft:#1a1a1a;
  --cream:#ede2d0;
  --muted:#b2a592;
  --red:#8f1c12;
  --red-bright:#bc261a;
  --gold:#caa25c;
  --line:rgba(255,255,255,.12);
  --line-strong:rgba(255,255,255,.2);
  --shadow:0 35px 90px rgba(0,0,0,.48);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--black);
  color:var(--cream);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit;border:0;background:none;cursor:pointer}
.wrap{width:min(1180px,88vw);margin:auto}

.nav{
  position:fixed;
  inset:0 0 auto;
  z-index:50;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:14px 0;
}
.brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-mark{
  width:58px;
  height:58px;
  min-width:58px;
  min-height:58px;
  flex:0 0 58px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.15);
}
.brand-type{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-kicker{
  color:var(--gold);
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.brand-name{
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
  font-size:.96rem;
}
.brand-name span{color:#d43224}

.nav-tools{
  display:flex;
  align-items:center;
  gap:18px;
}
.menu{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:.76rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.menu a{transition:color .2s ease}
.menu a:hover{color:#fff}

.lang-switch{
  display:inline-flex;
  padding:4px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.lang-btn{
  min-width:46px;
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:background .2s ease,color .2s ease;
}
.lang-btn.active,
.lang-btn[aria-pressed="true"]{
  background:var(--gold);
  color:#120d08;
}

.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  align-items:center;
  padding:120px 0 70px;
  background:
    radial-gradient(circle at 78% 18%,rgba(190,36,24,.32),transparent 30%),
    radial-gradient(circle at 25% 80%,rgba(202,162,92,.1),transparent 34%),
    linear-gradient(120deg,#050505,#161311 55%,#090909);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.28)),
    url('../branding/logo-1968.jpeg') center/1300px no-repeat;
  opacity:.07;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(350px,.98fr);
  gap:48px;
  align-items:center;
}
.hero-copy{max-width:680px}
.eyebrow{
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold);
  font-size:.78rem;
  font-weight:800;
  margin-bottom:18px;
}
.hero-brand{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:26px;
}
.hero-logo{
  width:110px;
  min-width:110px;
  max-width:110px;
  aspect-ratio:1;
  border-radius:50%;
  flex:0 0 110px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 22px 50px rgba(0,0,0,.45);
}
.hero-brand-line{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.74rem;
  max-width:320px;
}
.hero h1{
  font-size:clamp(3.5rem,8vw,7.8rem);
  line-height:.87;
  letter-spacing:-.065em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:26px;
}
.lead{
  font-size:clamp(1.08rem,2vw,1.45rem);
  max-width:700px;
  color:#eee4d2;
  margin-bottom:32px;
}
.btns{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.red{background:var(--red-bright);color:#fff}
.btn.dark{border:1px solid rgba(255,255,255,.25);color:#fff}
.btn.gold{background:var(--gold);color:#060606}
.btn.outline-red{
  border:1px solid rgba(212,50,36,.6);
  color:#f0d8d1;
  background:rgba(143,28,18,.12);
}

.hero-photo,.big-photo{
  min-height:560px;
  border-radius:28px;
  background:center/cover;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-photo-badge{
  position:absolute;
  left:24px;
  bottom:24px;
  background:rgba(0,0,0,.62);
  border:1px solid rgba(255,255,255,.12);
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  color:#fff;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.74rem;
}

section{padding:88px 0;border-top:1px solid var(--line)}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.section-title{
  font-size:clamp(2.2rem,4.8vw,5rem);
  line-height:.95;
  letter-spacing:-.045em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:22px;
}
.section-text{
  color:var(--muted);
  font-size:1.08rem;
  max-width:780px;
  margin-bottom:30px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}
.card{
  background:linear-gradient(180deg,#171717,#0d0d0d);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.card-img{height:250px;background:center/cover}
.card-body{padding:24px}
.card h3{font-size:1.45rem;color:#fff;margin-bottom:8px}
.card p,.pack li{color:var(--muted)}

.packs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:32px;
}
.pack{
  padding:26px;
  border-radius:22px;
  background:linear-gradient(180deg,#161616,#0b0b0b);
  border:1px solid var(--line);
}
.pack strong{
  display:block;
  color:#fff;
  font-size:1.2rem;
  margin-bottom:12px;
}
.pack ul{padding-left:18px;margin:0 0 20px}
.pack li{margin-bottom:7px}

.reeds-strip{
  background:
    linear-gradient(120deg,rgba(127,25,15,.3),rgba(5,5,5,.95) 60%),
    #0a0909;
}
.reeds-row{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}
.reeds-kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:800;
  margin-bottom:12px;
}
.reeds-title{max-width:680px}

.book{background:linear-gradient(120deg,#190607,#050505)}
.book-box{
  border:1px solid var(--line);
  background:#0b0b0b;
  border-radius:28px;
  padding:26px;
}
.cal-placeholder{
  min-height:360px;
  border:1px dashed rgba(255,255,255,.3);
  border-radius:18px;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted);
  padding:22px;
}

.gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:18px;
}
.gallery div{
  min-height:260px;
  border-radius:22px;
  background:center/cover;
  border:1px solid var(--line);
}

.floating{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  background:#25d366;
  color:#041308;
  padding:15px 18px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}

footer{
  padding:45px 0;
  color:var(--muted);
  background:#040404;
}
.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.wa-float{
  width:58px;
  height:58px;
  padding:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  color:#fff;
  font-size:0;
}
.wa-icon{
  width:34px;
  height:34px;
  border:3px solid #fff;
  border-radius:50%;
  display:block;
  position:relative;
  transform:rotate(-18deg);
}
.wa-icon:before{
  content:"";
  position:absolute;
  left:3px;
  bottom:-7px;
  width:10px;
  height:10px;
  background:#25d366;
  border-left:3px solid #fff;
  border-bottom:3px solid #fff;
  transform:rotate(-18deg);
}
.wa-icon:after{
  content:"";
  position:absolute;
  left:9px;
  top:8px;
  width:11px;
  height:17px;
  border:3px solid #fff;
  border-top:0;
  border-left:0;
  border-radius:0 0 8px 0;
  transform:rotate(33deg);
}
.wa-btn{gap:8px}
.wa-mini{
  width:19px;
  height:19px;
  border:2px solid currentColor;
  border-radius:50%;
  display:inline-block;
  position:relative;
  font-size:0;
  transform:rotate(-18deg);
}
.wa-mini:after{
  content:"";
  position:absolute;
  left:5px;
  top:4px;
  width:6px;
  height:9px;
  border:2px solid currentColor;
  border-top:0;
  border-left:0;
  border-radius:0 0 5px 0;
  transform:rotate(33deg);
}

@media (max-width:1100px){
  .menu{gap:16px;font-size:.72rem}
  .packs{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:900px){
  .nav-wrap,
  .nav-tools{
    flex-direction:column;
    align-items:flex-start;
  }
  .menu{
    flex-wrap:wrap;
    gap:12px 16px;
  }
  .hero{
    padding-top:190px;
  }
  .hero-grid,
  .split{
    grid-template-columns:1fr;
  }
  .grid3,
  .packs,
  .gallery{
    grid-template-columns:1fr;
  }
  .hero-photo,
  .big-photo{
    min-height:360px;
  }
  .hero-logo{width:92px}
  .hero-logo{
    min-width:92px;
    max-width:92px;
    flex-basis:92px;
  }
  .hero h1{font-size:3.4rem}
  .reeds-row{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:640px){
  .wrap{width:min(92vw,1180px)}
  .brand-mark{width:50px;height:50px}
  .brand-mark{
    min-width:50px;
    min-height:50px;
    flex-basis:50px;
  }
  .brand-name{font-size:.86rem}
  .hero{
    min-height:auto;
    padding-top:210px;
  }
  .hero-brand{
    align-items:flex-start;
    gap:14px;
  }
  .hero-logo{
    width:78px;
    min-width:78px;
    max-width:78px;
    flex-basis:78px;
  }
  .hero-brand-line{
    max-width:none;
  }
  .btn{
    width:100%;
  }
  .hero-photo-badge{
    right:18px;
    left:18px;
    bottom:18px;
    text-align:center;
  }
}
