
:root{
  --cream:#f7f2ec;
  --paper:#fffaf3;
  --dark:#18120d;
  --dark2:#241a12;
  --gold:#b28a45;
  --gold2:#d8ba74;
  --muted:#74695f;
  --line:rgba(24,18,13,.13);
  --soft:#efe5d8;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'DM Sans',Arial,sans-serif;
  background:var(--cream);
  color:var(--dark);
}
a{color:inherit}
img,video{max-width:100%;display:block}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,242,236,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(178,138,69,.18);
}
.nav{
  max-width:1180px;
  margin:0 auto;
  padding:16px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:1;
  text-decoration:none;
  letter-spacing:.04em;
}
.logo span{color:var(--gold)}
.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:14px;
  font-weight:700;
}
.nav-links a{
  text-decoration:none;
  color:var(--dark);
  opacity:.86;
}
.nav-links a:hover{color:var(--gold);opacity:1}
.nav-cta,.btn,.btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:0;
  cursor:pointer;
}
.nav-cta{
  padding:13px 22px;
  background:var(--dark);
  color:#fff;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff7ef;
  font-size:24px;
}
.hero{
  max-width:1180px;
  margin:0 auto;
  padding:70px 22px 54px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:38px;
  align-items:center;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--gold);
  font-size:12px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.eyebrow:before{
  content:"";
  width:36px;
  height:1px;
  background:var(--gold);
}
h1,h2,h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  line-height:.98;
  margin:0;
}
h1{font-size:clamp(56px,9vw,112px);margin-top:18px}
h2{font-size:clamp(44px,6vw,78px)}
h3{font-size:34px}
em{font-style:italic;color:var(--gold)}
.lead{
  font-size:18px;
  line-height:1.75;
  color:var(--muted);
  margin:24px 0 30px;
  max-width:620px;
}
.actions{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:var(--dark);
  padding:16px 24px;
}
.btn-dark{
  background:var(--dark);
  color:white;
  padding:16px 24px;
}
.hero-card,.image-card,.card{
  border-radius:34px;
  overflow:hidden;
  background:white;
  border:1px solid rgba(178,138,69,.18);
  box-shadow:0 24px 80px rgba(24,18,13,.10);
}
.hero-card img{width:100%;height:min(640px,68vh);object-fit:cover}
.section{
  max-width:1180px;
  margin:0 auto;
  padding:78px 22px;
}
.section.alt{
  max-width:none;
  background:var(--soft);
}
.section.alt>.inner{
  max-width:1180px;
  margin:0 auto;
}
.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.text-card{
  padding:34px;
  border-radius:30px;
  background:var(--paper);
  border:1px solid rgba(178,138,69,.16);
}
.text-card p,.card p{
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}
.image-card img{width:100%;height:560px;object-fit:cover}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}
.card{
  padding:28px;
  min-height:190px;
}
.card-number{
  color:var(--gold);
  font-family:'Cormorant Garamond',serif;
  font-size:30px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:34px;
}
.media-card{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  background:#e9ddcf;
  border:1px solid rgba(178,138,69,.18);
  box-shadow:0 18px 50px rgba(24,18,13,.08);
}
.media-card img{
  width:100%;
  height:520px;
  object-fit:cover;
}
.media-card.video video{
  width:100%;
  height:520px;
  object-fit:cover;
  background:#17100b;
}
.media-label{
  position:absolute;
  left:16px;
  bottom:16px;
  background:rgba(24,18,13,.72);
  color:white;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  backdrop-filter:blur(8px);
}
.sound-hint{
  position:absolute;
  right:16px;
  top:16px;
  background:rgba(255,250,243,.92);
  color:var(--dark);
  padding:9px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}
.info-band{
  background:var(--dark);
  color:#fff;
  border-radius:34px;
  padding:34px;
}
.info-band p{color:rgba(255,255,255,.72)}
.footer{
  background:#0f0b08;
  color:white;
  padding:44px 22px;
  text-align:center;
}
.footer a{color:var(--gold2);text-decoration:none}
.wa-float{
  position:fixed;
  right:20px;
  bottom:22px;
  z-index:60;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#24d366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:30px;
  box-shadow:0 18px 45px rgba(36,211,102,.42);
}
.instagram-link{
  color:var(--gold);
  font-weight:900;
  text-decoration:none;
}
.list{
  display:grid;
  gap:14px;
  margin-top:28px;
}
.list a{
  padding:20px;
  border-radius:22px;
  background:var(--paper);
  border:1px solid var(--line);
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  gap:20px;
}
@media(max-width:820px){
  .nav{padding:14px 18px}
  .logo{font-size:31px}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav-links{
    position:absolute;
    left:14px;
    right:14px;
    top:76px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:18px;
    border-radius:24px;
    background:rgba(255,250,243,.98);
    border:1px solid rgba(178,138,69,.2);
    box-shadow:0 24px 70px rgba(24,18,13,.16);
  }
  .nav-links.open{display:flex}
  .nav-links a{
    width:100%;
    padding:16px 8px;
    border-bottom:1px solid rgba(24,18,13,.08);
  }
  .nav-cta{padding:12px 17px}
  .hero,.two{grid-template-columns:1fr}
  .hero{padding-top:42px}
  .hero-card img,.image-card img{height:auto;max-height:560px}
  .grid,.gallery-grid{grid-template-columns:1fr}
  .media-card img,.media-card.video video{height:480px}
  .section{padding:62px 18px}
  .wa-float{width:58px;height:58px}
}
