/*
Theme Name: PeacockPC
Theme URI: https://peacockpc.com
Author: PeacockPC
Author URI: https://peacockpc.com
Description: Premium WordPress theme for PeacockPC - mobile computer repair and IT services serving Palos Verdes and surrounding communities. Features elegant scroll-driven image reveal animations, glassmorphism effects, and warm Mediterranean-inspired design optimized for an affluent, mature demographic.
Version: 1.0.0
License: GPL v2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peacockpc
Tags: custom-theme, it-services, responsive, elegant, scroll-animations
*/

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Quicksand:wght@300;400;500&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --navy: #1A2F4B;
  --warm-sand: #F5F0EB;
  --sage: #7A8B6F;
  --soft-white: #FAFAF7;
  --taupe: #8C7E72;
  --mist: #B8C4C2;
  --navy-50: rgba(26, 47, 75, 0.5);
  --navy-70: rgba(26, 47, 75, 0.7);
  --white-10: rgba(255, 255, 255, 0.1);
  --color-accent: var(--sage);
  --color-accent-light: var(--mist);
  --color-text-primary: var(--navy);
  --color-text-secondary: var(--sage);
  --color-text-muted: var(--mist);
  --color-text-light: var(--soft-white);
  --color-bg-body: var(--warm-sand);
  --color-bg-content: var(--soft-white);
  --color-bg-dark: var(--navy);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-accent: 'Quicksand', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --grid-gutter: 36px;
  --grid-outer: 36px;
  --content-max: 1280px;
  --section-pad: 120px;
  --card-pad: 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-reveal: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-body);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--grid-outer);
}

.content-band {
  width: 100%;
  padding: var(--section-pad) 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.label {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text-primary);
}

h1 { font-size: clamp(60px, 10vw, 150px); line-height: 0.9; }
h2 { font-size: clamp(40px, 6vw, 80px); line-height: 1.0; }
h3 { font-size: clamp(28px, 3vw, 40px); }
h4 { font-size: 24px; }

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
}

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-light { color: var(--color-text-light); }
.text-center { text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px var(--grid-outer);
  background: transparent;
  transition: background 300ms ease, padding 300ms ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px var(--grid-outer);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
}

#primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

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

.nav-menu a {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: calc(16px * 1.5);
  line-height: calc(16px * 1.5);
}

.nav-menu a span {
  display: block;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-menu a:hover span:first-child {
  transform: translateY(-100%);
}

.nav-menu a span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--color-accent);
}

.nav-menu a:hover span:last-child {
  transform: translateY(-100%);
}

.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
  color: var(--color-accent);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform 300ms ease, opacity 300ms ease;
}

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

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 48px;
  border-radius: 0;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--soft-white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--soft-white);
  color: var(--navy);
  border-color: var(--mist);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--soft-white);
}

.btn-light {
  background: var(--soft-white);
  color: var(--navy);
  border-color: var(--soft-white);
}

.btn-light:hover {
  background: transparent;
  color: var(--soft-white);
  border-color: var(--soft-white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  padding: 80px var(--grid-outer);
  position: relative;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.footer-heading {
  font-size: clamp(50px, 8vw, 100px);
  color: var(--soft-white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 300;
  color: var(--warm-sand);
  transition: color 200ms ease;
}

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

.footer-tagline {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage);
  margin-bottom: 16px;
}

.footer-copyright {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 12px;
  color: var(--mist);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.footer-social a {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--soft-white);
  transition: color 200ms ease;
}

.footer-social a:hover {
  color: var(--mist);
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--color-bg-body);
  padding: 120px var(--grid-outer) 80px;
}

.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-rule {
  width: 200px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto 32px;
  transform: rotate(-5deg);
  transform-origin: center;
  animation: ruleExpand 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes ruleExpand {
  from {
    transform: rotate(-5deg) scaleX(0);
    opacity: 0;
  }
  to {
    transform: rotate(-5deg) scaleX(1);
    opacity: 1;
  }
}

.hero-sub {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-entrance {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

.hero-entrance-delay-1 { animation-delay: 0.2s; }
.hero-entrance-delay-2 { animation-delay: 0.4s; }
.hero-entrance-delay-3 { animation-delay: 0.6s; }
.hero-entrance-delay-4 { animation-delay: 0.8s; }

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

/* ============================================
   TRUST SIGNALS SECTION
   ============================================ */
.trust-section {
  background: var(--color-bg-content);
  padding: 80px var(--grid-outer);
}

.trust-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
}

.trust-item {
  text-align: center;
  padding: 32px 16px;
}

.trust-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.trust-item h4 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.trust-item p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   HOME SERVICES CARDS
   ============================================ */
.home-services {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-body);
}

.home-services-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.home-services-header {
  text-align: center;
  margin-bottom: 64px;
}

.home-services-header h2 {
  margin-bottom: 16px;
}

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

.service-card {
  background: var(--color-bg-content);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 47, 75, 0.1);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 24px;
}

.service-card-content h3 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.service-card-content p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--color-bg-content);
  padding: var(--section-pad) var(--grid-outer);
}

.how-it-works-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
  counter-reset: step;
}

.step-item {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 64px;
  color: var(--mist);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.step-item h3 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 16px;
  color: var(--color-text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--color-bg-content);
  padding: 120px var(--grid-outer);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 47, 75, 0.8), rgba(26, 47, 75, 0.2));
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 80px var(--grid-outer);
  width: 100%;
}

.about-hero-content h1 {
  color: var(--soft-white);
  margin-bottom: 16px;
}

.about-hero-content p {
  color: var(--warm-sand);
  font-size: 20px;
  max-width: 600px;
}

.about-story {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-body);
}

.about-story-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2 {
  margin-bottom: 32px;
}

.about-story p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.about-values {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-content);
}

.about-values-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 64px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}

.value-card {
  padding: 40px 32px;
  text-align: center;
  border-top: 2px solid var(--color-accent);
}

.value-card h3 {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.value-card p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.about-team {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-body);
}

.about-team-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.team-content h2 {
  margin-bottom: 24px;
}

.team-content p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.about-area {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-content);
  text-align: center;
}

.about-area-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.about-area h2 {
  margin-bottom: 24px;
}

.about-area p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.area-img {
  max-width: 900px;
  margin: 0 auto;
}

.area-img img {
  width: 100%;
  height: auto;
}

/* ============================================
   SERVICES PAGE - SCROLL REVEAL EFFECT
   ============================================ */
.services-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-body);
  padding: 120px var(--grid-outer) 80px;
  text-align: center;
}

.services-hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.services-hero .label {
  margin-bottom: 24px;
}

.services-hero h1 {
  margin-bottom: 24px;
}

.services-hero .hero-rule {
  margin: 0 auto 32px;
}

.services-hero .hero-sub {
  margin-bottom: 0;
}

/* Services list with scroll reveal */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 50vh 0;
  background: var(--color-bg-body);
}

.image-container {
  position: sticky;
  top: 20vh;
  width: clamp(350px, 50vw, 600px);
  aspect-ratio: 2/3;
  margin: 0 auto;
}

.image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
}

.image-container img:nth-child(1) { z-index: 1; }
.image-container img:nth-child(2) { z-index: 2; }
.image-container img:nth-child(3) { z-index: 3; }

/* Clip-path reveal system */
.image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-wrapper:nth-child(1) { z-index: 1; }
.image-wrapper:nth-child(2) { z-index: 2; }
.image-wrapper:nth-child(3) { z-index: 3; }

.image-half {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: clip-path 1.5s var(--ease-reveal);
}

.image-half img {
  position: absolute;
  top: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.image-half.left {
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.image-half.left img {
  left: 0;
}

.image-half.right {
  right: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.image-half.right img {
  right: 0;
  width: 200%;
}

/* Revealed state */
.image-container.on .image-half.left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.image-container.on .image-half.right {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.image-container.on .image-half {
  transition-delay: 0.3s;
}

.image-wrapper:nth-child(2) .image-half {
  transition-delay: 0.6s;
}

.image-wrapper:nth-child(3) .image-half {
  transition-delay: 0.9s;
}

/* Image position adjustments */
.image-container img.adjust-left {
  object-position: 30% center;
}

.image-container img.adjust-right {
  object-position: 70% center;
}

/* Glass overlay */
.glass-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-section.on .glass-overlay {
  opacity: 1;
}

.glass-panel {
  max-width: 300px;
  width: 100%;
  aspect-ratio: 1.5/1;
  background: rgba(26, 47, 75, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

.service-section.on .glass-panel {
  animation: slideUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

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

.glass-panel .accent-rule {
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin-bottom: 16px;
}

.glass-panel h3 {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  text-align: center;
  margin: 0;
}

.glass-panel p {
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 12px;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
  opacity: 0.9;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-body);
  padding: 120px var(--grid-outer) 60px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 16px;
}

.contact-hero p {
  color: var(--color-text-secondary);
  font-size: 18px;
}

.contact-section {
  padding: var(--section-pad) var(--grid-outer);
  background: var(--color-bg-content);
}

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-method {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--mist);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method .label {
  margin-bottom: 8px;
}

.contact-method p {
  font-size: 20px;
  color: var(--color-text-primary);
}

.contact-method a {
  font-size: 20px;
  color: var(--color-text-primary);
  transition: color 200ms ease;
}

.contact-method a:hover {
  color: var(--color-accent);
}

.contact-form-wrapper h2 {
  margin-bottom: 32px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-primary);
  background: var(--color-bg-body);
  border: 1px solid var(--mist);
  transition: border-color 200ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

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

/* ============================================
   ENTRANCE ANIMATIONS (IntersectionObserver)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
    --grid-outer: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  #primary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-body);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 300ms ease;
    z-index: 999;
  }

  #primary-nav.active {
    transform: translateX(0);
  }

  .nav-links-left,
  .nav-links-right {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-links-left {
    margin-bottom: 24px;
  }

  .nav-links-right {
    margin-top: 24px;
  }

  #primary-nav .nav-logo {
    order: -1;
    margin-bottom: 32px;
  }

  #primary-nav .nav-logo img {
    height: 56px;
  }

  #primary-nav a {
    font-size: 24px;
    height: calc(24px * 1.5);
    line-height: calc(24px * 1.5);
  }

  body.menu-open {
    overflow: hidden;
  }

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

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

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

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

  .about-team-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 24px;
  }

  .service-section {
    padding: 30vh 0;
  }

  .image-container {
    width: 90vw;
    top: 15vh;
  }

  .glass-panel {
    max-width: 80vw;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.wp-block-image img {
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin-right: 24px;
}

.alignright {
  float: right;
  margin-left: 24px;
}
