/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0E0D12;
  --dark:     #1a1a22;
  --dark2:    #252530;
  --gold:     #C49456;
  --gold2:    #a87840;
  --white:    #FFFFFF;
  --bej:      #F9F6F1;
  --bej2:     #EDE9E2;
  --text:     #1C1C24;
  --text2:    #6B6876;
  --border:   #E2DED6;

  --font-h: 'Oswald', sans-serif;
  --font-b: 'Outfit', sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r: 16px;
  --r-sm: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 500;
  border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.25s var(--ease);
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-gold    { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-dark    { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark2); border-color: var(--dark2); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline-dark:hover { background: var(--text); color: var(--white); }
.btn-ghost-dark { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost-dark:hover { border-color: var(--text); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(14,13,18,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0; cursor: pointer; }
.logo-ant  { font-family: var(--font-h); font-size: 1.6rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.logo-villa { font-family: var(--font-h); font-size: 1.6rem; font-weight: 200; color: var(--white); letter-spacing: 0.04em; }
.logo-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); margin: 0 10px; }
.logo-tag { font-family: var(--font-b); font-size: 0.55rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 40px; }
.nav-links a { font-size: 0.875rem; font-weight: 400; color: rgba(255,255,255,0.7); transition: color 0.2s; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 9px 20px; border-radius: 4px; font-weight: 500 !important;
}
.btn-nav:hover { background: var(--gold2) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; position: relative; z-index: 100; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,13,18,0.85) 0%,
    rgba(14,13,18,0.45) 40%,
    rgba(14,13,18,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  padding-bottom: 120px;
  width: 100%;
}
.hero-label {
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 28px;
}
.hero-title-light {
  font-family: var(--font-h); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 200; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; line-height: 1.05;
}
.hero-title-bold {
  font-family: var(--font-h); font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 500; color: var(--white);
  letter-spacing: 0.06em; line-height: 1.0;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55);
  margin-bottom: 40px; line-height: 1.75; max-width: 400px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero info box */
.hero-info-box {
  position: absolute; right: 32px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  z-index: 2; min-width: 180px;
}
.info-item { text-align: center; padding: 20px 0; }
.info-num {
  display: block;
  font-family: var(--font-h); font-size: 2rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.info-label {
  display: block; font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 6px;
}
.info-sep { width: 100%; height: 1px; background: rgba(255,255,255,0.08); }

.hero-scroll-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  z-index: 2;
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section-bej { background: var(--bej); }
.section-dark { background: var(--black); }

.eyebrow {
  font-family: var(--font-b); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(196,148,86,0.9); }

.section-title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15; color: var(--text);
  letter-spacing: 0.02em;
}
.section-title.light { color: var(--white); }

.section-head { margin-bottom: 60px; }
.section-head.centered { text-align: center; }
.section-head.between {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px;
}

.body-text { font-size: 0.95rem; font-weight: 300; color: var(--text2); line-height: 1.8; margin-bottom: 18px; }

/* ===== ABOUT ===== */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -32px; right: -32px;
  width: 45%; aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }
.about-text-col .eyebrow { display: block; }

.check-list {
  list-style: none; margin: 28px 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.check-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 400; color: var(--text);
}
.check-list li::before {
  content: '';
  display: inline-block; width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat: no-repeat; background-position: center;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.scard {
  position: relative;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 28px;
  transition: all 0.3s var(--ease);
  overflow: hidden;
}
.scard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.scard:hover::after { transform: scaleX(1); }
.scard-featured {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.scard-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: var(--white);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.scard-num {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 300;
  color: var(--gold); letter-spacing: 0.1em; margin-bottom: 20px;
}
.scard-icon {
  width: 48px; height: 48px;
  color: var(--gold); margin-bottom: 20px;
}
.scard-icon svg { width: 100%; height: 100%; }
.scard h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 400; margin-bottom: 12px; letter-spacing: 0.02em; }
.scard-featured h3 { color: var(--white); }
.scard p { font-size: 0.85rem; font-weight: 300; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.scard-featured p { color: rgba(255,255,255,0.5); }
.scard-link { font-size: 0.85rem; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.scard-link:hover { gap: 8px; }

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap;
}
.gtab {
  padding: 9px 22px; border: 1.5px solid var(--border); background: none;
  border-radius: 40px; font-family: var(--font-b); font-size: 0.85rem; font-weight: 400;
  color: var(--text2); cursor: pointer; transition: all 0.2s;
}
.gtab:hover, .gtab.active { background: var(--black); border-color: var(--black); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gitem { border-radius: var(--r-sm); overflow: hidden; cursor: pointer; }
.gitem-wide { grid-column: span 2; }
.gitem-inner { position: relative; aspect-ratio: 4/3; }
.gitem-wide .gitem-inner { aspect-ratio: 16/9; }
.gitem-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gitem:hover .gitem-photo { transform: scale(1.04); }
.gitem-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,18,0.75) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 18px 20px;
  opacity: 0; transition: opacity 0.3s;
}
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-label { color: var(--white); font-size: 0.875rem; font-weight: 500; }

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  overflow: hidden;
}
.wcard {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.wcard:hover { background: rgba(255,255,255,0.03); }
.wcard:nth-child(3n) { border-right: none; }
.wcard:nth-child(4), .wcard:nth-child(5), .wcard:nth-child(6) { border-bottom: none; }
.wcard-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.wcard h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 400; color: var(--white); margin-bottom: 12px; letter-spacing: 0.04em; }
.wcard p { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; font-family: var(--font-b); font-size: 0.975rem; font-weight: 400;
  color: var(--text); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 0.9rem; font-weight: 300; color: var(--text2); line-height: 1.8; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--bej2); padding: 80px 0;
  border-top: 1px solid var(--border);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.cta-title {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--text); letter-spacing: 0.02em; line-height: 1.2;
}
.cta-right { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: start;
}
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.cdetail {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px; border-radius: var(--r-sm);
  background: var(--bej); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.cdetail:hover { border-color: var(--gold); }
.cdetail-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--white); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.cdetail-icon svg { width: 18px; height: 18px; }
.cdetail strong { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); margin-bottom: 3px; }
.cdetail span { font-size: 0.9rem; font-weight: 400; color: var(--text); }

.contact-form {
  background: var(--bej); border-radius: var(--r);
  padding: 48px 44px; border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text2); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-b); font-size: 0.9rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s; appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,148,86,0.1);
}
.form-field textarea { resize: vertical; }
.form-ok {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: rgba(196,148,86,0.08); border: 1px solid rgba(196,148,86,0.25);
  border-radius: var(--r-sm); font-size: 0.875rem; color: var(--gold2);
  text-align: center;
}
.form-ok.show { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding-top: 80px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 64px;
}
.footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.35); max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-b); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col:last-child { display: flex; flex-direction: column; gap: 0; }
.footer-col:last-child h4 { margin-bottom: 20px; }
.footer-col:last-child a, .footer-col:last-child span {
  font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.45);
  margin-bottom: 10px; display: block; transition: color 0.2s;
}
.footer-col:last-child a:hover { color: var(--gold); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
  font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.2);
  text-align: center;
}

/* ===== WHATSAPP & INSTAGRAM BUTTONS ===== */
.btn-wa {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-wa:hover { background: #1ebe5c; border-color: #1ebe5c; transform: translateY(-1px); }

.cdetail-wa .cdetail-icon { color: #25D366; }
.cdetail-ig .cdetail-icon { color: #E1306C; }

/* Floating buttons */
.float-buttons {
  position: fixed; bottom: 28px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.float-btn svg { width: 24px; height: 24px; }
.float-wa { background: #25D366; color: var(--white); }
.float-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: var(--white);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-wrap { gap: 60px; }
  .hero-info-box { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-wrap { gap: 60px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: min(300px, 85vw);
    height: 100vh; background: var(--black);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 60px 36px; gap: 28px;
    transition: right 0.35s var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5); z-index: 99;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.05rem; }

  .hero-content { padding-bottom: 80px; }
  .hero-scroll-line { display: none; }

  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-small { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gitem-wide { grid-column: span 1; }
  .gitem-wide .gitem-inner { aspect-ratio: 4/3; }

  .why-grid { grid-template-columns: 1fr; }
  .wcard { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .wcard:last-child { border-bottom: none; }

  .cta-inner { flex-direction: column; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }

  .section-head.between { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-right { flex-direction: column; }
}
