:root {
  --bg: #0f0f12;
  --bg-soft: #17171c;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: #18181d;
  --text: #f6f1e8;
  --muted: #b9b2a8;
  --gold: #d5a253;
  --gold-strong: #f0c073;
  --gold-soft: rgba(213, 162, 83, 0.14);
  --line: rgba(213, 162, 83, 0.18);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 162, 83, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(213, 162, 83, 0.08), transparent 25%),
    linear-gradient(180deg, #0b0b0d 0%, #141418 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.2;
  z-index: -1;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(213, 162, 83, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-strong);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: var(--surface);
  color: var(--white);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  padding: 80px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-tag,
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: inset 0 0 20px rgba(213, 162, 83, 0.06);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--white);
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.35s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #b98035, #f0c073);
  color: #111;
  box-shadow: 0 16px 40px rgba(213, 162, 83, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 50px rgba(213, 162, 83, 0.32);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.contact-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  min-width: 200px;
}

.contact-chip span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-chip strong {
  font-size: 1rem;
  color: var(--white);
}

.glow-card {
  transition: 0.35s ease;
}

.glow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(213,162,83,0.24), 0 20px 50px rgba(213,162,83,0.12);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-main-card {
  position: relative;
  height: 100%;
}

.gold-frame {
  position: relative;
  height: 100%;
  min-height: 620px;
  border-radius: 36px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(213,162,83,0.8), rgba(213,162,83,0.1), rgba(240,192,115,0.8));
  box-shadow: var(--shadow);
}

.hero-image {
  height: 100%;
  min-height: 592px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(9,9,11,0.12), rgba(9,9,11,0.45)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(10,10,12,0.52);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.mini-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--gold-strong);
  margin-bottom: 8px;
}

.hero-overlay h3 {
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-overlay p {
  color: #ddd5ca;
}

.floating-card {
  position: absolute;
  background: rgba(15,15,18,0.9);
  border: 1px solid var(--line);
  color: var(--gold-strong);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.fc-1 { top: 40px; right: -10px; }
.fc-2 { bottom: 160px; left: -18px; animation-delay: 1s; }
.fc-3 { bottom: 30px; right: 60px; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.luxury-strip {
  padding: 10px 0 30px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strip-card,
.service-card,
.process-card,
.review-card,
.gallery-card,
.contact-side-card,
.feature-box,
.contact-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.strip-card {
  padding: 26px;
  transition: 0.35s ease;
}

.strip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,192,115,0.35);
}

.strip-card h3 {
  color: var(--gold-strong);
  margin-bottom: 8px;
}

.strip-card p {
  color: var(--muted);
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.03));
}

.section-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}

.section-head {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-head h2,
.about-grid h2,
.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 12px;
}

.section-head p,
.about-grid p,
.contact-info p,
.service-card p,
.process-card p,
.review-card p,
.feature-box li,
.contact-item span {
  color: var(--muted);
}

.cards-grid,
.process-grid,
.gallery-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(240,192,115,0.12), transparent 45%);
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240,192,115,0.38);
}

.service-card h3 {
  color: var(--gold-strong);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.feature-box {
  padding: 30px;
}

.feature-box h3 {
  color: var(--gold-strong);
  margin-bottom: 14px;
}

.feature-box ul {
  list-style: none;
}

.feature-box li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-box li:last-child {
  border-bottom: none;
}

.process-grid {
  grid-template-columns: repeat(5, 1fr);
}

.process-card {
  padding: 24px;
  transition: 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.process-card h3 {
  color: var(--gold-strong);
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-card {
  overflow: hidden;
  transition: 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-10px);
}

.gallery-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  padding: 18px 20px;
  font-weight: 800;
  color: var(--white);
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 26px;
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-card strong {
  display: block;
  color: var(--gold-strong);
  margin-bottom: 10px;
}

.faq-section {
  background: rgba(255,255,255,0.02);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 20px 22px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, rgba(213,162,83,0.03), rgba(255,255,255,0.01));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-item {
  padding: 18px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  margin-top: 6px;
}

.contact-side-card {
  padding: 18px;
  background:
    linear-gradient(rgba(10,10,12,0.4), rgba(10,10,12,0.7)),
    url("https://images.unsplash.com/photo-1617104551722-3b2d513664c3?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  min-height: 100%;
}

.contact-side-inner {
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
  padding: 28px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-side-inner h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.contact-side-inner p {
  color: #e1d8ca;
  max-width: 420px;
}

.big-number {
  margin-top: 22px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-strong);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(213,162,83,0.08);
  background: rgba(0,0,0,0.22);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer h3 {
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.footer p {
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
  transition: 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: #151519;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .strip-grid,
  .cards-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .gold-frame,
  .hero-image {
    min-height: 420px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 76px 0;
  }
}