/*
Theme Name: Thefka Studios
Theme URI: https://thefkastudios.com
Author: Thefka Studios
Author URI: https://thefkastudios.com
Description: A luxury, editorial dark theme for Thefka Studios — Ottawa's premier audio-visual production house. Features gold accents, cinematic typography, animated sections, and a full-page homepage layout.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://thefkastudios.com
Text Domain: thefka-studios
Tags: dark, entertainment, portfolio, business, full-width-template, custom-colors, custom-menu, featured-images, footer-widgets, theme-options
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CC82;
  --gold-dim:    #8A6D2F;
  --black:       #080808;
  --near-black:  #111111;
  --surface:     #161616;
  --surface-2:   #1E1E1E;
  --border:      rgba(201,168,76,0.15);
  --border-mid:  rgba(201,168,76,0.30);
  --text-primary:   #F5F0E8;
  --text-secondary: #9A9082;
  --text-muted:     #5A5248;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Syne', sans-serif;
  --container:  1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar { padding-top: 32px; }

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

a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }

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

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 60px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: 22px; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--gold); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5%;
}

.label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 20px;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.section-header { margin-bottom: 72px; }

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

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black) !important;
  border: none;
  padding: 16px 36px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--text-secondary) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--gold) !important; border-color: var(--gold); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.3s;
}

#masthead.scrolled { background: rgba(8,8,8,0.97); }

.site-branding .site-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
}

.site-branding .site-title a { color: var(--text-primary) !important; }
.site-branding .site-title a span { color: var(--gold); }

/* Primary nav */
#primary-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

#primary-menu li a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  transition: color 0.25s;
}
#primary-menu li a:hover { color: var(--gold) !important; }

#primary-menu .menu-cta a {
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--gold) !important;
  padding: 8px 20px;
  transition: background 0.25s, color 0.25s !important;
}
#primary-menu .menu-cta a:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  padding: 24px 5% 32px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary) !important;
  border-bottom: 0.5px solid var(--border);
}
.mobile-nav ul li a:hover { color: var(--gold) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-badge {
  position: absolute;
  right: 5%; bottom: 15%;
  width: 160px; height: 160px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.2s forwards;
}
.hero-badge-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--near-black);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 120px 0;
  background: var(--near-black);
  border-top: 0.5px solid var(--border);
  position: relative;
  z-index: 1;
}

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

.about-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 15px;
}
.about-text p.lead {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.6;
}
.about-text .btn-ghost { margin-top: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.stat-box {
  background: var(--surface);
  padding: 40px 32px;
  border: 0.5px solid var(--border);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}

.service-card {
  background: var(--near-black);
  padding: 48px 40px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--surface-2); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.service-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Custom post type service cards (if using CPT) */
.service-card .entry-title { font-size: 26px; font-weight: 400; margin-bottom: 16px; }
.service-card .entry-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin: 0; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 120px 0;
  background: var(--near-black);
  border-top: 0.5px solid var(--border);
  position: relative;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 80px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border-mid);
}
.process-step { padding: 0 24px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--gold);
  margin: 0 auto 28px;
  background: var(--near-black);
  position: relative;
  z-index: 1;
}
.step-title { font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   WORLDWIDE SECTION
   ============================================================ */
.worldwide-section {
  padding: 120px 0;
  background: var(--black);
  border-top: 0.5px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}
.worldwide-inner { max-width: 700px; margin: 0 auto; padding: 0 5%; }
.worldwide-section h2 { font-size: clamp(40px, 6vw, 72px); margin: 28px 0; line-height: 1.1; }
.worldwide-section .subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.locations {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.location-item { text-align: center; }
.location-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 10px;
}
.location-name {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 120px 0;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 { font-size: clamp(28px, 4vw, 48px); margin: 20px 0 20px; line-height: 1.2; }
.contact-info p { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }

.contact-details { list-style: none; }
.contact-details li {
  padding: 16px 0;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-details li:first-child { border-top: 0.5px solid var(--border); }
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 80px;
  padding-top: 2px;
}
.contact-detail-val { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* Contact form (works with WPForms, CF7, Gravity) */
.contact-form-wrap,
.wpcf7-form,
.gform_wrapper { display: flex; flex-direction: column; gap: 20px; }

.contact-form-wrap .form-row,
.gform_wrapper .gform_body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

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

.form-label,
label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--ff-body);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  background: var(--near-black);
  border: 0.5px solid var(--border);
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold-dim); }
textarea { resize: vertical; min-height: 130px; }

input[type="submit"],
button[type="submit"],
.wpcf7-submit,
.gform_button {
  background: var(--gold);
  color: var(--black) !important;
  border: none;
  padding: 16px 36px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: 100%;
  border-radius: 0;
}
input[type="submit"]:hover,
button[type="submit"]:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 60px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--text-primary);
}
.footer-logo span { color: var(--gold); }

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding: 60px 5%;
  border-top: 0.5px solid var(--border);
}
.footer-widget-title {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-widget ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-widget ul li a {
  font-size: 13px;
  color: var(--text-muted) !important;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-widget ul li a:hover { color: var(--gold) !important; }
.footer-widget p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.footer-bottom {
  padding: 20px 5%;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted) !important; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-bottom-links a:hover { color: var(--gold) !important; }

/* ============================================================
   INNER PAGE: BLOG / ARCHIVE
   ============================================================ */
.page-template-default .site-main,
.blog .site-main,
.archive .site-main,
.single .site-main {
  padding: 120px 0 80px;
  background: var(--black);
  position: relative;
  z-index: 1;
}

.page-header {
  padding: 140px 5% 60px;
  background: var(--near-black);
  border-bottom: 0.5px solid var(--border);
  position: relative;
  z-index: 1;
}
.page-header h1 { font-size: clamp(36px, 5vw, 64px); }

.post-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.post-card:hover { border-color: var(--gold-dim); }

.post-card-inner { padding: 40px; }
.post-card .entry-meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.post-card .entry-title { font-size: 28px; margin-bottom: 16px; }
.post-card .entry-title a { color: var(--text-primary) !important; }
.post-card .entry-title a:hover { color: var(--gold) !important; }
.post-card .entry-excerpt { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }

.post-thumbnail img { width: 100%; object-fit: cover; height: 220px; }

/* Single post */
.single .entry-header { padding: 140px 5% 60px; background: var(--near-black); border-bottom: 0.5px solid var(--border); }
.single .entry-content { padding: 60px 5%; max-width: 760px; margin: 0 auto; color: var(--text-secondary); line-height: 1.9; }
.single .entry-content h2, .single .entry-content h3 { color: var(--text-primary); margin: 40px 0 16px; }
.single .entry-content p { margin-bottom: 1.5em; }
.single .entry-content a { color: var(--gold); border-bottom: 1px solid var(--border); }

/* ============================================================
   PAGINATION
   ============================================================ */
.navigation { padding: 40px 0; text-align: center; }
.page-numbers {
  display: inline-flex;
  gap: 8px;
}
.page-numbers a, .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary) !important;
  transition: all 0.25s;
}
.page-numbers a:hover, .page-numbers .current {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area {
  padding: 60px 5%;
  max-width: 760px;
  margin: 0 auto;
  border-top: 0.5px solid var(--border);
}
.comments-title { font-size: 24px; margin-bottom: 32px; }
.comment-body { padding: 24px; border: 0.5px solid var(--border); background: var(--surface); margin-bottom: 16px; }
.comment-author .fn { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.comment-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.comment-content p { font-size: 14px; color: var(--text-secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  #primary-menu { display: none; }
  .menu-toggle { display: flex; }
  .hero-badge { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-grid .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .locations { gap: 24px; }
}

/* ============================================================
   WORDPRESS CORE ALIGNMENT CLASSES
   ============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; margin-left: calc(-5vw); margin-right: calc(-5vw); }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); font-style: italic; padding: 8px 0; }

/* Screen reader text */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0;
  position: absolute; word-wrap: normal !important;
}
