:root{
  --bg:#241f1e;
  --text:#f2f2f2;
  --accent:#b67a3c;
  --max-width:1100px;
  --cream:#f5f1ea;
  --cream2:#efe9df;
  --ink:#1b1b1b;
  --muted:rgba(27,27,27,.75);
  --line:rgba(36,31,30,.10);
  --shadow:0 10px 24px rgba(0,0,0,.06);
  --shadow-strong:0 18px 40px rgba(0,0,0,.12);
}

*{box-sizing:border-box;}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--ink);
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* ================= HEADER & NAV ================= */
.site-header{
  background:var(--bg);
  color:var(--text);
  width:100%;
  position:sticky;
  top:0;
  z-index:100;
}

.header-inner{
  max-width:var(--max-width);
  margin:0 auto;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--text);
}

.logo-placeholder{
  width:36px;
  height:36px;
  border:2px solid var(--accent);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:9px;
  letter-spacing:1px;
  color:var(--accent);
  font-weight:600;
}
.logo-placeholder img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.brand-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  letter-spacing:.06em;
  font-size:28px;
  white-space:nowrap;
}

.nav{
  display:flex;
  gap:26px;
}

.nav a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.2s ease;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

/* ================= MOBILE HEADER ================= */
.mobile-header{
  display:none;
  max-width:var(--max-width);
  margin:0 auto;
  padding:16px 18px;
  text-align:center;
}

.mobile-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  letter-spacing:.06em;
  font-size:24px;
}

.hamburger{
  margin-top:12px;
  background:none;
  border:none;
  cursor:pointer;
  width:40px;
  height:30px;
  position:relative;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:22px;
  height:2px;
  background:var(--text);
}

.hamburger span{ top:14px; }
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }

.mobile-menu{
  display:none;
  background:var(--bg);
  padding-bottom:20px;
}

.mobile-menu a{
  display:block;
  padding:14px;
  text-decoration:none;
  color:var(--text);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.mobile-menu a:last-child{
  border:none;
  color:var(--accent);
  font-weight:600;
}

@media(max-width:820px){
  .header-inner{display:none;}
  .mobile-header{display:block;}
}

/* ================= GENERAL LAYOUT ================= */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:68px 0;
}

.section.alt{
  background:var(--cream2);
}

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:10px;
  background:#1f1b1a;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(182,122,60,.35);
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  border-color:rgba(182,122,60,.9);
  transform:translateY(-2px);
}

.btn.bronze{
  background:var(--accent);
  border-color:transparent;
  color:#fff;
}

.btn.bronze:hover{
  filter:brightness(.97);
}

.btn.light{
  background:#fff;
  color:var(--ink);
  border:1px solid var(--line);
}

.btn.light:hover{
  background:rgba(255,255,255,.9);
}

/* ================= FOOTER ================= */
footer{
  background:
    radial-gradient(circle at top left, rgba(182,122,60,0.08), transparent 60%),
    linear-gradient(180deg, #2a211d, #171414);
  color:rgba(255,255,255,0.85);
  padding:80px 0 40px 0;
}

.footer-container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 20px;
}

.footer-top-line{
  height:1px;
  background:var(--accent);
  opacity:.6;
  margin-bottom:50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.2fr;
  gap:40px;
}

.footer-logo{
  border:2px solid var(--accent);
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-size:12px;
  font-weight:600;
}
.footer-logo img{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
}

.footer-column h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  margin-bottom:18px;
  font-size:22px;
}

.footer-column a{
  display:block;
  text-decoration:none;
  color:rgba(255,255,255,0.8);
  margin-bottom:12px;
  font-size:15px;
}

.footer-column a:hover{
  color:var(--accent);
}

.subscribe-box{
  display:flex;
  margin-bottom:20px;
}

.subscribe-box input{
  flex:1;
  padding:10px;
  border:none;
  outline:none;
}

.subscribe-box button{
  padding:10px 16px;
  border:none;
  background:var(--accent);
  color:#fff;
  cursor:pointer;
  transition:.2s ease;
}

.subscribe-box button:hover{
  filter:brightness(.95);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:50px;
  padding-top:20px;
  text-align:center;
  font-size:14px;
}

@media(max-width:820px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}
