:root {
  --ink: #071914;
  --ink-soft: #0d2a22;
  --green: #153d32;
  --gold: #d6ad61;
  --gold-light: #f3dfad;
  --cream: #fff9e8;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

button, input { font: inherit; }

.coming-soon-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 30%, rgba(39, 100, 79, .4), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(141, 91, 24, .17), transparent 30%),
    linear-gradient(135deg, #061712 0%, #0c2921 52%, #061914 100%);
}

.coming-soon-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, black, transparent 76%);
}

.coming-soon-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  box-shadow: inset 0 0 170px rgba(0,0,0,.67);
}

.ambient {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .13;
  z-index: -1;
  animation: ambientMove 12s ease-in-out infinite alternate;
}

.ambient-one { background: #e8b756; top: -280px; right: -120px; }
.ambient-two { background: #57a27f; bottom: -340px; left: -100px; animation-delay: -6s; }

.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particles span {
  position: absolute;
  bottom: -12px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px rgba(239, 199, 117, .48);
  opacity: 0;
  animation: floatParticle linear infinite;
}

.frame-lines { position: absolute; inset: 22px; pointer-events: none; opacity: .5; }
.frame-corner { position: absolute; width: 74px; height: 74px; }
.frame-corner::before, .frame-corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.frame-corner::before { width: 100%; height: 1px; top: 0; }
.frame-corner::after { width: 1px; height: 100%; top: 0; }
.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; transform: scaleX(-1); }
.bottom-left { bottom: 0; left: 0; transform: scaleY(-1); }
.bottom-right { bottom: 0; right: 0; transform: scale(-1); }

.hero-section {
  width: min(1260px, calc(100% - 64px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  padding: 58px 0 34px;
}

.brand-stage {
  position: relative;
  width: min(42vw, 530px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: stageEntrance 1.5s cubic-bezier(.16, 1, .3, 1) both;
}

.brand-logo {
  position: relative;
  z-index: 3;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.48)) drop-shadow(0 0 14px rgba(224,168,65,.13));
  animation: logoBreath 5s ease-in-out infinite 1.4s;
}

.logo-glow {
  position: absolute;
  width: 69%;
  height: 69%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 182, 82, .18), transparent 68%);
  filter: blur(22px);
  animation: glowPulse 4s ease-in-out infinite;
}

.orbit { position: absolute; border-radius: 50%; }
.orbit-outer {
  inset: 0;
  border: 1px solid rgba(214,173,97,.18);
  animation: orbitRotate 26s linear infinite;
}
.orbit-outer::before, .orbit-outer::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px dashed rgba(214,173,97,.13);
}
.orbit-outer::after { inset: 28px; border-style: solid; opacity: .45; }
.orbit-outer i {
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  margin: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), #9b5c18);
  box-shadow: 0 0 14px rgba(230,181,84,.42);
  transform: rotate(calc(var(--i) * 45deg)) translateY(-264px);
}
.orbit-outer i:nth-child(1) { --i: 0; }
.orbit-outer i:nth-child(2) { --i: 1; }
.orbit-outer i:nth-child(3) { --i: 2; }
.orbit-outer i:nth-child(4) { --i: 3; }
.orbit-outer i:nth-child(5) { --i: 4; }
.orbit-outer i:nth-child(6) { --i: 5; }
.orbit-outer i:nth-child(7) { --i: 6; }
.orbit-outer i:nth-child(8) { --i: 7; }

.orbit-inner {
  width: 79%; height: 79%;
  border: 1px solid rgba(255,243,201,.12);
  box-shadow: inset 0 0 50px rgba(0,0,0,.15);
  animation: orbitRotate 20s linear infinite reverse;
}
.orbit-inner::before, .orbit-inner::after {
  content: "✦";
  position: absolute;
  left: 50%;
  color: var(--gold);
  font-size: 13px;
  text-shadow: 0 0 12px rgba(225,178,82,.7);
}
.orbit-inner::before { top: -8px; }
.orbit-inner::after { bottom: -8px; transform: rotate(180deg); }

.content-stage { position: relative; z-index: 2; max-width: 630px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow span { width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow span:last-child { transform: scaleX(-1); }

h1 {
  margin: 23px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.045em;
  color: transparent;
  background: linear-gradient(180deg, #fffbea 8%, #ebd399 54%, #ad762e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.25));
}
h1 span { display: block; margin: 0 0 .18em; font-size: .57em; font-style: normal; letter-spacing: .025em; }

.formal-title { line-height: .88; letter-spacing: -.025em; }

.lead {
  max-width: 570px;
  margin: 0;
  color: rgba(255,249,232,.68);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: .012em;
}

.signature { display: flex; align-items: center; gap: 13px; width: 145px; margin: 25px 0; }
.signature span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(214,173,97,.7)); }
.signature span:last-child { transform: scaleX(-1); }
.signature b { color: var(--gold); font-weight: 400; font-size: 11px; }

.notify-form {
  position: relative;
  width: min(100%, 540px);
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(233,202,137,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 50px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.notify-form:focus-within { border-color: rgba(238,202,128,.65); box-shadow: 0 0 0 4px rgba(214,173,97,.07); }
.notify-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
}
.notify-form input::placeholder { color: rgba(255,255,255,.42); }
.notify-form button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #163027;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  background: linear-gradient(120deg, #e8c777, #fff0bd 48%, #c18b3f);
  box-shadow: 0 8px 24px rgba(207,151,55,.2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.notify-form button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(229,177,79,.31); }
.notify-form button b { font-size: 16px; transition: transform .3s ease; }
.notify-form button:hover b { transform: translate(3px, -3px); }

.success-message {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 14px;
  animation: successIn .55s ease both;
}
.success-message span {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.qualities { display: flex; align-items: center; gap: 14px; margin-top: 27px; color: rgba(255,255,255,.38); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.qualities i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.whatsapp-button {
  position: fixed;
  right: 34px;
  bottom: 31px;
  z-index: 12;
  min-width: 255px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(238, 213, 157, .38);
  border-radius: 999px;
  color: #f9edcd;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(12, 52, 40, .94), rgba(6, 29, 23, .96));
  box-shadow: 0 18px 48px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  animation: whatsappEntrance .8s cubic-bezier(.16,1,.3,1) 1.35s both;
}
.whatsapp-button:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 213, 157, .7);
  box-shadow: 0 22px 55px rgba(0,0,0,.44), 0 0 0 5px rgba(214,173,97,.06);
}
.whatsapp-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #123229;
  background: linear-gradient(140deg, #f1d78e, #c58d3d);
  box-shadow: 0 8px 24px rgba(197,141,61,.23);
}
.whatsapp-icon svg { width: 24px; height: 24px; fill: currentColor; }
.whatsapp-copy { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.whatsapp-copy small { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.whatsapp-copy strong { font-size: 12px; font-weight: 650; letter-spacing: .045em; }
.whatsapp-arrow { color: var(--gold-light); font-size: 15px; transition: transform .3s ease; }
.whatsapp-button:hover .whatsapp-arrow { transform: translate(3px, -3px); }

footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,.3);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-mark { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(22px); animation: revealUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.reveal-one { animation-delay: .45s; }
.reveal-two { animation-delay: .58s; }
.reveal-three { animation-delay: .72s; }
.reveal-four { animation-delay: .84s; }
.reveal-five { animation-delay: .96s; }
.reveal-six { animation-delay: 1.08s; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes stageEntrance { from { opacity: 0; transform: scale(.7) rotate(-9deg); filter: blur(10px); } to { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); } }
@keyframes logoBreath { 0%,100% { transform: scale(1); } 50% { transform: scale(1.018); } }
@keyframes orbitRotate { to { transform: rotate(360deg); } }
@keyframes glowPulse { 0%,100% { opacity: .45; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@keyframes ambientMove { to { transform: translate(65px, 35px) scale(1.15); } }
@keyframes floatParticle { 0% { opacity: 0; transform: translateY(0) scale(.5); } 15% { opacity: .55; } 85% { opacity: .2; } 100% { opacity: 0; transform: translateY(-105vh) translateX(28px) scale(1.3); } }
@keyframes successIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@keyframes whatsappEntrance { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .hero-section { grid-template-columns: 1fr 1.05fr; gap: 28px; width: min(100% - 38px, 900px); }
  .brand-stage { width: min(45vw, 430px); }
  .orbit-outer i { display: none; }
}

@media (max-width: 760px) {
  .frame-lines { inset: 12px; }
  .frame-corner { width: 42px; height: 42px; }
  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    padding: 34px 0 24px;
  }
  .brand-stage { width: min(83vw, 390px); margin-bottom: -18px; }
  .content-stage { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .eyebrow { font-size: 9px; }
  h1 { margin: 14px 0 16px; font-size: clamp(52px, 16vw, 74px); }
  h1 span { margin-left: 0; }
  .lead { font-size: 14px; line-height: 1.7; }
  .signature { margin: 18px 0; }
  .notify-form { width: min(100%, 500px); }
  .qualities { justify-content: center; flex-wrap: wrap; line-height: 1.7; }
  footer { padding: 10px 28px 22px; flex-wrap: wrap; }
  .whatsapp-button { right: 18px; bottom: 18px; min-width: 0; width: 58px; height: 58px; padding: 4px; }
  .whatsapp-icon { width: 48px; height: 48px; flex-basis: 48px; }
  .whatsapp-copy, .whatsapp-arrow { display: none; }
}

@media (max-width: 520px) {
  .hero-section { width: min(100% - 32px, 460px); }
  .brand-stage { width: min(86vw, 350px); }
  .notify-form { border-radius: 22px; padding: 7px; flex-direction: column; }
  .notify-form input, .notify-form button { width: 100%; }
  .notify-form button { justify-content: center; }
  .success-message { padding: 11px 8px; font-size: 12px; }
  .qualities { gap: 9px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
