
/* ═══════════════════════════════════════════════
   TEMA: LUXO — Atelier Premium
   Fontes: Cormorant Garamond (serif) + DM Sans (corpo)
   Feel: Parisian atelier, warm gold/cream, cinematic
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --gold:        #C9A96E;
  --gold-light:  #D4B88A;
  --bg:          #0C0B09;
  --bg-2:        #111008;
  --text:        #F5F0EB;
  --text-muted:  rgba(245,240,235,0.55);
  --border:      rgba(201,169,110,0.15);
  --radius:      2px;
}

body { background: var(--bg); color: var(--text); letter-spacing: 0.01em; }

/* Hero — split layout, foto à direita */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 8rem 6rem;
}
.hero-photo-bg {
  position: relative;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
}
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
}

/* Tipografia hero */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; opacity: 0.8; }
.hero-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin-bottom: 2.5rem; font-weight: 300; }

/* Botões */
.btn, .btn-solid {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-solid { background: var(--gold); color: var(--bg); }
.btn:hover { background: var(--gold); color: var(--bg); }
.btn-solid:hover { background: var(--gold-light); }

/* Section titles */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }

/* Service cards */
.service-card { border: none; border-bottom: 1px solid var(--border); background: transparent; }
.service-card:hover { background: rgba(201,169,110,0.04); }
.service-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; font-style: italic; color: var(--text); }
.service-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--gold); }

/* Review cards */
.review-card { background: transparent; border: 1px solid var(--border); padding: 2rem; }
.review-stars { color: var(--gold); letter-spacing: 0.1em; }
.review-text { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* Gallery — masonry feel */
.gallery-grid { columns: 3; column-gap: 8px; }
.gallery-grid img { width: 100%; margin-bottom: 8px; break-inside: avoid; aspect-ratio: unset; border-radius: 0; }

/* Nav */
nav, .nav { background: transparent; }
.nav.nav--scrolled { background: rgba(12,11,9,0.95); backdrop-filter: blur(20px); }
.nav__logo { font-family: var(--font-serif); font-weight: 300; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav__link { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; }

/* Footer */
.footer { background: #070604; border-top: 1px solid var(--border); }

/* Mobile */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-photo-bg { min-height: 50vh; position: absolute; inset: 0; opacity: 0.3; }
  .hero-photo-bg::after { display: none; }
}
