/* GoodvibeZ Studio — Ethereal Glass Design System
   Brand: #F5C76A (gold) | Bg: #050505 | Surface: #0E0E0E
   Fonts: Syne (display) + Plus Jakarta Sans (body)
   Mobile-first, 56px touch targets, contact via /contact/
   Upgraded 2026-04-17: premium depth, spring physics, grain texture */

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

:root {
  --bg: #050505;
  --surface: #0E0E0E;
  --surface-2: #151515;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(245, 199, 106, 0.35);
  --text: #EBEBEB;
  --text-muted: rgba(235, 235, 235, 0.45);
  --gold: #F5C76A;
  --gold-glow: rgba(245, 199, 106, 0.2);
  --gold-glow-strong: rgba(245, 199, 106, 0.45);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

/* ── Film grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Typography ── */

h1, h2, h3 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.gold { color: var(--gold); }
.muted { color: var(--text-muted); }

/* ── Layout ── */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

/* ── Floating Glass Navigation ── */

.nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  max-width: 900px;
  margin: 16px auto 0;
  background: rgba(14, 14, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo img {
  height: 56px;
  width: auto;
  margin: -14px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 100px;
  transition: color 0.5s var(--ease-spring), background 0.5s var(--ease-spring);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--gold) !important;
  color: #050505 !important;
  font-weight: 600;
  padding: 10px 20px !important;
  border-radius: 100px !important;
  transition: box-shadow 0.5s var(--ease-spring), transform 0.3s var(--ease-spring) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 24px var(--gold-glow-strong);
  transform: translateY(-1px);
}

/* ── Buttons — spring physics ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.5s var(--ease-spring), opacity 0.3s, border-color 0.5s var(--ease-spring), color 0.3s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn:active { transform: scale(0.96); }

.btn-gold {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 0 0 rgba(245, 199, 106, 0);
}

.btn-gold:hover {
  box-shadow: 0 4px 32px var(--gold-glow-strong), 0 0 0 1px rgba(245, 199, 106, 0.2);
  transform: translateY(-2px);
}

.btn-gold:active { transform: scale(0.96) translateY(0); }

/* .btn-wa — legacy, no longer in use */
.btn-wa {
  background: var(--whatsapp);
  color: #fff;
}

.btn-wa:hover { background: var(--whatsapp-dark); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(245, 199, 106, 0.06);
}

.btn-sm {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── Double-Bezel Cards ── */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: border-color 0.5s var(--ease-spring), transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(245, 199, 106, 0.04);
}

.card-body {
  padding: 28px;
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--surface-2);
}

/* ── Grid ── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}

.grid-3 > * {
  width: 100%;
  max-width: 380px;
}

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

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 > * { max-width: none; }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Hero — cinematic ── */

.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  background: rgba(245, 199, 106, 0.06);
  border: 1px solid rgba(245, 199, 106, 0.15);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Section header ── */

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 540px;
}

/* ── Tags / Chips ── */

.tag {
  display: inline-block;
  background: rgba(245, 199, 106, 0.08);
  color: var(--gold);
  border: 1px solid rgba(245, 199, 106, 0.12);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

/* ── Partner card — Double Bezel ── */

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: border-color 0.5s var(--ease-spring), transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  border-color: var(--border-hover);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(245, 199, 106, 0.06);
  transform: translateY(-6px);
}

.partner-card-media {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.partner-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.partner-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.partner-card-role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.partner-card-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.partner-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

/* ── Product card ── */

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.5s var(--ease-spring), transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-card-media {
  aspect-ratio: 1/1;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
}

.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card-price {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 14px;
}

/* ── Contact float — glass ── */

.contact-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--gold-glow), 0 0 0 1px rgba(245, 199, 106, 0.15);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-spring);
  cursor: pointer;
  text-decoration: none;
}

.contact-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow-strong), 0 0 0 1px rgba(245, 199, 106, 0.3);
}

.contact-float svg {
  width: 22px;
  height: 22px;
  stroke: #050505;
  fill: none;
}

/* ── Footer ── */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.4s var(--ease-spring);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Divider ── */

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Badge / status ── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.badge-live {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.badge-soon {
  background: rgba(245, 199, 106, 0.08);
  color: var(--gold);
}

/* ── Auth / Dashboard ── */

.auth-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 40px rgba(0, 0, 0, 0.3);
}

.auth-card h2 { margin-bottom: 10px; }
.auth-card p { margin-bottom: 28px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  padding: 14px 16px;
  min-height: 56px;
  width: 100%;
  outline: none;
  transition: border-color 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
  font-family: var(--font-body);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.form-field input:focus {
  border-color: var(--gold);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--gold-glow);
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.form-msg {
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.form-msg.success { background: rgba(37, 211, 102, 0.08); color: #25D366; }
.form-msg.error   { background: rgba(220, 38, 38, 0.08); color: #F87171; }
.form-msg.info    { background: rgba(245, 199, 106, 0.08); color: var(--gold); }

/* ── Booking card ── */

.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.booking-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Placeholder image frame ── */

.img-placeholder {
  width: 100%;
  background: var(--surface-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  gap: 8px;
}

/* ── Scroll animations — blur resolve ── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── Mobile nav toggle ── */

@media (max-width: 600px) {
  .nav {
    margin: 8px 12px 0;
    max-width: none;
  }
  .nav-links .nav-cta { display: flex; }
  .nav-links a:not(.nav-cta) { display: none; }
}
