/* No external fonts — using Arial system font */

:root {
  --gold: #b8860b;
  --gold-light: #d4a017;
  --bg: #ffffff;
  --bg-alt: #f8f8f8;
  --text: #222222;
  --text-bright: #1a1a1a;
  --text-dim: #999999;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Georgia, 'Times New Roman', serif;
  --max-width: 1100px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: auto;
}

/* ===== ACCESSIBILITY ===== */
.visually-hidden {
  position: absolute;
  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;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #1a1a1a;
  color: #ffffff;
  z-index: 10000;
  text-decoration: none;
  font-weight: 600;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Page wrapper — no border, full width */
.page-border {
  max-width: 100%;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}


/* ===== NAV ===== */
nav {
  padding: 1.5rem 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px),
    repeating-linear-gradient(-45deg,
      rgba(0,0,0,0.08) 0,
      rgba(0,0,0,0.08) 1px,
      transparent 1px,
      transparent 5px),
    #3a3a3a;
  position: sticky;
  top: 0;
  z-index: 1002;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: stretch;
  gap: 1rem;
  font-family: 'Didot', 'Bodoni 72', 'Playfair Display', 'Palatino Linotype', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo-emblem {
  height: 50px;
  width: 50px;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}
.logo-main {
  font-size: 1em;
}
.logo-sub {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
}
.logo:hover { color: #ffffff; }
.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
}
.nav-links a {
  font-family: Tahoma, Geneva, sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); text-decoration: none; }
.nav-links a.active {
  color: var(--gold-light);
  text-decoration: underline overline;
  text-decoration-color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle.active {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
}
.nav-toggle.active span {
  background: var(--text-bright);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sidebar overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}
.nav-overlay.active { display: block; }

/* Shrink logo before collapsing to mobile, stays small below too */
@media (max-width: 1100px) {
  .logo { font-size: 1.2rem; gap: 0.7rem; }
  .logo-emblem { height: 40px; width: 40px; }
}

@media (max-width: 1000px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 1000;
    border-left: 1px solid rgba(0,0,0,0.1);
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .nav-links li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    font-size: 1rem;
    display: block;
    padding: 0.9rem 2rem;
    color: var(--text);
    -webkit-tap-highlight-color: rgba(0,0,0,0.08);
  }
  .nav-links a.tapped {
    background-color: var(--gold);
    color: #fff;
  }
  nav .container { position: relative; }
  .nav-toggle { display: block; }
}


/* ===== NAV DIVIDER ===== */
.nav-divider {
  display: none;
}

/* ===== HERO ===== */
.hero {
  padding: 3rem 0 1rem;
}

/* Hero split layout */
.hero-split {
  display: flex;
  flex-direction: row-reverse;
  gap: 3rem;
  align-items: flex-start;
}
.hero-text {
  flex: 1;
}
.hero-image {
  flex-shrink: 0;
  width: 340px;
}
.hero-image img {
  width: 100%;
  display: block;
}
.hero-image-mobile { display: none; }
.hero-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-top: 1.5rem;
}
.hero-testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hero-testimonials-stack .home-ts-card {
  margin: 0;
}
.hero-testimonials-stack-mobile {
  display: none;
  clear: both;
}
@media (max-width: 960px) {
  .hero-testimonials-stack-mobile { display: flex; margin-top: 2rem; }
  .hero { padding-bottom: 0; }
  .hero + section { padding-top: 1.5rem; }
  .hero + section .cta-block { margin-top: 0; }
}
.hero-text ul {
  margin: 0.5rem 0 1.5rem 1.5rem;
  padding-left: 0;
}
.hero-text li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.hero-quote-mobile { display: none; }
@media (max-width: 960px) {
  .hero-quote-mobile { display: block; }
}
.hero-quote {
  clear: both;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.06);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-quote p {
  font-style: italic;
  margin: 0 0 0.5rem;
}
.hero-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}

/* Image on left variant */
.section-split {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .hero-split { display: block; }
  .hero-image-desktop { display: none; }
  .hero-image-mobile {
    display: block;
    float: right;
    width: 225px;
    margin: 0.25rem 0 0.75rem 1rem;
  }
  .section-split { display: block; }
  .section-split .hero-image-mobile {
    float: left;
    margin: 0.25rem 1rem 0.75rem 0;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.hero .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}

/* ===== SECTION ===== */
section {
  padding: 3rem 0;
}
section {
  background: #ffffff;
}
section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}
section p {
  margin-bottom: 1rem;
}
section ul {
  margin: 1rem 0 1.5rem 1.25rem;
}
section li {
  margin-bottom: 0.5rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: #b8322b;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border-bottom: 3px solid #8a1f1a;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.btn:hover {
  background: #cf3d35;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(184, 50, 43, 0.25);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-outline {
  background: transparent;
  color: #b8322b;
  border: 1px solid #b8322b;
  border-bottom: 3px solid #8a1f1a;
}
.btn-outline:hover {
  background: #b8322b;
  color: #ffffff;
}

/* ===== GOLD LINE DIVIDER ===== */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 3rem 0;
}

/* ===== BLOCKQUOTE ===== */
blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}
blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ===== SERVICES GRID ===== */
.services-group-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-bright);
  text-align: center;
  margin: 0 0 1rem;
}
.services-group-title:not(:first-child) {
  margin-top: 3rem;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 861px) {
  .service-grid > .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 1rem);
    justify-self: center;
  }
}
.service-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "image title"
    "image desc";
  gap: 0.15rem 1rem;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  transition: transform 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  background-color: rgba(212, 160, 23, 0.06);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.15);
}
.service-card:hover img {
  filter: brightness(1.05);
}
.service-card img {
  grid-area: image;
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.service-card h3 {
  grid-area: title;
  margin: -0.2em 0 0 0;
  color: #1e5a9e;
  font-weight: 700;
  line-height: 1;
  align-self: start;
}
.service-card p {
  grid-area: desc;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card { grid-template-columns: 100px 1fr; }
  .service-card img { width: 100px; height: 100px; }
}

/* ===== MARKET / SERVICE DETAIL PAGE ===== */
.market-page {
  max-width: var(--max-width);
}
.market-page-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
  margin: 0 0 1.25rem;
  text-align: center;
}
.market-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.market-section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-bright);
  text-align: center;
  margin: 4rem 0 1.25rem;
}
.market-list {
  margin: 0 0 1rem 1.25rem;
}
.market-list li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.market-testimonials {
  margin-top: 0.5rem;
}
.market-testimonials .testimonial:first-child { padding-top: 0.5rem; }
@media (max-width: 600px) {
  .market-page-title { font-size: 1.65rem; }
  .market-section-title { font-size: 1.25rem; }
}

/* Reasons-to-hire grid */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 2rem 0 1.75rem;
}
.reason {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: start;
}
.reason-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1;
  margin-top: 0.15rem;
}
.reason h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 0.3rem;
  color: var(--text-bright);
  line-height: 1.25;
}
.reason p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .reasons-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Long-form market copy with floated images */
.market-longform p {
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.market-longform img.float-left {
  float: left;
  width: 260px;
  max-width: 42%;
  margin: 0.3rem 1.5rem 0.75rem 0;
  border-radius: 4px;
}
.market-longform img.float-right {
  float: right;
  width: 260px;
  max-width: 42%;
  margin: 0.3rem 0 0.75rem 1.5rem;
  border-radius: 4px;
}
.market-longform::after {
  content: '';
  display: block;
  clear: both;
}
@media (max-width: 620px) {
  .market-longform img.float-left,
  .market-longform img.float-right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.testimonial:last-child { border-bottom: none; }
.testimonial-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonials-featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1rem 0 3rem;
}
.testimonial-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 1.5rem 1.25rem;
  background: #fafafa;
  border-radius: 6px;
  border-bottom: none;
}
.testimonial-featured .testimonial-img {
  width: 130px;
  height: 130px;
  margin-bottom: 1.1rem;
  border: 3px solid var(--gold);
}
.testimonial-featured .testimonial-body {
  flex: 0 0 auto;
}
.testimonial-featured .testimonial-body p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 0.8rem;
  color: var(--text-bright);
}
.testimonial-featured .testimonial-body cite {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-style: normal;
}
.testimonial-featured .testimonial-body p strong {
  font-weight: 700;
  font-style: normal;
  color: var(--text-bright);
}
@media (max-width: 900px) {
  .testimonials-featured-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .testimonial-featured .testimonial-img { width: 140px; height: 140px; }
  .testimonial-featured .testimonial-body p { font-size: 1.2rem; }
}
.testimonial-body {
  flex: 1;
}
.testimonial-body p {
  font-style: italic;
  margin-bottom: 0.5rem;
}
.testimonial-body cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}
@media (max-width: 600px) {
  .testimonial { gap: 1rem; }
  .testimonial-img { width: 64px; height: 64px; }
}

/* ===== PRICING ===== */
.pricing-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--text);
}
.pricing-toggle {
  display: inline-flex;
  background: #eee;
  border-radius: 999px;
  padding: 4px;
  margin: 0.5rem auto 2rem;
  position: relative;
}
.pricing-toggle-wrap {
  text-align: center;
}
.pricing-toggle .toggle-option {
  padding: 0.55rem 1.5rem;
  border: none;
  background: transparent;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.pricing-toggle .toggle-option.is-active {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}
.pricing-toggle .toggle-option:not(.is-active):hover {
  color: var(--text-bright);
}

.pricing-list {
  max-width: 640px;
  margin: 0 auto 2rem;
}
.pricing-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li span:first-child {
  font-weight: 600;
  color: var(--text-bright);
}
.pricing-list li span:last-child {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}
.pricing-list li.price-unavailable {
  opacity: 0.5;
}
.pricing-list li.price-unavailable span:last-child {
  font-weight: 500;
  font-style: italic;
  color: var(--text-dim);
}

.pricing-note {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.06);
}
.pricing-note h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-heading);
  color: var(--text-bright);
}
.pricing-note p { margin: 0; }

.pricing-cta {
  text-align: center;
  margin-top: 5rem;
}
.pricing-cta p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.pricing-toggle-wrap {
  text-align: center;
}

/* ===== HOME: TESTIMONIALS ROW ===== */
.home-testimonials-row-section {
  padding: 1rem 0 2.5rem;
}
.home-testimonials-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.home-ts-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "image quote"
    "image name";
  gap: 0.5rem 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-ts-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.home-ts-card img {
  grid-area: image;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  align-self: start;
}
.home-ts-card p {
  grid-area: quote;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  position: relative;
  padding-left: 0.9rem;
}
.home-ts-card p strong {
  font-weight: 700;
  font-style: normal;
  color: var(--text-bright);
}
.home-ts-card p::before {
  content: '\201C';
  position: absolute;
  left: -0.1rem;
  top: -0.35rem;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
}
.home-ts-card cite {
  grid-area: name;
  font-family: Tahoma, Geneva, sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  align-self: end;
  padding-top: 0.6rem;
  border-top: 1px solid #eee;
}
.home-ts-card cite span {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.2rem;
}
@media (max-width: 760px) {
  .home-testimonials-row { grid-template-columns: 1fr; }
}

/* ===== HOME: RECENT BLOG POSTS ===== */
.home-recent {
  max-width: var(--max-width);
}
.home-recent-head {
  text-align: left;
  margin-bottom: 2rem;
}
.home-recent-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-bright);
  margin: 0;
  letter-spacing: 0.01em;
}
.home-recent-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0.9rem 0;
}
.home-recent-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.home-recent-main { min-width: 0; }
.home-recent-footer {
  margin-top: 2rem;
  text-align: left;
}
.home-recent-sidebar .sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 900px) {
  .home-recent-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
.home-recent-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dim);
  margin: 0;
}
.home-recent-list .blog-post:first-child { padding-top: 1.5rem; }
.home-recent-footer {
  text-align: center;
  margin-top: 2rem;
}
.home-recent-all {
  display: inline-block;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e5a9e;
  text-decoration: none;
  transition: color 0.2s;
}
.home-recent-all:hover { color: #2d6db5; }

/* ===== BLOG LISTING ===== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.blog-main {
  min-width: 0;
}

/* Sidebar */
.blog-sidebar {
  min-width: 0;
}
.sidebar-widget {
  margin-bottom: 2.5rem;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
}
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a {
  display: block;
  color: var(--text-bright);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  line-height: 1.3;
  transition: color 0.2s;
  margin-bottom: 0.2rem;
}
.sidebar-list li a:hover { color: var(--gold); }
.sidebar-list li time {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.sidebar-comments {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-comments li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-comments li:last-child { border-bottom: none; }
.sidebar-comments p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
}
.sidebar-comments a {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-decoration: none;
  line-height: 1.4;
}
.sidebar-comments a strong {
  color: var(--gold);
  font-weight: 700;
}
.sidebar-comments a:hover strong { color: var(--gold-light); }

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sidebar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  background: #f4f4f4;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sidebar-tag span {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 700;
}
.sidebar-tag:hover {
  background: var(--gold);
  color: #fff;
}
.sidebar-tag:hover span { color: rgba(255,255,255,0.8); }

.sidebar-testimonials {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-testimonials li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-testimonials li:first-child { padding-top: 0.2rem; }
.sidebar-testimonials li:last-child { border-bottom: none; }
.sidebar-testimonials p {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}
.sidebar-testimonials p strong {
  font-weight: 700;
  font-style: normal;
  color: var(--text-bright);
}
.sidebar-testimonials-with-img li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.sidebar-testimonials-with-img img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0.1rem;
}
.sidebar-testimonials cite {
  font-family: Tahoma, Geneva, sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.sidebar-testimonials .testimonial-role {
  color: var(--text-dim);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.blog-container {
  max-width: 860px;
}
.blog-post {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.blog-post:first-child { padding-top: 0; }
.blog-post:last-child { border-bottom: none; }
.blog-post:hover { transform: translateX(3px); }
.blog-post:hover .blog-title { color: #2d6db5; }
.blog-post:hover .blog-readmore { color: #2d6db5; }
.blog-post:hover .blog-thumb { filter: brightness(1.05); }

.blog-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: filter 0.2s;
}

.blog-post-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.65rem;
  color: #1e5a9e;
  transition: color 0.2s;
}

.blog-excerpt {
  margin: 0 0 0.9rem;
  color: var(--text);
  line-height: 1.55;
  font-size: 0.95rem;
}

.blog-readmore {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1e5a9e;
}

@media (max-width: 600px) {
  .blog-post { grid-template-columns: 120px 1fr; gap: 1rem; }
  .blog-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
  .blog-excerpt { font-size: 0.88rem; margin-bottom: 0.6rem; }
  .blog-readmore { font-size: 0.65rem; }
}

/* ===== BLOG ARTICLE ===== */
.blog-post-page {
  padding-top: 1.5rem;
}
.blog-article {
  padding: 0;
}
.blog-article-container {
  max-width: 720px;
}
.blog-back {
  display: inline-block;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.blog-back:hover { color: var(--gold-light); }

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.blog-article-meta .blog-category { color: var(--gold); }

.blog-article-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-bright);
  margin: 0 0 1.25rem;
}
.blog-article-hero {
  float: left;
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin: 0.3rem 1.25rem 0.75rem 0;
}

.blog-article-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.blog-article-body p { margin: 0 0 1.25rem; }
.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-bright);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.blog-article-body ul,
.blog-article-body ol {
  margin: 0 0 1.5rem 1.5rem;
}
.blog-article-body li {
  margin-bottom: 0.5rem;
}
.blog-article-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.06);
  font-style: italic;
}
.blog-article-body blockquote p {
  margin: 0;
}
.blog-article-body em { font-style: italic; }
.blog-article-body strong { font-weight: 700; color: var(--text-bright); }

.blog-article-cta,
.cta-block {
  clear: both;
  margin-top: 3rem;
  text-align: center;
}
.blog-article-cta p,
.cta-block p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

@media (max-width: 600px) {
  .blog-article-title { font-size: 1.35rem; }
  .blog-article-body { font-size: 1rem; }
  .blog-article-body h2 { font-size: 1.3rem; }
  .blog-article-hero { width: 130px; height: 130px; margin: 0.2rem 0.9rem 0.5rem 0; }
}

/* ===== CONTACT FORM ===== */
.contact-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form .field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-form .field-row .field { margin-bottom: 0; }
.contact-form .field-narrow { max-width: 220px; }
.contact-form .field-captcha {
  align-items: center;
}
.contact-form label {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-body);
  line-height: 1.5;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}
.contact-form input:user-invalid,
.contact-form textarea:user-invalid,
.contact-form select:user-invalid {
  border-color: #c94a4a;
}
.form-actions {
  margin-top: 1.5rem;
  text-align: center;
}
.form-actions .btn {
  padding: 0.9rem 2.5rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}
.contact-success {
  text-align: center;
  max-width: 520px;
  margin: 2rem auto 3rem;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.06);
}
.contact-errors {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 0.9rem 1.25rem;
  border-left: 3px solid #c94a4a;
  background: rgba(201, 74, 74, 0.06);
}
.contact-errors p {
  margin: 0;
  color: #8a2c2c;
  font-size: 0.95rem;
}
.contact-errors p + p { margin-top: 0.3rem; }
.contact-success h2 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}
.contact-success p { margin: 0; }

@media (max-width: 600px) {
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form .field-row .field { margin-bottom: 1.25rem; }
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 0;
  margin-top: 0;
  text-align: center;
  color: #d0d0d0;
  font-size: 0.85rem;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 4px),
    repeating-linear-gradient(-45deg,
      rgba(0,0,0,0.08) 0,
      rgba(0,0,0,0.08) 1px,
      transparent 1px,
      transparent 5px),
    #3a3a3a;
  border-top: none;
}
footer a {
  color: var(--gold-light);
  text-decoration: none;
}
footer a:hover { color: #ffffff; }

/* ===== LINK STYLE ===== */
a.page-link {
  color: #1e5a9e;
  text-decoration: none;
  font-size: inherit;
  font-weight: 500;
}
a.page-link:hover { color: #2d6db5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  html { font-size: 16px; }
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 1rem; }
  section { padding: 3.5rem 0; }
  section h2 { font-size: 1.5rem; }
}
