/*
Theme Name: Vindicta Productions
Theme URI: https://vindictaproductions.com
Author: Vindicta Productions
Author URI: https://vindictaproductions.com
Description: Custom landing page theme for Vindicta Productions
Version: 1.0.0
Text Domain: vindicta
*/

/* ========================================
   Custom Properties
   ======================================== */
:root {
  --gold: #D4A03A;
  --gold-light: #F0C850;
  --gold-dark: #B8860B;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --charcoal: #1A1A1A;
  --charcoal-light: #4A4A4A;
  --dark: #0C0C0C;
  --dark-surface: #161616;

  --gold-glow: rgba(212, 160, 58, 0.15);
  --gold-glow-strong: rgba(212, 160, 58, 0.3);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-width: 1200px;
  --section-padding: 7rem 2rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--charcoal);
}

h2 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--charcoal-light);
  max-width: 65ch;
}

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--charcoal);
}

.section--dark h2 {
  color: var(--gold);
}

.section--dark h3,
.section--dark .about__heading {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 1.1rem 3rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 160, 58, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 35px rgba(212, 160, 58, 0.5);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 15px rgba(212, 160, 58, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 160, 58, 0.45);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(212, 160, 58, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--outline:active {
  transform: translateY(0);
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__logo {
  height: 34px;
  width: auto;
  transition: filter 0.4s ease;
  filter: brightness(0) invert(1);
}

.site-header.scrolled .site-header__logo {
  filter: none;
}

.site-header__nav {
  display: flex;
  gap: 2.5rem;
}

.site-header__nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  position: relative;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-header__nav a:hover {
  color: var(--gold);
}

.site-header__nav a:hover::after {
  width: 100%;
}

.site-header.scrolled .site-header__nav a {
  color: var(--charcoal);
}

.site-header.scrolled .site-header__nav a:hover {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.site-header.scrolled .hamburger span {
  background: var(--charcoal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav__overlay.open {
  display: block;
  opacity: 1;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 160, 58, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 70%, rgba(212, 160, 58, 0.03) 0%, transparent 40%),
    var(--dark);
  position: relative;
  overflow: hidden;
}

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

.hero p {
  color: rgba(255, 255, 255, 0.55);
}

/* Gold glow behind phoenix */
.hero__logo-wrap {
  position: relative;
  margin-bottom: 3rem;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow-strong) 0%, rgba(212, 160, 58, 0.08) 40%, transparent 65%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero__logo {
  width: 180px;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.7);
  animation: heroLogoIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gold expanding line under logo */
.hero__line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 2.5rem;
  animation: lineExpand 0.8s ease-out 0.6s forwards;
}

@keyframes lineExpand {
  to { width: 140px; }
}

.hero__headline {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero__headline-accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subline {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

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

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.6s ease-out 1.4s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 1.8s;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Hero bottom gold line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 58, 0.3), transparent);
}

/* ========================================
   Services
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(212, 160, 58, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.service-card__tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.service-card__list li {
  font-size: 0.975rem;
  color: var(--charcoal-light);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Staggered card animation */
.service-card.fade-in:nth-child(1) { transition-delay: 0s; }
.service-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.service-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* ========================================
   About
   ======================================== */
.about__content {
  max-width: 700px;
  margin: 0 auto;
}

.about__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about__body {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section--dark .about__closer {
  color: var(--gold);
}

.about__closer {
  font-size: 1.375rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold-dark);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.testimonial-card__placeholder {
  font-size: 1rem;
  color: var(--charcoal-light);
  font-style: italic;
  opacity: 0.5;
}

/* Staggered testimonial animation */
.testimonial-card.fade-in:nth-child(1) { transition-delay: 0s; }
.testimonial-card.fade-in:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card.fade-in:nth-child(3) { transition-delay: 0.24s; }

/* ========================================
   Contact
   ======================================== */
.contact__form-wrapper {
  max-width: 550px;
  margin: 0 auto;
}

.contact__subtext {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.section--dark .contact__subtext {
  color: rgba(255, 255, 255, 0.55);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.section--dark .form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 58, 0.1);
}

/* Dark section form styling */
.section--dark .form-group input,
.section--dark .form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.section--dark .form-group input::placeholder,
.section--dark .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.section--dark .form-group input:focus,
.section--dark .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 58, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.section--dark .form-group input.error,
.section--dark .form-group textarea.error {
  border-color: #e74c3c;
}

.error-message {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: none;
}

.section--dark .error-message {
  color: #e74c3c;
}

.error-message.visible {
  display: block;
}

.contact__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Honeypot */
.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

.form-message--success {
  background: rgba(45, 106, 45, 0.1);
  color: #4caf50;
  border: 1px solid rgba(45, 106, 45, 0.2);
}

.form-message--error {
  background: rgba(192, 57, 43, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* Submit button states */
.contact__submit--sending {
  pointer-events: none;
  opacity: 0.7;
}

/* ========================================
   Success Overlay
   ======================================== */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.form-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-overlay__card {
  position: relative;
  background: var(--dark-surface);
  border: 1px solid rgba(212, 160, 58, 0.2);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 160, 58, 0.08);
}

.form-overlay.active .form-overlay__card {
  transform: translateY(0) scale(1);
}

.form-overlay__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.form-overlay__icon svg {
  width: 100%;
  height: 100%;
}

.form-overlay__circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
}

.form-overlay.active .form-overlay__circle {
  animation: overlayCircle 0.6s 0.2s ease forwards;
}

.form-overlay__check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.form-overlay.active .form-overlay__check {
  animation: overlayCheck 0.4s 0.7s ease forwards;
}

@keyframes overlayCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes overlayCheck {
  to { stroke-dashoffset: 0; }
}

.form-overlay__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-overlay__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.form-overlay__close {
  min-width: 160px;
}

/* ========================================
   Process
   ======================================== */
.process-section {
  background: var(--dark);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(212, 160, 58, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section__header h2 {
  color: var(--gold);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Continuous gold line running through the top of all cards */
.process__grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 160, 58, 0.6) 15%,
    rgba(212, 160, 58, 0.6) 85%,
    transparent 100%
  );
  z-index: 1;
}

.process__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid rgba(212, 160, 58, 0.3);
  padding: 2.5rem 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-top-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.process__card:hover {
  background: rgba(212, 160, 58, 0.04);
  border-top-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 160, 58, 0.07);
}

.process__watermark {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(212, 160, 58, 0.07);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color 0.3s ease;
  user-select: none;
}

.process__card:hover .process__watermark {
  color: rgba(212, 160, 58, 0.12);
}

.process__card-inner {
  position: relative;
  z-index: 1;
}

.process__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process__desc {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ========================================
   Pricing
   ======================================== */
.pricing__subtext {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  max-width: 520px;
  margin: -1rem auto 3.5rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing__card:hover {
  border-color: rgba(212, 160, 58, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing__card--featured {
  border-color: rgba(212, 160, 58, 0.35);
  box-shadow: 0 0 50px rgba(212, 160, 58, 0.07);
  background: rgba(212, 160, 58, 0.04);
}

.pricing__card--featured:hover {
  border-color: rgba(212, 160, 58, 0.55);
  box-shadow: 0 10px 50px rgba(212, 160, 58, 0.12);
}

.pricing__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 3px 3px;
  white-space: nowrap;
}

.pricing__tier-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(212, 160, 58, 0.6);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.pricing__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pricing__amount--custom {
  font-size: 2rem;
}

.pricing__period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing__launch {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  flex: 1;
}

.pricing__features li {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.55rem 0 0.55rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.pricing__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

.pricing__cta {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--dark);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 58, 0.3), transparent);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

/* Brand column */
.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer__logo {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.site-footer__logo:hover {
  opacity: 1;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-footer__social-link:hover {
  color: var(--gold);
  border-color: rgba(212, 160, 58, 0.4);
  background: rgba(212, 160, 58, 0.06);
}

/* Nav column */
.site-footer__col--nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-footer__link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.25s ease;
  display: inline-block;
}

.site-footer__link:hover {
  color: var(--gold);
}

/* Contact column */
.site-footer__link--email {
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.site-footer__location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.75rem;
}

.site-footer__cta {
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
}

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 2rem;
  text-align: center;
}

.site-footer__copy {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   Showcase — Scroll-animated Portfolio
   ======================================== */
.showcase {
  padding: 5rem 0 6rem;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.showcase::before,
.showcase::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 58, 0.2), transparent);
}

.showcase::before { top: 0; }
.showcase::after { bottom: 0; }

.showcase__header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.showcase__viewport {
  position: relative;
  perspective: 1400px;
}

.showcase__track {
  display: flex;
  gap: 28px;
  padding: 1.5rem 4rem 2.5rem;
  will-change: transform;
}

.showcase__card {
  flex-shrink: 0;
  width: 380px;
}

.sc-window {
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.06);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.showcase__card:hover .sc-window {
  transform: rotateY(0) rotateX(0) translateY(-6px) scale(1.02);
  box-shadow:
    0 30px 60px rgba(212, 160, 58, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1);
}

.showcase__label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 1rem;
  opacity: 0.7;
}

/* Browser Chrome Bar */
.sc-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #2a2a2a;
}

.sc-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}

.sc-chrome i:nth-child(1) { background: #ff5f57; }
.sc-chrome i:nth-child(2) { background: #febc2e; }
.sc-chrome i:nth-child(3) { background: #28c840; }

/* Screen base */
.sc-screen {
  height: 230px;
  position: relative;
  overflow: hidden;
}

/* ---- Mockup 1: Dark Analytics Dashboard ---- */
.sc-dash {
  background: #12122a;
  display: flex;
}

.sc-dash__sidebar {
  width: 48px;
  background: #1a1a3e;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.sc-dash__logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  margin-bottom: 6px;
}

.sc-dash__nav-item {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.sc-dash__nav-item--active {
  background: #6c5ce7;
}

.sc-dash__main {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-dash__metrics {
  display: flex;
  gap: 5px;
}

.sc-dash__metric {
  flex: 1;
  height: 32px;
  background: #1e1e45;
  border-radius: 4px;
  padding: 4px 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sc-dash__metric span {
  display: block;
  height: 3px;
  border-radius: 2px;
  width: 60%;
}

.sc-dash__chart {
  flex: 1;
  background: #1e1e45;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.sc-dash__chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(108, 92, 231, 0.15) 30%,
    rgba(108, 92, 231, 0.3) 100%
  );
  clip-path: polygon(0% 80%, 8% 60%, 16% 70%, 24% 40%, 32% 50%, 40% 20%, 48% 35%, 56% 15%, 64% 30%, 72% 10%, 80% 25%, 88% 5%, 96% 20%, 100% 15%, 100% 100%, 0% 100%);
}

.sc-dash__table {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sc-dash__row {
  height: 10px;
  background: #1e1e45;
  border-radius: 2px;
}

.sc-dash__row:nth-child(odd) {
  background: #1a1a3e;
}

/* ---- Mockup 2: Restaurant Website ---- */
.sc-resto {
  background: #fef9f3;
  display: flex;
  flex-direction: column;
}

.sc-resto__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: #2c1810;
}

.sc-resto__logo-text {
  display: block;
  width: 50px;
  height: 5px;
  background: #d4a03a;
  border-radius: 2px;
}

.sc-resto__nav-links {
  display: flex;
  gap: 8px;
}

.sc-resto__nav-links span {
  display: block;
  width: 20px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.sc-resto__hero {
  height: 90px;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 40%, #CD853F 100%);
  position: relative;
}

.sc-resto__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(44, 24, 16, 0.6));
}

.sc-resto__menu {
  display: flex;
  gap: 6px;
  padding: 8px;
  flex: 1;
}

.sc-resto__dish {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-resto__dish-img {
  height: 50px;
  border-radius: 4px;
}

.sc-resto__dish-text {
  display: block;
  height: 4px;
  width: 70%;
  background: #3e2b1e;
  border-radius: 2px;
  opacity: 0.3;
}

/* ---- Mockup 3: SaaS Landing Page ---- */
.sc-saas {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.sc-saas__nav {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.sc-saas__logo-text {
  display: block;
  width: 40px;
  height: 5px;
  background: #6c5ce7;
  border-radius: 2px;
}

.sc-saas__nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.sc-saas__nav-links span {
  display: block;
  width: 18px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
}

.sc-saas__cta-btn {
  display: block;
  width: 30px;
  height: 10px;
  background: #6c5ce7;
  border-radius: 3px;
}

.sc-saas__hero {
  flex: 1;
  background: linear-gradient(135deg, #f8f7ff 0%, #ede8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.sc-saas__hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.sc-saas__h1 {
  display: block;
  width: 140px;
  height: 6px;
  background: #2d2b55;
  border-radius: 3px;
}

.sc-saas__h1--short {
  width: 90px;
}

.sc-saas__sub {
  display: block;
  width: 110px;
  height: 3px;
  background: #999;
  border-radius: 2px;
  margin-top: 2px;
}

.sc-saas__btn {
  display: block;
  width: 50px;
  height: 12px;
  background: #6c5ce7;
  border-radius: 4px;
  margin-top: 4px;
}

.sc-saas__features {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #fff;
}

.sc-saas__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sc-saas__icon {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.sc-saas__text {
  display: block;
  width: 80%;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
}

/* ---- Mockup 4: E-Commerce Store ---- */
.sc-shop {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.sc-shop__nav {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.sc-shop__logo-text {
  display: block;
  width: 35px;
  height: 5px;
  background: #2d3436;
  border-radius: 2px;
}

.sc-shop__search {
  flex: 1;
  height: 10px;
  background: #f5f5f5;
  border-radius: 3px;
  margin: 0 8px;
}

.sc-shop__cart {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #2d3436;
  border-radius: 2px;
}

.sc-shop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  flex: 1;
}

.sc-shop__product {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-shop__img {
  height: 65px;
  border-radius: 4px;
}

.sc-shop__name {
  display: block;
  height: 3px;
  width: 70%;
  background: #2d3436;
  border-radius: 2px;
  opacity: 0.4;
}

.sc-shop__price {
  display: block;
  height: 3px;
  width: 30%;
  background: #2d3436;
  border-radius: 2px;
  opacity: 0.7;
}

/* ---- Mockup 5: Booking Platform ---- */
.sc-book {
  background: #f0f4ff;
  display: flex;
}

.sc-book__sidebar {
  width: 48px;
  background: #1a56db;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.sc-book__sb-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
}

.sc-book__sb-item {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.sc-book__sb-item--active {
  background: rgba(255, 255, 255, 0.8);
}

.sc-book__main {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-book__header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-book__month {
  display: block;
  width: 50px;
  height: 5px;
  background: #1a56db;
  border-radius: 2px;
}

.sc-book__arrows {
  display: block;
  width: 24px;
  height: 5px;
  background: #ccc;
  border-radius: 2px;
}

.sc-book__calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  flex: 1;
}

.sc-book__calendar span {
  background: #ffffff;
  border-radius: 2px;
  min-height: 18px;
}

.sc-book__day--booked {
  background: rgba(26, 86, 219, 0.15) !important;
  border: 1px solid rgba(26, 86, 219, 0.3);
}

/* ---- Mockup 6: Healthcare Portal ---- */
.sc-health {
  background: #f8fffe;
  display: flex;
  flex-direction: column;
}

.sc-health__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  background: #ffffff;
  border-bottom: 2px solid #00b894;
}

.sc-health__logo-text {
  display: block;
  width: 40px;
  height: 5px;
  background: #00b894;
  border-radius: 2px;
}

.sc-health__nav-links {
  display: flex;
  gap: 8px;
}

.sc-health__nav-links span {
  display: block;
  width: 18px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
}

.sc-health__body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sc-health__patient-card {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #e8f5f0;
}

.sc-health__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b894, #55efc4);
  flex-shrink: 0;
}

.sc-health__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sc-health__info span:first-child {
  display: block;
  width: 60px;
  height: 4px;
  background: #2d3436;
  border-radius: 2px;
}

.sc-health__info span:last-child {
  display: block;
  width: 40px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
}

.sc-health__vitals {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sc-health__vital {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-health__vital-label {
  display: block;
  width: 30px;
  height: 3px;
  background: #aaa;
  border-radius: 2px;
  flex-shrink: 0;
}

.sc-health__vital-bar {
  display: block;
  height: 6px;
  border-radius: 3px;
}

.sc-health__chart {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e8f5f0;
  position: relative;
  overflow: hidden;
}

.sc-health__chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(180deg, transparent, rgba(0, 184, 148, 0.1));
  clip-path: polygon(0% 60%, 15% 45%, 30% 55%, 45% 30%, 60% 40%, 75% 20%, 90% 35%, 100% 25%, 100% 100%, 0% 100%);
}

/* ---- Mockup 7: Project Management ---- */
.sc-pm {
  background: #f4f5f7;
  display: flex;
  flex-direction: column;
}

.sc-pm__nav {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  gap: 8px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.sc-pm__logo-text {
  display: block;
  width: 35px;
  height: 5px;
  background: #0984e3;
  border-radius: 2px;
}

.sc-pm__search {
  width: 60px;
  height: 8px;
  background: #f0f0f0;
  border-radius: 3px;
  margin-left: auto;
}

.sc-pm__board {
  display: flex;
  gap: 5px;
  padding: 6px;
  flex: 1;
}

.sc-pm__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-pm__col-header {
  display: block;
  font-size: 5px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  padding: 3px 4px;
  border-top: 2px solid;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.sc-pm__task {
  background: #fff;
  border-radius: 3px;
  height: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
}

.sc-pm__task::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 15px;
  height: 3px;
  background: #ddd;
  border-radius: 2px;
}

.sc-pm__task::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 5px;
  width: 60%;
  height: 3px;
  background: #eee;
  border-radius: 2px;
}

/* ========================================
   Scroll Progress Bar
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 200;
  transition: none;
  pointer-events: none;
}

/* ========================================
   Button Shimmer
   ======================================== */
.btn--primary {
  overflow: hidden;
  position: relative;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  animation: btnShimmer 4s ease-in-out infinite 2s;
  pointer-events: none;
}

@keyframes btnShimmer {
  0%, 100% { left: -100%; }
  40%, 60% { left: 120%; }
}

/* ========================================
   Service Card Tier Numbers
   ======================================== */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card__number {
  position: absolute;
  top: -8px;
  right: 10px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
}

/* ========================================
   Floating Labels
   ======================================== */
.form-group--float {
  position: relative;
}

.form-group--float label {
  position: absolute;
  top: 0.95rem;
  left: 1.1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left top;
}

.section--dark .form-group--float label {
  color: rgba(255, 255, 255, 0.4);
}

/* Float up when focused or has content (placeholder not shown) */
.form-group--float input:focus + label,
.form-group--float input:not(:placeholder-shown) + label,
.form-group--float textarea:focus + label,
.form-group--float textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* Remove the old static label margin since labels now float */
.form-group--float label {
  margin-bottom: 0;
}

/* ========================================
   Nav Active State (scroll spy)
   ======================================== */
.site-header__nav a.active::after {
  width: 100%;
}

.site-header__nav a.active {
  color: var(--gold);
}

.site-header.scrolled .site-header__nav a.active {
  color: var(--gold);
}

/* ========================================
   Scroll Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive — Tablet (max-width: 900px)
   ======================================== */
@media (max-width: 900px) {
  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
  }

  .hero__logo-wrap::before {
    width: 300px;
    height: 300px;
  }
}

/* ========================================
   Responsive — Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding: 4.5rem 1.5rem;
  }

  .site-header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem;
  }

  .site-footer__tagline {
    max-width: 100%;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero__logo {
    width: 130px;
  }

  .hero__logo-wrap::before {
    width: 250px;
    height: 250px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .about__heading {
    font-size: 1.5rem;
  }

  .hero__scroll {
    display: none;
  }

  .site-header__logo {
    height: 28px;
  }

  .showcase__card {
    width: 300px;
  }

  .sc-screen {
    height: 190px;
  }

  .showcase__track {
    padding: 1rem 2rem 2rem;
    gap: 20px;
  }

  .showcase {
    padding: 3.5rem 0 4rem;
  }

  .service-card__number {
    font-size: 4rem;
  }

  /* Tone down button effects on mobile */
  .btn--primary {
    box-shadow: 0 2px 10px rgba(212, 160, 58, 0.2);
  }

  .btn--primary:hover {
    box-shadow: 0 3px 15px rgba(212, 160, 58, 0.3);
    transform: translateY(-1px);
  }

  .btn--primary::after {
    display: none;
  }

  /* ----------------------------------------
     Mobile contrast — boost all faint text
     on dark backgrounds for readability
     ---------------------------------------- */

  /* Dark section body text */
  .section--dark p,
  .section--dark li {
    color: rgba(255, 255, 255, 0.82);
  }

  /* About section */
  .about__body,
  .about__closer {
    color: rgba(255, 255, 255, 0.82);
  }

  /* Process section */
  .process__desc {
    color: rgba(255, 255, 255, 0.8);
  }

  /* Pricing section */
  .pricing__subtext {
    color: rgba(255, 255, 255, 0.75);
  }

  .pricing__features li {
    color: rgba(255, 255, 255, 0.82);
  }

  .pricing__period {
    color: rgba(255, 255, 255, 0.65);
  }

  .pricing__launch {
    color: rgba(255, 255, 255, 0.6);
  }

  /* Footer */
  .site-footer__heading {
    color: rgba(255, 255, 255, 0.55);
  }

  .site-footer__tagline {
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__link {
    color: rgba(255, 255, 255, 0.78);
    padding: 0.5rem 0;
  }

  .site-footer__link--email {
    color: rgba(255, 255, 255, 0.78);
  }

  .site-footer__location {
    color: rgba(255, 255, 255, 0.65);
  }

  .site-footer__copy {
    color: rgba(255, 255, 255, 0.45);
  }

  .site-footer__social-link {
    color: rgba(255, 255, 255, 0.7);
  }

  /* Contact section */
  .contact__subtext {
    color: rgba(255, 255, 255, 0.75);
  }
}

/* ========================================
   Prefers Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero__logo {
    opacity: 1;
    transform: none;
  }

  .hero__headline,
  .hero__subline,
  .hero__cta {
    opacity: 1;
    transform: none;
  }

  .hero__line {
    width: 140px;
  }

  .scroll-progress {
    display: none;
  }
}
