@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,500&family=Poppins:wght@300;400;500;600&family=Cormorant+Garamond:ital@1&display=swap');

:root{
  --black: #0a0908;
  --black-2: #131110;
  --maroon: #3d0f14;
  --maroon-2: #5a1620;
  --gold: #c9a24b;
  --gold-bright: #e8c874;
  --gold-dim: #8a6f34;
  --ivory: #f5efe0;
  --ivory-dim: #cfc6b0;
  --serif: 'Playfair Display', serif;
  --script: 'Cormorant Garamond', serif;
  --sans: 'Poppins', sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ list-style: none; }

:focus-visible{
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------- background texture ---------- */
.bg-glow{
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 800px 500px at 15% -5%, rgba(201,162,75,0.10), transparent 60%),
    radial-gradient(ellipse 700px 600px at 100% 20%, rgba(90,22,32,0.25), transparent 55%),
    radial-gradient(ellipse 900px 700px at 50% 100%, rgba(201,162,75,0.06), transparent 60%),
    var(--black);
}

/* ---------- ornamental divider (signature element) ---------- */
.ornament{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 0 auto;
  width: fit-content;
  color: var(--gold);
}
.ornament .line{
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.ornament .line.right{ background: linear-gradient(90deg, var(--gold-dim), transparent); }
.ornament svg{ width: 22px; height: 22px; }

/* ---------- header / nav ---------- */
header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,9,8,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,75,0.25);
}
.nav-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 18px;
  flex-shrink: 0;
}
.brand-text .name{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  line-height: 1.1;
}
.brand-text .sub{
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
nav ul{
  display:flex;
  gap: 34px;
  font-size: 14px;
  letter-spacing: 0.03em;
}
nav a{
  position: relative;
  padding: 6px 0;
  color: var(--ivory-dim);
  transition: color .25s;
}
nav a:hover, nav a.active{ color: var(--gold-bright); }
nav a.active::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:0;
  height: 1px;
  background: var(--gold-bright);
}
.nav-cta{
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-bright) !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background .25s, color .25s;
}
.nav-cta:hover{ background: var(--gold); color: var(--black) !important; }

.nav-toggle{
  display:none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{ width: 24px; height: 1.5px; background: var(--gold); }

@media (max-width: 860px){
  nav ul{
    position: fixed;
    top: 73px; left:0; right:0;
    flex-direction: column;
    background: rgba(10,9,8,0.98);
    border-bottom: 1px solid rgba(201,162,75,0.25);
    padding: 20px 28px 28px;
    gap: 18px;
    transform: translateY(-140%);
    transition: transform .35s ease;
  }
  nav ul.open{ transform: translateY(0); }
  .nav-toggle{ display:flex; }
  .nav-cta{ display:none; }
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 90px 24px 70px;
  overflow: hidden;
}
.hero-frame{
  position:absolute;
  inset: 18px;
  border: 1px solid rgba(201,162,75,0.35);
  pointer-events: none;
}
.hero-frame::before,
.hero-frame::after{
  content:'';
  position:absolute;
  width: 34px; height: 34px;
  border: 1.5px solid var(--gold);
}
.hero-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.hero-frame::after{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

.hero-eyebrow{
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  opacity: 0;
  animation: riseIn .9s ease forwards;
}
.hero h1{
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(46px, 9vw, 96px);
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(180deg, #f8e8b8 0%, var(--gold) 55%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: riseIn .9s ease .15s forwards;
}
.hero h2{
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 2.4vw, 22px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 10px;
  opacity: 0;
  animation: riseIn .9s ease .3s forwards;
}
.hero-tagline{
  max-width: 560px;
  margin: 26px auto 0;
  color: var(--ivory-dim);
  font-size: 16px;
  opacity: 0;
  animation: riseIn .9s ease .45s forwards;
}
.hero-ctas{
  display:flex;
  gap: 18px;
  justify-content:center;
  margin-top: 38px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn .9s ease .6s forwards;
}
@keyframes riseIn{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

.btn{
  display:inline-block;
  padding: 15px 34px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dim));
  color: var(--black);
  font-weight: 600;
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,75,0.3); }
.btn-outline{
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-outline:hover{ background: rgba(201,162,75,0.1); }

/* ---------- sections ---------- */
section{ padding: 100px 24px; position: relative; }
.section-inner{ max-width: 1180px; margin: 0 auto; }
.section-head{ text-align:center; margin-bottom: 60px; }
.section-eyebrow{
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 20px;
  margin-bottom: 8px;
}
.section-head h2{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 46px);
  color: var(--ivory);
}
.section-head p{
  color: var(--ivory-dim);
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 15px;
}
.section-alt{ background: linear-gradient(180deg, transparent, rgba(90,22,32,0.12), transparent); }

/* ---------- services grid ---------- */
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
  background: rgba(201,162,75,0.2);
  border: 1px solid rgba(201,162,75,0.2);
}
.service-card{
  background: var(--black-2);
  padding: 42px 30px;
  text-align:center;
  transition: background .3s;
}
.service-card:hover{ background: #1a1512; }
.service-card svg{
  width: 40px; height: 40px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.service-card h3{
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p{
  font-size: 13.5px;
  color: var(--ivory-dim);
}

/* ---------- gallery preview grid ---------- */
.gallery-preview{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}
.gallery-preview .g-item:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.gallery-preview .g-item:nth-child(4){ grid-column: span 2; }
.g-item{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,162,75,0.25);
}
.g-item img{
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s ease;
}
.g-item:hover img{ transform: scale(1.08); }
.g-item::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,0.75));
  opacity: 0;
  transition: opacity .3s;
}
.g-item:hover::after{ opacity: 1; }
.g-label{
  position:absolute; left:14px; bottom:14px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-bright);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s;
}
.g-item:hover .g-label{ opacity: 1; transform: translateY(0); }

@media (max-width: 700px){
  .gallery-preview{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .gallery-preview .g-item:nth-child(1){ grid-column: span 2; grid-row: span 1; }
}

/* ---------- why us / stats strip ---------- */
.strip{
  display:flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  background: var(--maroon);
  padding: 50px 24px;
  border-top: 1px solid rgba(201,162,75,0.3);
  border-bottom: 1px solid rgba(201,162,75,0.3);
}
.strip-item{ text-align:center; }
.strip-item .num{
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold-bright);
  font-weight: 700;
}
.strip-item .lbl{
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 4px;
}

/* ---------- footer ---------- */
footer{
  background: var(--black-2);
  border-top: 1px solid rgba(201,162,75,0.25);
  padding: 56px 24px 26px;
}
.footer-grid{
  max-width: 1180px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .name{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.footer-brand p{ color: var(--ivory-dim); font-size: 14px; max-width: 300px; }
.footer-col h4{
  font-family: var(--serif);
  color: var(--ivory);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-col ul li{ margin-bottom: 10px; font-size: 14px; }
.footer-col a{ color: var(--ivory-dim); transition: color .2s; }
.footer-col a:hover{ color: var(--gold-bright); }
.footer-bottom{
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,75,0.15);
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gold-dim);
}
@media (max-width: 700px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------- floating whatsapp ---------- */
.float-wa{
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
  transition: transform .25s;
}
.float-wa:hover{ transform: scale(1.08); }
.float-wa svg{ width: 28px; height: 28px; fill: white; }

/* ---------- reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  padding: 160px 24px 70px;
  text-align:center;
  position: relative;
  border-bottom: 1px solid rgba(201,162,75,0.2);
}
.page-hero .section-eyebrow{ margin-bottom: 10px; }
.page-hero h1{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 58px);
  color: var(--ivory);
}
.breadcrumb{
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold-dim);
}
.breadcrumb a{ color: var(--gold); }

/* ---------- utility ---------- */
.center{ text-align:center; }
.mt-lg{ margin-top: 60px; }
