/* =========================================================
   Alchin Locksmiths — Main Stylesheet
   Brand: Navy #1C2B4A | Gold #C9A443 | CTA Red #E84040
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --navy:        #1C2B4A;
  --navy-dark:   #111B30;
  --navy-mid:    #243560;
  --gold:        #C9A443;
  --gold-light:  #E8C96A;
  --gold-dim:    #A8863A;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --dark:        #1A1A1A;
  --grey:        #5C6678;
  --light-grey:  #9CA3AF;
  --border:      #E2E5EA;
  --cta:         #E84040;
  --cta-hover:   #C53030;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);

  --ease: 0.22s ease;

  --max:     1200px;
  --wide:    1400px;
  --section: clamp(3.5rem, 7vw, 6.5rem);
}

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

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

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--off-white);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--navy); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.container--wide {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: var(--section); }
.section--sm { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-dark { background: var(--navy-dark); color: var(--white); }
.section--white { background: var(--white); }
.section--off-white { background: var(--off-white); }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-grey { color: var(--grey); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

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

.section-heading {
  margin-bottom: 1rem;
}
.section-heading + .section-sub {
  color: var(--grey);
  font-size: 1.0625rem;
  max-width: 640px;
}
.section-heading + .section-sub.center { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(201,164,67,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-cta {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}
.btn-cta:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,64,64,0.35);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.0625rem;
}

/* --- Header Topbar --- */
.header-topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  padding-block: 0.5rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-item a {
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}
.topbar-item a:hover { color: var(--gold); }
.topbar-hours { margin-left: auto; }

/* --- Header Main --- */
.site-header { position: sticky; top: 0; z-index: 100; }

.header-main {
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.875rem;
}

.site-branding a, .site-branding .site-name {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.site-branding img { max-height: 52px; width: auto; }

/* --- Primary Navigation --- */
.primary-nav { margin-left: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  border-top: 3px solid var(--gold);
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu a {
  color: var(--dark);
  padding: 0.6rem 1rem;
  border-radius: 0;
  font-size: 0.875rem;
}
.nav-menu .sub-menu a:hover { color: var(--navy); background: var(--off-white); }
.nav-menu .sub-menu li:last-child a { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  margin-left: auto;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: clamp(480px, 65vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,27,48,0.92) 45%, rgba(17,27,48,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: clamp(1rem, 2vw, 1.125rem); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  box-shadow: var(--shadow-lg);
}
.hero-badge strong { display: block; font-size: 1.25rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--navy);
  padding-block: 1.75rem;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-align: left;
}
.trust-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,164,67,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-item-text strong { display: block; font-size: 1.25rem; font-weight: 700; color: var(--gold); line-height: 1.1; }
.trust-item-text span { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
  transition: background var(--ease), color var(--ease);
}
.service-card:hover .service-card-icon {
  background: var(--navy);
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.625rem; color: var(--navy); font-size: 1.125rem; }
.service-card p { color: var(--grey); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--ease), gap var(--ease);
}
.service-card-link:hover { color: var(--gold); gap: 0.625rem; }
.service-card-link svg { transition: transform var(--ease); }
.service-card-link:hover svg { transform: translateX(2px); }

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  line-height: 1.3;
}
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.8125rem; font-weight: 600; }

.about-content { padding-block: 1rem; }
.about-content p { color: var(--grey); margin-bottom: 1.25rem; }
.about-owner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  margin-block: 1.75rem;
}
.about-owner img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.about-owner-info strong { display: block; font-size: 0.9375rem; color: var(--navy); }
.about-owner-info span { font-size: 0.8125rem; color: var(--grey); }

/* --- Vehicles Grid --- */
.vehicles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.vehicle-tag {
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.vehicle-tag:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.testimonial-card blockquote {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0.25rem;
  font-style: normal;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.9375rem; color: var(--white); }
.testimonial-author-info span { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201,164,67,0.06);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 0.625rem; }
.cta-text p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--ease);
}
.cta-phone:hover { opacity: 0.85; color: var(--white); }
.cta-phone-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
}
.cta-phone-text span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.cta-phone-text strong { font-size: 1.375rem; font-weight: 700; }

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: var(--navy);
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.875rem; }
.page-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.0625rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* --- Service Detail List --- */
.service-detail-list { margin-top: 2.5rem; display: grid; gap: 2rem; }
.service-detail-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-detail-body h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.125rem; }
.service-detail-body p { color: var(--grey); font-size: 0.9375rem; }

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,164,67,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.why-item h4 { color: var(--white); margin-bottom: 0.5rem; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-details-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-detail-row {
  display: flex;
  gap: 1rem;
  padding-block: 1.125rem;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-detail-row:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: 0.8125rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-detail-body a { color: var(--navy); font-weight: 600; font-size: 1.0625rem; }
.contact-detail-body a:hover { color: var(--gold); }
.contact-detail-body p { color: var(--dark); font-size: 0.9375rem; }

.contact-hours-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; margin-top: 0.5rem; }
.contact-hours-table td { padding: 0.3rem 0; }
.contact-hours-table td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

/* --- Contact Form --- */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-form-wrap h2 { margin-bottom: 0.375rem; color: var(--navy); font-size: 1.375rem; }
.contact-form-wrap .form-sub { color: var(--grey); font-size: 0.9375rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,74,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- About Page --- */
.about-story p { color: var(--grey); margin-bottom: 1.25rem; font-size: 1.0125rem; }
.credentials-list { margin-top: 1.5rem; display: grid; gap: 0.875rem; }
.credential-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.credential-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.credential-item p { color: var(--dark); font-size: 0.9375rem; margin: 0; }
.credential-item strong { color: var(--navy); display: block; margin-bottom: 0.1rem; }

/* --- RAA Section --- */
.raa-callout {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid var(--gold);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.raa-callout-icon {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.raa-callout h3 { color: var(--navy); margin-bottom: 0.625rem; }
.raa-callout p { color: var(--grey); font-size: 0.9375rem; }

/* --- 404 --- */
.error-404 {
  text-align: center;
  padding-block: clamp(5rem, 12vw, 10rem);
}
.error-404 .error-code {
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.error-404 h1 { color: var(--navy); margin-bottom: 0.875rem; }
.error-404 p { color: var(--grey); margin-bottom: 2rem; }

/* --- Blog / Archive --- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card-image { aspect-ratio: 16/9; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body { padding: 1.5rem; }
.post-card-meta { font-size: 0.8125rem; color: var(--light-grey); margin-bottom: 0.5rem; }
.post-card-body h3 { font-size: 1.0625rem; color: var(--navy); margin-bottom: 0.5rem; }
.post-card-body h3 a { color: inherit; }
.post-card-body h3 a:hover { color: var(--gold); }
.post-card-body p { font-size: 0.875rem; color: var(--grey); }

/* --- Footer --- */
.site-footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding-block: clamp(3rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-site-name { font-size: 1.375rem; font-weight: 700; color: var(--white); }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9375rem; margin-top: 0.75rem; margin-bottom: 1rem; }
.footer-raa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
}
.footer-brand img { max-width: 180px; margin-bottom: 1rem; }

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links li + li { margin-top: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: grid; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; color: rgba(255,255,255,0.65); }
.footer-contact-list a { color: rgba(255,255,255,0.85); transition: color var(--ease); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-hours-list { display: grid; gap: 0.375rem; }
.footer-hours-list li { display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-hours-list li span:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; width: 100%; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }
.footer-credit { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* --- Page Content (block editor) --- */
.entry-content {
  max-width: 760px;
  margin-inline: auto;
}
.entry-content h2, .entry-content h3 { color: var(--navy); margin-block: 1.75rem 0.75rem; }
.entry-content p { color: var(--grey); margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--grey); }
.entry-content li { margin-bottom: 0.375rem; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content .alignwide { max-width: var(--wide); margin-inline: auto; }
.entry-content .alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-badge { bottom: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-hours { display: none; }
  .header-cta { display: none; }
  .primary-nav { display: none; position: fixed; inset: 0; top: 0; background: var(--navy-dark); padding: 5rem 1.5rem 2rem; z-index: 200; overflow-y: auto; flex-direction: column; }
  .primary-nav.is-open { display: flex; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-menu a { padding: 0.875rem 0; font-size: 1.125rem; color: var(--white); border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); margin-top: 0.5rem; }
  .nav-menu .sub-menu a { color: rgba(255,255,255,0.75); font-size: 0.9375rem; border-bottom: none; }
  .nav-toggle { display: flex; position: relative; z-index: 300; }
  .hero-badge { display: none; }
  .trust-bar-inner { gap: 1rem; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-item { grid-template-columns: 1fr; }
  .raa-callout { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .trust-item-text strong { font-size: 1rem; }
  .trust-item { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* --- Utility Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-in.is-visible { opacity: 1; transform: translateY(0); }
}

/* --- WP Block Overrides --- */
.wp-block-button__link { border-radius: var(--radius-md) !important; font-weight: 600; }
.wp-block-separator { border-color: var(--border); }
