:root {
  --bg: #0c0b0d;
  --bg-2: #141216;
  --ink: #f6f1ea;
  --muted: #b7ada3;
  --line: rgba(246, 241, 234, 0.12);
  --gold: #e0c7a0;
  --gold-2: #c9a66b;
  --surface: rgba(255, 255, 255, 0.04);
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 72;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1210;
}
.btn-ghost {
  border-color: rgba(224, 199, 160, 0.35);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(224, 199, 160, 0.08);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(12, 11, 13, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.top.is-scrolled {
  background: rgba(12, 11, 13, 0.88);
  border-bottom-color: var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: 0;
}
.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold), #8a6a3d);
  color: #1a1210;
  font-size: 0.72rem;
  font-weight: 800;
}
.logo-text em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
}
.top-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.top-nav a:hover { color: var(--ink); }
.top-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.55rem;
  padding-right: 0.75rem;
  border-right: 1px solid rgba(224, 199, 160, 0.28);
}
.social-link {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #e0c7a0;
  border: 1px solid rgba(224, 199, 160, 0.45);
  background: rgba(224, 199, 160, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-link:hover {
  color: #f3e2c4;
  border-color: rgba(224, 199, 160, 0.85);
  background: rgba(224, 199, 160, 0.2);
  transform: translateY(-1px);
}
.social-link svg { display: block; }
.menu-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}
.mobile-nav {
  position: fixed;
  inset: 4.2rem 1rem auto;
  z-index: 39;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: rgba(20, 18, 22, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 8s ease;
}
.hero-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 13, 0.4) 0%, rgba(12, 11, 13, 0.25) 35%, rgba(12, 11, 13, 0.94) 100%),
    radial-gradient(circle at 70% 30%, rgba(224, 199, 160, 0.16), transparent 45%);
}
.hero-spark {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hero-spark.is-on {
  opacity: 1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 7rem clamp(1rem, 4vw, 2.5rem) 5rem;
  max-width: 44rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.pill-admin,
.pill-soft {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pill-admin {
  background: rgba(224, 199, 160, 0.95);
  color: #1a1210;
}
.pill-admin:hover { background: #fff; }
.pill-soft {
  border: 1px solid rgba(224, 199, 160, 0.35);
  color: var(--gold);
  background: rgba(12, 11, 13, 0.35);
}
.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 96;
}
.lede {
  margin-top: 1.05rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  max-width: 34rem;
  font-weight: 500;
}
.hero-social {
  display: none;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  width: 1.4rem;
  height: 2.2rem;
  border: 1px solid rgba(224, 199, 160, 0.4);
  border-radius: 999px;
  transform: translateX(-50%);
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 0.35rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: drip 1.6s ease-in-out infinite;
}
@keyframes drip {
  0% { top: 0.35rem; opacity: 1; }
  100% { top: 1.4rem; opacity: 0; }
}

/* Promos */
.promo-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem clamp(1rem, 4vw, 2.5rem) 3rem;
}
.promo-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}
.promo-head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.15;
}
.promo-head p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.promo-stage {
  display: grid;
  gap: 1rem;
}
.promo-feature {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 18px;
}
.promo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.03);
  transition: transform 0.8s ease;
}
.promo-feature:hover img { transform: scale(1.08); }
.promo-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 11, 13, 0.92) 0%, rgba(12, 11, 13, 0.45) 55%, rgba(12, 11, 13, 0.2) 100%);
}
.promo-feature-copy {
  position: relative;
  z-index: 1;
  padding: 2rem 1.4rem;
  max-width: 24rem;
  display: grid;
  gap: 0.55rem;
  align-content: end;
  min-height: 340px;
}
.promo-tag {
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1210;
  background: var(--gold);
}
.promo-tag.soft {
  background: rgba(224, 199, 160, 0.16);
  color: var(--gold);
  border: 1px solid rgba(224, 199, 160, 0.3);
}
.promo-feature h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
}
.promo-feature p { color: var(--muted); }
.promo-price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 0.2rem;
}
.promo-price s {
  color: #8a8178;
  font-size: 1rem;
}
.promo-price strong {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.promo-feature .btn { margin-top: 0.55rem; width: fit-content; }
.promo-rail {
  display: grid;
  gap: 0.85rem;
}
.promo-item {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}
.promo-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.promo-item p { color: var(--muted); font-size: 0.95rem; }
.promo-item strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Services mosaic */
.services { padding: 3rem 0 5rem; }
.services-head {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.services-head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.15;
}
.services-head p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 32rem;
}
.service-mosaic {
  display: grid;
  gap: 0.55rem;
  padding: 0 clamp(0.55rem, 2vw, 1rem);
}
.svc {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: block;
  border-radius: 16px;
}
.svc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.72) saturate(0.95);
  transform: scale(1.03);
  transition: transform 0.9s ease, filter 0.4s ease;
}
.svc:hover img {
  transform: scale(1.08);
  filter: brightness(0.82) saturate(1.05);
}
.svc-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 11, 13, 0.88) 100%);
}
.svc-copy span {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.svc-copy h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
.svc-copy p { color: var(--muted); font-size: 0.92rem; }
.svc-lg { min-height: 340px; }
.svc-lg .svc-copy { min-height: 340px; }
.svc-wide { min-height: 280px; }

/* Booking form */
.book {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
}
.book-layout {
  display: grid;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(224, 199, 160, 0.2);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(224, 199, 160, 0.1), transparent 55%),
    rgba(255, 255, 255, 0.03);
}
.book-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  line-height: 1.15;
}
.book-copy > p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28rem;
}
.book-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.book-points li {
  position: relative;
  padding-left: 1.2rem;
  color: #e8dfd4;
  font-size: 0.92rem;
  font-weight: 600;
}
.book-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}
.book-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(12, 11, 13, 0.55);
  border: 1px solid var(--line);
}
.book-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #d7cdc2;
}
.book-form .opt {
  font-weight: 500;
  color: var(--muted);
}
.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 241, 234, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-weight: 500;
  font-size: 0.95rem;
}
.book-form select option,
.book-form select optgroup {
  background: #fff;
  color: #0f172a;
}
.book-form select option:disabled {
  color: #64748b;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: rgba(224, 199, 160, 0.55);
  box-shadow: 0 0 0 3px rgba(224, 199, 160, 0.12);
}
.book-form textarea { resize: vertical; min-height: 88px; }
.book-form input[type="date"] { color-scheme: dark; }
.select-wrap {
  position: relative;
  display: block;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4rem;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.book-grid {
  display: grid;
  gap: 0.85rem;
}
.book-submit {
  width: 100%;
  margin-top: 0.25rem;
  border: 0;
  cursor: pointer;
}
.book-hint {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
.book-error {
  margin: 0;
  color: #fca5a5;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Sell hook — call attention for owners */
.sell-hook {
  position: relative;
  margin: 0.5rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(224, 199, 160, 0.16), transparent 55%),
    linear-gradient(180deg, #161318 0%, var(--bg) 100%);
}
.sell-hook-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem);
}
.sell-hook h2 {
  font-size: clamp(1.95rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  font-weight: 600;
  max-width: 18ch;
}
.sell-hook h2 em {
  font-style: normal;
  color: var(--gold);
}
.sell-hook h2 span {
  display: block;
  margin-top: 0.35rem;
  color: #e8dfd4;
  font-size: 0.72em;
  font-weight: 500;
  max-width: 22ch;
}
.sell-hook-lede {
  margin-top: 1.15rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
}

/* Panel mock */
.panel-show {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
}
.panel-intro {
  max-width: 38rem;
  margin-bottom: 1.8rem;
}
.panel-intro h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  line-height: 1.15;
}
.panel-intro p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.panel-frame {
  border: 1px solid rgba(224, 199, 160, 0.22);
  border-radius: 18px;
  overflow: hidden;
  background: #17151a;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.panel-shot {
  width: 100%;
}
.panel-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #1f1c22;
  border-bottom: 1px solid var(--line);
}
.panel-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #5a5260;
}
.panel-chrome span:nth-child(1) { background: #f87171; }
.panel-chrome span:nth-child(2) { background: #fbbf24; }
.panel-chrome span:nth-child(3) { background: #4ade80; }
.panel-chrome em {
  margin-left: 0.6rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.panel-body {
  display: grid;
  grid-template-columns: 1fr;
}
.panel-side {
  display: none;
  padding: 1.2rem 1rem;
  border-right: 1px solid var(--line);
  background: #121014;
}
.panel-side strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.panel-side nav {
  display: grid;
  gap: 0.35rem;
}
.panel-side nav b,
.panel-side nav span {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.panel-side nav b {
  background: rgba(224, 199, 160, 0.14);
  color: var(--ink);
}
.panel-main { padding: 1.1rem 1rem 1.3rem; }
.panel-main > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.panel-main > header p {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.panel-main > header h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
.panel-main > header button {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1210;
  font: inherit;
  font-weight: 700;
  font-size: 0.82rem;
  pointer-events: none;
}
.panel-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.panel-kpis > div {
  padding: 0.75rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.panel-kpis span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.panel-kpis strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}
.panel-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.panel-rows li {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(246, 241, 234, 0.08);
}
.panel-rows time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}
.panel-rows strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.panel-rows small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.panel-rows em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}
.st-ok { background: rgba(74, 222, 128, 0.14); color: #86efac; }
.st-run { background: rgba(96, 165, 250, 0.16); color: #93c5fd; }
.st-wait { background: rgba(251, 191, 36, 0.14); color: #fcd34d; }
.panel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* Suite */
.suite {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 5rem;
}
.suite-intro {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}
.suite-intro h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.15;
}
.suite-intro p:not(.eyebrow) {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.suite-split {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
.suite-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
}
.suite-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.suite-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(12, 11, 13, 0.78);
  border: 1px solid rgba(224, 199, 160, 0.28);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.2rem;
}
.suite-float strong {
  font-family: var(--display);
  font-weight: 600;
}
.suite-float span { color: var(--muted); font-size: 0.9rem; }
.suite-float em {
  font-style: normal;
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.suite-list { display: grid; gap: 0; }
.suite-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}
.suite-list article:last-child { border-bottom: 1px solid var(--line); }
.suite-list span {
  font-family: var(--font);
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  padding-top: 0.2rem;
}
.suite-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.suite-list p { color: var(--muted); line-height: 1.45; }
.suite-cta {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.suite-cta h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  max-width: 28rem;
  line-height: 1.2;
}

/* Demo */
.proof {
  background:
    radial-gradient(ellipse 60% 80% at 20% 0%, rgba(224, 199, 160, 0.1), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem clamp(1rem, 4vw, 2.5rem);
}
.proof-inner h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 600;
}
.proof-inner > p:not(.eyebrow) {
  margin-top: 0.7rem;
  color: var(--muted);
}
.creds {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 0.4rem;
}
.creds > div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.creds span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.creds code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  color: #f0e6d8;
}

/* Testimonials */
.voices {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--line);
}

/* FAQ compact */
.faq {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.faq-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem clamp(1rem, 4vw, 2.5rem) 2.6rem;
}
.faq-head {
  max-width: 36rem;
  margin-bottom: 0.85rem;
}
.faq-head .eyebrow { margin-bottom: 0.35rem; }
.faq-head h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
}
.faq-head p:not(.eyebrow) { display: none; }
.faq-list {
  display: grid;
  gap: 0.35rem;
  max-width: 42rem;
}
.faq-item {
  border: 1px solid rgba(224, 199, 160, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0 0.85rem;
}
.faq-item[open] {
  border-color: rgba(224, 199, 160, 0.35);
  background: rgba(224, 199, 160, 0.04);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.72rem 1.4rem 0.72rem 0;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: #f3ebe2;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}
.faq-item p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.86rem;
  max-width: 38rem;
}
.faq-item strong { color: #efe6da; font-weight: 700; }
.faq-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
}
.faq-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}
.faq-cta .btn { min-height: 2.4rem; padding: 0.55rem 1rem; font-size: 0.84rem; }
.voices-head {
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.voices-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
}
.voices-rail {
  display: grid;
  gap: 0.85rem;
}
.voice {
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 199, 160, 0.16);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.voice:hover {
  border-color: rgba(224, 199, 160, 0.4);
  transform: translateY(-3px);
}
.voice blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #f3ebe2;
}
.voice figcaption {
  margin-top: 1rem;
  display: grid;
  gap: 0.15rem;
}
.voice strong {
  font-size: 0.9rem;
  font-weight: 700;
}
.voice span {
  color: var(--muted);
  font-size: 0.82rem;
}

.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line);
}
.foot-brand { display: grid; gap: 0.25rem; }
.foot-brand strong {
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 800;
}
.foot-brand span { color: var(--muted); font-size: 0.9rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}
.foot-links a {
  color: #d7cdc2;
  font-weight: 600;
}
.foot-links a:hover { color: #fff; }

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease;
}
.wa-fab:hover { transform: scale(1.06); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (min-width: 760px) {
  .menu-btn { display: none; }
  .top-nav { display: flex; }
  .mobile-nav { display: none !important; }

  .promo-stage {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 1.4rem;
    align-items: stretch;
  }
  .promo-feature { min-height: 420px; }
  .promo-feature-copy { min-height: 420px; padding: 2.4rem; }

  .service-mosaic {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 320px 280px;
    gap: 0.65rem;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
  }
  .svc,
  .svc .svc-copy { min-height: 0; height: 100%; }
  .svc-lg { grid-row: 1 / span 2; }
  .svc-wide { grid-column: 2 / span 2; }

  .book-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    padding: 2rem;
    align-items: center;
  }
  .book-form { padding: 1.45rem; }
  .book-grid { grid-template-columns: 1fr 1fr; }

  .panel-body { grid-template-columns: 200px 1fr; }
  .panel-side { display: block; }
  .panel-main { padding: 1.3rem 1.25rem 1.5rem; }

  .suite-split {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.2rem;
  }
  .suite-visual { min-height: 480px; }
  .suite-float {
    left: auto;
    right: 1.2rem;
    bottom: 1.2rem;
    width: min(18rem, 80%);
  }

  .creds {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .voices-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .foot {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* —— Mobile polish —— */
@media (max-width: 759px) {
  .hero {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto;
    align-items: stretch;
    overflow: hidden;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: 52vh;
    overflow: hidden;
    background: #0c0b0d;
  }
  .hero-img {
    object-fit: cover;
    object-position: center center;
    transform: none !important;
  }
  .hero-img[src*="land-hero-2"],
  .hero-img[src*="land-hero-3"] {
    object-position: center center;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(12, 11, 13, 0.15) 0%, rgba(12, 11, 13, 0.35) 55%, rgba(12, 11, 13, 0.92) 100%);
  }
  .hero-spark {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 1.35rem 1rem 2rem;
    max-width: none;
    background: #0c0b0d;
  }
  .hero-badges {
    display: none;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }
  .hero h1 br { display: none; }
  .lede {
    max-width: none;
    font-size: 0.98rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-row .btn { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }

  .promo-tag,
  .promo-tag.soft {
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(224, 199, 160, 0.9);
    background: transparent;
    border: 1px solid rgba(224, 199, 160, 0.28);
  }

  .promo-feature,
  .promo-feature-copy {
    min-height: 0;
  }
  .promo-feature {
    aspect-ratio: 4 / 3;
  }
  .promo-feature img {
    object-position: center center;
  }
  .promo-feature-copy {
    min-height: 0;
    padding: 1.25rem 1.1rem;
    max-width: none;
    align-content: end;
  }
  .promo-feature h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .svc,
  .svc .svc-copy {
    min-height: 0;
  }
  .svc {
    display: grid;
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    background: #141214;
  }
  .svc img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    filter: brightness(0.92) saturate(0.98);
  }
  .svc:hover img {
    transform: none !important;
  }
  .svc-copy {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 0.95rem 1rem 1.15rem;
    align-content: start;
    background: #141214;
  }
  .svc-lg,
  .svc-lg .svc-copy,
  .svc-wide {
    min-height: 0;
  }
  .svc h3 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .promo-band,
  .book,
  .panel-band,
  .suite,
  .demo-band,
  .faq,
  .voices,
  .hook,
  .foot {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .promo-band { padding-top: 3.25rem; }
  .service-mosaic {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .book-layout {
    padding: 1.15rem;
    gap: 1.15rem;
  }
  .book-form {
    padding: 1rem;
  }
  .book-form input,
  .book-form select,
  .book-form textarea {
    font-size: 16px;
  }

  .panel-shot {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    height: 300px;
    margin: 0.35rem auto 0.75rem;
    perspective: 900px;
  }
  .panel-shot .panel-frame {
    width: 540px;
    flex-shrink: 0;
    transform: scale(0.56) rotateX(4deg);
    transform-origin: top center;
    border-radius: 14px;
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(224, 199, 160, 0.18);
  }
  .panel-shot .panel-body {
    grid-template-columns: 148px 1fr;
  }
  .panel-shot .panel-side {
    display: block;
    padding: 0.85rem 0.7rem;
  }
  .panel-shot .panel-side strong {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  .panel-shot .panel-side nav b,
  .panel-shot .panel-side nav span {
    padding: 0.4rem 0.55rem;
    font-size: 0.72rem;
  }
  .panel-shot .panel-main {
    padding: 0.85rem 0.8rem 1rem;
  }
  .panel-shot .panel-kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .panel-shot .panel-rows li {
    grid-template-columns: 3.2rem 1fr auto;
    gap: 0.55rem;
  }
  .panel-shot .panel-rows li > :last-child {
    grid-column: auto;
    justify-self: end;
  }
  .panel-shot .panel-rows li:nth-child(n + 5) {
    display: none;
  }
  .panel-shot .panel-main > header {
    flex-wrap: nowrap;
  }

  .suite-visual {
    min-height: min(300px, 78vw);
  }
  .suite-float {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }
  .suite-copy h2,
  .hook h2,
  .faq-head h2,
  .voices-head h2,
  .demo-head h2 {
    overflow-wrap: break-word;
    max-width: none;
  }

  .faq details summary {
    padding-right: 2rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }
  .faq details p {
    font-size: 0.92rem;
    overflow-wrap: break-word;
  }

  .creds {
    grid-template-columns: 1fr;
  }
  .creds code {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .voices-rail {
    grid-template-columns: 1fr;
  }

  .wa-fab {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .foot {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }
  .mobile-nav {
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }
}

@media (min-width: 760px) and (max-width: 1024px) {
  .top-nav {
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 72%;
  }
  .top-social { gap: 0.25rem; }
  .top-nav > a:not(.btn) { font-size: 0.86rem; }
  .top-nav .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img,
  .svc img,
  .promo-feature img { transition: none; }
  .scroll-hint span { animation: none; }
}

/* —— Pitch site + painel (padrão AGYON) —— */
.agyon-pitch {
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem);
  background: #0b0b0d;
  color: #f5f5f7;
  scroll-margin-top: 4rem;
}
.agyon-pitch-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: center;
}
.agyon-pitch .eyebrow {
  color: rgba(255, 255, 255, 0.55) !important;
}
.agyon-pitch h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.agyon-pitch-inner > p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}
.agyon-pitch-list {
  list-style: none;
  margin: 0 auto 1.45rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 26rem;
  text-align: left;
}
.agyon-pitch-list li {
  position: relative;
  padding-left: 1.15rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.agyon-pitch-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #25d366;
}
.agyon-pitch .cta-row {
  justify-content: center;
  flex-wrap: wrap;
}

/* Link de preço → AGYON */
.agyon-price-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  margin-top: 1.2rem;
  padding: 0.9rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.agyon-price-link:hover {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(56, 189, 248, 0.08);
}
.agyon-price-link-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.agyon-price-link-value {
  flex: 1 1 auto;
  font-size: 0.95rem;
}
.agyon-price-link-value strong { font-weight: 750; }
.agyon-price-link-go {
  font-size: 0.88rem;
  font-weight: 650;
  color: #7dd3fc;
  white-space: nowrap;
}
.agyon-price-link:hover .agyon-price-link-go { color: #fff; }

/* Sticky WA vendas */
.wa-sticky {
  position: fixed;
  z-index: 60;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #16a34a;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
.wa-sticky:hover { background: #15803d; color: #fff !important; }
@media (max-width: 719px) {
  body { padding-bottom: 4.75rem; }
  .wa-sticky { left: 1rem; right: 1rem; }
}
