:root {
  --black: #050505;
  --dark: #0d0d0d;
  --soft: #151515;
  --white: #f7f2ea;
  --muted: #c9bfae;
  --gold: #c9a45c;
  --gold-light: #f2d28a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  background: rgba(5,5,5,0.25);
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}
.navbar.scrolled { background: rgba(5,5,5,0.88); padding: 14px 6%; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: 1px; }
.brand-mark {
  width: 42px; height: 42px; border: 1px solid var(--gold); color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-family: 'Cormorant Garamond', serif; font-size: 20px;
}
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 14px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold); padding: 10px 18px; border-radius: 999px; color: var(--white) !important; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.38), rgba(0,0,0,0.78)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero-content { max-width: 760px; position: relative; z-index: 2; }
.eyebrow, .section-label { color: var(--gold-light); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 700; }
h1, h2 { font-family: 'Cormorant Garamond', serif; margin: 12px 0 18px; line-height: 0.95; }
h1 { font-size: clamp(4rem, 9vw, 8.5rem); }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); }
.hero-text { color: var(--muted); line-height: 1.8; font-size: 18px; max-width: 620px; }
.hero-buttons { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block; padding: 15px 24px; border-radius: 999px; font-weight: 700; border: 1px solid transparent;
}
.btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1b1306; }
.btn.secondary { border-color: rgba(255,255,255,0.35); color: var(--white); }
.scroll-note { position: absolute; bottom: 26px; right: 6%; color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.section { padding: 110px 8%; }
.intro { text-align: center; max-width: 980px; margin: auto; }
.intro p, .services p, .about p, .instagram p, .contact p { color: var(--muted); line-height: 1.8; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 34px; }
.text-link { color: var(--gold-light); border-bottom: 1px solid var(--gold); padding-bottom: 6px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px;
}
.photo-card {
  position: relative; border-radius: 28px; overflow: hidden; background: linear-gradient(135deg, #282018, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
}
.photo-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=900&q=80') center/cover;
  opacity: .88;
}
.photo-card:nth-child(2)::before { background-image: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1495121605193-b116b5b9c5fe?auto=format&fit=cr[...]'); }
.photo-card:nth-child(3)::before { background-image: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=cr[...]'); }
.photo-card:nth-child(4)::before { background-image: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=cr[...]'); }
.photo-card:nth-child(5)::before { background-image: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1504196606672-aef5c9cefc92?auto=format&fit=cr[...]'); }
.photo-card span { position: absolute; left: 24px; bottom: 22px; font-family: 'Cormorant Garamond', serif; font-size: 30px; }
.tall { grid-row: span 2; }
.wide { grid-column: span 2; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.service-grid article {
  padding: 30px; background: linear-gradient(180deg, #151515, #090909); border: 1px solid rgba(201,164,92,0.22); border-radius: 24px;
}
.service-grid h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; margin: 0 0 12px; color: var(--gold-light); }

.about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.about-image { min-height: 560px; border-radius: 34px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.7)), url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=for[...]'); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.stats div { padding: 18px; background: var(--soft); border-radius: 18px; }
.stats strong { display: block; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 28px; }
.stats span { color: var(--muted); font-size: 13px; }

.instagram { background: radial-gradient(circle at center, rgba(201,164,92,.16), transparent 56%); }
.instagram-card { text-align: center; max-width: 760px; margin: auto; border: 1px solid rgba(201,164,92,.3); border-radius: 34px; padding: 68px 34px; background: rgba(15,15,15,.72); }
.instagram-card h2 { color: var(--gold-light); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; background: #080808; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 17px 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: #111; color: var(--white); outline: none;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button { padding: 16px 22px; border: 0; border-radius: 999px; background: var(--gold-light); color: #181005; font-weight: 800; cursor: pointer; }
.contact-form small { color: var(--muted); }

footer { padding: 44px 8%; display: flex; justify-content: space-between; gap: 20px; align-items: center; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); flex-wrap: wrap; }
footer a { color: var(--gold-light); }
.copyright { font-size: 13px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .gallery-grid, .service-grid, .about, .contact { grid-template-columns: 1fr; }
  .tall, .wide { grid-row: span 1; grid-column: span 1; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 80px 6%; }
  .hero { padding: 0 6%; }
  footer { display: block; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Icon-only WhatsApp floating button (white logo, no green background) */
.whatsapp-button {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: transparent;
  color: white;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.whatsapp-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-button:hover { transform: translateY(-2px); opacity: 0.95; }

@media (max-width: 480px) {
  .whatsapp-button {
    width: 52px;
    height: 52px;
    bottom: 12px;
    right: 12px;
  }
  .whatsapp-button svg { width: 26px; height: 26px; }
}
