*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --black:   #080808;
  --dark:    #111111;
  --mid:     #1a1a1a;
  --border:  rgba(255,255,255,0.07);
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --white:   #f0ece4;
  --muted:   #a09890;
  --text:    #ccc8c0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── BASE ── */
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor.grow { width: 40px; height: 40px; background: var(--gold2); }

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--gold); transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#home {
  height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0f0d0a 0%, #080808 50%, #0a0c0f 100%);
}
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: -50%; left: 55%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
  transform: rotate(15deg);
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: -50%; left: 65%;
  width: 1px; height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.07), transparent);
  transform: rotate(15deg);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 3rem;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-title .gold { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(201,168,76,0.4);
  color: transparent;
}
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1.5rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s ease 0.9s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-ghost {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.75rem;
  transition: color 0.25s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 3rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; animation: fadeUp 0.9s ease 1.2s forwards;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease 1.5s infinite;
}
@keyframes scrollLine {
  0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; }
}

.hero-stat-bar {
  position: absolute; right: 3rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2.5rem;
  opacity: 0; animation: fadeIn 1s ease 1.3s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION COMMON ── */
section { padding: 7rem 3rem; }
.section-tag {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1; letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--gold); }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.about-image-block {
  position: relative;
}
.about-img-frame {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
}
.about-img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  line-height: 1.8;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.about-accent-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.about-accent-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0 0.5rem;
}
.about-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-body p em {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  font-size: 1rem;
}
.about-skills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.about-skill {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.about-skill-name {
  font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 0.25rem;
}
.about-skill-desc { font-size: 0.8rem; color: var(--muted); }

/* ── PORTFOLIO ── */
#portfolio { border-top: 1px solid var(--border); }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.portfolio-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.filter-btn {
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-family: 'Barlow', sans-serif;
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; padding: 0.5rem 1.2rem;
  cursor: pointer; transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* Unified portfolio grid — masonry columns, no gaps */
.portfolio-unified-grid {
  columns: 4;
  column-gap: 0;
}
.p-item {
  position: relative; overflow: hidden;
  background: var(--black);
  cursor: pointer;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.p-inner img {
  width: 100%; height: auto;
  display: block;
}
.p-inner {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.p-item:hover .p-inner { transform: scale(1.06); }
.p-bg1 { background: linear-gradient(135deg, #1a1505 0%, #2a200a 50%, #0d0a02 100%); }
.p-bg2 { background: linear-gradient(135deg, #0d1520 0%, #1a2535 50%, #050d18 100%); }
.p-bg3 { background: linear-gradient(135deg, #150d1a 0%, #251530 50%, #0a0510 100%); }
.p-bg4 { background: linear-gradient(135deg, #0d1a0d 0%, #152515 50%, #051005 100%); }
.p-bg5 { background: linear-gradient(135deg, #1a0d05 0%, #2a1505 50%, #100502 100%); }
.p-bg6 { background: linear-gradient(135deg, #1a1a05 0%, #25250a 50%, #0d0d02 100%); }
.p-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.12);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}
.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.2) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
}
.p-item:hover .p-overlay { opacity: 1; }
.p-cat {
  font-size: 0.62rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem;
}
.p-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 2px;
  color: var(--white);
}
.p-view {
  margin-top: 0.75rem;
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.p-view::after { content: '→'; color: var(--gold); }
.p-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(8,8,8,0.7);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.58rem; letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  backdrop-filter: blur(8px);
}

/* ── SERVICES / PRICING ── */
#pricing { border-top: 1px solid var(--border); }
.pricing-intro {
  max-width: 600px; margin-bottom: 4rem;
  font-family: 'Barlow', sans-serif;
  font-style: normal; font-size: 1rem;
  color: var(--text); line-height: 1.8;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.price-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.price-card.featured {
  background: #111008;
  border: 1px solid rgba(201,168,76,0.3);
  margin: -1px;
  z-index: 1;
}
.price-card:hover { background: #141414; }
.price-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem; letter-spacing: 3px;
  text-transform: uppercase; padding: 0.3rem 1rem;
  font-weight: 500;
}
.price-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 3px;
  color: var(--white); margin-bottom: 0.5rem;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--gold);
  letter-spacing: 1px; line-height: 1;
  margin-bottom: 0.3rem;
}
.price-amount span {
  font-size: 1.2rem; color: var(--muted);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
}
.price-desc {
  font-size: 0.8rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li {
  font-size: 0.82rem; color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem;
}
.price-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}
.price-cta {
  display: block; text-align: center;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem;
  transition: all 0.25s;
}
.price-card.featured .price-cta {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); font-weight: 500;
}
.price-cta:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.price-card.featured .price-cta:hover {
  background: var(--gold2); color: var(--black);
}
.pricing-note {
  font-size: 0.78rem; color: var(--muted);
  line-height: 1.7; border-left: 2px solid var(--gold);
  padding-left: 1.2rem; max-width: 560px;
}
.pricing-category { margin: 3.5rem 0 1.5rem; }
.pricing-category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 1rem;
}
.pricing-category-title::after {
  content: ''; flex: 1; height: 1px;
  background: var(--border);
}
.pricing-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ── PROCESS ── */
#process { border-top: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(201,168,76,0.02); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; color: rgba(201,168,76,0.1);
  line-height: 1; margin-bottom: 1rem;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(201,168,76,0.25); }
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 2px;
  color: var(--white); margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIAL / SOCIAL PROOF ── */
#social-proof {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 6rem 3rem;
}
.proof-quote {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  line-height: 1.5;
  max-width: 700px; margin: 2rem auto;
}
.proof-quote em { color: var(--gold); font-style: normal; }
.proof-author {
  font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
}
.proof-divider {
  width: 60px; height: 1px;
  background: var(--gold); margin: 1.5rem auto;
}
.proof-stats {
  display: flex; justify-content: center; gap: 5rem;
  margin-top: 4rem; padding-top: 4rem;
  border-top: 1px solid var(--border);
}
.proof-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--gold); letter-spacing: 2px;
}
.proof-stat-label {
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-top: 0.25rem;
}

/* ── CONTACT ── */
#contact { border-top: 1px solid var(--border); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 3rem;
}
.contact-info { }
.contact-info p {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.9; margin-bottom: 2.5rem;
  font-family: 'Barlow', sans-serif;
  font-style: normal; font-size: 1rem;
}
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-detail-value {
  font-size: 0.88rem; color: var(--white);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  padding: 0.9rem 1.1rem;
  width: 100%;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #141208;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark); }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 1.1rem 2rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }
.form-note {
  font-size: 0.72rem; color: var(--muted);
  text-align: center; margin-top: 0.5rem;
}
.recaptcha-wrap {
  display: flex; justify-content: center;
  margin-bottom: 1rem;
  filter: invert(0.85) hue-rotate(180deg);
}
.form-honeypot { display: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 4px;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.25s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.68rem; color: var(--muted);
  letter-spacing: 1px;
  border-top: 1px solid var(--border);
  padding-top: 2rem; margin-top: 1rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.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; }

/* ── SUCCESS MESSAGE ── */
.form-success {
  display: none;
  text-align: center; padding: 3rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.form-success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 0.75rem;
}
.form-success-msg { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 5rem 1.5rem; }
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem; }
  .hero-stat-bar { display: none; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-box { right: -0.5rem; }
  .portfolio-unified-grid {
    columns: 2;
  }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { margin: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .proof-stats { gap: 2.5rem; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .portfolio-unified-grid { columns: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .about-skills { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 9989;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
  flex-direction: column;
  padding: 2rem;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  cursor: default;
  border: 1px solid var(--border);
}
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.72rem;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0.55rem 1.1rem; cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.lb-close:hover { background: var(--gold); color: var(--black); }
.lb-title {
  margin-top: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 4px;
  color: var(--muted); text-align: center;
  text-transform: uppercase;
}
.p-item { cursor: zoom-in; }

/* ── FAQ ── */
#faq { border-top: 1px solid var(--border); }
.faq-grid { max-width: 740px; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 400;
  text-align: left; padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; letter-spacing: 0.3px; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--black); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  font-size: 0.88rem; line-height: 1.85;
  color: var(--muted); padding-bottom: 1.4rem;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.faq-item.open .faq-answer { max-height: 300px; }


/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 42px; height: 42px;
  background: var(--gold); color: var(--black);
  border: none; font-size: 1rem; font-weight: 700;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--gold2); transform: translateY(-3px); }
@media (max-width: 768px) { #scrollTop { bottom: 1rem; right: 1rem; } }


/* ── FLOATING BOOK NOW ── */
.float-book {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow', sans-serif; font-weight: 600;
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.8rem 1.4rem; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
  transition: background 0.2s, transform 0.2s, opacity 0.4s;
  opacity: 0; pointer-events: none;
}
.float-book.visible { opacity: 1; pointer-events: auto; }
.float-book:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── LIGHTBOX ENQUIRE BTN ── */
.lb-enquire {
  margin-top: 1rem;
  display: inline-block;
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 0.55rem 1.4rem; cursor: pointer;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.lb-enquire:hover { background: var(--gold); color: var(--black); }

/* ── VIDEO REEL (self-hosted, full-bleed) ── */
#videoreel { border-top: 1px solid var(--border); padding-left: 0; padding-right: 0; padding-bottom: 0; }
.reel-head { padding: 0 3rem; }
.reel-intro {
  color: var(--muted); font-size: 0.95rem; line-height: 1.8;
  max-width: 520px; margin-bottom: 3rem;
}
.reel-films { display: flex; flex-direction: column; }
.reel-film {
  position: relative; overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.reel-film:last-child { border-bottom: 1px solid var(--border); }
.reel-film video {
  display: block; width: 100%;
  max-height: 88vh; object-fit: cover;
}
.reel-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8,8,8,0.75) 0%, transparent 30%),
              linear-gradient(to bottom, rgba(8,8,8,0.45) 0%, transparent 20%);
  transition: opacity 0.4s;
}
.reel-meta {
  position: absolute; left: 3rem; bottom: 2.2rem; z-index: 2;
  pointer-events: none;
}
.reel-film-tag {
  font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.reel-film-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: 3px; color: var(--white); line-height: 1;
}
.reel-controls {
  position: absolute; right: 3rem; bottom: 2.2rem; z-index: 3;
  display: flex; gap: 0.6rem;
}
.reel-btn {
  background: rgba(8,8,8,0.65); backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.55rem 1.1rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.reel-btn:hover { background: var(--gold); color: var(--black); }
@media (max-width: 900px) {
  .reel-head { padding: 0 1.5rem; }
  .reel-meta { left: 1.5rem; bottom: 1.4rem; }
  .reel-controls { right: 1.5rem; bottom: 1.4rem; }
  .reel-film video { max-height: 70vh; }
}

/* ── TOUCH DEVICES: native cursor ── */
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-scroll, .hero-stat-bar { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
