:root {
  --cream-50:#F8F4EC; --cream-100:#F4EEE4; --cream-200:#EEE5D7;
  --dark-900:#2B2B22; --dark-800:#353224;
  --gold:#B98B50; --gold-light:#C79B63;
  --brown:#3A3227; --border:#E7DDCC;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream-50);
  color: var(--brown);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Poppins', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.01em; margin: 0; color: var(--brown); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; }
.gold { color: var(--gold); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; background: var(--gold); color: #fff; padding: 10px 20px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; box-shadow: 0 6px 20px -8px rgba(185,139,80,.6); transition: background .2s, transform .2s, box-shadow .2s; }
.btn:hover { background: var(--gold-light); }
.btn-gold { text-transform: uppercase; letter-spacing: 0.08em; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-icon { display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:999px; background: rgba(255,255,255,.15); }

/* Header */
#site-header { position: fixed; top:0; left:0; right:0; z-index: 50; transition: background .3s, box-shadow .3s; background: linear-gradient(to bottom, rgba(43,43,34,.7), transparent); }
#site-header.scrolled { background: rgba(43,43,34,.9); backdrop-filter: blur(8px); box-shadow: 0 8px 24px -12px rgba(0,0,0,.4); }
.nav-inner { height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; height: 100%; padding: 10px 0; }
.brand img { height: 100%; max-height: 70px; width: auto; object-fit: contain; }
.primary-nav { display: none; gap: 32px; }
.primary-nav a { color: rgba(255,255,255,.85); font-size: 14px; transition: color .2s; }
.primary-nav a:hover, .primary-nav a.active { color: var(--gold); }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { display:block; width: 22px; height: 2px; background: #fff; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.mobile-menu { display: none; background: rgba(43,43,34,.95); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 16px 24px; gap: 10px; }
.mobile-menu a { color: rgba(255,255,255,.85); padding: 6px 0; }

/* Hero */
.hero { position: relative; min-height: 100vh; overflow: hidden; display:flex; align-items:flex-start; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(43,43,34,.95), rgba(43,43,34,.7) 40%, rgba(43,43,34,.1)); }
.hero-content { position: relative; z-index:2; max-width:680px; padding:0 24px; margin-top:140px; margin-left:35px; }
.hero-content h1 { color: #fff; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; margin: 24px 0 0; }
.hero-divider { width: 96px; height: 1px; background: var(--gold); margin: 32px 0; }
.hero-content p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 440px; margin: 0 0 40px; }

/* Section */
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section-cream { background: var(--cream-100); }
.section-cream-2 { background: var(--cream-200); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto; }
.section-header h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 12px 0 0; }
.divider-line { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--gold); }
.divider-line .line { display: inline-block; width: 56px; height: 1px; background: rgba(185,139,80,.5); }
.divider-line .dot { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 999px; border: 1px solid rgba(185,139,80,.6); }
.divider-line.small .line { width: 56px; }

/* Services */
.services-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(7, 1fr); gap: 20px; } }
.service-card { background: var(--cream-50); border-radius: 16px; padding: 24px 20px; text-align: center; box-shadow: 0 4px 20px -8px rgba(58,50,39,.15); transition: transform .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -8px rgba(58,50,39,.25); }
.icon-circle { margin: 0 auto; width: 64px; height: 64px; border-radius: 999px; background: var(--dark-800); color: var(--cream-50); display: inline-flex; align-items: center; justify-content: center; }
.service-card h3 { font-size: 15px; margin-top: 20px; line-height: 1.3; }
.service-card p { font-size: 12px; color: rgba(58,50,39,.7); margin-top: 12px; line-height: 1.55; }

/* About */
.about { padding-bottom: 96px; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-img img { border-radius: 24px; aspect-ratio: 5/6; object-fit: cover; box-shadow: 0 20px 40px -20px rgba(0,0,0,.25); width: 100%; }
.about-copy h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 12px 0 0; line-height: 1.15; }
.about-copy > p { color: rgba(58,50,39,.75); margin-top: 24px; max-width: 560px; line-height: 1.7; }
.check-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--brown); }
.check-list svg { color: var(--dark-800); flex-shrink: 0; }

/* Gallery */
.gallery-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }
.gallery-item { overflow: hidden; border-radius: 16px; aspect-ratio: 1/1; box-shadow: 0 8px 24px -12px rgba(0,0,0,.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-item:hover img { transform: scale(1.1); }

/* Contact */
.contact { position: relative; overflow: hidden; padding: 80px 0; }
.contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(58,42,26,.95), rgba(43,32,22,.95)); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.contact-left { display: flex; gap: 24px; align-items: flex-start; }
.phone-ring { width: 80px; height: 80px; border-radius: 999px; border: 2px solid rgba(185,139,80,.7); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-left h2 { color: var(--cream-50); font-size: clamp(28px, 3.5vw, 40px); margin-top: 8px; }
.contact-left p { color: rgba(244,238,228,.75); margin: 16px 0 24px; max-width: 440px; }
.contact-right { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .contact-right { border-left: 1px solid rgba(244,238,228,.15); padding-left: 64px; } }
.contact-row { display: flex; gap: 20px; align-items: flex-start; }
.pin { width: 56px; height: 56px; border-radius: 999px; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row p { color: var(--cream-50); margin: 8px 0 0; font-size: 17px; line-height: 1.6; }

/* Footer */
footer { background: var(--dark-900); color: var(--cream-100); padding: 32px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1fr auto 1fr; } }
.footer-inner .brand img { height: 44px; max-height: 44px; }
.footer-nav { display: none; justify-content: center; gap: 32px; }
@media (min-width: 1024px) { .footer-nav { display: flex; } }
.footer-nav a { color: rgba(244,238,228,.8); font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.social { justify-self: end; width: 40px; height: 40px; border-radius: 999px; background: var(--gold); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.social:hover { background: var(--gold-light); }
.copyright { text-align: center; color: rgba(244,238,228,.6); font-size: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(244,238,228,.1); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 60; width: 56px; height: 56px; border-radius: 999px; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px -8px rgba(0,0,0,.4); transition: transform .2s, background .2s; }
.wa-float:hover { background: #20b858; transform: scale(1.08); }
