/* ==========================================================================
   Nail & Brunch Experience — design tokens
   ========================================================================== */

:root {
  --bordo: #5A0E1C;
  --bordo-dark: #3D0810;
  --gold-1: #B8860B;
  --gold-2: #F0D98C;
  --gold-3: #C9A227;
  --offwhite: #F5F1ED;
  --text-dark: #2E1A1A;
  --text-on-bordo: #F5F1ED;

  --gold-gradient: linear-gradient(100deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
  --bordo-gradient: radial-gradient(120% 90% at 78% 20%, #6E1424 0%, var(--bordo) 45%, var(--bordo-dark) 100%);

  --radius-card: 14px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 45px -25px rgba(61, 8, 16, 0.45);
  --shadow-gold: 0 12px 30px -14px rgba(184, 134, 11, 0.5);

  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);

  --section-pad: clamp(64px, 9vw, 128px);
  --container-w: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

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

body, h1, h2, h3, p, ul, figure {
  margin: 0;
}

ul { padding: 0; list-style: none; }

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

body {
  background: var(--offwhite);
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--offwhite);
  color: var(--text-dark);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow {
  max-width: 760px;
}

@media (min-width: 640px) {
  .container { padding-inline: 40px; }
}

/* ==========================================================================
   Type helpers
   ========================================================================== */

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.eyebrow--dark {
  color: var(--gold-3);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__title {
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 20ch;
  margin-bottom: 48px;
}

.section--dark .section__title,
.section--dark h3 {
  color: var(--offwhite);
}

/* ==========================================================================
   Layout sections
   ========================================================================== */

.section {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden;
}

.section--light {
  background: var(--offwhite);
}

.section--dark {
  background: var(--bordo-gradient);
  color: var(--text-on-bordo);
}

.divider {
  height: 1px;
  max-width: var(--container-w);
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold-3) 20%, var(--gold-2) 50%, var(--gold-3) 80%, transparent);
  opacity: 0.55;
}

/* Watermark monogram behind bordô sections */
.hero__watermark {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('/assets/logo-nb.png');
  background-repeat: no-repeat;
  background-position: 105% 15%;
  background-size: min(60vw, 620px);
  opacity: 0.07;
}

.hero__watermark--methods { background-position: -10% 90%; }
.hero__watermark--precos { background-position: 110% 100%; }
.hero__watermark--final { background-position: 50% 120%; background-size: min(70vw, 720px); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), background 0.35s var(--ease-soft);
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--bordo-dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(184, 134, 11, 0.6);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(245, 241, 237, 0.45);
}

.btn--outline:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.btn--compact {
  padding: 10px 20px;
  font-size: 13px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--bordo-gradient);
  color: var(--text-on-bordo);
  overflow: hidden;
}

.hero__top {
  position: relative;
  z-index: 2;
  padding: 28px 24px 0;
}

@media (min-width: 640px) {
  .hero__top { padding-inline: 40px; }
}

.hero__logo {
  height: 44px;
  width: auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero__copy {
  padding: 40px 24px 56px;
  max-width: 620px;
}

@media (min-width: 640px) {
  .hero__copy { padding: 48px 40px 64px; }
}

.hero__title {
  font-size: clamp(40px, 8vw, 68px);
  margin-bottom: 22px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title em {
  font-style: italic;
  font-weight: 600;
  padding-inline: 0.02em;
}

.hero__date {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 6px;
}

.hero__place {
  font-size: 14px;
  color: rgba(245, 241, 237, 0.75);
  margin-bottom: 28px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.bullet-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold-2);
}
.bullet-icon svg { width: 100%; height: 100%; }

.hero__badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-card);
  background: rgba(245, 241, 237, 0.08);
  border: 1px solid rgba(240, 217, 140, 0.35);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  gap: 22px;
  margin-bottom: 30px;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 46px;
}

.countdown__num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-2);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 241, 237, 0.6);
}

.hero__microcopy {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245, 241, 237, 0.7);
}

.hero__media {
  position: relative;
  line-height: 0;
}

.hero__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  max-height: 640px;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: clamp(600px, 90dvh, 820px);
  }
  .hero__copy {
    padding: 18px 20px 20px 40px;
  }
  .hero__media {
    align-self: stretch;
    height: clamp(600px, 90dvh, 820px);
  }
  .hero__media img {
    height: 100%;
    max-height: none;
  }
  .hero__title {
    margin-bottom: 14px;
  }
  .hero__place {
    margin-bottom: 16px;
  }
  .hero__bullets {
    gap: 8px;
    margin-bottom: 16px;
  }
  .hero__badge,
  .countdown {
    margin-bottom: 14px;
  }
}

/* ==========================================================================
   Scarcity bar
   ========================================================================== */

.scarcity-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  background: var(--bordo-dark);
  border-top: 1px solid rgba(240, 217, 140, 0.25);
  box-shadow: 0 -12px 30px -18px rgba(0, 0, 0, 0.5);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-soft), opacity 0.5s var(--ease-soft);
}

.scarcity-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.scarcity-bar__text {
  color: var(--offwhite);
  font-size: 14px;
  font-weight: 500;
}

.scarcity-bar__text strong {
  color: var(--gold-2);
  font-family: 'Playfair Display', serif;
  font-size: 17px;
}

@media (min-width: 900px) {
  .scarcity-bar { display: none; }
}

/* ==========================================================================
   Feature grid
   ========================================================================== */

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

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

.feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(46, 26, 26, 0.08);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
}

.feature-card--accent {
  background: linear-gradient(160deg, #fff 60%, #FBF3E4 100%);
  border-color: rgba(184, 134, 11, 0.25);
}

.feature-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(90, 14, 28, 0.06);
  color: var(--bordo);
  margin-bottom: 22px;
}
.feature-card__icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  color: rgba(46, 26, 26, 0.72);
}

/* ==========================================================================
   Methods
   ========================================================================== */

.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 760px) {
  .methods-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.method-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--gold-2);
}

.method-card p {
  font-size: 15px;
  color: rgba(245, 241, 237, 0.82);
  max-width: 46ch;
}

.method-card p + p {
  margin-top: 14px;
}

/* ==========================================================================
   Hosts
   ========================================================================== */

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

@media (min-width: 700px) {
  .hosts-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.host-card__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.host-card__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 15%;
}

.host-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.host-card p {
  font-size: 14.5px;
  color: rgba(46, 26, 26, 0.72);
  max-width: 48ch;
}

.host-card p + p {
  margin-top: 10px;
}

.host-card__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--bordo);
  transition: color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.host-card__social svg {
  width: 18px;
  height: 18px;
}

.host-card__social:hover {
  color: var(--gold-3);
  transform: translateX(2px);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.price-card {
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
}

.price-card--active {
  background: rgba(245, 241, 237, 0.06);
  border: 1px solid var(--gold-3);
  box-shadow: 0 25px 50px -25px rgba(0, 0, 0, 0.5);
}

.price-card--muted {
  background: rgba(245, 241, 237, 0.03);
  border: 1px solid rgba(245, 241, 237, 0.12);
  opacity: 0.55;
}

.price-card__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold-gradient);
  color: var(--bordo-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.price-card__badge--muted {
  background: rgba(245, 241, 237, 0.12);
  color: var(--offwhite);
}

.price-card__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 237, 0.65);
  margin-bottom: 8px;
}

.price-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 26px;
}

.price-card--muted .price-card__value {
  color: rgba(245, 241, 237, 0.6);
}

.pricing-note {
  text-align: center;
  font-size: 13.5px;
  color: rgba(245, 241, 237, 0.7);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.accordion__item {
  border-bottom: 1px solid rgba(46, 26, 26, 0.12);
}

.accordion__heading { margin: 0; }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.accordion__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--bordo);
  transition: transform 0.35s var(--ease-soft);
}

.accordion__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}

.accordion__icon::after {
  left: 50%; top: 0;
  height: 100%; width: 1.5px;
  transform: translateX(-50%);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.4s var(--ease-soft);
}

.accordion__panel p {
  padding: 0 4px 24px;
  font-size: 15px;
  color: rgba(46, 26, 26, 0.75);
  max-width: 60ch;
}

/* ==========================================================================
   CTA final
   ========================================================================== */

.section--cta {
  text-align: center;
}

.cta-final__title {
  font-size: clamp(30px, 5vw, 48px);
  color: var(--offwhite);
  margin-bottom: 40px;
}

.cta-final__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 560px) {
  .cta-final__buttons { flex-direction: row; justify-content: center; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bordo-dark);
  color: rgba(245, 241, 237, 0.7);
  padding-block: 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer__logo {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.footer__copy {
  font-size: 13px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

@media (min-width: 500px) {
  .footer__links {
    flex-direction: row;
    gap: 24px;
  }
}

.footer__link {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(240, 217, 140, 0.85);
}

.footer__link:hover {
  color: var(--gold-2);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}

.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
