:root {
  --color-bg: #0f1115;
  --color-surface: #171a21;
  --color-surface-2: #1e232d;
  --color-text: #e9edf5;
  --color-muted: #a9b3c7;
  --color-primary: #d4a24d;
  --color-accent: #f5c56e;
  --color-border: #2a3140;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--color-surface), #12151c);
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 0;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 6px;
}

.section-sub {
  color: var(--color-muted);
  margin-bottom: 26px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(12, 14, 18, 0.8);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo span {
  color: var(--color-primary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: #d9deea;
  font-weight: 500;
}

.nav a:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(10, 12, 16, 0.65), rgba(10, 12, 16, 0.92)),
    url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  padding: 70px 0;
  max-width: 700px;
}

.kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 110, 0.5);
  color: var(--color-accent);
  font-size: 0.84rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 14px 0;
}

.hero p {
  color: #d8deeb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-primary), #b9852c);
  color: #17120a;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  border: 1px solid #d5b074;
  color: #f4cb81;
}

.btn-sm {
  padding: 8px 12px;
  border-radius: 8px;
}

.cards-grid,
.gallery-grid,
.testimonials-grid,
.team-grid {
  display: grid;
  gap: 16px;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card strong {
  color: var(--color-accent);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 8px;
  color: #d8deec;
}

.check-list li::before {
  content: '✓ ';
  color: var(--color-accent);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat {
  background: #141922;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
}

.stat span {
  display: block;
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 700;
}

.stat small {
  color: var(--color-muted);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

blockquote {
  margin: 0;
  padding: 18px;
  border-left: 3px solid var(--color-accent);
  background: #131923;
  border-radius: 8px;
}

cite {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  font-style: normal;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #141924;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list p {
  color: var(--color-muted);
}

.form-wrap form {
  display: grid;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px;
}

label {
  font-weight: 600;
  font-size: 0.93rem;
}

input,
select {
  width: 100%;
  border: 1px solid #303847;
  background: #0f131b;
  color: var(--color-text);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

input:focus,
select:focus {
  outline: 1px solid var(--color-primary);
  border-color: var(--color-primary);
}

#form-message {
  min-height: 22px;
  margin: 2px 0 0;
  font-weight: 600;
  color: #9be39b;
}

.footer {
  border-top: 1px solid var(--color-border);
  background: #0d1016;
  padding: 20px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 110px 0 60px;
  background: linear-gradient(180deg, #161b24, #10141c);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin-bottom: 10px;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 14px;
}

.price-item strong {
  color: var(--color-accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: #08120d;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #10141d;
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4%;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
