:root {
  --bg-deep: #0d0b0a;
  --bg-surface: #161311;
  --bg-card: #1e1a17;
  --bg-card-hover: #252019;
  --text-primary: #f5efe6;
  --text-secondary: #a89a8a;
  --text-muted: #6b5f52;
  --accent: #e8a24e;
  --accent-glow: rgba(232, 162, 78, 0.15);
  --accent-soft: #d4924a;
  --border: rgba(168, 154, 138, 0.1);
  --border-accent: rgba(232, 162, 78, 0.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  padding: 32px 48px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 160px;
  display: block;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ============ PHILOSOPHY ============ */
.philosophy {
  padding: 120px 24px;
  background: var(--bg-surface);
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-label,
.services-label,
.proof-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.philosophy h2 em {
  font-style: italic;
  color: var(--text-muted);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.philosophy-block p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.75;
}

.philosophy-block .highlight {
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 24px;
  background: var(--bg-deep);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}

.service-card.featured {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  position: relative;
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 32px;
  right: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}

.card-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.card-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-detail {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ============ PROOF ============ */
.proof {
  padding: 120px 24px;
  background: var(--bg-surface);
}

.proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.proof h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

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

.proof-point {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.proof-point:hover {
  border-color: var(--border-accent);
}

.proof-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.proof-point h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.proof-point p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ CLOSING ============ */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.closing-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing .accent {
  color: var(--accent);
}

.closing-sub {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.footer-info {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-email {
  font-size: 14px;
  color: var(--accent-soft);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 40px; min-height: auto; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stat-strip {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    margin-top: 48px;
  }
  .stat-divider { width: 48px; height: 1px; }
  .stat-label { max-width: 240px; }

  .philosophy { padding: 80px 20px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }

  .services { padding: 80px 20px; }
  .services-cards { grid-template-columns: 1fr; gap: 20px; }

  .proof { padding: 80px 20px; }
  .proof-points { grid-template-columns: 1fr; gap: 20px; }

  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 17px; }
  .stat-number { font-size: 28px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 20px; }
}
/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 11, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  background: var(--accent);
  color: #0d0b0a;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--accent-soft); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.nav-mobile-link, .nav-mobile-cta {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: none;
  margin-top: 4px;
}

.nav-open .nav-mobile-menu { display: flex; }

/* ============ HERO BUTTONS ============ */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0d0b0a;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(232, 162, 78, 0);
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 162, 78, 0.25);
}

.btn-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { color: var(--text-primary); border-bottom-color: var(--border-accent); }

/* ============ SERVICE CARD CTA ============ */
.card-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.card-cta:hover { color: var(--text-primary); letter-spacing: 0.3px; }

/* ============ BOOKING PAGE ============ */
.book-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.book-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.book-hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

/* Booking form section */
.book-section {
  padding: 0 24px 120px;
  background: var(--bg-deep);
}

.book-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Tier selector cards */
.book-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
  color: var(--text-primary);
  font-family: inherit;
}
.tier-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.tier-card.selected {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 1px var(--accent);
}
.tier-card.featured { border-color: var(--border-accent); }

.tier-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.tier-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.tier-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

/* Form */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-optional {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 162, 78, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '↓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 14px;
}
.select-wrapper select { padding-right: 40px; cursor: pointer; }
.select-wrapper select option { background: var(--bg-card); }

/* Submit button */
.btn-submit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  background: var(--accent);
  color: #0d0b0a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  justify-content: center;
}
.btn-submit:hover:not(:disabled) {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 162, 78, 0.25);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner svg { animation: spin 0.9s linear infinite; }

/* Form error */
.form-error {
  color: #e87d4e;
  font-size: 14px;
  padding: 12px 16px;
  background: rgba(232, 125, 78, 0.08);
  border: 1px solid rgba(232, 125, 78, 0.25);
  border-radius: 8px;
}

/* Success state */
.book-success {
  text-align: center;
  padding: 80px 24px;
}
.success-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
.book-success h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.book-success p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.btn-ghost-success {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost-success:hover { color: var(--text-primary); border-color: var(--border-accent); }

/* ============ PORTFOLIO PAGE ============ */
.portfolio-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.portfolio-hero-glow {
  position: absolute;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.portfolio-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.portfolio-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.portfolio-hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.portfolio-intro {
  padding: 80px 24px;
  background: var(--bg-surface);
}

.portfolio-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-intro-inner p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.portfolio-intro-inner em {
  font-style: italic;
  color: var(--accent);
}

/* Case Study Sections */
.case-study {
  padding: 100px 24px;
  background: var(--bg-deep);
}

.case-study-alt {
  background: var(--bg-surface);
}

.case-study-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.case-study-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.case-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  min-width: 80px;
}

.case-study-meta {
  padding-top: 8px;
}

.case-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.case-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.case-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.case-col h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 16px;
}

.case-col p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.case-changes {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.case-changes li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.case-changes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Impact Stats */
.case-impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.case-study-alt .case-impact {
  background: var(--bg-surface);
}

.impact-stat {
  text-align: center;
}

.impact-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.impact-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 150px;
  margin: 0 auto;
}

/* CTA Section */
.portfolio-cta {
  padding: 120px 24px;
  text-align: center;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.portfolio-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.portfolio-cta p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ============ RESPONSIVE — BOOKING ============ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .book-tiers { grid-template-columns: 1fr; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; }
  .book-hero { padding: 120px 20px 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 12px; }
  .tier-card { padding: 20px 16px; }
}
