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

:root {
  --ivory: #F5F3EF;
  --charcoal: #1a1a1a;
  --stone: #9C8B7A;
  --blush: #D4A5A5;
  --espresso: #3D2B1F;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
}

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

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

.font-serif { font-family: 'Cormorant Garamond', serif; }

::selection { background-color: var(--blush); color: var(--charcoal); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 4px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 8px 0;
  transition: all .4s ease;
}
.navbar.scrolled {
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(26,26,26,0.06);
  padding: 4px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 280px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--stone); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--charcoal); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--ivory);
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(26,26,26,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26,26,26,.06);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 320px 24px 80px;
  position: relative;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero p {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(61,43,31,.75);
}
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  transition: all .35s ease;
  cursor: pointer;
}
.btn:hover { background: var(--charcoal); color: var(--ivory); }
.btn-filled {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn-filled:hover { background: transparent; color: var(--charcoal); }
.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: transparent; color: #128C4A; border-color: #128C4A; }

/* Section shared */
section { padding: 110px 0; }
.section-eyebrow {
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
}
.section-lead { max-width: 640px; color: rgba(61,43,31,.75); margin-top: 20px; }

/* Portfolio grid */
.portfolio-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff;
}
.portfolio-overlay span { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); margin-bottom: 6px; }
.portfolio-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; }

@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* Philosophy quote */
.philosophy { background: var(--charcoal); color: var(--ivory); text-align: center; }
.philosophy blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 46px);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.3;
}
.philosophy cite { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); font-style: normal; }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; }
.photo-experiencia { object-position: center 15%; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split img { height: 360px; } }

/* CTA */
.cta { background: var(--espresso); color: var(--ivory); text-align: center; }
.cta .section-title { color: var(--ivory); }
.cta .section-lead { color: rgba(245,243,239,.75); margin-left: auto; margin-right: auto; }
.cta .btn { border-color: var(--ivory); color: var(--ivory); margin-top: 32px; }
.cta .btn:hover { background: var(--ivory); color: var(--espresso); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.service-card {
  border: 1px solid rgba(26,26,26,.1);
  padding: 40px 32px;
  transition: border-color .3s ease, transform .3s ease;
}
.service-card:hover { border-color: var(--stone); transform: translateY(-4px); }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 14px; }
.service-card p { color: rgba(61,43,31,.75); font-size: 15px; margin-bottom: 24px; }
.service-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); border-top: 1px solid rgba(26,26,26,.08); padding-top: 18px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.policy-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; }
.policy-item p { color: rgba(61,43,31,.75); font-size: 15px; }
@media (max-width: 900px) { .policy-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; color: var(--stone); }
.stat-label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(61,43,31,.7); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; text-align: center; } }

/* Diferenciais / why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.why-card { text-align: center; padding: 32px 20px; }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; margin-bottom: 12px; }
.why-card p { color: rgba(61,43,31,.75); font-size: 15px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.tags { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.tag { padding: 10px 20px; border: 1px solid rgba(26,26,26,.15); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

/* Booking page */
.booking-hero { text-align: center; }
.booking-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 70px; text-align: center; }
.booking-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 10px; color: var(--stone); }
.booking-info p { color: rgba(61,43,31,.8); }
@media (max-width: 900px) { .booking-info { grid-template-columns: 1fr; gap: 44px; } }

/* Filters (gallery) */
.filters { display: flex; flex-wrap: wrap; gap: 14px; margin: 40px 0 56px; }
.filter-btn {
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(26,26,26,.2);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--charcoal); background: var(--charcoal); color: var(--ivory); }
.gallery-grid { column-count: 3; column-gap: 24px; }
.gallery-grid .portfolio-item { break-inside: avoid; margin-bottom: 24px; aspect-ratio: auto; }
.gallery-grid .portfolio-item img { height: auto; }
@media (max-width: 980px) { .gallery-grid { column-count: 2; } }
@media (max-width: 620px) { .gallery-grid { column-count: 1; } }

/* Footer */
footer { background: var(--charcoal); color: rgba(255,255,255,.8); padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-logo img {
  height: 280px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter:
    drop-shadow(1.5px 0 0 #fff)
    drop-shadow(-1.5px 0 0 #fff)
    drop-shadow(0 1.5px 0 #fff)
    drop-shadow(0 -1.5px 0 #fff);
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,.6); }
footer h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; transition: color .3s ease; }
.footer-links a:hover { color: var(--blush); }
.footer-contact a, .footer-contact p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 10px; display: block; }
.footer-contact a:hover { color: var(--blush); }
.footer-social { display: inline-flex; align-items: center; gap: 8px; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom .accent { color: var(--blush); letter-spacing: .1em; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
