/* ────────────────────────────────────────────────────
   DO IT WELL Media – Global Styles
   ──────────────────────────────────────────────────── */

@font-face {
  font-family: "Heavitas";
  src: url("fonts/Heavitas.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


:root {
  --brand-gold: #c9a84c;
  --brand-gold-light: #e4c96a;
  --brand-amber: #d4a843;
  --ink-900: #0a0a0a;
  --ink-800: #111111;
  --ink-700: #1a1a1a;
  --ink-600: #222222;
  --text: #f5f5f0;
  --muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.12);
  --gradient: linear-gradient(120deg, #c9a84c 0%, #1a1a1a 100%);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background-color: var(--ink-900);
  line-height: 1.6;
}

.page { position: relative; overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: "Heavitas", sans-serif;
  letter-spacing: 1px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Navigation ─────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Heavitas", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--brand-gold);
}

.brand img {
  width: auto;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--brand-gold); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--brand-gold);
  color: var(--ink-900);
  border-color: var(--brand-gold);
}
.btn.primary:hover {
  background: var(--brand-gold-light);
  border-color: var(--brand-gold-light);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
  background: transparent;
}
.btn.ghost:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.btn.outline {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  background: transparent;
}
.btn.outline:hover {
  background: var(--brand-gold);
  color: var(--ink-900);
}

/* ─── Eyebrow / Section Headers ──────────────────── */
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  margin: 0 0 12px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 16px;
  line-height: 1;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* ─── Video Hero ─────────────────────────────────── */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero__media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  border: 0;
}

/* Container for dynamically injected video/iframe */
#heroMediaWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

#heroMediaWrap iframe,
#heroMediaWrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* ─── Hero Intro Section ───────────────────────────── */
.hero-intro {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.7);
}

.hero-intro .section-header {
  max-width: 900px;
  margin-bottom: 0;
}

.hero-intro h1 {
  font-size: clamp(48px, 8vw, 120px);
  margin: 0 0 8px;
  line-height: 0.9;
  letter-spacing: 4px;
}

.hero-intro__subtitle {
  font-size: clamp(14px, 2vw, 20px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin: 0 0 32px;
}

.hero-intro .section-lead {
  margin: 0 0 32px;
}

.hero-intro .cta-row {
  justify-content: center;
}

.video-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: gentleBounce 2s ease-in-out infinite;
}

.video-hero__scroll::after {
  content: "";
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

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

/* ─── Pillars / Services Section ─────────────────── */
.pillars {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: rgba(17, 17, 17, 0.85);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.pillar-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pillar-card:hover .pillar-card__image {
  transform: scale(1.05);
}

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  transition: background 0.3s ease;
}

.pillar-card:hover .pillar-card__overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.1) 100%);
}

.pillar-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.pillar-card__content h3 {
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: 2px;
}

.pillar-card__content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 300px;
  min-height: 44px;
}

.pillar-card__content .btn {
  padding: 10px 20px;
  font-size: 12px;
}

/* ─── About / Philosophy Section ─────────────────── */
.about-section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.85);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin: 0 0 24px;
  line-height: 1;
}

.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.about-text .eyebrow,
.section-header .eyebrow {
  color: var(--brand-gold);
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ─── Featured Work ──────────────────────────────── */
.featured {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: rgba(17, 17, 17, 0.85);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.featured-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.featured-row.reverse { direction: rtl; }
.featured-row.reverse > * { direction: ltr; }

.featured-image {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-image:hover img {
  transform: scale(1.03);
}

.featured-text h3 {
  font-size: 32px;
  margin: 0 0 12px;
}

.featured-text .category-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-gold);
  margin: 0 0 12px;
  display: block;
}

.featured-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}

/* ─── CTA Panel ──────────────────────────────────── */
.cta-panel {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.85);
  text-align: center;
}

.cta-panel h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 16px;
  line-height: 1;
}

.cta-panel p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ─── Portfolio Page ─────────────────────────────── */
.portfolio-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--muted);
  font-family: "Heavitas", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.filter-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--ink-900);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__overlay h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.portfolio-item__overlay p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.portfolio-loading {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
}

.portfolio-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
}

/* ─── Lightbox ───────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 1001;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__info {
  text-align: center;
  margin-top: 20px;
  max-width: 600px;
}

.lightbox__info h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.lightbox__info p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Contact Page ───────────────────────────────── */
.contact-hero {
  padding: 140px 0 80px;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  margin: 16px 0 20px;
}

.contact-header .lead {
  text-align: center;
  max-width: none;
  color: var(--muted);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 24px;
  margin: 0 0 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
}

.contact-detail span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

.contact-detail strong {
  color: var(--text);
}

.contact-social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.contact-social-links a:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.contact-form-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}

.contact-form-section h2 {
  font-size: 36px;
  margin: 0 0 32px;
  text-align: center;
}

.contact-form { max-width: 100%; }

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

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  transition: all 0.25s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  background: rgba(255,255,255,0.08);
  border-color: var(--brand-gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0a0' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* Form loading overlay */
.form-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.form-loading-overlay.active { opacity: 1; pointer-events: all; }
.form-loading-overlay .spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--brand-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 40px 0;
}

.form-success h3 {
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--brand-gold);
}

.form-success p {
  color: var(--muted);
  margin: 0;
}

/* ─── Admin Page ─────────────────────────────────── */
.admin-hero {
  padding: 120px 0 40px;
}

.admin-content {
  max-width: 1000px;
  margin: 0 auto;
}

.admin-header {
  text-align: center;
  margin-bottom: 48px;
}

.admin-header h1 {
  font-size: 48px;
  margin: 16px 0 12px;
}

/* Auth gate */
.auth-gate {
  text-align: center;
  padding: 60px 0;
}

.auth-gate p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 16px;
}

.auth-form {
  max-width: 400px;
  margin: 0 auto;
}

.auth-error {
  color: #e74c3c;
  font-size: 14px;
  margin: 12px 0 0;
  min-height: 20px;
}

/* Admin panels */
.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-section {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 32px;
}

.admin-section h2 {
  font-size: 28px;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-current-video {
  margin-bottom: 20px;
}

.admin-current-video video {
  width: 100%;
  max-height: 300px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.admin-file-input {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-file-input input[type="file"] {
  flex: 1;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.admin-file-input input[type="text"],
.admin-file-input input[type="number"],
.admin-file-input textarea {
  flex: 1;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}

.admin-file-input textarea {
  min-height: 80px;
  resize: vertical;
}

.admin-upload-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-upload-form label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.admin-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-image-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.admin-image-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.admin-image-card__info {
  padding: 12px;
  background: var(--ink-700);
}

.admin-image-card__info p {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--muted);
}

.admin-image-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.admin-image-card__actions button {
  flex: 1;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.admin-image-card__actions button:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.admin-image-card__actions button.delete:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

.admin-status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--brand-gold);
  min-height: 20px;
}

.admin-signout {
  text-align: center;
  margin-top: 32px;
}

/* ─── Video Embed ────────────────────────────────── */
.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-700);
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Film Poster ────────────────────────────────── */
.film-poster {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* ─── Pricing Section ────────────────────────────── */
.pricing-section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.85);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--brand-gold);
  background: rgba(201, 168, 76, 0.06);
}

.pricing-card__badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  margin: 0 0 16px;
}

.pricing-card__name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin: 0 0 4px;
}

.pricing-card__title {
  font-family: "Heavitas", sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}

.pricing-card__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.pricing-card__price {
  font-family: "Heavitas", sans-serif;
  font-size: 38px;
  color: var(--brand-gold);
  letter-spacing: 1px;
  margin-bottom: 28px;
  line-height: 1;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li::before {
  content: "✓";
  color: var(--brand-gold);
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-addons {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.pricing-addons__header {
  margin-bottom: 32px;
}

.pricing-addons h3 {
  font-size: 36px;
  margin: 0 0 8px;
  font-family: "Heavitas", sans-serif;
  letter-spacing: 1px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  color: var(--muted);
}

.addon-item span:last-child {
  color: var(--brand-gold);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 16px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .pricing-addons { padding: 32px 24px; }
}

/* ── FAQ Accordion ───────────────────────────────────── */
.pricing-faqs h3 {
  font-size: 36px;
  margin: 0 0 8px;
  font-family: "Heavitas", sans-serif;
  letter-spacing: 1px;
}

.pricing-faqs {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--brand-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding-right: 32px;
}

@media (max-width: 768px) {
  .pricing-faqs { padding: 32px 24px; }
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  padding: 48px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 10, 10, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand {
  font-family: "Heavitas", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--brand-gold);
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.footer-note {
  margin: 0 0 0;
  font-size: 12px;
  color: rgba(160,160,160,0.6);
}

/* ─── Reveal Animations ──────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

body.animations-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { --delay: 0.1s; }
.delay-2 { --delay: 0.2s; }
.delay-3 { --delay: 0.3s; }

.stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5 {
  opacity: 1;
  transform: translateY(0);
}

body.animations-enabled .stagger-1,
body.animations-enabled .stagger-2,
body.animations-enabled .stagger-3,
body.animations-enabled .stagger-4,
body.animations-enabled .stagger-5 {
  opacity: 0;
  transform: translateY(18px);
}

body.animations-enabled .stagger-1 { animation: fadeUp 0.6s ease forwards 0.05s; }
body.animations-enabled .stagger-2 { animation: fadeUp 0.6s ease forwards 0.15s; }
body.animations-enabled .stagger-3 { animation: fadeUp 0.6s ease forwards 0.25s; }
body.animations-enabled .stagger-4 { animation: fadeUp 0.6s ease forwards 0.35s; }
body.animations-enabled .stagger-5 { animation: fadeUp 0.6s ease forwards 0.45s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { height: 350px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .featured-row { grid-template-columns: 1fr; }
  .featured-row.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(18px);
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-section { padding: 32px 24px; }
  .portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
}

@media (max-width: 600px) {
  .video-hero { min-height: 500px; }
  .cta-row { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  body.animations-enabled .reveal,
  body.animations-enabled .stagger-1,
  body.animations-enabled .stagger-2,
  body.animations-enabled .stagger-3,
  body.animations-enabled .stagger-4,
  body.animations-enabled .stagger-5 {
    opacity: 1;
    transform: none;
  }
}
