:root {
  --bg: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --text: #f6f1e8;
  --muted: #d5c8b6;
  --accent: #c78a45;
  --accent-2: #ead9bb;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 138, 69, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(234, 217, 187, 0.08), transparent 30%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.section.alt { background: rgba(255,255,255,0.03); }
.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.06;
}
h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.65rem; }
p { margin: 0 0 14px; color: var(--muted); }

.bg-orb {
  position: fixed;
  width: 340px;
  height: 340px;
  filter: blur(70px);
  z-index: -1;
  opacity: 0.35;
}
.orb-1 { top: 5%; left: -60px; background: rgba(199,138,69,0.25); }
.orb-2 { bottom: 8%; right: -80px; background: rgba(255,255,255,0.12); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.62);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: cover;
  background: #fff;
}
.brand strong { display: block; font-size: 1.3rem; }
.brand span { display: block; color: var(--muted); font-size: 0.86rem; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: #f2ebdf;
  font-weight: 500;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }
.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
}
.menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.68) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-copy {
  max-width: 720px;
  padding: 36px;
}
.glass-card {
  background: rgba(16,16,16,0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.lead { font-size: 1.08rem; max-width: 62ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d9ab70);
  color: #1b1208;
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.btn-full { width: 100%; }

.about-grid,
.video-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.info-chips span,
.social-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.portrait-card,
.video-card,
.contact-card,
.contact-form,
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.portrait-card img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  padding: 28px;
  min-height: 220px;
}
.service-card h3 { margin-bottom: 10px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.video-card { padding: 18px; }
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-card,
.contact-form {
  padding: 30px;
}
.contact-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.contact-list li { margin-bottom: 14px; color: var(--muted); }
.contact-list a { color: #fff; }
.form-row { display: grid; gap: 8px; margin-bottom: 14px; }
label { color: #fff; font-weight: 600; }
input, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
  color: #fff;
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(199,138,69,0.7); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
  background: rgba(0,0,0,0.22);
}
.footer-wrap { text-align: center; }
.footer-wrap a { color: var(--accent-2); }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1dd75f, #0ea84d);
  box-shadow: 0 18px 36px rgba(0,0,0,0.35);
  z-index: 60;
}
.floating-whatsapp svg { width: 34px; fill: white; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .services-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .video-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
}

@media (max-width: 760px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10,10,10,.95);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.2rem); }
  .hero { min-height: 85vh; }
  .hero-copy { padding: 24px; }
  .section { padding: 74px 0; }
  .gallery-grid,
  .services-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: auto; aspect-ratio: 1 / 1; }
  .floating-whatsapp { width: 58px; height: 58px; }
}
