/*
Theme Name: PixelPath Studio
Theme URI: https://pixelpathstudio.com.au
Author: PixelPath Studio
Author URI: https://pixelpathstudio.com.au
Description: A clean, modern WordPress theme for PixelPath Studio web design company. Features sections for services, portfolio, testimonials, pricing and contact.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pixelpath
Tags: business, portfolio, one-page, custom-colors, custom-logo, full-width-template
*/

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

:root {
  --navy:        #0f1f3d;
  --navy-mid:    #1a3260;
  --teal:        #2a9d8f;
  --teal-dark:   #248f82;
  --teal-light:  #e8f7f5;
  --teal-mid:    #d0f0ec;
  --stone:       #f5f3ee;
  --stone-dark:  #e8e4dc;
  --text:        #1a1a1a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --white:       #ffffff;
  --radius:      6px;
  --radius-lg:   14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { line-height: 1.75; }

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

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); color: var(--white); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-dark {
  display: inline-block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
}
.btn-dark:hover { background: var(--navy-mid); color: var(--white); }

.btn-teal {
  display: inline-block;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-teal:hover { background: var(--teal-dark); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); color: var(--teal); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stone-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 5%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-text span { color: var(--teal); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--teal); }

.nav-menu .nav-cta a {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-menu .nav-cta a:hover { background: var(--teal); color: var(--white); }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(42,157,143,0.4);
  padding: 4px 14px;
  border-radius: 100px;
}

#hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

#hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.2rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Browser mockup */
.browser-mock {
  background: #1e3358;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.browser-bar {
  background: #162845;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.browser-content { padding: 24px 20px; }

.mock-nav-bar { display: flex; gap: 10px; margin-bottom: 18px; align-items: center; }
.mock-logo-block { width: 80px; height: 24px; background: var(--teal); border-radius: 4px; opacity: 0.9; }
.mock-nav-links { display: flex; gap: 8px; margin-left: auto; }
.mock-nav-link { width: 40px; height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; }
.mock-hero-block { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 20px; margin-bottom: 14px; }
.mock-h { height: 14px; background: rgba(255,255,255,0.3); border-radius: 4px; margin-bottom: 8px; }
.mock-h.w60 { width: 60%; }
.mock-h.w80 { width: 80%; }
.mock-h.w45 { width: 45%; }
.mock-p { height: 7px; background: rgba(255,255,255,0.12); border-radius: 3px; margin-bottom: 6px; }
.mock-p.w90 { width: 90%; }
.mock-p.w75 { width: 75%; }
.mock-btn-row { display: flex; gap: 8px; margin-top: 12px; }
.mock-btn-a { width: 80px; height: 28px; background: var(--teal); border-radius: 100px; opacity: 0.9; }
.mock-btn-b { width: 80px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mock-card { background: rgba(255,255,255,0.07); border-radius: 6px; padding: 12px; }
.mock-card-icon { width: 24px; height: 24px; border-radius: 6px; margin-bottom: 8px; }
.ic-teal { background: var(--teal); opacity: 0.8; }
.ic-blue { background: #4a9eff; opacity: 0.7; }
.ic-amber { background: #f4a540; opacity: 0.7; }

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust-bar {
  background: var(--stone);
  border-bottom: 1px solid var(--stone-dark);
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.trust-item svg { color: var(--teal); flex-shrink: 0; }

.trust-divider { width: 1px; height: 20px; background: var(--stone-dark); }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 80px 5%;
  background: var(--white);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 3.5rem;
}

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

.service-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--stone-dark);
  transition: border-color 0.2s, transform 0.2s;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--teal);
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.service-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 80px 5%;
  background: var(--navy);
  color: var(--white);
}

#process .section-title { color: var(--white); }
#process .section-sub { color: rgba(255,255,255,0.65); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 3.5rem;
}

.process-step { position: relative; }

.process-step::after {
  content: '';
  position: absolute;
  top: 22px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: rgba(42,157,143,0.3);
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(42,157,143,0.15);
  border: 1px solid rgba(42,157,143,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.process-step h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; font-family: 'DM Sans', sans-serif; }
.process-step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio {
  padding: 80px 5%;
  background: var(--stone);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 20px;
  flex-wrap: wrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone-dark);
  transition: transform 0.2s;
}

.portfolio-card:hover { transform: translateY(-3px); }
.portfolio-card.featured { grid-row: 1 / 3; }

.portfolio-img {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-card.featured .portfolio-img { aspect-ratio: unset; height: 300px; }

.portfolio-img img { width: 100%; height: 100%; object-fit: cover; }

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-bg-1 { background: linear-gradient(135deg, #0f1f3d 0%, #1a3260 100%); }
.pf-bg-2 { background: linear-gradient(135deg, #2a9d8f 0%, #1a6e66 100%); }
.pf-bg-3 { background: linear-gradient(135deg, #f4a540 0%, #e07b20 100%); }
.pf-bg-4 { background: linear-gradient(135deg, #6b5ce7 0%, #4a3cb5 100%); }
.pf-bg-5 { background: linear-gradient(135deg, #e84393 0%, #c42070 100%); }

.pf-mock-screen {
  width: 70%;
  height: 65%;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}

.portfolio-info { padding: 1.1rem 1.25rem; }

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.portfolio-info h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; }
.portfolio-info p { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 80px 5%;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--stone-dark);
}

.stars { display: flex; gap: 3px; margin-bottom: 1rem; }

.star {
  width: 14px;
  height: 14px;
  background: #f4a540;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.av-teal { background: var(--teal-light); color: var(--teal); }
.av-navy { background: #e8ecf5; color: var(--navy); }
.av-amber { background: #fef3e2; color: #c47a00; }

.author-name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.author-biz { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 80px 5%;
  background: var(--stone);
}

.pricing-header { text-align: center; max-width: 580px; margin: 0 auto 3rem; }
.pricing-header .section-sub { margin: 0 auto; }

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--stone-dark);
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover { transform: translateY(-2px); }

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.pricing-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.5); }

.pricing-divider { height: 1px; background: var(--stone-dark); margin-bottom: 1.5rem; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }

.pricing-features { list-style: none; margin-bottom: 1.8rem; }

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }

.feat-tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card.featured .feat-tick { background: rgba(42,157,143,0.25); }

.feat-tick::after {
  content: '';
  width: 6px;
  height: 4px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}

.pricing-note-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================================
   CTA BAND
   ============================================================ */
#cta-band {
  background: var(--teal);
  padding: 70px 5%;
  text-align: center;
  color: var(--white);
}

#cta-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

#cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { padding: 80px 5%; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.contact-info > p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 2rem; }

.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1px;
  font-weight: 500;
}

.contact-detail-text span { font-size: 0.92rem; color: var(--text); }

.contact-form {
  background: var(--stone);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--stone-dark);
}

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

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--stone-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }

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

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 50px 5% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-top: 1rem; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  text-decoration: none;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-legal { display: flex; gap: 1.5rem; }

.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   WOOCOMMERCE & WORDPRESS CORE (basic compat)
   ============================================================ */
.wp-block-image img { border-radius: var(--radius); }

.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-header { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card.featured { grid-row: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--stone-dark);
    gap: 1rem;
    z-index: 99;
  }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #trust-bar { gap: 1rem; }
  .trust-divider { display: none; }
}
