/* ============================================
   style.css — Asp Dave Digital Marketing Site
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #F8F7F4;
  --white:       #ffffff;
  --ink:         #111111;
  --ink-mid:     #444444;
  --ink-muted:   #888888;
  --gold:        #C9A76D;
  --gold-lt:     #F0EDE7;
  --border:      #E8E6E0;
  --dark:        #111111;
  --dark-2:      #1C1C1C;
  --dark-border: #2A2A2A;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
  opacity: 0.6;
}
body:hover .cursor,
body:hover .cursor-ring { opacity: 1; }

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition) !important;
  display: inline-block;
}
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--ink-mid);
  text-decoration: none;
  font-weight: 400;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,109,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero-h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  cursor: none;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  cursor: none;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* Hero Visual */
.hero-visual { position: relative; }

.hero-photo-wrap {
  background: var(--gold-lt);
  border-radius: var(--radius-lg);
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-placeholder { text-align: center; }

.hero-avatar {
  width: 120px; height: 120px;
  background: rgba(201,167,109,0.3);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
.hero-photo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-mid);
}
.hero-photo-role {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 5px;
}
.hero-photo-hint {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 20px;
  opacity: 0.6;
}

/* Floating Badge */
.hero-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero-badge-label {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--ink);
  padding: 32px 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid #2A2A2A;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ── Shared Section Styles ── */
.section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.1;
}

/* ── Services ── */
#services {
  padding: 100px 5%;
  background: var(--bg);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
}
.services-header-sub {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 300px;
  line-height: 1.7;
  text-align: right;
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--gold-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.8; fill: none; }

.service-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-top: 20px;
  opacity: 0;
  transition: opacity var(--transition), gap var(--transition);
  cursor: none;
}
.service-card:hover .service-link { opacity: 1; gap: 8px; }

/* ── About ── */
#about {
  padding: 100px 5%;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }

.about-img {
  background: var(--gold-lt);
  border-radius: var(--radius-lg);
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner { text-align: center; }

.about-avatar {
  width: 90px; height: 90px;
  background: rgba(201,167,109,0.25);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}
.about-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-overlay-label { font-size: 11px; color: #666; }
.about-overlay-val {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
}

.about-accent {
  position: absolute;
  top: -20px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  animation: float 5s ease-in-out infinite;
}
.about-accent-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.about-accent-label { font-size: 10px; opacity: 0.8; margin-top: 3px; }

.about-body {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 20px 0 30px;
  font-weight: 300;
}
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.skill-tag {
  font-size: 12px;
  background: var(--bg);
  color: var(--ink-mid);
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: 400;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: none;
}
.skill-tag:hover { background: var(--gold-lt); color: var(--ink); border-color: var(--gold); }

/* ── Contact ── */
#contact {
  background: var(--ink);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,109,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.contact-section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.contact-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 44px;
  font-weight: 300;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  cursor: none;
  width: 100%;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #444; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,167,109,0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  margin-top: 4px;
  letter-spacing: 0.2px;
}
.btn-submit:hover { background: #d4b27c; transform: translateY(-2px); }
.btn-submit svg { transition: transform var(--transition); }
.btn-submit:hover svg { transform: translateX(3px); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-icon {
  width: 52px; height: 52px;
  background: rgba(201,167,109,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: #666; }

/* ── Footer ── */
footer {
  background: #0A0A0A;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1A1A1A;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #333;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 12px;
  color: #444;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: #333; }

/* ── Responsive ── */
@media (max-width: 900px) {
  #hero       { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-badge { right: 16px; }
  #about      { grid-template-columns: 1fr; }
  .about-accent { right: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-sub { text-align: left; }
  .form-row   { grid-template-columns: 1fr; }
  .stats-bar  { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid #2A2A2A; }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { min-height: auto; padding: 90px 5% 60px; }
}