:root {
  --cream: #fbf6f0;
  --cream-deep: #f4ebe0;
  --blush: #efddcd;
  --coffee: #3a2a21;
  --coffee-soft: #6b564a;
  --copper: #b67a47;
  --copper-light: #ddab78;
  --copper-dark: #8a5a32;
  --gold-line: linear-gradient(
    90deg,
    rgba(138, 90, 50, 0) 0%,
    #8a5a32 15%,
    #ddab78 50%,
    #8a5a32 85%,
    rgba(138, 90, 50, 0) 100%
  );
  --whatsapp: #3fa24b;
  --shadow: 0 20px 50px -25px rgba(58, 42, 33, 0.35);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--coffee);
  font-family: "Cormorant Garamond", serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}

.eyebrow {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--copper-dark);
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--coffee);
  line-height: 1.15;
}
.script {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  color: var(--copper-dark);
}
.divider {
  height: 2px;
  width: 100%;
  background: var(--gold-line);
  border: none;
}
.divider-short {
  height: 2px;
  width: 88px;
  background: linear-gradient(90deg, #8a5a32, #ddab78);
  border: none;
  margin: 0 auto;
}

.section {
  padding: 96px 6vw;
}
.section-narrow {
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: rgba(251, 246, 240, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(138, 90, 50, 0.12);
  transition: padding 0.3s ease;
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.brand span {
  color: var(--copper);
}
nav {
  display: flex;
  gap: 38px;
  align-items: center;
}
nav a {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coffee-soft);
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--copper-dark);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--coffee);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 100px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.nav-cta:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 6vw 80px;
  overflow: hidden;
}
.hero-illustration {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--blush);
  box-shadow: var(--shadow);
}
.hero-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-wrap.img-missing .hero-cover-img {
  display: none;
}
.hero-ph-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
  padding: 20px;
  text-align: center;
}
.hero-image-wrap.img-missing .hero-ph-label {
  display: flex;
}
.hero-ph-label svg {
  width: 32px;
  height: 32px;
  opacity: 0.6;
}
.hero-content {
  text-align: left;
  max-width: 560px;
}
.hero .eyebrow {
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: clamp(4rem, 11vw, 7.5rem);
  color: var(--copper-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.hero h2 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--coffee-soft);
  margin-bottom: 32px;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--coffee-soft);
  max-width: 520px;
  margin: 0 auto 44px;
  font-style: italic;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(100deg, #8a5a32, #c88a54, #8a5a32);
  background-size: 220% 100%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
  padding: 18px 36px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition:
    background-position 0.6s ease,
    transform 0.25s ease;
}
.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
}
.btn-primary svg {
  width: 20px;
  height: 20px;
}
.hero-note {
  margin-top: 20px;
  font-family: "Jost", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--coffee-soft);
  opacity: 0.8;
}

/* INTRO STRIP */
.intro {
  text-align: center;
  padding: 70px 6vw;
  background: var(--blush);
}
.intro p {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--coffee);
  line-height: 1.6;
}

/* SERVICES */
.services-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.services-head .eyebrow {
  margin-bottom: 14px;
}
.services-head h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}
.services-head p {
  color: var(--coffee-soft);
  font-size: 1.15rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(138, 90, 50, 0.14);
  border-radius: 4px;
  padding: 44px 34px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--copper-dark);
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.service-card .sub {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  display: block;
}
.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.service-card li {
  font-size: 1.02rem;
  color: var(--coffee-soft);
  padding: 9px 0;
  border-bottom: 1px solid rgba(138, 90, 50, 0.1);
}
.service-card li:last-child {
  border-bottom: none;
}
.card-link {
  font-family: "Jost", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.card-link:hover svg {
  transform: translateX(4px);
}

/* WHY */
.why {
  background: var(--coffee);
  color: var(--cream);
}
.why .section-narrow {
  text-align: center;
}
.why .eyebrow {
  color: var(--copper-light);
}
.why h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.why-item .num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2.6rem;
  color: var(--copper-light);
  margin-bottom: 14px;
}
.why-item h4 {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 500;
}
.why-item p {
  color: rgba(251, 246, 240, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

/* GALLERY STRIP */
.strip {
  height: 1px;
  background: var(--gold-line);
}

/* GALLERY — Otimizada para fotos verticais (retrato) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush);
}
.gallery-item.tall,
.gallery-item.wide {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item .ph-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-dark);
  background: var(--blush);
}
.gallery-item .ph-label svg {
  width: 26px;
  height: 26px;
  opacity: 0.6;
}
.gallery-item.img-missing img {
  display: none;
}
.gallery-item.img-missing .ph-label {
  display: flex;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58, 42, 33, 0) 40%,
    rgba(58, 42, 33, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 14, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 6vw;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 26px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.lightbox-close:hover {
  opacity: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}
.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

/* LOCATION */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.location-info {
  padding: 96px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-deep);
}
.location-info h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 22px;
}
.location-info .addr {
  font-size: 1.3rem;
  color: var(--coffee-soft);
  margin-bottom: 8px;
}
.location-info .hours {
  font-size: 1.05rem;
  color: var(--coffee-soft);
  margin-bottom: 34px;
}
.location-info .hours strong {
  color: var(--coffee);
  font-weight: 600;
}
.map-wrap {
  min-height: 420px;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

/* FOOTER */
footer {
  background: var(--coffee);
  color: rgba(251, 246, 240, 0.65);
  padding: 56px 6vw 32px;
  text-align: center;
}
footer .brand-foot {
  font-family: "Pinyon Script", cursive;
  font-size: 2.2rem;
  color: var(--copper-light);
  margin-bottom: 10px;
}

footer img {
    width: 5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

footer p {
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
footer .foot-links {
  margin-top: 22px;
  display: flex;
  gap: 24px;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
footer .foot-links a:hover {
  color: var(--copper-light);
}
footer .credit {
  margin-top: 30px;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(63, 162, 75, 0.6);
  animation: pulse 2.6s ease-in-out infinite;
}
.float-wa svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 12px 30px -8px rgba(63, 162, 75, 0.6);
  }
  50% {
    box-shadow: 0 12px 34px -6px rgba(63, 162, 75, 0.85);
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-wa {
    animation: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .location {
    grid-template-columns: 1fr;
  }
  .map-wrap {
    min-height: 320px;
  }
  .map-wrap iframe {
    min-height: 320px;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 70px 6vw;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  header {
    padding: 16px 5vw;
  }
  .nav-cta {
    padding: 10px 16px;
    font-size: 0.68rem;
  }
}

:focus-visible {
  outline: 2px solid var(--copper-dark);
  outline-offset: 3px;
}
