/*
Theme Name: Headshot Specialist
Theme URI: https://www.headshotspecialist.com
Author: Ray Singh
Author URI: https://www.headshotspecialist.com
Description: A high-performance, SEO-optimized WordPress theme built for Headshot Specialist — NYC's premier corporate headshot photography studio. Designed for fast load times, schema-rich markup, local SEO dominance, and conversion-focused layouts targeting LinkedIn headshots, executive portraits, and corporate team photography in Manhattan and the NYC metro area.
Version: 1.2.9
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://www.headshotspecialist.com
Text Domain: headshot-specialist
Tags: photography, business, seo, local, corporate, booking, portfolio, custom-colors, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready

/* =============================================
   HEADSHOT SPECIALIST — DESIGN SYSTEM
   Premium Corporate Photography Theme
   NYC | Midtown Manhattan
============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --hs-black:       #0A0A0A;
  --hs-charcoal:    #1C1C1E;
  --hs-graphite:    #2C2C2E;
  --hs-stone:       #48484A;
  --hs-silver:      #8E8E93;
  --hs-mist:        #C7C7CC;
  --hs-fog:         #E5E5EA;
  --hs-white:       #FAFAFA;
  --hs-pure-white:  #FFFFFF;

  /* Accent */
  --hs-gold:        #C9A84C;
  --hs-gold-light:  #E4C77A;
  --hs-gold-dark:   #9E7B2E;

  /* Typography */
  --font-display:   'Roboto', sans-serif;
  --font-body:      'Roboto', sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   8rem;
  --space-2xl:  12rem;

  /* Layout */
  --max-width:        1280px;
  --content-width:    800px;
  --gutter:           clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --duration:   0.35s;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.1);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--hs-charcoal);
  background-color: var(--hs-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease-out); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h5 { font-size: 1.2rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
h6 { font-size: 1rem; font-weight: 500; }

p { font-size: 1rem; line-height: 1.75; margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* Elementor Pro — prevent theme font overrides inside Elementor sections */
.elementor h1, .elementor h2, .elementor h3,
.elementor h4, .elementor h5, .elementor h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.elementor p {
  font-size: inherit;
  line-height: inherit;
  margin-bottom: inherit;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hs-gold);
  display: block;
  margin-bottom: 1rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.section {
  padding-block: var(--space-xl);
}

.section--hero {
  padding-block: 0;
  min-height: 100svh;
}

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

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

/* =============================================
   SITE HEADER
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration) var(--ease-out),
              padding var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-block: 1rem;
  box-shadow: var(--shadow-sm);
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--hs-black);
  white-space: nowrap;
}

.site-logo span {
  color: var(--hs-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hs-stone);
  transition: color var(--duration) var(--ease-out);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hs-gold);
  transition: width var(--duration) var(--ease-out);
}

.site-nav a:hover { color: var(--hs-black); }
.site-nav a:hover::after { width: 100%; }

.header-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-pure-white) !important;
  background: var(--hs-black);
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out) !important;
}

.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--hs-gold) !important; transform: translateY(-1px) !important; }

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--hs-black);
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--hs-white);
    padding: var(--space-xl) var(--gutter);
    transform: translateX(100%);
    transition: transform var(--duration) var(--ease-out);
    gap: 2rem;
  }

  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1rem; }
  .header-cta { display: inline-flex !important; }
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero__content {
  padding: 10rem var(--gutter) var(--space-xl) var(--gutter);
  position: relative;
  z-index: 2;
}

.hero__headline {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--hs-gold);
}

.hero__subhead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--hs-stone);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.hero__trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hs-fog);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
}

.trust-stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--hs-black);
  line-height: 1;
}

.trust-stat__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hs-silver);
  margin-top: 0.25rem;
}

.hero__image {
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__image-caption {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(10px);
  color: var(--hs-mist);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.875rem;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image {
    height: 60vw;
    max-height: 480px;
  }

  .hero__content {
    padding-top: 7rem;
  }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--hs-black);
  color: var(--hs-white);
}

.btn--primary:hover {
  background: var(--hs-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  border: 1px solid var(--hs-charcoal);
  color: var(--hs-charcoal);
}

.btn--outline:hover {
  border-color: var(--hs-gold);
  color: var(--hs-gold);
}

.btn--gold {
  background: var(--hs-gold);
  color: var(--hs-white);
}

.btn--gold:hover {
  background: var(--hs-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--large {
  padding: 1.1rem 2.5rem;
  font-size: 0.8rem;
}

/* =============================================
   SERVICE CARDS
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--hs-fog);
}

.service-card {
  background: var(--hs-white);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: background var(--duration) var(--ease-out);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hs-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--hs-pure-white); }

.service-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--hs-fog);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--duration) var(--ease-out);
}

.service-card:hover .service-card__number { color: var(--hs-gold-light); }

.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.925rem;
  color: var(--hs-silver);
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--duration) var(--ease-out);
}

.service-card:hover .service-card__link { gap: 0.875rem; }

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

/* =============================================
   PORTFOLIO / GALLERY
============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.portfolio-item {
  overflow: hidden;
  position: relative;
}

.portfolio-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.portfolio-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.portfolio-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.portfolio-item:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.portfolio-item:nth-child(5) { grid-column: 5 / 9; grid-row: 3; }
.portfolio-item:nth-child(6) { grid-column: 9 / 13; grid-row: 3; }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: inherit;
  transition: transform 0.7s var(--ease-out);
}

.portfolio-item:nth-child(1) img { aspect-ratio: auto; min-height: 500px; }
.portfolio-item:nth-child(2) img,
.portfolio-item:nth-child(3) img { aspect-ratio: 4/3; }
.portfolio-item:nth-child(4) img,
.portfolio-item:nth-child(5) img,
.portfolio-item:nth-child(6) img { aspect-ratio: 3/4; }

.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }

.portfolio-item__caption {
  color: var(--hs-white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item { grid-column: auto !important; grid-row: auto !important; }
  .portfolio-item img { aspect-ratio: 1 !important; min-height: auto !important; }
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
  background: var(--hs-charcoal);
  color: var(--hs-white);
}

.testimonials-section h2,
.testimonials-section h3 { color: var(--hs-white); }

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

.testimonial-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md);
  border-radius: 4px;
  position: relative;
  transition: border-color var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--hs-mist);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card__stars {
  color: var(--hs-gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hs-white);
}

.testimonial-card__title {
  font-size: 0.75rem;
  color: var(--hs-silver);
  margin-top: 0.1rem;
}

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

/* =============================================
   PRICING
============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--hs-fog);
}

.pricing-card {
  background: var(--hs-white);
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.pricing-card--featured {
  background: var(--hs-black);
  color: var(--hs-white);
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-price { color: var(--hs-white); }

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hs-black);
  background: var(--hs-gold);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--hs-black);
  margin-bottom: 0.25rem;
}

.pricing-price sup {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-price-label {
  font-size: 0.75rem;
  color: var(--hs-silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hs-fog);
  font-size: 0.9rem;
  color: var(--hs-stone);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card--featured .pricing-features li {
  border-color: rgba(255,255,255,0.08);
  color: var(--hs-mist);
}

.pricing-features li::before {
  content: '✓';
  color: var(--hs-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

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

/* =============================================
   ABOUT / STUDIO
============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-image-stack img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  z-index: 2;
}

.about-image-stack img:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  object-fit: cover;
  z-index: 1;
  border: 8px solid var(--hs-white);
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.credential-chip {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--hs-fog);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  color: var(--hs-stone);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-stack { height: 400px; }
}

/* =============================================
   FAQ (AEO Optimized)
============================================= */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--hs-black);
  gap: 1rem;
  transition: color var(--duration) var(--ease-out);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--duration) var(--ease-out);
}

.faq-icon::before { width: 2px; height: 12px; top: 6px; left: 11px; }
.faq-icon::after  { width: 12px; height: 2px; top: 11px; left: 6px; }

.faq-item.open .faq-icon::before { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--hs-stone);
  font-size: 1rem;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* =============================================
   BOOKING CTA BAND
============================================= */
.cta-band {
  background: var(--hs-gold);
  padding: var(--space-lg) var(--gutter);
  text-align: center;
}

.cta-band h2 {
  color: var(--hs-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.btn--cta-band {
  background: var(--hs-white);
  color: var(--hs-gold-dark);
  font-weight: 600;
}

.btn--cta-band:hover {
  background: var(--hs-black);
  color: var(--hs-white);
  transform: translateY(-2px);
}

/* =============================================
   LOCATION / LOCAL SEO SECTION
============================================= */
.location-section {
  background: var(--hs-black);
  color: var(--hs-white);
}

.location-section h2 { color: var(--hs-white); }

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

.location-address {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--hs-mist);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 2rem;
}

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

.location-detail {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}

.location-detail__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hs-silver);
  margin-bottom: 0.5rem;
}

.location-detail__value {
  font-size: 0.925rem;
  color: var(--hs-mist);
}

.location-map {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(1) contrast(1.1);
  border: 1px solid rgba(255,255,255,0.06);
}

.location-map iframe { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 280px; }
}

/* =============================================
   SITE FOOTER
============================================= */
.site-footer {
  background: var(--hs-charcoal);
  color: var(--hs-silver);
  padding: var(--space-xl) var(--gutter) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo {
  color: var(--hs-white);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--hs-silver);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hs-gold);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--hs-silver);
  transition: color var(--duration) var(--ease-out);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--hs-silver);
  font-size: 0.75rem;
}

.footer-legal-links a:hover { color: var(--hs-white); }

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

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

/* =============================================
   BLOG / ARCHIVE
============================================= */
.post-card {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--hs-fog);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}

.post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.post-card:hover .post-card__image img { transform: scale(1.03); }

.post-card__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.post-card__category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hs-gold);
}

.post-card__date {
  font-size: 0.75rem;
  color: var(--hs-silver);
}

.post-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  transition: color var(--duration) var(--ease-out);
}

.post-card:hover .post-card__title { color: var(--hs-gold-dark); }

.post-card__excerpt { font-size: 0.925rem; color: var(--hs-stone); }

/* =============================================
   SINGLE POST
============================================= */
.post-header {
  padding: 8rem var(--gutter) var(--space-lg);
  max-width: var(--content-width);
  margin-inline: auto;
  text-align: center;
}

.post-content {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.post-content h2 { font-size: 2rem; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.post-content p  { margin-bottom: 1.5rem; }

.post-content ul, .post-content ol {
  list-style: initial;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content blockquote {
  border-left: 3px solid var(--hs-gold);
  padding: 1.25rem 1.5rem;
  background: var(--hs-fog);
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}

.post-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--hs-graphite);
  margin-bottom: 0;
}

/* =============================================
   BREADCRUMBS (SEO Signal)
============================================= */
.breadcrumbs {
  padding: 1rem var(--gutter);
  font-size: 0.75rem;
  color: var(--hs-silver);
  border-bottom: 1px solid var(--hs-fog);
}

.breadcrumbs a { color: var(--hs-silver); }
.breadcrumbs a:hover { color: var(--hs-gold); }
.breadcrumbs span { margin: 0 0.4rem; }

/* =============================================
   ACCESSIBILITY & UTILITIES
============================================= */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.skip-link {
  left: -9999rem;
  position: absolute;
  background: var(--hs-gold);
  color: var(--hs-white);
  padding: 0.5rem 1rem;
  z-index: 999;
  font-weight: 500;
}

.skip-link:focus { left: 0; top: 0; }

.text-center { text-align: center; }
.text-gold    { color: var(--hs-gold); }
.h4           { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }

/* =============================================
   PRINT STYLES
============================================= */
@media print {
  .site-header,
  .site-footer,
  .cta-band { display: none; }

  body { color: #000; background: #fff; }
  a::after { content: " (" attr(href) ")"; }
}
