/* =============================================================
   Fintitan FICA Tip Credit — Restaurant Owner Presell Page
   Design: Dark Professional Luxury — Deep Navy/Black, Gold, White
   Fonts: Cormorant Garamond (headings) + Source Sans Pro (body)
   ============================================================= */

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

:root {
  --black:         #06090d;
  --dark:          #0b0f16;
  --dark-card:     #101520;
  --dark-border:   #1a2233;
  --navy:          #0d1626;
  --gold:          #c8a84b;
  --gold-light:    #e2c870;
  --gold-dark:     #9e7c28;
  --white:         #ffffff;
  --champagne:     #f4edd8;
  --text-light:    rgba(255,255,255,0.9);
  --text-muted:    rgba(255,255,255,0.55);
  --text-dim:      rgba(255,255,255,0.3);
  --green:         #27ae60;
  --red:           #c0392b;

  --gold-gradient: linear-gradient(135deg, #c8a84b 0%, #e2c870 50%, #9e7c28 100%);
  --shadow-gold:   0 4px 30px rgba(200,168,75,0.22);
  --shadow-dark:   0 8px 40px rgba(0,0,0,0.65);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);

  --radius-sm:     3px;
  --radius-md:     10px;
  --radius-lg:     18px;
  --radius-full:   9999px;

  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'Source Sans 3', sans-serif;
  --transition:    all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Utilities ── */
.gold-line { display: block; width: 55px; height: 2px; background: var(--gold-gradient); margin: 0.9rem 0; }
.gold-line.centered { margin: 0.9rem auto; }
.gold-text { color: var(--gold); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-lg  { padding: 1.1rem 2.75rem; font-size: 0.88rem; }
.btn-md  { padding: 0.85rem 2rem; font-size: 0.82rem; }
.btn-sm  { padding: 0.6rem 1.5rem; font-size: 0.76rem; }

.btn-gold {
  background: var(--gold-gradient); color: var(--black);
  box-shadow: var(--shadow-gold); border: 1px solid var(--gold);
}
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 40px rgba(200,168,75,0.4); }

.btn-outline-gold {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: rgba(200,168,75,0.1); transform: translateY(-2px); }

/* ── Section label ── */
.section-label {
  font-family: var(--font-body); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.65rem;
}

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }
.section-card  { background: var(--dark-card); }

.section-header { margin-bottom: 3.25rem; }
.section-header.centered { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1rem; color: var(--text-muted); margin-top: 0.9rem;
  max-width: 580px; line-height: 1.75;
}
.section-header.centered .section-desc { margin-left: auto; margin-right: auto; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition); padding: 0;
}
#navbar.scrolled {
  background: rgba(6,9,13,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border); box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--gold-gradient);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: var(--black); }
.nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--gold); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; background: var(--black); border-top: 1px solid var(--dark-border); padding: 1rem 0; }
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a { display: block; padding: 0.85rem 1.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--dark-border); }
.nav-mobile ul li a:hover { color: var(--gold); }
.nav-mobile .btn { margin: 1.25rem 1.5rem; width: calc(100% - 3rem); }
@media (max-width: 768px) { .nav-links, .nav-cta { display: none; } .nav-hamburger { display: flex; } }

/* ── Hero ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,9,13,0.93) 0%, rgba(6,9,13,0.78) 55%, rgba(6,9,13,0.5) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 9rem 0 6rem; max-width: 680px; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.hero-eyebrow-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.hero-title { font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.5rem; line-height: 1.05; }
.hero-subtitle { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.45rem); color: var(--champagne); opacity: 0.85; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 510px; line-height: 1.75; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2.5s infinite; color: var(--gold); opacity: 0.55; }
.hero-scroll svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@media (max-width: 480px) { .hero-ctas { flex-direction: column; } .hero-ctas .btn { width: 100%; } }

/* ── Stats Bar ── */
#stats { background: var(--black); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } .stat-item:not(:last-child) { border-right: 1px solid var(--dark-border); } }
.stat-item { text-align: center; padding: 0.5rem 1rem; }
.stat-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.3rem; }

/* ── Who Qualifies ── */
#qualifies { background: var(--dark); }
.qualifies-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .qualifies-grid { grid-template-columns: 1fr 1fr; } }
.qualifies-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark); }
.qualifies-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.qualifies-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,9,13,0.65) 0%, transparent 60%); }
.qualifies-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--gold-gradient); color: var(--black); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: var(--radius-sm); z-index: 2; }
.qualify-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.qualify-item { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 1.25rem; background: var(--dark-card); border: 1px solid var(--dark-border); border-left: 3px solid var(--gold); border-radius: var(--radius-md); transition: var(--transition); }
.qualify-item:hover { box-shadow: var(--shadow-gold); transform: translateX(4px); }
.qualify-check { width: 22px; height: 22px; background: rgba(200,168,75,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qualify-check svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.qualify-text { font-size: 0.9rem; font-weight: 600; color: var(--white); }

/* ── How It Works ── */
#how { background: var(--black); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-md); padding: 2rem 1.75rem; text-align: center; position: relative; transition: var(--transition); }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-gradient); opacity: 0; transition: opacity 0.3s; }
.step-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.steps-connector { display: none; }
@media (min-width: 768px) {
  .steps-grid { position: relative; }
}

/* ── Savings Example ── */
#savings { background: var(--dark); }
.savings-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .savings-layout { grid-template-columns: 5fr 7fr; } }
.savings-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark); }
.savings-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.savings-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,9,13,0.55) 0%, transparent 60%); }
.savings-table { width: 100%; border-collapse: collapse; }
.savings-table th { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); padding: 0.75rem 1rem; border-bottom: 1px solid var(--dark-border); text-align: left; }
.savings-table td { padding: 0.9rem 1rem; font-size: 0.9rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
.savings-table tr:last-child td { border-bottom: none; font-weight: 700; color: var(--white); font-size: 1rem; }
.savings-table .highlight { color: var(--gold); font-weight: 700; }
.savings-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 1rem; font-style: italic; }

/* ── Venue Types ── */
#venues { background: var(--black); }
.venues-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .venues-grid { grid-template-columns: repeat(3, 1fr); } }
.venue-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; align-items: center; gap: 0.9rem; transition: var(--transition); }
.venue-card:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.venue-icon { width: 40px; height: 40px; background: rgba(200,168,75,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.venue-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.venue-name { font-weight: 700; font-size: 0.875rem; color: var(--white); }

/* ── Nightclub Feature ── */
#nightclub { background: var(--dark); }
.nightclub-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .nightclub-layout { grid-template-columns: 1fr 1fr; } }
.nightclub-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark); }
.nightclub-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nightclub-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,9,13,0.5) 0%, transparent 60%); }
.feature-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 0.45rem; flex-shrink: 0; }
.feature-text-title { font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.2rem; }
.feature-text-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ── Objections ── */
#objections { background: var(--black); }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; max-width: 780px; margin: 0 auto; }
.accordion-item { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color 0.3s; }
.accordion-item.open { border-color: var(--gold-dark); }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem; text-align: left; gap: 1rem; cursor: pointer; background: none; border: none; }
.accordion-q { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--white); flex: 1; }
.accordion-icon { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-item.open .accordion-body { max-height: 220px; }
.accordion-a { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--dark-border); padding-top: 1rem; }

/* ── Final CTA ── */
#cta { background: var(--dark); padding: 6rem 0; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.3); border-radius: var(--radius-full); padding: 0.5rem 1.25rem; margin-bottom: 1.75rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.cta-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.cta-title { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.cta-subtitle { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--champagne); opacity: 0.75; margin-bottom: 1.25rem; }
.cta-desc { font-size: 1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 2.25rem; line-height: 1.75; }
.cta-steps { display: flex; flex-direction: column; gap: 0.75rem; max-width: 460px; margin: 0 auto 2.25rem; text-align: left; }
.cta-step { display: flex; align-items: center; gap: 0.9rem; font-size: 0.9rem; color: var(--text-muted); }
.cta-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-gradient); color: var(--black); font-weight: 800; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 1rem; }
.cta-disclaimer { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.5rem; font-style: italic; }

/* ── Footer ── */
#footer { background: var(--black); border-top: 1px solid var(--dark-border); padding: 2.5rem 0 1.75rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }
.footer-links-row { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links-row a { font-size: 0.75rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links-row a:hover { color: var(--gold); }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
