/*
Theme Name: GeneratePress Child - Peaceful Paws
Template: generatepress
Version: 1.0.1
*/

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --pc-green: #2D5016;
  --pc-green-light: #4A7C2E;
  --pc-brown: #5C3D2E;
  --pc-brown-dark: #2C1810;
  --pc-gold: #C9A96E;
  --pc-gold-light: #D4BC8E;
  --pc-cream: #FAF7F2;
  --pc-white: #FFFFFF;
  --pc-slate: #6B7280;
  --font-display: 'Lora', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --container: 1152px;
  --container-sm: 896px;
  --container-xs: 672px;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
  font-family: var(--font-body);
  color: var(--pc-brown-dark);
  background: var(--pc-cream);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--pc-brown-dark);
  margin-top: 0;
}

a { color: var(--pc-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pc-green-light); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Phone Top Bar
   ========================================================================== */
.pc-topbar {
  background: var(--pc-green);
  color: var(--pc-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
}

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

.pc-topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pc-topbar-phone a {
  color: var(--pc-white);
  font-weight: 600;
  text-decoration: none;
}

.pc-topbar-phone a:hover { color: var(--pc-gold-light); }

.pc-topbar-phone svg { width: 1rem; height: 1rem; }

.pc-topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.15);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.pc-topbar-badge svg { width: 0.5rem; height: 0.5rem; }

.pc-topbar-pulse {
  animation: pulse 2s ease-in-out infinite;
  color: #86efac;
}

@media (max-width: 639px) {
  .pc-topbar-badge { display: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(44, 24, 16, 0.05);
}

.pc-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pc-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.pc-header-spacer { height: 0; }

/* Brand */
.pc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.pc-brand:hover { color: var(--pc-brown-dark); }

.pc-brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--pc-green);
}

.pc-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pc-brown-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.pc-brand-accent { color: var(--pc-green); }

/* Desktop Nav */
.pc-nav-desktop { display: none; }

@media (min-width: 768px) {
  .pc-nav-desktop { display: flex; align-items: center; }
}

.pc-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5rem;
}

.pc-nav-list li a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(44, 24, 16, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.pc-nav-list li a:hover,
.pc-nav-list li.current-menu-item a {
  color: var(--pc-green);
}

/* Mobile Nav Toggle */
.pc-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: var(--pc-brown-dark);
  cursor: pointer;
  transition: all 0.2s;
}

.pc-nav-toggle:hover {
  color: var(--pc-green);
  background: rgba(45, 80, 22, 0.1);
}

.pc-nav-toggle svg { width: 1.5rem; height: 1.5rem; }

@media (min-width: 768px) {
  .pc-nav-toggle { display: none; }
}

/* Mobile Menu */
.pc-nav-mobile {
  border-top: 1px solid rgba(44, 24, 16, 0.1);
  padding: 1.5rem 0;
}

.pc-nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-nav-mobile-list li a {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(44, 24, 16, 0.7);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.pc-nav-mobile-list li a:hover {
  color: var(--pc-green);
  background: rgba(45, 80, 22, 0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pc-footer {
  background: var(--pc-brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}

.pc-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pc-footer-top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
  .pc-footer-top { grid-template-columns: 1fr 1fr 1fr; }
}

.pc-footer h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pc-white);
  margin-bottom: 1rem;
}

.pc-footer p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.pc-footer a { color: var(--pc-gold); }
.pc-footer a:hover { color: var(--pc-gold-light); }

.pc-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pc-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.pc-footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.pc-footer-links a,
.pc-footer-links button {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  transition: color 0.2s;
}

.pc-footer-links a:hover,
.pc-footer-links button:hover { color: var(--pc-gold); }

.pc-footer-sep { color: rgba(255,255,255,0.2); }

.pc-footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ==========================================================================
   GP Content Area Reset
   ========================================================================== */
.pc-page .site-content {
  max-width: 100%;
  padding: 0;
  margin-bottom: 0;
}

.pc-page .inside-article,
.pc-page .entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.pc-page #primary,
.pc-page .site-main,
.pc-page article {
  margin-bottom: 0;
  padding-bottom: 0;
}

.pc-page .separate-containers .inside-article {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}

.pc-page .separate-containers .site-main > article {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

.animate-fade-up { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.animate-float   { animation: float 6s ease-in-out infinite; }
.animate-pulse   { animation: pulse 2s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ==========================================================================
   Section Containers
   ========================================================================== */
.pc-section {
  padding: 4rem 1.5rem;
  position: relative;
}
.pc-section + .pc-section {
  margin-top: -1px;
}
@media (min-width: 768px) { .pc-section { padding: 6rem 2rem; } }
@media (min-width: 1024px) { .pc-section { padding: 8rem 2rem; } }

.pc-inner       { max-width: var(--container);    margin: 0 auto; }
.pc-inner-sm    { max-width: var(--container-sm); margin: 0 auto; }
.pc-inner-xs    { max-width: var(--container-xs); margin: 0 auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.pc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(180deg,
      rgba(250,247,242,0.85) 0%,
      rgba(250,247,242,0.75) 50%,
      rgba(250,247,242,0.95) 100%),
    url('/wp-content/themes/generatepress-child/images/hero-meadow.jpg')
    center / cover no-repeat;
}

.pc-eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-green);
  margin-bottom: 1rem;
}

.pc-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--pc-brown-dark);
}

.pc-hero-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--pc-slate);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.pc-btn svg { margin-left: 0.5rem; width: 1.25rem; height: 1.25rem; flex-shrink: 0; display: block; }

.pc-btn-primary {
  background: var(--pc-green);
  color: var(--pc-white);
  box-shadow: 0 4px 14px rgba(45, 80, 22, 0.2);
}
.pc-btn-primary:hover {
  background: var(--pc-green-light);
  color: var(--pc-white);
  transform: translateY(-1px);
}

.pc-btn-secondary {
  background: transparent;
  color: var(--pc-brown-dark);
  border: 2px solid rgba(44, 24, 16, 0.2);
}
.pc-btn-secondary:hover {
  border-color: var(--pc-green);
  color: var(--pc-green);
  background: rgba(45, 80, 22, 0.05);
}

.pc-btn-gold {
  background: var(--pc-gold);
  color: var(--pc-brown-dark);
}
.pc-btn-gold:hover {
  background: var(--pc-gold-light);
  color: var(--pc-brown-dark);
  transform: translateY(-1px);
}

.pc-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .pc-btn-group { flex-direction: row; } }

/* ==========================================================================
   Cards
   ========================================================================== */
.pc-card {
  background: var(--pc-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.05);
  position: relative;
}
@media (min-width: 768px) { .pc-card { padding: 2.5rem; } }

.pc-card:hover { box-shadow: var(--shadow-md); }

/* Service Cards */
.pc-service-card {
  background: var(--pc-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.05);
  transition: all 0.3s;
  text-align: center;
}

.pc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pc-service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pc-service-icon svg { width: 2rem; height: 2rem; }

.pc-icon-green  { background: rgba(45,80,22,0.1);  color: var(--pc-green); }
.pc-icon-brown  { background: rgba(92,61,46,0.1);   color: var(--pc-brown); }
.pc-icon-gold   { background: rgba(201,169,110,0.15); color: var(--pc-gold); }
.pc-icon-green svg  { color: var(--pc-green); }
.pc-icon-brown svg  { color: var(--pc-brown); }
.pc-icon-gold svg   { color: #96793F; }

.pc-service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pc-service-card p {
  color: var(--pc-slate);
  line-height: 1.6;
  margin: 0;
}

/* Value Cards */
.pc-value-card {
  background: var(--pc-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.pc-value-card:hover { box-shadow: var(--shadow-md); }

/* ==========================================================================
   Grids
   ========================================================================== */
.pc-grid { display: grid; gap: 2rem; }
.pc-grid-2 { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
  .pc-grid   { grid-template-columns: repeat(3, 1fr); }
  .pc-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 48rem; margin: 0 auto; }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.pc-testimonial {
  background: var(--pc-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.05);
  max-width: var(--container-sm);
  margin: 0 auto;
  text-align: center;
}

.pc-testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--pc-brown-dark);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.pc-testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--pc-slate);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.pc-faq-item {
  background: var(--pc-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pc-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--pc-brown-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.pc-faq-question:hover { color: var(--pc-green); }

.pc-faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--pc-slate);
  transition: transform 0.3s;
}

.pc-faq-item.open .pc-faq-question svg {
  transform: rotate(180deg);
}

.pc-faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-family: var(--font-body);
  color: var(--pc-slate);
  line-height: 1.6;
  display: none;
}

.pc-faq-item.open .pc-faq-answer { display: block; }

/* ==========================================================================
   Contact Info Card
   ========================================================================== */
.pc-contact-card {
  background: var(--pc-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.05);
}

.pc-contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--pc-brown-dark);
}

.pc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pc-contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pc-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pc-contact-item p { margin: 0; color: var(--pc-slate); line-height: 1.5; }
.pc-contact-item a { color: var(--pc-green); font-weight: 500; }

/* ==========================================================================
   Contact Page Layout (Two-Column)
   ========================================================================== */
.pc-contact-layout { display: grid; gap: 2rem; }

@media (min-width: 768px) {
  .pc-contact-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-items: start;
  }
  .pc-contact-layout > .pc-card {
    grid-column: 1;
    grid-row: 1 / -1;
  }
  .pc-contact-layout > .pc-contact-emergency {
    grid-column: 2;
    grid-row: 1;
  }
  .pc-contact-layout > .pc-contact-card {
    grid-column: 2;
    grid-row: 2;
  }
}

/* Emergency CTA Card */
.pc-contact-emergency {
  background: linear-gradient(135deg, var(--pc-green), var(--pc-green-light));
  color: var(--pc-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.25);
}

.pc-emergency-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 0.75rem;
}

.pc-emergency-eyebrow svg { width: 0.5rem; height: 0.5rem; }

.pc-emergency-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--pc-white);
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.pc-emergency-btn {
  width: 100%;
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.pc-emergency-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  margin-left: 0;
}

.pc-emergency-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.4;
}

/* Map Container */
.pc-contact-map {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pc-contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.pc-map-link {
  display: block;
  text-align: center;
  padding: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pc-green);
  background: rgba(45, 80, 22, 0.04);
}

.pc-map-link:hover { background: rgba(45, 80, 22, 0.08); }

/* ==========================================================================
   Boffo Forms (themed for PC)
   ========================================================================== */
.boffo-form-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pc-brown-dark);
  margin-bottom: 0.5rem;
}

.boffo-form-subtext {
  font-family: var(--font-body);
  color: var(--pc-slate);
  margin-bottom: 2rem;
}

.boffo-form { position: relative; }
.boffo-field { margin-bottom: 1.5rem; }

.boffo-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pc-brown-dark);
  margin-bottom: 0.5rem;
}

.boffo-required { color: var(--pc-green); }

.boffo-field input[type="text"],
.boffo-field input[type="email"],
.boffo-field select,
.boffo-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--pc-brown-dark);
  border: 1px solid rgba(44, 24, 16, 0.15);
  border-radius: 0.75rem;
  outline: none;
  transition: all 0.2s;
  background: var(--pc-white);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.boffo-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.boffo-field input:focus,
.boffo-field select:focus,
.boffo-field textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--pc-green);
}

.boffo-field textarea { resize: none; }

.boffo-submit {
  width: 100%;
  background: var(--pc-green);
  color: var(--pc-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.boffo-submit:hover { background: var(--pc-green-light); }

.boffo-form-success {
  text-align: center;
  padding: 2rem 0;
}

.boffo-success-icon {
  width: 4rem; height: 4rem;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.boffo-success-icon svg { width: 2rem; height: 2rem; color: var(--pc-green); }

.boffo-form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pc-brown-dark);
  margin-bottom: 0.5rem;
}

.boffo-form-success p { color: var(--pc-slate); }

.boffo-form-error {
  background: rgba(220, 38, 38, 0.05);
  color: #dc2626;
  font-family: var(--font-body);
  font-weight: 500;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ==========================================================================
   Page Header (shared inner pages)
   ========================================================================== */
.pc-page-header {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, rgba(45,80,22,0.04) 0%, var(--pc-cream) 100%);
}
@media (min-width: 768px) { .pc-page-header { padding: 6rem 2rem 4rem; } }

.pc-page-header h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.pc-page-header p {
  font-size: 1.125rem;
  color: var(--pc-slate);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   Prose (Privacy page etc.)
   ========================================================================== */
.pc-prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.pc-prose h3 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.pc-prose p  { color: var(--pc-slate); margin-bottom: 1.5rem; line-height: 1.75; }
.pc-prose ul { list-style: disc; padding-left: 1.5rem; color: var(--pc-slate); margin-bottom: 1.5rem; }
.pc-prose ul li { margin-bottom: 0.5rem; }
.pc-prose a { color: var(--pc-green); text-decoration: underline; }
.pc-prose a:hover { color: var(--pc-green-light); }

/* ==========================================================================
   Gradients
   ========================================================================== */
.pc-bg-green-soft {
  background: linear-gradient(180deg, rgba(45,80,22,0.03) 0%, rgba(45,80,22,0.08) 100%);
}
.pc-bg-cream {
  background: var(--pc-cream);
}
.pc-bg-white {
  background: var(--pc-white);
}

/* ==========================================================================
   About Page: Values, Story
   ========================================================================== */
.pc-values-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .pc-values-grid { grid-template-columns: repeat(2, 1fr); } }

.pc-value-tile {
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.pc-value-tile.green-bg { background: rgba(45,80,22,0.05); }
.pc-value-tile.brown-bg { background: rgba(92,61,46,0.05); }
.pc-value-tile.gold-bg  { background: rgba(201,169,110,0.08); }
.pc-value-tile.cream-bg { background: rgba(250,247,242,0.8); border: 1px solid rgba(44,24,16,0.05); }

.pc-value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pc-value-icon svg { width: 1.5rem; height: 1.5rem; }

/* ==========================================================================
   Service Tiers (Services page)
   ========================================================================== */
.pc-tier-card {
  background: var(--pc-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 24, 16, 0.05);
  transition: all 0.3s;
}

.pc-tier-card:hover {
  box-shadow: var(--shadow-md);
}

.pc-tier-card.featured {
  border-color: var(--pc-green);
  box-shadow: 0 4px 24px rgba(45, 80, 22, 0.15);
}

.pc-tier-badge {
  display: inline-block;
  background: var(--pc-green);
  color: var(--pc-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pc-tier-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.pc-tier-card .pc-tier-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pc-green);
  margin-bottom: 1rem;
}

.pc-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pc-tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--pc-slate);
  font-size: 0.9375rem;
}

.pc-tier-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pc-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.text-green  { color: var(--pc-green); }
.text-brown  { color: var(--pc-brown-dark); }
.text-gold   { color: var(--pc-gold); }
.text-slate  { color: var(--pc-slate); }
.text-white  { color: var(--pc-white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
