/* DESIGN TOKENS */
:root {
  --bg: #090909;
  --bg2: #111111;
  --panel: #111111;
  --burgundy: #5E0712;
  --wine: #8B0D1B;
  --wine-glow: rgba(139, 13, 27, .18);
  --wine-border: rgba(139, 13, 27, .5);
  --ivory: #F2EDE5;
  --warm-gray: #A9A3A0;
  --muted: #7A7472;
  --line: rgba(255, 255, 255, .08);
  --gold: #C4A882;
  --radius: 2px;
  --shadow-deep: 0 32px 90px rgba(0, 0, 0, .6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .042;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

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

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: auto;
}

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

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--warm-gray);
  font-weight: 400;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(140deg, var(--wine), var(--burgundy));
  color: var(--ivory);
  box-shadow: 0 10px 40px rgba(139, 13, 27, .3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(139, 13, 27, .45);
  background: linear-gradient(140deg, #9c1020, var(--wine));
}

.btn-ghost {
  border-color: var(--line);
  color: var(--warm-gray);
}

.btn-ghost:hover {
  border-color: rgba(242, 237, 229, .2);
  color: var(--ivory);
}

.btn-outline-wine {
  border-color: var(--wine-border);
  color: var(--ivory);
  background: var(--wine-glow);
}

.btn-outline-wine:hover {
  background: rgba(139, 13, 27, .28);
  border-color: rgba(139, 13, 27, .75);
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* NAV */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(9, 9, 9, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
}

.nav-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-tagline {
  font-size: 8px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.footer-logo {
  height: clamp(160px, 20vw, 240px);
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 35px rgba(139, 13, 27, .45));
  transition: transform .4s ease;
}

.footer-logo:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.nav-links a {
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--ivory);
}

.nav-cta {
  padding: 10px 20px !important;
  border: 1px solid var(--wine-border) !important;
  border-radius: 999px !important;
  color: var(--ivory) !important;
  background: var(--wine-glow) !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: rgba(139, 13, 27, .28) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

#mobile-menu {
  display: none;
  position: fixed;
  inset: 84px 0 0;
  background: rgba(9, 9, 9, .97);
  backdrop-filter: blur(20px);
  z-index: 89;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .08em;
}

#mobile-menu.open {
  display: flex;
}

#mobile-menu a {
  transition: color .2s;
}

#mobile-menu a:hover {
  color: var(--warm-gray);
}

#mobile-menu .mob-cta {
  font-family: Manrope, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  margin-top: 10px;
}

/* HERO */
#hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 800px;
  height: 800px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(139, 13, 27, .35) 0%, rgba(94, 7, 18, .15) 40%, transparent 70%);
  filter: blur(50px);
}

.orb-3 {
  width: 400px;
  height: 400px;
  left: 5%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(139, 13, 27, .2), transparent 70%);
  filter: blur(50px);
}

.hero-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-welcome-logo {
  height: clamp(240px, 30vw, 420px);
  width: auto;
  margin-top: 0;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 60px rgba(139, 13, 27, .55));
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.hero-welcome-logo:hover {
  transform: scale(1.03);
}

.hero-super {
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-super::before,
.hero-super::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(196, 168, 130, .4);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.8vw, 90px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 400;
  margin-bottom: 24px;
}

h1 em {
  font-style: italic;
  color: #D4BFC2;
  font-weight: 300;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-bg-photo {
  position: absolute;
  right: max(20px, 3vw);
  top: 90px;
  transform: none;
  z-index: 1;
  pointer-events: none;
  opacity: .95;
}

.hero-oval-frame {
  position: relative;
  width: clamp(380px, 35vw, 540px);
  height: clamp(600px, 78vh, 850px);
  border-radius: 0;
  overflow: visible;
  transform: none;
  border: none;
  box-shadow: none;
  background: transparent;
  mask-image: none;
  -webkit-mask-image: none;
}

.hero-editorial-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform: none;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .95)) drop-shadow(0 0 50px rgba(139, 13, 27, .35));
}

.hero-frame-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(9, 9, 9, .95) 100%);
}

.hero-oval-vline {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 9px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .5;
  white-space: nowrap;
}

.hero-disclaimer {
  margin-top: 22px;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-scroll-down {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  transition: color .3s;
}

.hero-scroll-down:hover {
  color: var(--ivory);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--wine), transparent);
  animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
    transform: scaleY(.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* SECTIONS */
section {
  padding: 120px 0;
  position: relative;
}

/* EXPERIENCE & OCCASIONS SECTION HIGHLIGHTS */
#experiencia {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0a0d 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

#experiencia::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -100px;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 13, 27, .18), transparent 70%);
  pointer-events: none;
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.exp-left {
  position: relative;
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(196, 168, 130, .25);
  background: rgba(196, 168, 130, .06);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.exp-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wine);
}

.exp-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -.03em;
  font-weight: 400;
  margin: 0;
}

.exp-right {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.exp-text {
  font-size: 15px;
  line-height: 2;
  color: var(--warm-gray);
}

.exp-text+.exp-text {
  margin-top: 24px;
}

.exp-rule {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--wine), transparent);
  margin: 36px 0;
}

.exp-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.exp-stat-card {
  background: linear-gradient(160deg, rgba(22, 14, 18, 0.7), rgba(12, 12, 14, 0.9));
  border: 1px solid rgba(139, 13, 27, 0.3);
  border-top: 2px solid var(--wine);
  padding: 24px 20px;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all .35s ease;
}

.exp-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 168, 130, 0.5);
  box-shadow: 0 20px 50px rgba(139, 13, 27, 0.25);
}

.exp-stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}

.exp-stat-card span {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* ATTRIBUTES SECTION (VANITY HOSTESS INSPIRED) */
#atributos {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.attrs-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.attrs-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-top: 14px;
}

.attrs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attr-card {
  background: linear-gradient(150deg, rgba(20, 14, 18, 0.7), rgba(10, 10, 12, 0.9));
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 36px 30px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

.attr-card:hover {
  border-color: rgba(139, 13, 27, .6);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(139, 13, 27, .2);
}

.attr-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, .3);
  background: rgba(196, 168, 130, .06);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
}

.attr-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ivory);
}

.attr-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* OCCASIONS ENHANCED */
#ocasiones {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

#ocasiones::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: -150px;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 13, 27, .15), transparent 70%);
  pointer-events: none;
}

.occasions-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 60px;
}

.occasions-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: .97;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-top: 14px;
}

.occasions-head p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--warm-gray);
  align-self: end;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.occasion-card {
  padding: 38px 28px 40px;
  background: linear-gradient(165deg, rgba(24, 16, 20, 0.75), rgba(13, 13, 15, 0.95));
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 2px solid rgba(139, 13, 27, .6);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .45);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.occasion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139, 13, 27, .25), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.occasion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 168, 130, .5);
  border-top-color: var(--gold);
  box-shadow: 0 24px 60px rgba(139, 13, 27, .3);
}

.occasion-card:hover::before {
  opacity: 1;
}

.occ-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.occ-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--gold);
  border: 1px solid rgba(196, 168, 130, .3);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(196, 168, 130, .06);
}

.occ-icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  opacity: .8;
}

.occ-body {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.occ-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.1;
  color: var(--ivory);
}

.occ-body p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* PRIVATE SELECTION */
#seleccion {
  background: var(--bg2);
}

.private-box {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(94, 7, 18, .15), rgba(255, 255, 255, .02) 45%, rgba(255, 255, 255, .01));
  padding: 80px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.private-box::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 7, 18, .18), transparent 70%);
}

.private-box-v {
  position: absolute;
  right: 40px;
  bottom: -80px;
  font-family: "Cormorant Garamond", serif;
  font-size: 320px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, .025);
  user-select: none;
  pointer-events: none;
}

.private-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 100px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.private-grid h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 400;
  margin: 16px 0 0;
}

.private-copy {
  font-size: 14px;
  line-height: 2;
  color: var(--warm-gray);
  margin: 28px 0 16px;
}

.private-sub {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}

.private-right-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.3;
  color: #DDD4D6;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.private-right-quote span {
  color: var(--warm-gray);
}

/* HOW IT WORKS */
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.process-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: .97;
  letter-spacing: -.03em;
  font-weight: 400;
  margin-top: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.step-card {
  padding: 32px 26px 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .3s;
}

.step-card:hover {
  border-color: var(--wine-border);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(139, 13, 27, .4);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #D4B8BC;
  margin-bottom: 52px;
}

.step-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.1;
}

.step-card p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* DISCRETION */
#discrecion {
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}

.disc-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 7, 18, .15), transparent 70%);
  pointer-events: none;
}

.disc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.disc-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 400;
  margin: 16px 0 36px;
}

.disc-list {
  list-style: none;
}

.disc-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 14px;
}

.disc-item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wine);
  flex-shrink: 0;
}

.disc-item:last-child {
  border-bottom: 1px solid var(--line);
}

.disc-big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(50px, 6.5vw, 90px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 300;
  font-style: italic;
  color: #E8DFE0;
  text-align: right;
}

.disc-big span {
  color: var(--warm-gray);
  display: block;
  font-style: normal;
}

/* PRINCIPLES */
#principios {
  border-top: 1px solid var(--line);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin-top: 60px;
}

.principle {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.principle h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.principle p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--warm-gray);
}

.principles-legal {
  margin-top: 32px;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
  line-height: 1.8;
}

/* FINAL CTA */
#cta-final {
  padding: 80px 0 130px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 7, 18, .22), transparent 68%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: .93;
  letter-spacing: -.04em;
  font-weight: 400;
  max-width: 820px;
  margin: 16px auto 26px;
}

.cta-inner p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-inner .actions {
  justify-content: center;
}

.cta-inner p.cta-note {
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--gold);
  opacity: .85;
  text-transform: uppercase;
  margin: 64px auto 0 !important;
  max-width: none;
}

/* FOOTER */
footer {
  padding: 40px 0 52px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--warm-gray);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 28px;
  gap: 8px;
}

.footer-copy {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em;
}

.footer-legal {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .1em;
  text-align: center;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
  transition: box-shadow .3s;
}

.wa-float:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .55);
}

.wa-icon {
  width: 52px;
  height: 52px;
  background: #1a0508;
  border: 1px solid rgba(139, 13, 27, .5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s;
}

.wa-float:hover .wa-icon {
  background: rgba(94, 7, 18, .7);
}

.wa-label {
  display: none;
  padding: 0 16px 0 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: #1a0508;
  border: 1px solid rgba(139, 13, 27, .5);
  border-left: none;
  border-radius: 0 999px 999px 0;
  height: 52px;
  align-items: center;
  white-space: nowrap;
}

.wa-float:hover .wa-label {
  display: flex;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.delay-1 {
  transition-delay: .1s;
}

.reveal.delay-2 {
  transition-delay: .2s;
}

.reveal.delay-3 {
  transition-delay: .3s;
}

.reveal.delay-4 {
  transition-delay: .45s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* FULLSCREEN INTRO SPLASH CURTAIN */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #070707;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1), transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), visibility 1.8s ease;
  cursor: pointer;
}

#intro-splash.fade-out {
  opacity: 0;
  transform: scale(1.05);
  visibility: hidden;
  pointer-events: none;
}

.splash-glow {
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 13, 27, .45) 0%, rgba(94, 7, 18, .15) 50%, transparent 70%);
  filter: blur(70px);
  animation: splashPulse 3s infinite alternate ease-in-out;
}

.splash-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  animation: splashAppear 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-logo-img {
  height: clamp(320px, 45vw, 580px);
  max-width: 90vw;
  width: auto;
  filter: drop-shadow(0 0 60px rgba(139, 13, 27, .6));
}

.splash-sub {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .9;
}

.splash-enter-btn {
  margin-top: 40px;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(196, 168, 130, .3);
  padding: 8px 24px;
  border-radius: 999px;
  background: rgba(196, 168, 130, .05);
  transition: all .3s;
}

#intro-splash:hover .splash-enter-btn {
  color: var(--ivory);
  border-color: var(--gold);
  background: rgba(139, 13, 27, .2);
}

@keyframes splashAppear {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(15px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes splashPulse {
  0% {
    opacity: .5;
    transform: scale(.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-bg-photo {
    opacity: .4;
    right: -50px;
  }

  .hero-bg-photo-left {
    opacity: .4;
    left: -50px;
  }
}

@media (max-width: 1024px) {
  .hero-bg-photo {
    display: block;
    position: absolute;
    right: -20px;
    top: 60px;
    bottom: auto;
    transform: none;
    opacity: .35;
    z-index: 1;
    pointer-events: none;
  }

  .hero-oval-frame {
    width: clamp(280px, 45vw, 360px);
    height: clamp(440px, 60vh, 580px);
  }

  .hero-oval-vline {
    display: none !important;
  }

  .exp-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-right {
    padding-left: 0;
    border-left: 0;
  }

  .exp-left {
    position: static;
  }

  .occasions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .private-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .private-box {
    padding: 52px 44px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .disc-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .disc-big {
    text-align: left;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .attrs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .wrap {
    width: min(100% - 32px, 1200px);
  }

  .nav-inner {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-name {
    font-size: 22px;
  }

  #hero {
    padding: 90px 0 40px;
  }

  .hero-welcome-logo {
    height: 180px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-bg-photo {
    display: block;
    position: absolute;
    right: -30px;
    top: 40px;
    bottom: auto;
    transform: none;
    opacity: .32;
    z-index: 1;
    pointer-events: none;
  }

  .hero-oval-frame {
    width: 250px;
    height: 400px;
  }

  section {
    padding: 80px 0;
  }

  .exp-stat {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .occasions-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .occasions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .attrs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .private-box {
    padding: 36px 26px;
  }

  .private-box-v {
    display: none;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-legal {
    text-align: center;
  }

  .wa-float:hover .wa-label {
    display: none;
  }

  .cta-inner {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}