/* ========== Base ========== */
:root{
  --bg: #1c1c1c;
  --card: rgba(255,255,255,0.06);
  --text: #f3ead7;
  --muted: rgba(243,234,215,0.75);
  --line: rgba(201,162,77,0.25);

  --accent: #c9a24d;      /* Gold */
  --accent-dark: #8f6a2a; /* Bronze */
  --wood: #4a3b2e;

  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;
}


*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
    url("images/wood-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}

a{ color: inherit; text-decoration: none; }
.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.logo{
  height: 48px;
  width: auto;
  object-fit: contain;
}


/* ========== Topbar ========== */
.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 12px;
}
.topbar-left{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.topbar-left a{ color: var(--muted); }
.dot{ opacity: .6; }
.mini{
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

/* ========== Header / Nav ========== */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,14,0.55);
  backdrop-filter: blur(14px);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(246,194,107,0.95), rgba(125,211,252,0.75));
  color: #0b0c10;
}
.brand-text strong{
  display: block;
  font-size: 16px;
  letter-spacing: .2px;
}
.brand-text small{
  display: block;
  color: var(--muted);
  margin-top: 2px;
  font-size: 12px;
}

.menu{
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu a{
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

/* ========== Buttons ========== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
}
.btn.primary{
  background: linear-gradient(
    135deg,
    #c9a24d,
    #8f6a2a
  );
  color: #1c1c1c;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 30px rgba(201,162,77,0.35);
}

.btn.ghost{
  background: transparent;
}
.btn:hover{ filter: brightness(1.05); }

/* ========== Hero ========== */
.hero{
  padding: 54px 0 26px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.pill{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}
.hero-copy h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}
.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.stat{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.stat strong{
  display: block;
  font-size: 18px;
}
.stat span{
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.note{
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

/* Right hero card (visual placeholder) */
.hero-card{
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(246,194,107,0.18), transparent 60%),
    radial-gradient(700px 400px at 80% 50%, rgba(125,211,252,0.16), transparent 55%),
    rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-card::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(246,194,107,0.20), rgba(125,211,252,0.14));
  opacity: .5;
  pointer-events: none;
}
.hero-card-inner{
  position: relative;
  padding: 22px;
}
.hero-card-inner h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.hero-card-inner p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-card-inner ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* ========== Sections ========== */
.section{
  padding: 54px 0;
}
.section.alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== Cards / Grid ========== */
.grid{ display: grid; gap: 14px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0 0 12px; color: var(--muted); line-height: 1.6; }

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* ========== Gallery ========== */
.gallery{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tile{
  height: 220px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.65)),
    radial-gradient(1200px 500px at 30% 20%, rgba(246,194,107,0.18), transparent 60%),
    radial-gradient(1000px 500px at 80% 70%, rgba(125,211,252,0.16), transparent 55%),
    rgba(255,255,255,0.05);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.tile-top{
  display: flex;
  gap: 8px;
  padding: 14px;
}
.tag{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}
.tile-bottom{
  padding: 14px;
}
.tile-bottom h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.tile-bottom p{
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.5;
}

/* ========== Steps ========== */
.steps{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.step{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.step-no{
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0c10;
  background: linear-gradient(135deg, rgba(246,194,107,0.95), rgba(125,211,252,0.75));
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 8px; }
.step p{ margin: 0; color: var(--muted); line-height: 1.6; }

/* ========== Testimonials ========== */
.quote p{
  font-style: italic;
}
.who{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}
.who strong{
  color: var(--text);
  font-style: normal;
}

/* ========== Contact ========== */
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact-left h2{ margin: 0 0 10px; }
.contact-left p{ margin: 0 0 14px; color: var(--muted); line-height: 1.7; }

.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.mini-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.mini-card h4{
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.mini-card a{
  font-weight: 650;
  font-size: 14px;
}

.contact-form{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
}
label{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
input, select, textarea{
  width: 100%;
  margin-top: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(125,211,252,0.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,0.10);
}
textarea{ resize: vertical; }
.form-note{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

/* ========== Footer ========== */
.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(0,0,0,0.22);
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer-brand{ margin-bottom: 10px; }
.footer-note{
  margin: 0;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
}
.footer-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a{
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

/* ========== Responsive ========== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .menu{ display: none; } /* simple mobile view */
}

@media (max-width: 520px){
  .stats{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
}

/* =========================
   Mobile Hamburger (CSS only)
   ========================= */

/* Hide checkbox */
.nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hamburger icon */
.hamburger{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* Desktop menu stays as-is */
@media (min-width: 981px){
  .menu{
    display: flex;
  }
}

/* Mobile behavior */
@media (max-width: 980px){
  .hamburger{
    display: inline-flex;
  }

  /* menu becomes a dropdown panel */
  .menu{
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(10,10,14,0.88);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .menu a{
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
  }

  .menu a.btn{
    justify-content: center;
  }

  /* When checkbox is checked, show menu */
  .nav-toggle:checked ~ .menu{
    display: flex;
  }

  /* Animate hamburger to X */
  .nav-toggle:checked + .hamburger span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle:checked + .hamburger span:nth-child(2){
    opacity: 0;
  }
  .nav-toggle:checked + .hamburger span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}
