:root {
  --black: #111;
  --deep: #1f1b17;
  --brown: #3b261c;
  --coffee: #6a4f3d;
  --cream: #f3efe6;
  --sand: #dcccbd;
  --gold: #b89c72;
  --white: #fffaf2;
  --muted: #cfc2b5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--deep);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
}
.brand img {
  height: 62px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav a.active,
.nav a:hover {
  color: var(--gold);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 28px;
}
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 125px 24px 76px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 17, 17, 0.25), rgba(17, 17, 17, 0.96)),
    url("../img/hero.png") center/cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 25%,
    rgba(184, 156, 114, 0.24),
    transparent 31%
  );
}
.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin: 0 0 18px;
}
.hero-logo {
  width: min(520px, 82vw);
  margin: 0 auto 22px;
}
.tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin: 22px 0;
  color: var(--sand);
}
.hero-copy {
  max-width: 620px;
  margin: 0 auto 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  transition: 0.3s;
  cursor: pointer;
}
.primary {
  background: var(--gold);
  color: var(--black);
}
.ghost {
  background: transparent;
  color: var(--cream);
}
.light {
  color: var(--black);
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-padding {
  padding: 100px 6vw;
}
.container {
  max-width: 1180px;
  margin: auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
h1 {
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.9;
  margin: 0;
}
h2 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 0 0 22px;
}
.center {
  text-align: center;
}
.intro,
.contact,
.contact-panel {
  background: var(--cream);
  color: var(--black);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.card {
  padding: 34px 26px;
  border: 1px solid rgba(243, 239, 230, 0.13);
  background: rgba(255, 250, 242, 0.035);
  min-height: 230px;
}
.card span {
  color: var(--gold);
  letter-spacing: 0.2em;
}
.card h3 {
  font-size: 30px;
}
.portfolio-hero,
.contact-hero {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 130px 6vw 70px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.9)),
    url("../img/home-detail.jpg") center/cover;
}
.invites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}
.invite-card {
  border: 1px solid rgba(243, 239, 230, 0.14);
  background: rgba(255, 250, 242, 0.035);
  padding: 26px;
  transition: 0.3s;
}
.invite-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.phone {
  width: 230px;
  height: 455px;
  border: 10px solid #080808;
  border-radius: 34px;
  margin: 0 auto 25px;
  background: #111;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.phone:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 7px;
  border-radius: 999px;
  background: #050505;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.82);
}
.screen-one {
  background-image: url("../img/invite01.jpg");
}
.screen-two {
  background-image: url("../img/invite02.jpg");
}
.screen-three {
  background-image: url("../img/invite03.jpg");
}
.invite-meta {
  text-align: center;
}
.invite-meta p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0;
}
.invite-meta h3 {
  font-size: 34px;
  margin: 8px 0;
}
.invite-meta small {
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}
.quote-band {
  text-align: center;
  padding: 140px 6vw;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.58)
    ),
    url("../img/quote-bg.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.quote-band p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--sand);
}
.quote-band h2 {
  letter-spacing: 0.18em;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid #d6c7b4;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #c7b8a3;
  background: #fffaf4;
  font-family: inherit;
}
.contact-form textarea {
  min-height: 150px;
}
.socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(243, 239, 230, 0.2);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: 0.3s;
}
.socials a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer {
  text-align: center;
  padding: 50px 20px 28px;
  background: var(--black);
  color: var(--sand);
}
.footer-logo {
  width: 170px;
  margin: 0 auto 18px;
}
.footer .footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}
.copyright {
  font-size: 11px;
  opacity: 0.72;
  margin-top: 28px;
}
.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.floating-wa svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: all 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    padding: 14px 5vw;
  }
  .brand img {
    height: 48px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.97);
    padding: 28px 6vw;
  }
  .nav.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards,
  .invites-grid {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 76px 6vw;
  }
  .hero-logo {
    width: min(440px, 90vw);
  }
  .phone {
    width: 210px;
    height: 415px;
  }
}
/* ===== PROCESO ===== */

.process {
  background:
    radial-gradient(
      circle at center,
      rgba(181,154,118,.10),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #0b0a09,
      #16120f
    );
}

.steps {
  display: grid;
  gap: 28px;
}

.steps div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(243,239,230,.12);
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 22px;
  letter-spacing: .12em;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.process h2 {
  margin-bottom: 0;
}