/*
Theme Name: Authority Signature
Theme URI: https://authoritysignature.com
Author: Authority Signature, LLC
Author URI: https://authoritysignature.com
Description: A premium, professional WordPress theme for Authority Signature — Notary Public, Justice of the Peace, and Ceremonial Services in Nashville, TN.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: authority-signature
Tags: notary, professional, legal, ceremony, wedding
*/

/* =============================================================
   TABLE OF CONTENTS
   1. CSS Custom Properties (Design Tokens)
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Header & Navigation
   6. Hero Sections
   7. Service Cards
   8. Pricing Tables
   9. About Section
   10. Testimonials
   11. CTA Sections
   12. Forms & Booking
   13. Footer
   14. Page-specific Styles
   15. Responsive / Mobile
   ============================================================= */

/* =============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================= */
:root {
  /* Brand Colors */
  --color-navy:        #1a2744;   /* Primary dark — trust, authority */
  --color-navy-light:  #243258;
  --color-gold:        #b8965a;   /* Accent — premium, warmth */
  --color-gold-light:  #d4b07a;
  --color-gold-pale:   #f5eed8;
  --color-cream:       #faf8f3;   /* Page background */
  --color-white:       #ffffff;
  --color-charcoal:    #2d2d2d;
  --color-gray-dark:   #555555;
  --color-gray-mid:    #888888;
  --color-gray-light:  #e8e4dc;
  --color-gray-pale:   #f2f0eb;

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-heading:  'Playfair Display', 'Georgia', serif;
  --font-body:     'Lato', 'Helvetica Neue', sans-serif;
  --font-label:    'Montserrat', 'Arial', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  8rem;

  /* Borders & Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --border-gold: 1px solid var(--color-gold);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26,39,68,0.08);
  --shadow-md:  0 6px 24px rgba(26,39,68,0.12);
  --shadow-lg:  0 16px 48px rgba(26,39,68,0.16);
  --shadow-xl:  0 24px 64px rgba(26,39,68,0.22);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1180px;
  --container-pad: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-navy);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-label);
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* =============================================================
   3. TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.display-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}
.ornament span {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* =============================================================
   4. LAYOUT UTILITIES
   ============================================================= */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

section {
  padding: var(--space-2xl) 0;
}

.section--light  { background: var(--color-cream); }
.section--white  { background: var(--color-white); }
.section--navy   { background: var(--color-navy); color: var(--color-white); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--color-white); }
.section--gold-pale { background: var(--color-gold-pale); }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

/* =============================================================
   5. BUTTONS
   ============================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  transition: all var(--transition);
  text-align: center;
  border: 2px solid transparent;
  line-height: 1;
}

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

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

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

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

.btn--lg {
  padding: 1.25rem 2.75rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =============================================================
   6. HEADER & NAVIGATION
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

/* Transparent on hero */
.site-header.transparent {
  background: transparent;
}

/* Solid after scroll */
.site-header.scrolled {
  background: var(--color-navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Top bar */
.header-topbar {
  background: var(--color-navy);
  padding: 0.4rem 0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(184,150,90,0.3);
}

.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-topbar a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.header-topbar a:hover {
  color: var(--color-gold);
}

.topbar-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topbar-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Main nav */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.site-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-logo .logo-tagline {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.primary-nav a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--color-gold);
  transition: right var(--transition);
}

.primary-nav a:hover,
.primary-nav a.current-menu-item {
  color: var(--color-gold);
}

.primary-nav a:hover::after,
.primary-nav a.current-menu-item::after {
  right: 0;
}

.nav-cta {
  background: var(--color-gold) !important;
  color: var(--color-navy) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-white) !important;
  color: var(--color-navy) !important;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}

/* =============================================================
   7. HERO SECTIONS
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,150,90,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(184,150,90,0.05) 0%, transparent 50%);
}

/* Decorative lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(184,150,90,0.04);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero h1 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}

.hero-trust-item .icon {
  color: var(--color-gold);
  font-size: 1rem;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--color-navy);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,90,0.06) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero .section-label {
  justify-content: center;
  display: flex;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================================
   8. SERVICE CARDS
   ============================================================= */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-top: 3px solid var(--color-gold);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-top-color: var(--color-navy);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  background: var(--color-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

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

.service-card p {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
  margin-bottom: 1.25rem;
}

.service-card .service-list {
  margin-bottom: 1.5rem;
}

.service-card .service-list li {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--color-gray-pale);
}

.service-card .service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Full-width service block (Services page) */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block--reverse .service-block__text {
  order: 2;
}
.service-block--reverse .service-block__image {
  order: 1;
}

.service-block__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-gold-pale);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-block__image {
  background: var(--color-gray-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* Placeholder image */
.service-block__image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.5;
}

/* =============================================================
   9. PRICING TABLES
   ============================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.pricing-card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-card__header {
  background: var(--color-navy);
  padding: 1.75rem;
  text-align: center;
  color: var(--color-white);
}

.pricing-card--featured .pricing-card__header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-gold) 150%);
}

.pricing-card__badge {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-top: 0.5rem;
}

.pricing-card__price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

.pricing-card__body {
  padding: 1.75rem;
}

.pricing-card__features {
  margin-bottom: 1.5rem;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-pale);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-gray-mid);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

/* =============================================================
   10. TRUST / STATS
   ============================================================= */
.trust-bar {
  background: var(--color-navy);
  padding: 3rem 0;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.trust-stat__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.trust-stat__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
  display: block;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  background: var(--color-white);
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--color-gray-light);
  box-shadow: var(--shadow-sm);
}

.trust-badge .badge-icon {
  font-size: 1rem;
  color: var(--color-gold);
}

/* =============================================================
   11. TESTIMONIALS
   ============================================================= */
.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-card__author {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.testimonial-card__context {
  font-size: 0.8rem;
  color: var(--color-gray-mid);
  margin-top: 0.2rem;
}

.stars {
  color: var(--color-gold);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

/* =============================================================
   12. CTA SECTIONS
   ============================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 60%, var(--color-navy-light) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,150,90,0.08) 0%, transparent 70%);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
}

/* =============================================================
   13. FORMS & BOOKING
   ============================================================= */
.as-form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.as-form h3 {
  margin-bottom: 0.5rem;
}

.as-form p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Booking embed placeholder */
.booking-embed-placeholder {
  background: var(--color-gray-pale);
  border: 2px dashed var(--color-gray-light);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--color-gray-mid);
}

.booking-embed-placeholder p {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =============================================================
   14. ABOUT
   ============================================================= */
.about-portrait {
  position: relative;
}

.portrait-frame {
  background: var(--color-gray-pale);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.portrait-frame .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 60%, rgba(184,150,90,0.2) 100%);
  font-size: 4rem;
}

/* Credential badge overlay */
.portrait-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-gold);
  color: var(--color-navy);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.portrait-badge .badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.portrait-badge .badge-text {
  font-family: var(--font-label);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.credential-list {
  margin-top: 1.5rem;
}

.credential-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

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

.credential-item .cred-icon {
  color: var(--color-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.credential-item .cred-text {
  font-size: 0.9rem;
  color: var(--color-charcoal);
}

.credential-item .cred-label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.1rem;
}

/* =============================================================
   15. SERVICE AREA
   ============================================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 30px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-charcoal);
  transition: all var(--transition);
}

.area-chip:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-pale);
}

.area-chip .pin {
  color: var(--color-gold);
  font-size: 0.875rem;
}

/* =============================================================
   16. FOOTER
   ============================================================= */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-2xl);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  color: var(--color-white);
  font-size: 1.4rem;
}

.footer-brand .logo-tagline {
  color: var(--color-gold);
}

.footer-tagline {
  font-size: 0.9rem;
  margin: 1rem 0;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(184,150,90,0.1);
}

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================================
   17. MISC COMPONENTS
   ============================================================= */
/* Section header */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.centered {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--color-gray-dark);
  max-width: 580px;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Gold rule */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin: 1rem 0;
}

.section-header.centered .gold-rule {
  margin: 1rem auto;
}

/* Why us cards */
.why-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  user-select: none;
}

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

.faq-question .faq-icon {
  font-size: 1.25rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--color-gray-dark);
}

/* Announcement bar */
.announce-bar {
  background: var(--color-gold);
  padding: 0.5rem 0;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
}

/* =============================================================
   18. RESPONSIVE / MOBILE
   ============================================================= */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block--reverse .service-block__text,
  .service-block--reverse .service-block__image {
    order: unset;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 1.5rem;
    border-top: 1px solid rgba(184,150,90,0.3);
  }

  .primary-nav.open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .primary-nav a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-cta {
    display: inline-block;
    margin-top: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 80px;
  }

  .hero-trust {
    gap: 1rem;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-stats {
    gap: 2rem;
  }

  .header-topbar .container {
    flex-direction: column;
    gap: 0.25rem;
  }

  .topbar-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .pricing-card--featured {
    transform: none;
  }

  .portrait-badge {
    bottom: -1rem;
    right: -0.5rem;
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .as-form {
    padding: 1.5rem;
  }
}

/* =============================================================
   19. WORDPRESS SPECIFIC
   ============================================================= */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { text-align: center; }
.wp-caption-text { font-size: 0.85rem; color: var(--color-gray-mid); }

/* Accessibility */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
