/*
Theme Name: Gatehouse Transportation
Theme URI: https://gatehousetransportation.com
Author: NSG Inc.
Description: Custom theme for Gatehouse Transportation, a chauffeured car service serving Cincinnati, Northern Kentucky, and Dayton. Built for corporate and wedding transportation with local SEO structure baked in.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: gatehouse
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root{
  /* color */
  --ink:        #100F0A;
  --charcoal:   #1D1B14;
  --ivory:      #F6F2E8;
  --parchment:  #ECE4D2;
  --brass:      #D0B064;      /* Gatehouse */
  --brass-dark: #B77D0D;      /* darkest gold — primary buttons, strong accents */
  --brass-light:#F1D477;      /* lightest gold — eyebrows, highlights on dark */
  --gold-transport: #B99A55;  /* Transportation */
  --burgundy:   #5C2430;
  --text:       #201E17;
  --text-muted: #5B564A;
  --text-on-dark: #F6F2E8;
  --text-on-dark-muted: #C7BFA8;
  --line:       rgba(32,30,23,0.13);
  --line-on-dark: rgba(241,212,119,0.16);

  /* type */
  --font-display: "Trajan Pro", "Trajan Pro 3", "Cinzel", "Times New Roman", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --container-narrow: 760px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body{
  margin:0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0 0 0.5em; font-weight:700; line-height:1.15; color: var(--ink); }
p{ margin:0 0 1em; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container--narrow{ max-width: var(--container-narrow); }

h1, .h1{
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 400;
}
h2, .h2{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}
h3, .h3{
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.eyebrow{
  display:inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight:600;
  letter-spacing: 0.14em;
  color: var(--brass-dark);
  margin-bottom: 0.9em;
}
.lede{ font-size:1.15rem; color: var(--text-muted); max-width: 46em; }

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

/* =========================================================
   GATE MARK (signature motif)
   ========================================================= */
.gate-mark{ display:inline-flex; align-items:center; }
.gate-mark svg{ display:block; }

.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin: 0 auto 2.5rem;
  width: fit-content;
  color: var(--brass);
}
.divider::before,
.divider::after{
  content:"";
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.divider svg{ width:14px; height:14px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.6em;
  padding: 0.95em 1.9em;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor:pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary{ background: linear-gradient(135deg, var(--brass-dark), var(--brass)); color: var(--ink); }
.btn--primary:hover{ background: var(--brass-light); }
.btn--outline-dark{ background:transparent; color: var(--ivory); border-color: rgba(244,239,228,0.55); }
.btn--outline-dark:hover{ background: rgba(244,239,228,0.1); border-color: var(--ivory); }
.btn--outline-light{ background:transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-light:hover{ background: var(--ink); color: var(--ivory); }
.btn--block{ width:100%; }

.cta-row{ display:flex; flex-wrap:wrap; gap: 1rem; }

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header{
  background: var(--ink);
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  position: relative;
  z-index: 9999;
  transition: box-shadow .25s ease;
}
.site-header.is-pinned{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.site-header.is-scrolled{ box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.site-header-spacer{ display:none; }
.site-header-spacer.is-active{ display:block; }
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1.5rem;
  padding: 1.1rem 0 0.6rem;
  transition: padding .4s ease;
}
.is-scrolled .header-inner{ padding: 0.75rem 0; }
.is-scrolled .site-title{ font-size: 1.1rem; }
.is-scrolled .site-title .tagline{ max-height:0; opacity:0; margin-top:0; overflow:hidden; }
/* Inner pages (everything but the homepage) start at the compact size
   permanently — no shrink-on-scroll, since there's nothing left to shrink. */
.site-header.is-inner .header-inner{ padding: 0.55rem 0; }
.site-header.is-inner .site-title{ font-size: 1.1rem; }
.site-header.is-inner .site-title .tagline{ display:none; }
.site-title .tagline{ transition: max-height .2s ease, opacity .2s ease; max-height:20px; }
.site-branding{ display:flex; align-items:center; gap:0.65rem; }
.site-branding a{ display:flex; align-items:center; gap:0.65rem; }
.custom-logo-link{ display:flex; align-items:center; }
.custom-logo{ max-height: 116px; width:auto; display:block; transition: max-height .4s ease; }
.is-scrolled .custom-logo{ max-height: 92px; }
.site-header.is-inner .custom-logo{ max-height: 78px; }
.site-title{
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-title .word-gatehouse{ color: var(--brass); }
.site-title .word-transportation{ color: var(--gold-transport); }
.site-title span.tagline{ display:block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing:0.22em; color: var(--brass-light); font-weight:600; margin-top:4px; }

.header-actions{ display:flex; align-items:center; gap: 1.5rem; }
.header-phone{
  font-family: var(--font-body);
  font-weight:600;
  letter-spacing:0.02em;
  font-size: 0.95rem;
  color: var(--ivory);
  white-space:nowrap;
  text-align: center;
}
.header-phone small{ display:block; font-size:0.65rem; letter-spacing:0.14em; font-weight:600; color: var(--text-on-dark-muted); text-transform:uppercase; }

/* Primary nav */
.primary-nav{ }
.primary-nav > ul{ display:flex; align-items:center; gap: 2.1rem; }
.primary-nav a{
  font-size: 0.88rem;
  font-weight:600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding: 0.4rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a{ color: var(--ivory); border-color: var(--brass); }

.primary-nav li{ position:relative; }
.primary-nav ul ul{
  display:none;
  position:absolute;
  top: 100%;
  left: -1.25rem;
  min-width: 230px;
  background: var(--charcoal);
  border: 1px solid var(--line-on-dark);
  padding: 0.5rem 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.primary-nav li:hover > ul,
.primary-nav li:focus-within > ul{ display:block; }
.primary-nav ul ul a{
  display:block;
  padding: 0.65rem 1.25rem;
  text-transform:none;
  letter-spacing: 0.01em;
  font-size:0.9rem;
  border-bottom:none;
}
.primary-nav ul ul a:hover{ background: rgba(166,128,60,0.14); color: var(--ivory); }
.primary-nav ul ul li + li{ border-top: 1px solid var(--line-on-dark); }

/* Mobile menu (CSS-only, no JS) */
.menu-toggle{ display:none; }
.menu-toggle-label{
  display:none;
  align-items:center;
  justify-content:center;
  gap: 0.5rem;
  padding: 0 0.9rem;
  height: 42px;
  border: 1px solid var(--line-on-dark);
  cursor:pointer;
}
.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after{
  content:""; display:block; width:20px; height:2px; background: var(--ivory); position:relative;
  transition: transform .2s ease;
}
.menu-toggle-icon::before{ position:absolute; top:-6px; }
.menu-toggle-icon::after{ position:absolute; top:6px; }
.menu-toggle-text{
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}

@media (max-width: 900px){
  .header-phone{ display:none; }
  .menu-toggle-label{ display:flex; }
  .primary-nav{
    display:block;
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-on-dark);
    max-height:0;
    overflow:hidden;
    transition: max-height .28s ease;
  }
  .menu-toggle:checked ~ .primary-nav{ max-height: 80vh; overflow-y:auto; }
  .primary-nav > ul{ flex-direction:column; align-items:stretch; gap:0; padding: 0.5rem 0 1.25rem; }
  .primary-nav > ul > li{ border-top: 1px solid var(--line-on-dark); }
  .primary-nav a{ display:block; padding: 0.9rem clamp(1.25rem,4vw,2.5rem); border-bottom:none !important; }
  .primary-nav ul ul{
    display:block; position:static; background:transparent; border:none; box-shadow:none;
    padding: 0 0 0.5rem;
  }
  .primary-nav ul ul a{ padding-left: calc(clamp(1.25rem,4vw,2.5rem) + 1rem); color: var(--text-on-dark-muted); }
  .primary-nav ul ul li{ border-top:none !important; }
  .header-actions .btn{ display:none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  color: var(--text-on-dark);
  background:
    linear-gradient(180deg, rgba(21,20,15,0.72) 0%, rgba(21,20,15,0.88) 100%),
    linear-gradient(120deg, #1c1a14 0%, #15140F 55%, #201c14 100%);
  background-size: cover;
  background-position: center bottom;
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero.has-image{ background-image: linear-gradient(180deg, rgba(21,20,15,0.53) 0%, rgba(21,20,15,0.72) 100%), var(--hero-image); }

/* Mobile only: favor the left side (partway, not full edge) of the hero and "Additional Services" photos */
@media (max-width: 640px){
  .hero{ background-position: 75% bottom; }
  .media-favor-right{ object-position: 65% center; }
}
.hero-content{ max-width: 46em; }
.hero .eyebrow{ color: var(--brass-light); animation: gh-fade-up .7s ease both; animation-delay: .05s; }
.hero h1{ color: var(--ivory); animation: gh-fade-up .7s ease both; animation-delay: .18s; }
.hero .lede{ color: var(--text-on-dark-muted); font-size:1.2rem; margin-bottom: 2.2rem; animation: gh-fade-up .7s ease both; animation-delay: .32s; }
.hero .cta-row{ animation: gh-fade-up .7s ease both; animation-delay: .46s; }

@keyframes gh-fade-up{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform:none; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt{ background: var(--parchment); }
.section--dark{ background: var(--ink); color: var(--text-on-dark); }
.section--dark h2{ color: var(--ivory); }
.section-head{ text-align:center; max-width: 42em; margin: 0 auto clamp(2rem,5vw,3.25rem); }
.section-head .lede{ margin-left:auto; margin-right:auto; }

/* Services grid */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px){ .services-grid{ grid-template-columns: 1fr; } }
.service-card{
  background: var(--ivory);
  border: 1px solid var(--line);
  display:flex;
  flex-direction:column;
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease;
}
.service-card:hover{ box-shadow: 0 16px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.service-card__media{ aspect-ratio: 4/3; background: var(--charcoal); overflow:hidden; }
.service-card__media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.service-card:hover .service-card__media img{ transform: scale(1.06); }
.service-card__body{ padding: 1.75rem; display:flex; flex-direction:column; gap:0.75rem; flex:1; }
.service-card__body p{ color: var(--text-muted); font-size:0.95rem; flex:1; }
.blog-card__date{ font-size:0.78rem; letter-spacing:0.06em; text-transform:uppercase; color: var(--brass-dark); font-weight:600; flex:none !important; margin:0; }
.service-card__link{ font-size:0.82rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color: var(--brass-dark); position: relative; z-index: 1; }
.service-card__link:hover{ color: var(--ink); }
.service-card__link::after{ content:""; position:absolute; inset:0; z-index:0; }
.vehicle-features{ margin: 0 0 0.5rem; }
.badge-new{
  display:inline-block;
  background: var(--brass-dark);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  margin-bottom: 1rem;
}

/* Homepage 2026 Fleet feature */
.fleet-feature__layout{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items:center;
}
@media (max-width: 860px){ .fleet-feature__layout{ grid-template-columns: 1fr; } }
.fleet-feature__media{
  display:flex;
  align-items:center;
  justify-content:center;
}
.fleet-feature__media img{ width:100%; height:auto; display:block; }
.fleet-feature__content h2{ margin-bottom: 0.5rem; }
.fleet-feature__statement{
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--brass-dark);
  margin: 0 0 1rem;
}
.fleet-feature__content .lede{ margin-bottom: 1.75rem; }
.vehicle-features li{
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* Fleet / vehicle gallery — masonry layout, natural aspect ratios, zero cropping */
.fleet-gallery{ columns: 3 240px; column-gap: 1.25rem; }
.fleet-gallery figure{
  margin: 0 0 1.25rem;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.fleet-gallery a{ display:block; cursor: zoom-in; }
.fleet-gallery img{
  display:block;
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}
.fleet-gallery figure:hover{
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
  transform: translateY(-4px);
  border-color: var(--brass);
}
.fleet-gallery figure:hover img{ transform: scale(1.04); }
@media (max-width: 640px){
  .fleet-gallery{
    display:flex;
    overflow-x:auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    columns: initial;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .fleet-gallery figure{
    flex: 0 0 auto;
    width: 80vw;
    max-width: 340px;
    margin: 0;
    scroll-snap-align: start;
    border: none;
    background: transparent;
  }
  .fleet-gallery figure:hover{ box-shadow:none; transform:none; }
  .fleet-gallery img{ width:100%; height:auto; display:block; }
}

/* Lightbox (progressive enhancement — see assets/js/main.js) */
.gh-lightbox{
  position: fixed; inset: 0;
  background: rgba(16,15,10,0.94);
  display:flex; align-items:center; justify-content:center;
  padding: 2rem;
  opacity:0; visibility:hidden;
  transition: opacity .2s ease;
  z-index: 1000;
}
.gh-lightbox.is-open{ opacity:1; visibility:visible; }
.gh-lightbox__img{ max-width: min(90vw, 1100px); max-height: 86vh; width:auto; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.gh-lightbox__close{
  position:absolute; top:1.25rem; right:1.5rem;
  width:44px; height:44px;
  background:transparent; border:1px solid var(--line-on-dark);
  color: var(--ivory); font-size:1.75rem; line-height:1;
  cursor:pointer;
}
.gh-lightbox__close:hover{ border-color: var(--brass-light); color: var(--brass-light); }

/* Full-width image band */
.image-band{
  position:relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: var(--text-on-dark);
}
.image-band::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(16,15,10,0.55), rgba(16,15,10,0.78));
}
.image-band-inner{ position:relative; z-index:1; max-width: 40em; padding: 0 1.5rem; }
.image-band .eyebrow{ color: var(--brass-light); }
.image-band h2{ color: var(--ivory); }

/* Trust bar */
.trust-bar{ display:grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); text-align:center; }
@media (max-width: 800px){ .trust-bar{ grid-template-columns: repeat(2,1fr); } }
.trust-item .num{ font-family: var(--font-display); font-size: clamp(1.75rem,3vw,2.5rem); color: var(--brass-light); display:block; margin-bottom:0.35rem; }
.trust-item .label{ font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-on-dark-muted); }

/* Service areas */
.areas-list{ display:flex; flex-wrap:wrap; justify-content:center; gap: 0.85rem; }
.areas-list li{
  border: 1px solid var(--line);
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight:600;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials{ display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width: 900px){ .testimonials{ grid-template-columns:1fr; } }
.testimonial{ border-top: 2px solid var(--brass); padding-top:1.25rem; }
.testimonial p{ font-size:1.02rem; color: var(--text); }
.testimonial cite{ font-style:normal; font-size:0.85rem; letter-spacing:0.05em; text-transform:uppercase; color: var(--text-muted); font-weight:600; }

/* CTA banner */
.cta-banner{
  background: var(--burgundy);
  color: var(--text-on-dark);
  text-align:center;
  padding: clamp(3rem,7vw,4.5rem) 0;
}
.cta-banner h2{ color: var(--ivory); }
.cta-banner .cta-row{ justify-content:center; margin-top:1.75rem; }

/* =========================================================
   SERVICE ARCHIVE / SINGLE
   ========================================================= */
.page-hero{
  background: var(--ink);
  color: var(--text-on-dark);
  padding: clamp(3rem,7vw,5rem) 0 clamp(2.5rem,5vw,3.5rem);
  text-align:center;
}
.page-hero h1{ color: var(--ivory); }
.breadcrumb{ font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; color: var(--text-on-dark-muted); margin-bottom:1rem; }
.breadcrumb a:hover{ color: var(--brass-light); }

.service-single{ padding: clamp(3rem,7vw,5rem) 0; }
.service-single__layout{ display:grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items:start; }
@media (max-width: 900px){ .service-single__layout{ grid-template-columns:1fr; } }
.service-single__figure{ background: var(--charcoal); aspect-ratio: 4/3; margin-bottom:2rem; overflow:hidden; }
.service-single__figure img{ width:100%; height:100%; object-fit:cover; }
.service-single__content h2{ font-size:1.5rem; }
.service-single aside{
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 1.75rem;
  position:sticky;
  top: calc(var(--gh-header-h, 0px) + 1.5rem);
}
.service-single aside h3{ margin-bottom:0.75rem; }
.service-single aside p{ font-size:0.92rem; color: var(--text-muted); }
.service-single aside .btn{ margin-top:0.5rem; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout{ display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,4rem); align-items:start; }
@media (max-width: 860px){ .contact-layout{ grid-template-columns:1fr; } }
.contact-info h3{ margin-top:1.75rem; }
.contact-info h3:first-child{ margin-top:0; }
.contact-info p, .contact-info address{ font-style:normal; color: var(--text-muted); }
.contact-info a:hover{ color: var(--brass-dark); }

.contact-form{ background: var(--parchment); border: 1px solid var(--line); padding: clamp(1.5rem,4vw,2.5rem); }
.form-row{ margin-bottom: 1.25rem; }
.form-row label{ display:block; font-size:0.82rem; font-weight:600; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:0.4rem; color: var(--text); }
.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  font-family: var(--font-body);
  font-size:0.98rem;
  padding: 0.75em 0.9em;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--text);
  border-radius: var(--radius);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{ outline: 2px solid var(--brass); outline-offset:1px; border-color: var(--brass); }
.form-row textarea{ min-height: 130px; resize: vertical; }
.form-two-col{ display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
@media (max-width:520px){ .form-two-col{ grid-template-columns:1fr; } }
.form-note{ font-size:0.82rem; color: var(--text-muted); margin-top:0.75rem; }
.form-success, .form-error{
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--brass);
  background: var(--parchment);
  font-size:0.95rem;
}
.form-error{ border-color: var(--burgundy); }
/* honeypot */
.hp-field{ position:absolute; left:-9999px; top:-9999px; }

.map-embed{ border:1px solid var(--line); margin-top: 2rem; }
.map-embed iframe{ width:100%; height:320px; border:0; display:block; }

/* =========================================================
   GENERIC PAGE CONTENT
   ========================================================= */
.entry-content{ max-width: var(--container-narrow); margin: 0 auto; padding: clamp(3rem,7vw,4.5rem) clamp(1.25rem,4vw,2.5rem); }
.entry-content h2{ margin-top:1.75em; }
.entry-content ul{ list-style: disc; padding-left:1.4em; margin-bottom:1em; }
.entry-content ul li{ margin-bottom:0.4em; }

/* =========================================================
   BLOG POST HERO
   ========================================================= */
.post-hero{
  position:relative;
  min-height: 46vh;
  display:flex;
  align-items:flex-end;
  color: var(--text-on-dark);
  background:
    linear-gradient(180deg, rgba(21,20,15,0.35) 0%, rgba(21,20,15,0.9) 100%),
    linear-gradient(120deg, #1c1a14 0%, #15140F 55%, #201c14 100%);
  background-size: cover;
  background-position: center;
}
.post-hero.has-image{
  background-image:
    linear-gradient(180deg, rgba(21,20,15,0.25) 0%, rgba(21,20,15,0.92) 100%),
    var(--post-hero-image);
}
.post-hero__inner{ padding: clamp(3rem,8vw,5rem) clamp(1.25rem,4vw,2.5rem) clamp(2.5rem,6vw,3.5rem); max-width: var(--container-narrow); margin:0 auto; }
.post-hero h1{ color: var(--ivory); margin-bottom: 0.75rem; font-size: clamp(2rem, 4vw, 3rem); }
.post-hero .breadcrumb{ color: var(--text-on-dark-muted); }
.post-byline{
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-light);
  margin:0;
}

/* Blog post body copy */
.post-content{ padding-top: clamp(2.5rem,6vw,3.5rem); }
.post-content p{ font-size: 1.08rem; line-height:1.8; color: var(--text); margin-bottom: 1.4em; }
.post-content h2{ font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-top: 2.2em; }
.post-content h3{ font-size: 1.15rem; margin-top: 1.8em; }
.post-content blockquote{
  border-left: 3px solid var(--brass);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-style: normal;
}
.post-content img{ margin: 2rem 0; }
.post-content a{ color: var(--brass-dark); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover{ color: var(--ink); }

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer{ background: var(--ink); color: var(--text-on-dark-muted); padding: clamp(3rem,6vw,4rem) 0 1.5rem; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1fr; gap: var(--gap); margin-bottom: 2.5rem; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 500px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand .site-title{ margin-bottom:0.85rem; }
.footer-brand p{ font-size:0.92rem; max-width: 26em; }
.footer-col h4{ font-family: var(--font-body); font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase; color: var(--ivory); margin-bottom:1rem; }
.footer-col li{ margin-bottom:0.6rem; font-size:0.92rem; }
.footer-col a:hover{ color: var(--brass-light); }
.footer-social{ display:flex; gap:1rem; margin-top:1rem; }
.footer-social a{ font-size:0.8rem; letter-spacing:0.06em; text-transform:uppercase; border-bottom:1px solid var(--line-on-dark); padding-bottom:2px; }
.footer-social a:hover{ color: var(--brass-light); border-color: var(--brass-light); }
.footer-bottom{
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.5rem;
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:space-between;
  font-size: 0.8rem;
}
.footer-bottom a:hover{ color: var(--brass-light); }

/* =========================================================
   UTILITIES
   ========================================================= */
.screen-reader-text{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.skip-link{
  position:absolute; left:1rem; top:-100px;
  background: var(--brass); color: var(--ink);
  padding: 0.75rem 1.25rem; z-index:1000;
  font-weight:600; font-size:0.85rem;
  transition: top .15s ease;
}
.skip-link:focus{ top: 1rem; }