:root {
    --ink: #0b0b0b;
    --coal: #121110;
    --card: #181613;
    --gold: #d4a017;
    --gold-hi: #f0c14b;
    --gold-deep: #9c7514;
    --paper: #ffffff;
    --muted: #b6ac93;
    --line: rgba(212, 160, 23, .26);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--ink);
    color: var(--paper);
    line-height: 1.65;
    font-size: 16px
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
   
}

.brandface {
    font-family: 'Cinzel', serif
}

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 22px
}

.gold {
    color: var(--gold-hi)
}

.btn {
    display: inline-block;
    background: linear-gradient(120deg, var(--gold-hi), var(--gold) 55%, var(--gold-deep));
    color: #141005;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 4px;
    letter-spacing: .3px;
    font-size: 14px;
    transition: .25s;
    border: none;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 160, 23, .35)
}

.btn.ghost {
    background: transparent;
    color: var(--gold-hi);
    border: 1px solid var(--gold);
    box-shadow: none
}

.btn.ghost:hover {
    background: rgba(212, 160, 23, .12)
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500
}

.sec {
    padding: 86px 0
}

.sec-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px
}

.sec-head h2 {
    font-size: 50px;
    letter-spacing: .3px
    font-weight: 700;
}

.sec-head p {
    color: var(--muted);
    margin-top: 14px;
    font-size: 15.5px
}

.divider {
    width: 120px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
    background: linear-gradient(90deg, var(--gold), transparent)
}

.divider span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg)
}

/* top bar */
.topbar {
    background: #000;
    border-bottom: 1px solid rgba(212, 160, 23, .15);
    font-size: 13px
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 14px;
    flex-wrap: wrap
}

.topbar a {
    color: var(--muted)
}

.topbar a:hover {
    color: var(--gold-hi)
}

.topbar .left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

/* nav */
header.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(8, 8, 8, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line)
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px
}

.brand .name {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.2;
    display: block
}

.brand .tag {
    font-size: 10px;
    letter-spacing: 2.2px;
    color: var(--gold);
    text-transform: uppercase;
    display: block
}

nav.menu {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 14px;
    font-weight: 500
}

nav.menu a {
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: .2s;
    white-space: nowrap
}

nav.menu a:hover {
    color: var(--gold-hi);
    border-color: var(--gold)
}

.hamb {
    display: none;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold-hi);
    font-size: 20px;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer
}

/* hero banner */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center
}

.hero .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.9)
}

.hero .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, .94) 0%, rgba(5, 5, 5, .82) 42%, rgba(5, 5, 5, .45) 75%, rgba(5, 5, 5, .55) 100%)
}

.hero .wrap {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
    width: 100%
}

.hero .inner {
    max-width: 640px
}

.hero h1 {
    font-size: clamp(30px, 4.4vw, 50px);
    line-height: 1.2;
    font-weight: 700
}

.hero p.lead {
    color: #d9d2c0;
    margin: 20px 0 6px;
    font-size: 16.5px
}

.hero .cta {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.crumb {
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: block
}

.crumb a {
    color: var(--gold)
}

/* contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.c-info .row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px
}

.c-info .row .ic {
    color: var(--gold-hi);
    flex-shrink: 0;
    margin-top: 3px
}

.c-info h4 {
    font-size: 14px;
    letter-spacing: .4px
}

.c-info p,
.c-info a {
    font-size: 14.5px;
    color: var(--muted)
}

.c-info a:hover {
    color: var(--gold-hi)
}

form.cf {
    background: var(--card);
    border: 1px solid rgba(212, 160, 23, .18);
    border-radius: 8px;
    padding: 32px
}

form.cf label {
    font-size: 12.5px;
    letter-spacing: .4px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px
}

form.cf input,
form.cf select,
form.cf textarea {
    width: 100%;
    background: #0d0c0a;
    border: 1px solid rgba(212, 160, 23, .25);
    color: var(--paper);
    padding: 12px 14px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 18px;
    outline: none;
    transition: .2s
}

form.cf input:focus,
form.cf select:focus,
form.cf textarea:focus {
    border-color: var(--gold)
}

form.cf .btn {
    width: 100%
}

/* footer */
footer {
    background: #000;
    border-top: 1px solid var(--line);
    padding: 56px 0 0
}

.f-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 44px
}

.f-grid h4 {
    font-size: 13.5px;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase
}

.f-grid p,
.f-grid a {
    font-size: 13.5px;
    color: var(--muted);
    display: block;
    padding: 4px 0
}

.f-grid a:hover {
    color: var(--gold-hi)
}

.f-brand img {
    width: 72px;
    border-radius: 6px;
    margin-bottom: 14px
}

.f-bottom {
    border-top: 1px solid rgba(212, 160, 23, .15);
    padding: 18px 0;
    text-align: center;
    font-size: 12.5px;
    color: var(--muted)
}

/* whatsapp */
.wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 80;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
    transition: .25s
}

.wa:hover {
    transform: scale(1.08)
}

.wa svg {
    width: 30px;
    height: 30px;
    fill: #fff
}

@media(max-width:960px) {

    nav.menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0a;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--line);
        padding: 10px 0
    }

    nav.menu.open {
        display: flex
    }

    nav.menu a {
        padding: 12px 22px;
        width: 100%
    }

    .hamb {
        display: block
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:540px) {
    .f-grid {
        grid-template-columns: 1fr
    }

    .sec {
        padding: 60px 0
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }

    html {
        scroll-behavior: auto
    }
}

.feat .icon,
.steps .bubble,
.c-info .row .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.24);
  color: var(--gold-hi);
}

.feat .icon i,
.steps .bubble i,
.c-info .row .ic i,
.w i,
.hero .badges span i {
  font-size: 1.05rem;
}

.w {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.w i {
  color: var(--gold-hi);
  font-size: 1.3rem;
}

.hero .badges span i {
  margin-right: 8px;
}

.wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav .wrap {
  width: 1300px !important;
}

.wa i {
  font-size: 1.6rem;
  color: #fff;
}

.booking-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.booking-popup.is-open {
  display: flex;
}

.booking-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(5px);
}

.booking-popup__box {
  position: relative;
  width: min(100%, 430px);
  background: #12100c;
  border: 1px solid rgba(240, 193, 75, 0.42);
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.booking-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(240, 193, 75, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #f0c14b;
  cursor: pointer;
  font-size: 16px;
}

.booking-popup__eyebrow {
  color: #f0c14b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.booking-popup h3 {
  margin: 10px 34px 10px 0;
  font-size: 26px;
  line-height: 1.2;
}

.booking-popup p {
  color: #cfc7b2;
  font-size: 14px;
  line-height: 1.65;
}

.booking-popup__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.booking-popup__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.booking-popup__call {
  background: linear-gradient(120deg, #f0c14b, #d4a017 58%, #9c7514);
  color: #141005;
}

.booking-popup__wa {
  border: 1px solid rgba(240, 193, 75, 0.52);
  color: #f0c14b;
}

.booking-popup__note {
  margin-top: 16px;
  color: #a99f86;
  font-size: 12px;
}

body.booking-popup-open {
  overflow: hidden;
}

@media only screen and (max-width: 778px) {
    .contact {
     display: block; 
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
  }
  
@media (max-width: 520px) {
  .booking-popup__box {
    padding: 26px 20px;
  }

  .booking-popup__actions {
    grid-template-columns: 1fr;
  }
}

.hero .badges {
    right: 10%;
}
