:root {
  --y: #f2c430;
  --yb: #ffd84d;
  --yd: #d9af2f;
  --yp: rgba(242, 196, 48, 0.1);
  --k: #060606;
  --d1: #0d0d0d;
  --d2: #121212;
  --d3: #181818;
  --d4: #1e1e1e;
  --t: #cec4a2;
  --tm: #9a8f70;
  --td: #625a44;
  --bdr: rgba(242, 196, 48, 0.12);
  --bdrh: rgba(242, 196, 48, 0.38);
  --r: 0px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--k);
  color: var(--t);
   font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.85;
  overflow-x: hidden;
}

/* noise layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--k);
}
::-webkit-scrollbar-thumb {
  background: var(--yd);
}
a {
  color: var(--y);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--yb);
}
img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.07em;
  line-height: 1.18;
}
h1 {
  font-size: clamp(1.5rem, 4.3vw, 2.4rem);
  color: var(--yb);
}
h2 {
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  color: var(--y);
}
h3 {
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  color: var(--yb);
}
p {
  font-size: clamp(0.88rem, 1.35vw, 0.99rem);
  color: #fff;
  line-height: 1.9;
}

#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(6, 6, 6, 0.96);
  border-bottom: 1px solid var(--bdr);
  backdrop-filter: blur(12px);
  transition: background 0.4s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.655);
}
.logo {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--y);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.logo em {
  color: #e8e0cc;
  font-style: normal;
  font-weight: 400;
}
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tm);
  transition: color 0.3s;
}
nav a:hover {
  color: var(--y);
}
/* ── SERVICES DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-drop-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: 0;
  transition: color .3s;
}
.nav-drop-btn:hover,
.nav-dropdown.open .nav-drop-btn { color: var(--y); }

.drop-arrow {
  font-size: .5rem;
  color: var(--yd);
  transition: transform .3s;
}
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  background: #0f0f0f;
  border: 1px solid var(--bdr);
  border-top: 2px solid var(--y);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .28s, transform .28s, visibility .28s;
  z-index: 400;
}
.nav-dropdown.open .drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-heading {
  display: block;
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--yd);
  padding: .5rem 1.1rem .25rem;
  border-top: 1px solid rgba(242,196,48,.08);
  margin-top: .3rem;
}
.drop-heading:first-child { border-top: none; margin-top: 0; }

.drop-link {
  display: block;
  padding: .5rem 1.1rem .5rem 1.4rem;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--tm);
  transition: background .2s, color .2s;
}
.drop-link:hover {
  background: rgba(242,196,48,.06);
  color: var(--y);
}
.drop-link.active { color: var(--yb); }

/* ── MOBILE ACCORDION ── */
.mob-acc { width: 100%; text-align: center; }

.mob-acc-btn {
  background: none;
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 1.12rem;
  letter-spacing: .12em;
  color: var(--t);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .4rem 0;
  transition: color .3s;
}
.mob-acc-btn:hover,
.mob-acc-btn[aria-expanded="true"] { color: var(--y); }
.mob-acc-btn[aria-expanded="true"] .drop-arrow { transform: rotate(180deg); }
.mob-acc-btn .drop-arrow { transition: transform .3s; }

.mob-acc-panel {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
  border-top: 1px solid rgba(242,196,48,.08);
  margin-top: .5rem;
  padding-top: .3rem;
}
.mob-acc-panel.open { max-height: 600px; }
.mob-acc-panel a {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--td);
  padding: .38rem 0;
  transition: color .3s;
}
.mob-acc-panel a:hover { color: var(--y); }
.nbtn {
  border: 1px solid var(--y);
  padding: 0.42rem 1.25rem;
  color: var(--y) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  transition:
    background 0.3s,
    color 0.3s !important;
}
.nbtn:hover {
  background: var(--y) !important;
  color: var(--k) !important;
}

/* hamburger */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hbg span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--y);
  transition: all 0.3s;
}
.hbg.o span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hbg.o span:nth-child(2) {
  opacity: 0;
}
.hbg.o span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobnav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.98);
  z-index: 299;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.mobnav.o {
  display: flex;
}
.mobnav a {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--t);
}
.mobnav a:hover {
  color: var(--y);
}
 /* ── FOOTER ── */
    footer {
        background: #000;
        border-top: 1px solid var(--bdr);
        padding: 4rem 5vw 2rem
    }

    .fgrid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3.5rem;
        max-width: 1160px;
        margin: 0 auto 3rem
    }

    .flogo {
        font-family: 'Cinzel', serif;
        font-size: 1.05rem;
        color: var(--y);
        letter-spacing: .13em;
        display: block;
        margin-bottom: .9rem
    }

    .fabout {
        font-size: .83rem;
        line-height: 1.8;
        color: #fff;
    }

    .fcol h4 {
        font-family: 'Cinzel', serif;
        font-size: .7rem;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--y);
        margin-bottom: 1.1rem
    }

    .flinks {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .5rem
    }

    .flinks a {
        font-size: .82rem;
        color: #fff;
    }

    .flinks a:hover {
        color: var(--yb)
    }

    .fbot {
        border-top: 1px solid rgba(242, 196, 48, .07);
        padding-top: 1.8rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1160px;
        margin: 0 auto;
        flex-wrap: wrap;
        gap: .7rem
    }


    .disc {
        text-align: center;
        font-size: .64rem;
        color: var(--td);
        opacity: .52;
        padding: 1rem 5vw 2rem;
        max-width: 1160px;
        margin: 0 auto;
        line-height: 1.65
    }
    
@media (max-width: 920px) {
  nav {
    display: none;
  }
  .hbg {
    display: flex;
  }
  .grid2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sc {
    display: none;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 600px) {
  .fgrid {
    grid-template-columns: 1fr;
  }
  .fbot {
    flex-direction: column;
    text-align: center;
  }
  
}