/*
Theme Name: Martin Outdoor Lighting
Theme URI: https://martinoutdoorlighting.com
Author: Martin Outdoor Lighting
Description: Custom theme for Martin Outdoor Lighting — luxury landscape lighting installation in Stark and Summit Counties, Ohio.
Version: 1.0
Text Domain: martin-outdoor-lighting
*/

/* ==========================================================================
   1. ROOT VARIABLES — DESIGN SYSTEM
   ========================================================================== */
:root {
  --color-black: #0a0a0a;
  --color-black-soft: #121212;
  --color-gold: #c9a227;
  --color-gold-bright: #e0c158;
  --color-off-white: #f5f5f0;
  --color-gray: #8a8a85;
  --font-primary: 'Montserrat', sans-serif;
  --max-width: 1280px;
  --space-section: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-black);
  color: var(--color-off-white);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--color-gold-bright);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-off-white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ==========================================================================
   3. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.site-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-logo img,
.site-logo .custom-logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Constrain the WordPress custom-logo wrapper link too */
.site-logo a.custom-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-logo a.custom-logo-link img {
  max-height: 56px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

.main-nav a {
  color: var(--color-off-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--color-gold);
}

.header-cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.header-cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 170px 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 100%);
}

/* Uplight beam animation */
.uplight-beam {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 340px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(201,162,39,0.22) 0%, rgba(201,162,39,0.05) 45%, transparent 80%);
  clip-path: polygon(46% 100%, 54% 100%, 100% 0%, 0% 0%);
  z-index: 2;
  animation: beamFlicker 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes beamFlicker {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
  52% { opacity: 0.7; }
  54% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  color: var(--color-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-headline .glow-gold {
  background: linear-gradient(90deg, #a9821f 0%, #e0c158 45%, #f4e2a1 55%, #c9a227 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  animation: shimmer 5s linear infinite;
  display: inline-block;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subhead {
  font-size: 19px;
  color: var(--color-gray);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: 1px solid var(--color-gold);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn-outline {
  display: inline-block;
  padding: 17px 43px;
  background: transparent;
  color: var(--color-off-white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: 1px solid rgba(245,245,240,0.3);
  transition: all 0.25s ease;
  margin-left: 16px;
}

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

/* ==========================================================================
   5. GOLD DIAMOND DIVIDER
   ========================================================================== */
.diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 44px;
  width: 100%;
  max-width: 240px;
}

.diamond-divider::before,
.diamond-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.5));
}

.diamond-divider::after {
  background: linear-gradient(90deg, rgba(201,162,39,0.5), transparent);
}

.diamond-divider span {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ==========================================================================
   5B. WHY US
   ========================================================================== */
.why-heading {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.4;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.why-pillar-title {
  color: var(--color-gold);
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.why-pillar-text {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================================
   5C. PICTURE THIS
   ========================================================================== */
.picture-this {
  background: var(--color-black-soft);
  text-align: center;
}

.picture-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.4;
}

.picture-text {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ==========================================================================
   5D. THE RESULT
   ========================================================================== */
.result-heading {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 40px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 56px;
  max-width: 800px;
  margin: 0 auto;
}

.result-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.result-marker {
  color: var(--color-gold);
  font-size: 16px;
  line-height: 1.5;
}

.result-item p {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

.result-highlight {
  color: var(--color-off-white);
}

/* ==========================================================================
   5E. WHAT WE DO (FIXTURE ICONS)
   ========================================================================== */
.what-we-do {
  background: var(--color-black-soft);
}

.wwd-heading {
  text-align: center;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  margin-bottom: 8px;
}

.wwd-subtext {
  text-align: center;
  color: var(--color-gray);
  font-size: 14px;
  margin-bottom: 56px;
}

.wwd-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 56px;
  max-width: 640px;
}

.wwd-item.reverse {
  flex-direction: row-reverse;
  margin-left: auto;
  text-align: right;
}

.wwd-item:last-child {
  margin-bottom: 0;
}

.wwd-icon {
  width: 46px;
  height: 56px;
  flex-shrink: 0;
  margin-top: 4px;
}

.wwd-title {
  color: var(--color-off-white);
  font-size: 18px;
  margin-bottom: 8px;
}

.wwd-text {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
}

.wwd-item.reverse .wwd-text {
  margin-left: auto;
}

/* ==========================================================================
   5F. CONSULTATION INCLUDES
   ========================================================================== */
.consult-heading {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  margin-bottom: 48px;
}

.consult-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.consult-item:last-child {
  margin-bottom: 0;
}

.consult-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.consult-title {
  color: var(--color-off-white);
  font-size: 16px;
  margin-bottom: 6px;
}

.consult-text {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================================
   5G. PORTFOLIO TEXT LINK
   ========================================================================== */
.portfolio-link {
  text-align: center;
  padding: 24px 0 0;
}

.text-link {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 4px;
}

.text-link:hover {
  color: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
}

/* ==========================================================================
   5H. FINAL CTA
   ========================================================================== */
.cta-final {
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, var(--color-black-soft) 0%, var(--color-black) 70%);
}

.cta-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  margin-bottom: 12px;
}

.cta-text {
  color: var(--color-gray);
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 300;
}

.cta-urgency {
  color: #7a6e4a;
  font-size: 13px;
  font-style: italic;
  margin-bottom: 28px;
}

/* ==========================================================================
   6. SECTION HEADINGS
   ========================================================================== */
.section-eyebrow {
  text-align: center;
  color: var(--color-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
}

.section-heading {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 24px;
}

.section-intro {
  text-align: center;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto 64px;
  font-weight: 300;
}

/* ==========================================================================
   7. (feature-card styles removed — replaced by .wwd- classes above)
   ========================================================================== */

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-black-soft);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 80px 0 32px;
  text-align: center;
}

.site-footer .site-logo img {
  height: 44px;
  margin: 0 auto 24px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-gray);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-copyright {
  color: var(--color-gray);
  font-size: 12px;
  opacity: 0.6;
}

/* ==========================================================================
   9. CONTACT / QUOTE PAGE
   ========================================================================== */
.contact-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, var(--color-black-soft) 0%, var(--color-black) 70%);
}

.contact-headline {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  margin: 20px 0 20px;
}

.contact-subhead {
  color: var(--color-gray);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-step-num {
  color: var(--color-gold);
  font-size: 22px;
  font-style: italic;
  opacity: 0.6;
  width: 40px;
  flex-shrink: 0;
}

.contact-step-title {
  color: var(--color-off-white);
  font-size: 15px;
  margin-bottom: 6px;
}

.contact-step-text {
  color: var(--color-gray);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

.contact-direct {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,162,39,0.15);
}

.contact-direct-label {
  color: var(--color-gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.contact-direct-phone {
  color: var(--color-gold);
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-direct-email {
  color: var(--color-gray);
  font-size: 14px;
}

.contact-form-wrap {
  background: var(--color-black-soft);
  border: 1px solid rgba(201,162,39,0.15);
  padding: 44px;
}

/* Style WPForms fields to match the black/gold theme */
body .contact-form-wrap .wpforms-field label,
body .contact-form-wrap .wpforms-field-label,
body .contact-form-wrap .wpforms-field-label-inline {
  color: var(--color-gold) !important;
  font-family: var(--font-primary) !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

body .contact-form-wrap .wpforms-field-sublabel {
  color: var(--color-gray) !important;
  font-family: var(--font-primary) !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form-wrap input:not([type="submit"]),
.contact-form-wrap textarea,
.contact-form-wrap select {
  background: var(--color-black) !important;
  border: 1px solid rgba(201,162,39,0.25) !important;
  color: var(--color-off-white) !important;
  border-radius: 2px !important;
  font-family: var(--font-primary) !important;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
  border-color: var(--color-gold) !important;
  outline: none !important;
}

.contact-form-wrap .wpforms-submit-container button,
.contact-form-wrap button[type="submit"] {
  background: var(--color-gold) !important;
  color: var(--color-black) !important;
  border: 1px solid var(--color-gold) !important;
  font-family: var(--font-primary) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px !important;
  padding: 16px 32px !important;
  border-radius: 2px !important;
}

.contact-form-wrap .wpforms-submit-container button:hover,
.contact-form-wrap button[type="submit"]:hover {
  background: transparent !important;
  color: var(--color-gold) !important;
}
/* ==========================================================================
   11. SERVICES PAGE
   ========================================================================== */
.svc-hero {
  padding-top: 160px;
  padding-bottom: 50px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, var(--color-black-soft) 0%, var(--color-black) 70%);
}

.svc-hero-heading {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  margin: 16px 0;
  line-height: 1.15;
}

.svc-hero-subhead {
  color: var(--color-gray);
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.svc-section.alt {
  background: var(--color-black-soft);
}

.svc-section-label {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.svc-section-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  margin-bottom: 18px;
}

.svc-section-intro {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 44px;
}

.svc-callout {
  background: var(--color-black-soft);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.svc-callout-label {
  color: var(--color-gold);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svc-callout-title {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 10px;
}

.svc-callout-text {
  color: var(--color-gray);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 440px;
}
/* ==========================================================================
   13. MOBILE MENU TOGGLE
   ========================================================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-toggle span:nth-child(2) {
  width: 70%;
}

.menu-toggle.is-open span {
  width: 100%;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* ==========================================================================
   15. SERVICE AREA PAGE
   ========================================================================== */
.area-map-wrap {
  border: 1px solid rgba(201,162,39,0.25);
  filter: grayscale(0.3) contrast(1.05);
  overflow: hidden;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.area-list {
  list-style: none;
  color: var(--color-gray);
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
}

.area-nearby {
  border-top: 1px solid rgba(201,162,39,0.15);
  padding-top: 28px;
  text-align: center;
}

.area-nearby p {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

.area-nearby-highlight {
  color: var(--color-off-white);
}
.guide-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(201,162,39,0.08), rgba(201,162,39,0.02));
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 44px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.guide-callout:hover {
  border-color: var(--color-gold);
  background: linear-gradient(90deg, rgba(201,162,39,0.14), rgba(201,162,39,0.04));
}

.guide-callout-label {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.guide-callout-title {
  color: var(--color-off-white);
  font-size: 19px;
}

.guide-callout-arrow {
  color: var(--color-gold);
  font-size: 24px;
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.25s ease;
}

.guide-callout:hover .guide-callout-arrow {
  transform: translateX(6px);
}
/* ==========================================================================
   20. LIGHTING GUIDE PAGE
   ========================================================================== */
.fixture-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.fixture-row.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.fixture-photo {
  width: 140px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.fixture-content {
  flex: 1;
}

.fixture-text {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px;
}

.fixture-row.reverse .fixture-text {
  margin-left: auto;
}

/* ==========================================================================
   22. BLOG
   ========================================================================== */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.blog-card:hover {
  opacity: 0.85;
}

.blog-card:first-child {
  padding-top: 0;
}

.blog-card-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-date {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
}

.blog-pagination {
  text-align: center;
  margin-top: 48px;
}

.blog-pagination a,
.blog-pagination span {
  color: var(--color-gold);
  font-size: 13px;
  margin: 0 10px;
  text-decoration: none;
}

.post-date {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.post-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.2;
}

.post-featured-image {
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
}

.post-content p {
  margin-bottom: 24px;
}

.post-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 40px 0 18px;
  color: var(--color-off-white);
}

.post-content h3 {
  font-size: 19px;
  font-weight: 400;
  margin: 32px 0 14px;
  color: var(--color-off-white);
}

.post-content img {
  width: 100%;
  height: auto;
  margin: 32px 0;
}

.post-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.post-footer {
  max-width: 680px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,39,0.15);
}
/* ==========================================================================
   24. ABOUT PAGE
   ========================================================================== */
.about-body {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 26px;
}

/* ==========================================================================
   26. PORTFOLIO FEATURE SHOWCASE
   ========================================================================== */
.portfolio-feature {
  display: flex;
  gap: 44px;
  align-items: center;
  margin-bottom: 64px;
}

.portfolio-feature:last-child {
  margin-bottom: 0;
}

.portfolio-feature.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.portfolio-feature-img {
  width: 42%;
  flex-shrink: 0;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(201,162,39,0.2);
}

.portfolio-feature-content {
  flex: 1;
}

.portfolio-feature.reverse .fixture-text {
  margin-left: auto;
}

/* ==========================================================================
   27. PROCESS PAGE
   ========================================================================== */
.process-step-title {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
}
/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    display: block;
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background: var(--color-black);
    border-top: 1px solid rgba(201,162,39,0.15);
    border-bottom: 1px solid rgba(201,162,39,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(201,162,39,0.08);
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: 16px 32px;
  }

  .btn-outline { margin-left: 0; margin-top: 16px; }
  .why-pillars { grid-template-columns: 1fr; gap: 28px; }
  .result-grid { grid-template-columns: 1fr; gap: 20px; }
  .wwd-item, .wwd-item.reverse {
    flex-direction: row;
    text-align: left;
    margin-left: 0;
  }
  .wwd-item.reverse .wwd-text { margin-left: 0; }
  .consult-item { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-hero { padding-top: 120px; }
  .svc-hero { padding-top: 120px; }
  .svc-callout { flex-direction: column; text-align: left; }
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .guide-callout { flex-direction: column; align-items:flex-start; gap:16px; }
  .guide-callout-arrow { margin-left:0; }
  .fixture-row, .fixture-row.reverse {
    flex-direction: column;
    text-align: left;
  }
  .fixture-row.reverse .fixture-text { margin-left: 0; }
  .fixture-photo { width: 110px; margin-bottom: 8px; }
  .blog-card { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-image { height: 200px; }
  .portfolio-feature, .portfolio-feature.reverse {
    flex-direction: column;
    text-align: left;
  }
  .portfolio-feature-img { width: 100%; height: 220px; }
  .portfolio-feature.reverse .fixture-text { margin-left: 0; }
}
