:root {
  --bg: #0e0d0b;
  --bg-soft: #171512;
  --panel: #151311;
  --panel-2: #1c1916;
  --text: #f5f1ea;
  --muted: #b8afa3;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #c7a86b;
  --gold-soft: #e2c38a;
  --white-soft: #f8f4ee;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --container: 1160px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 13, 11, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8b6a37, var(--gold-soft));
  color: #111;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(199, 168, 107, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--white-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.25rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #a67b3c, var(--gold-soft));
  color: #111;
  box-shadow: 0 12px 28px rgba(199, 168, 107, 0.2);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.78)),
    url("https://images.unsplash.com/photo-1622287162716-f311baa1a2b8?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 168, 107, 0.16), transparent 25%),
    radial-gradient(circle at bottom left, rgba(199, 168, 107, 0.1), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  max-width: 10ch;
}

.hero-copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-badges span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #e7dfd4;
  font-size: 0.92rem;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  width: min(100%, 420px);
  background: rgba(16, 14, 12, 0.9);
  border: 1px solid rgba(199, 168, 107, 0.18);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0 0 0.4rem;
  color: var(--gold-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}

.panel-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.panel-item span {
  color: var(--muted);
}

.panel-btn {
  width: 100%;
  margin-top: 1.25rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-heading p {
  color: var(--muted);
  max-width: 65ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card,
.review-card,
.stat-card,
.contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 168, 107, 0.26);
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
  min-height: 96px;
}

.service-card strong {
  color: var(--gold-soft);
  font-size: 1.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.about-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.about-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.stat-card span {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-card {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.gallery-card:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=900&q=80");
}

.gallery-card:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=900&q=80");
}

.gallery-card:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=900&q=80");
}

.gallery-card:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=900&q=80");
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.review-card p {
  color: var(--muted);
}

.review-card strong {
  color: var(--white-soft);
}

.stars {
  color: #f5d28b;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.contact-copy p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-list span {
  color: var(--muted);
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  margin-bottom: 0.7rem;
}

.footer-text {
  color: var(--muted);
  max-width: 45ch;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(15, 14, 12, 0.98);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta {
    display: none;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 4.5rem 0;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .gallery-card {
    min-height: 260px;
  }
}

.map {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map iframe {
  display: block;
}

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}