/*
Theme Name: Ancient Law Wellness
Theme URI: https://ancientlawpetwellness.com
Author: Ancient Law Pet Wellness LLC
Author URI: https://ancientlawpetwellness.com
Description: Custom WordPress theme for Ancient Law Pet Wellness — an integrative TCVM, canine rehabilitation, herbal medicine, and palliative care practice. Obsidian + gold premium palette. Converted faithfully from the approved static HTML design.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: ancient-law-wellness
*/

/* =============================================================
   This stylesheet inlines the site's base.css design system
   (tokens, reset, utilities, nav, footer, cards, forms, etc.)
   and service-page.css (shared service page layout) verbatim,
   so the WordPress front end matches the approved static site
   pixel-for-pixel. Do not redesign — port faithfully.
   ============================================================= */

/* =============================================================
   ANCIENT LAW PET WELLNESS — Base Stylesheet
   Design tokens + reset + utilities
   ============================================================= */

/* --- Google Fonts + Fontshare imports --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --obsidian:     #12100E;
  --obsidian-mid: #1E1C19;
  --obsidian-lt:  #2C2926;
  --gold:         #C9A84C;
  --gold-dark:    #A07A2E;
  --gold-light:   #D4AF6A;
  --cream:        #F5F0E8;
  --muted:        #9C9688;
  --border:       #3A3630;
  --footer-bg:    #0C0A09;

  /* Semantic aliases */
  --color-bg:      var(--obsidian);
  --color-surface: var(--obsidian-mid);
  --color-text:    var(--cream);
  --color-accent:  var(--gold);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Switzer', system-ui, sans-serif;

  /* Radius */
  --radius:    4px;
  --radius-lg: 8px;

  /* Motion */
  --duration: 0.25s;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Spacing — 4px base */
  --space-1:  0.25rem;   /*  4px */
  --space-2:  0.5rem;    /*  8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* Type Scale (fluid) */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3.5rem,   1rem    + 8vw,    7rem);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
  --content-full:    100%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--cream);
  background-color: var(--obsidian);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

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

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

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-cream   { color: var(--cream); }

.font-display { font-family: var(--font-display); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.25);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}
.btn--ghost:active { transform: translateY(0); }

.btn--dark {
  background: var(--obsidian);
  color: var(--gold);
  border-color: var(--obsidian);
}
.btn--dark:hover {
  background: var(--obsidian-mid);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* === FORMS === */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

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

.form-select {
  background-color: var(--obsidian-mid);
  color: var(--cream);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239C9688' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-select option {
  background: var(--obsidian-mid);
  color: var(--cream);
}

/* === PHOTO PLACEHOLDER SYSTEM === */
.photo-placeholder {
  background: var(--obsidian-lt);
  border: 1px dashed rgba(201,168,76,0.30);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pp-inner {
  text-align: center;
  padding: var(--space-6);
}

.pp-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.50);
  display: block;
}

/* === SECTION LAYOUT === */
.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-32));
}

.section--sm {
  padding-block: clamp(var(--space-8), 5vw, var(--space-16));
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--muted);
  margin-bottom: var(--space-8);
  max-width: 56ch;
}

.section-body {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  max-width: 65ch;
}

/* === CARDS === */
.card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === DIVIDERS === */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-block: var(--space-8);
}

.divider--center { margin-inline: auto; }

/* === GRID HELPERS === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

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

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

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
}

.reveal.visible {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === PILL TAGS === */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  background: var(--obsidian-lt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: default;
  transition: background var(--transition-interactive),
              border-color var(--transition-interactive),
              color var(--transition-interactive);
}

.pill:hover,
.pill--active {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}

/* === ANNOUNCEMENT BAR === */
#announce-bar {
  background: var(--gold);
  color: var(--obsidian);
  text-align: center;
  padding: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  position: relative;
  z-index: 100;
}

#announce-bar .announce-close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--obsidian);
  opacity: 0.6;
  font-size: 1.1rem;
  line-height: 1;
  padding: var(--space-1);
  transition: opacity var(--transition-interactive);
}

#announce-bar .announce-close:hover { opacity: 1; }

/* === NAV === */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(18, 16, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-interactive);
}

#site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition-interactive);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-interactive);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + var(--space-4));
  left: 50%;
  transform: translateX(-50%);
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.06);
}

.nav-dropdown-menu a::after { display: none; }

.nav-cta {
  flex-shrink: 0;
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition-interactive),
              opacity var(--transition-interactive);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--obsidian-mid);
  border-top: 1px solid var(--border);
  padding: var(--space-6);
  gap: var(--space-4);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--muted);
  text-decoration: none;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-interactive);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .btn { align-self: flex-start; margin-top: var(--space-2); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* === FOOTER === */
#site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding-top: var(--space-20);
  padding-bottom: var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

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

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--muted);
  margin-top: var(--space-4);
  line-height: 1.5;
  max-width: 28ch;
}

.footer-contact-item {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-contact-item span:first-child {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--muted);
  opacity: 0.6;
  max-width: none;
}

.footer-b2b {
  font-size: var(--text-xs);
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(156,150,136,0.3);
  padding-bottom: 1px;
  transition: color var(--transition-interactive),
              border-color var(--transition-interactive);
}

.footer-b2b:hover {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.4);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === FAQ ACCORDION === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--cream);
  background: var(--obsidian-mid);
  cursor: pointer;
  text-align: left;
  gap: var(--space-4);
  transition: background var(--transition-interactive),
              color var(--transition-interactive);
  border: none;
}

.faq-question:hover {
  background: var(--obsidian-lt);
  color: var(--gold-light);
}

.faq-question.open {
  color: var(--gold-light);
  background: var(--obsidian-lt);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  transition: transform var(--transition-interactive);
}

.faq-question.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  background: var(--obsidian-lt);
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }
.faq-answer p { max-width: 72ch; }

/* === HERO SECTION (shared) === */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-24);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

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

.hero-sub {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--space-10);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* === STARS === */
.star-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--muted);
}

.testimonial-author strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--space-8);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

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

.breadcrumb-sep { opacity: 0.4; }
.breadcrumb span:last-child { color: var(--gold); }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.process-step {
  position: relative;
  padding: var(--space-8);
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.process-step-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-3);
}

.process-step-body {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 70vh; }
}

/* === CREDENTIAL BLOCKS === */
.credential-block {
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}

.credential-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.credential-institution {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.credential-desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
}

/* === SERVICE CARD === */
.service-card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  color: var(--gold);
}

.service-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--cream);
}

.service-desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.service-price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-interactive),
              color var(--transition-interactive);
}

.service-link:hover {
  gap: var(--space-3);
  color: var(--gold-light);
}

/* === GOLD INVERSION SECTION === */
.section--gold {
  background: var(--gold);
  color: var(--obsidian);
}

.section--gold .section-label { color: var(--obsidian); opacity: 0.6; }
.section--gold .section-title { color: var(--obsidian); }
.section--gold .section-subtitle { color: rgba(18,16,14,0.7); }
.section--gold .section-body { color: rgba(18,16,14,0.75); }

.section--gold .form-input,
.section--gold .form-textarea {
  background: rgba(18,16,14,0.12);
  border-color: rgba(18,16,14,0.25);
  color: var(--obsidian);
}

.section--gold .form-input::placeholder,
.section--gold .form-textarea::placeholder {
  color: rgba(18,16,14,0.45);
}

.section--gold .form-input:focus,
.section--gold .form-textarea:focus {
  border-color: var(--obsidian);
  box-shadow: 0 0 0 3px rgba(18,16,14,0.12);
}

/* === PAIN CARDS === */
.pain-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.pain-card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

.pain-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: var(--space-3);
}

.pain-card-body {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
}

/* === INLINE FORM GRID === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.form-grid .form-group--full {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* === ARTICLE CARD === */
.article-card {
  background: var(--obsidian-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-interactive),
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}

.article-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.article-card-img {
  aspect-ratio: 16/9;
}

.article-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.article-category {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.article-excerpt {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  font-size: var(--text-xs);
  color: var(--muted);
  opacity: 0.6;
  margin-top: var(--space-2);
}

/* === PRICING SECTION === */
.pricing-box {
  background: var(--obsidian-mid);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.pricing-label {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: var(--space-6);
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.pricing-includes li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--muted);
}

.pricing-includes li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* === CONDITION-SERVICE TABLE === */
.match-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.match-table th {
  background: var(--obsidian-lt);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.match-table td {
  padding: var(--space-4) var(--space-6);
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.match-table tr:last-child td { border-bottom: none; }

.match-table tr:hover td {
  background: rgba(201,168,76,0.04);
  color: var(--cream);
}

.match-table td:first-child {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
}

/* === PHOTO FRAME === */
.photo-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-frame--portrait img { object-position: center top; }
.photo-frame--bottom img { object-position: center bottom; }

/* Hero image panel with overlay */
.hero-img-panel {
  position: relative;
  overflow: hidden;
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,16,14,0.35) 0%, transparent 55%);
  pointer-events: none;
}

/* Testimonial pet photo strip */
.testimonial-pet-photo {
  width: 100%;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: var(--space-4);
}
.testimonial-pet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* =============================================
   PRICING CARDS
   ============================================= */
.pricing-card {
  background: var(--obsidian-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
}
.pricing-tier {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.pricing-tier-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.pricing-tier-desc {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.pricing-price {
  margin-bottom: var(--space-5);
}
.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--cream);
  font-weight: 500;
}
.pricing-price .period {
  color: var(--muted);
  font-size: var(--text-sm);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  color: var(--muted);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { margin-top: auto; }

/* =============================================================
   SERVICE PAGE — shared styles (from css/service-page.css)
   ============================================================= */
/* =============================================================
   SERVICE PAGE — Shared styles for all individual service pages
   ============================================================= */

.svc-hero {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
  background: linear-gradient(135deg, var(--obsidian) 60%, var(--obsidian-lt) 100%);
  border-bottom: 1px solid var(--border);
}

.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-8);
}

.svc-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.svc-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 900px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
  }
  .svc-hero-image {
    order: -1;
  }
  .svc-content-grid {
    grid-template-columns: 1fr;
  }
}
