/* =============================================
   Wind River Land Management, LLC
   Shared site styles — rugged Wyoming earth-tone theme
   ============================================= */

:root {
  --black: #080807;
  --deep: #0f0e0c;
  --dark: #161410;
  --bark: #1e1b16;
  --mid: #2a2520;
  --line: rgba(184,146,90,0.15);
  --tan: #7a6545;
  --gold: #b8925a;
  --wheat: #d4aa70;
  --sand: #e8ccaa;
  --cream: #f2e8d8;
  --white: #faf6ef;
  --green: #2e4a1e;
  --green-light: #3d6128;
  --rust: #8a3a1c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wheat); text-decoration: none; }
a:hover { color: var(--cream); }
ul, ol { padding-left: 1.4rem; }
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.02em; line-height: 1.05; color: var(--white); text-transform: uppercase; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.2rem; height: 72px;
  background: rgba(8,8,7,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, height 0.3s;
}
nav.site-nav.scrolled { background: rgba(8,8,7,0.97); height: 62px; }
.nav-left { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-left img { height: 46px; width: auto; filter: invert(1); opacity: 0.95; }
.nav-brand { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); line-height: 1.3; }
.nav-brand small { display: block; font-size: 0.55rem; letter-spacing: 0.22em; color: var(--gold); font-weight: 400; opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; padding: 0; }
.nav-links a { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,232,216,0.7); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--wheat); }
.nav-dropdown { position: relative; }
.nav-dropdown > span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,232,216,0.7); font-weight: 500; cursor: pointer; }
.nav-dropdown:hover > span { color: var(--wheat); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -1rem;
  background: var(--deep); border: 1px solid var(--line);
  min-width: 240px; padding: 0.5rem 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a { display: block; padding: 0.7rem 1.2rem; font-size: 0.65rem; letter-spacing: 0.16em; color: rgba(242,232,216,0.75); }
.nav-dropdown-menu a:hover { background: var(--bark); color: var(--wheat); }
.nav-phone { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em; color: var(--wheat); }
.nav-phone:hover { color: var(--cream); }
.nav-cta { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.6rem 1.4rem; background: var(--wheat); color: var(--black); font-weight: 700; transition: background 0.2s, transform 0.15s; display: inline-block; }
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
@media (max-width: 1100px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 199;
  background: var(--black); padding: 2rem 2rem 4rem; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.3s;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 1rem 0; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--line); }
.mobile-menu .mm-section { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold); padding: 1.5rem 0 0.5rem; border: none; }
.mobile-menu a.mm-cta { margin-top: 1.5rem; background: var(--wheat); color: var(--black); padding: 1rem 1.5rem; text-align: center; border: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 5rem 4rem; background: var(--deep);
  position: relative; z-index: 2;
}
.hero-left::after {
  content: ''; position: absolute; top: 0; right: -60px; bottom: 0;
  width: 120px; background: var(--deep);
  clip-path: polygon(0 0, 0 100%, 100% 100%); z-index: 3;
}
.hero-right { position: relative; overflow: hidden; }
.hero-img { position: absolute; inset: -5%; background-size: cover; background-position: center; filter: brightness(0.9) saturate(1.05) contrast(1.05); will-change: transform; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--deep) 0%, rgba(15,14,12,0.25) 40%, transparent 70%), linear-gradient(to top, rgba(8,8,7,0.5) 0%, transparent 40%); z-index: 1; }
.hero-tag { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--wheat); margin-bottom: 1.6rem; display: flex; align-items: center; gap: 0.9rem; font-weight: 500; }
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--wheat); }
.hero h1 { font-size: clamp(3.4rem, 6vw, 6rem); margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--wheat); display: block; font-size: 0.62em; line-height: 1.1; }
.hero-sub { font-size: 1rem; line-height: 1.85; color: rgba(242,232,216,0.7); margin-bottom: 2.2rem; max-width: 460px; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-direction: column; gap: 0.55rem; }
.hero-badge { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,232,216,0.55); display: flex; align-items: center; gap: 0.7rem; font-weight: 400; }
.hero-badge::before { content: '✓'; color: var(--wheat); }
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 1.6rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 320px; }
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-ghost { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 1rem 2.2rem; font-weight: 700; transition: all 0.2s; display: inline-block; cursor: pointer; border: none; }
.btn-primary { background: var(--wheat); color: var(--black); }
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); color: var(--black); }
.btn-ghost { border: 1px solid rgba(184,146,90,0.4); color: var(--wheat); background: transparent; font-weight: 500; }
.btn-ghost:hover { border-color: var(--wheat); background: rgba(184,146,90,0.08); color: var(--wheat); }

/* ─── SECTIONS ─── */
.section { padding: 6rem 2.2rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.label { font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.label::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }
.section-title { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
.section-body { font-size: 1rem; line-height: 1.9; color: rgba(242,232,216,0.7); max-width: 680px; font-weight: 300; }
.section-body p { margin-bottom: 1.1rem; }
.hairline { height: 1px; background: var(--line); }

/* ─── BREADCRUMBS ─── */
.breadcrumbs { padding: 6rem 2.2rem 0; max-width: 1180px; margin: 0 auto; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); }
.breadcrumbs a { color: var(--wheat); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--tan); }

/* ─── PAGE HEADER (interior pages) ─── */
.page-header {
  padding: 9rem 2.2rem 5rem; background: var(--dark); position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-header-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); margin-bottom: 1rem; max-width: 900px; }
.page-header p.lead { font-size: 1.05rem; line-height: 1.8; color: rgba(242,232,216,0.72); max-width: 700px; }
.page-header.with-image { padding: 0; min-height: 480px; display: grid; grid-template-columns: 1.05fr 0.95fr; }
.page-header.with-image .page-header-inner { padding: 7rem 3rem 4rem; max-width: none; }
.page-header.with-image .page-header-img { background-size: cover; background-position: center; min-height: 320px; }
@media (max-width: 1000px) { .page-header.with-image { grid-template-columns: 1fr; } .page-header.with-image .page-header-inner { padding: 8rem 1.6rem 3rem; } }

/* ─── ABOUT / TWO-COL LAYOUT ─── */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.two-col p { font-size: 1rem; line-height: 1.9; color: rgba(242,232,216,0.72); margin-bottom: 1.2rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

.stat-stack { display: flex; flex-direction: column; gap: 2px; }
.stat-block { background: var(--bark); padding: 2rem 1.8rem; border-left: 3px solid transparent; transition: border-color 0.3s; }
.stat-block:hover { border-color: var(--wheat); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--wheat); line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); line-height: 1.6; font-weight: 500; }
.stat-block.wide .stat-num { font-size: 1.05rem; font-family: 'Inter', sans-serif; letter-spacing: 0.05em; color: var(--sand); }

/* ─── PILLARS ─── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--bark); margin-top: 3rem; }
.pillar { background: var(--deep); padding: 2.6rem 2rem; position: relative; overflow: hidden; transition: background 0.3s; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--wheat); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar:hover { background: var(--bark); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.6rem; color: rgba(212,170,112,0.5); line-height: 1; margin-bottom: 1rem; }
.pillar-title { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wheat); margin-bottom: 0.9rem; font-weight: 600; font-family: 'Inter', sans-serif; }
.pillar-text { font-size: 0.92rem; line-height: 1.8; color: rgba(242,232,216,0.65); }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--bark); margin-top: 3rem; }
.svc-card { background: var(--deep); padding: 2.4rem 2rem; transition: background 0.3s; display: flex; flex-direction: column; min-height: 280px; text-decoration: none; color: var(--cream); }
.svc-card:hover { background: var(--bark); color: var(--cream); }
.svc-card .svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.svc-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.9rem; }
.svc-card p { font-size: 0.92rem; line-height: 1.75; color: rgba(242,232,216,0.62); margin-bottom: 1.2rem; flex: 1; }
.svc-card .svc-link { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wheat); font-weight: 600; }
.svc-card .svc-link::after { content: ' →'; transition: margin-left 0.2s; }
.svc-card:hover .svc-link::after { margin-left: 4px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── ALBUM/GALLERY ─── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 3rem; }
.gallery .gal-item { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bark); cursor: pointer; }
.gallery .gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery .gal-item:hover img { transform: scale(1.05); }
.gallery .gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.2rem; background: linear-gradient(to top, rgba(8,8,7,0.85), transparent); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }

/* ─── BEFORE/AFTER ─── */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 2rem 0; }
.beforeafter .ba { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bark); }
.beforeafter .ba img { width:100%; height:100%; object-fit: cover; }
.beforeafter .ba-tag { position: absolute; top: 1rem; left: 1rem; background: var(--wheat); color: var(--black); padding: 0.35rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
@media (max-width:700px){.beforeafter{grid-template-columns:1fr;}}

/* ─── QUOTE BANNER ─── */
.quote-section { background: var(--bark); padding: 4.5rem 2.2rem; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.quote-section::before { content: '"'; position: absolute; top: -1rem; left: 50%; transform: translateX(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 16rem; line-height: 1; color: rgba(184,146,90,0.04); pointer-events: none; }
.quote-inner { position: relative; z-index: 1; max-width: 820px; }
.quote-text { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 3.6vw, 2.8rem); text-transform: uppercase; color: var(--white); line-height: 1.18; letter-spacing: 0.04em; margin-bottom: 1rem; }
.quote-text em { font-style: normal; color: var(--wheat); }
.quote-attr { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--tan); }

/* ─── FAQ ─── */
.faq { margin-top: 3rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--white); letter-spacing: 0.02em; text-transform: uppercase; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--wheat); transition: transform 0.2s; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq .a { padding-top: 1rem; font-size: 0.96rem; line-height: 1.85; color: rgba(242,232,216,0.7); }

/* ─── SERVICE AREA ─── */
.service-area { background: var(--dark); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.area-col h3 { font-size: 1.6rem; color: var(--wheat); margin-bottom: 1rem; }
.area-col h3 small { display: block; font-size: 0.6rem; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; font-weight: 500; }
.area-col ul { list-style: none; padding: 0; columns: 2; column-gap: 1.5rem; font-size: 0.9rem; }
.area-col li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.area-col li a { color: rgba(242,232,216,0.75); display: block; }
.area-col li a:hover { color: var(--wheat); }
@media (max-width: 800px) { .area-grid { grid-template-columns: 1fr; } .area-col ul { columns: 1; } }

/* ─── BEFORE / AFTER GALLERY ─── */
.ba-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--bark); margin-top: 3rem; }
.ba-item { background: var(--deep); display: flex; flex-direction: column; }
.ba-item img { width: 100%; height: auto; display: block; }
.ba-item .ba-caption { padding: 1.3rem 1.6rem 1.6rem; }
.ba-item .ba-caption .ba-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: 0.45rem; }
.ba-item .ba-caption p { font-size: 0.9rem; line-height: 1.7; color: rgba(242,232,216,0.72); margin: 0; }
.ba-placeholder { min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.5rem 2rem; margin: 1.2rem; border: 1px dashed rgba(184,146,90,0.45); }
.ba-placeholder .ba-ph-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.ba-placeholder .ba-ph-text { font-size: 0.85rem; line-height: 1.6; color: rgba(242,232,216,0.55); margin-bottom: 0.7rem; }
.ba-placeholder .ba-ph-name { font-size: 0.74rem; font-family: 'Courier New', monospace; color: var(--wheat); background: var(--black); padding: 0.4rem 0.7rem; }
@media (max-width: 900px) { .ba-gallery { grid-template-columns: 1fr; } }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info p { font-size: 0.95rem; line-height: 1.85; color: rgba(242,232,216,0.7); margin-bottom: 1.2rem; }
.contact-info .info-row { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: baseline; }
.contact-info .info-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); min-width: 80px; }
.contact-info .info-val { color: var(--cream); font-size: 0.95rem; }
.contact-info a.info-val { color: var(--wheat); }
form.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
form.contact-form label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%; background: var(--bark); border: 1px solid var(--line); padding: 0.85rem 1rem;
  color: var(--cream); font-family: inherit; font-size: 0.95rem; font-weight: 300;
}
form.contact-form input:focus, form.contact-form select:focus, form.contact-form textarea:focus { outline: none; border-color: var(--wheat); }
form.contact-form textarea { resize: vertical; min-height: 140px; }
form.contact-form button { align-self: flex-start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─── CTA BANNER ─── */
.cta-banner { background: linear-gradient(135deg, var(--bark) 0%, var(--dark) 100%); padding: 5rem 2.2rem; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-banner h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(242,232,216,0.7); max-width: 620px; margin: 0 auto 2rem; line-height: 1.8; }
.cta-banner .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── ARTICLE / LONG-FORM ─── */
article.long { max-width: 820px; margin: 4rem auto; padding: 0 2.2rem; }
article.long h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 2.5rem 0 1rem; color: var(--white); }
article.long h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 2rem 0 0.8rem; color: var(--wheat); }
article.long p { font-size: 1.02rem; line-height: 1.9; color: rgba(242,232,216,0.78); margin-bottom: 1.3rem; }
article.long ul, article.long ol { margin: 0 0 1.5rem 1.4rem; }
article.long li { font-size: 1rem; line-height: 1.85; color: rgba(242,232,216,0.78); margin-bottom: 0.5rem; }
article.long blockquote { border-left: 3px solid var(--wheat); padding: 1rem 1.4rem; margin: 1.6rem 0; background: var(--bark); font-size: 1.05rem; color: var(--cream); font-style: italic; }
article.long .byline { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
article.long img { margin: 2rem 0; border: 1px solid var(--line); }

/* ─── BLOG INDEX ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--bark); }
.blog-card { background: var(--deep); padding: 0; transition: background 0.3s; display: block; color: var(--cream); text-decoration: none; }
.blog-card:hover { background: var(--bark); }
.blog-card .bc-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.blog-card .bc-body { padding: 1.6rem 1.6rem 2rem; }
.blog-card .bc-tag { font-size: 0.6rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.7rem; line-height: 1.15; }
.blog-card p { font-size: 0.9rem; color: rgba(242,232,216,0.62); line-height: 1.75; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
footer.site-footer { background: var(--black); padding: 4.5rem 2.2rem 2rem; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand img { height: 60px; filter: invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(242,232,216,0.6); margin-bottom: 1.4rem; }
.footer-brand .ph { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--wheat); display: block; margin-bottom: 0.4rem; }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 0.35rem 0; }
.footer-col a { color: rgba(242,232,216,0.65); font-size: 0.85rem; }
.footer-col a:hover { color: var(--wheat); }
.footer-bottom { max-width: 1180px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--tan); }
.footer-areas { background: var(--deep); padding: 2.5rem 2.2rem; margin-top: 3rem; border-top: 1px solid var(--line); }
.footer-areas-inner { max-width: 1180px; margin: 0 auto; }
.footer-areas h5 { font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-areas .areas-list { font-size: 0.82rem; line-height: 2; color: rgba(242,232,216,0.6); }
.footer-areas .areas-list a { color: rgba(242,232,216,0.6); }
.footer-areas .areas-list a:hover { color: var(--wheat); }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── UTILITY ─── */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── PRINT ─── */
@media print {
  nav.site-nav, .mobile-menu, footer.site-footer, .cta-banner, .hero-btns { display: none; }
  body { background: white; color: black; }
  h1, h2, h3 { color: black; }
}

/* ─── INTERIOR PAGE LAYOUT ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0; }
.container.narrow { max-width: 820px; }

.section-alt { background: var(--dark); }
.section p { font-size: 1rem; line-height: 1.85; color: rgba(242,232,216,0.78); margin-bottom: 1.2rem; }
.section h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1rem; color: var(--white); }
.section h3 { color: var(--white); }
.section .section-title { text-align: center; margin-bottom: 2.5rem; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  padding: 9rem 2.2rem 5rem;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .kicker { font-size: 0.62rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--wheat); margin-bottom: 1.2rem; font-weight: 500; display: flex; align-items: center; gap: 0.8rem; }
.page-hero .kicker::before { content: ''; display: block; width: 28px; height: 1px; background: var(--wheat); }
.page-hero h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); margin-bottom: 1.3rem; max-width: 1000px; }
.page-hero .lead { font-size: 1.05rem; line-height: 1.85; color: rgba(242,232,216,0.78); max-width: 760px; margin-bottom: 2rem; font-weight: 300; }
.page-hero .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 700px) {
  .page-hero { padding: 7rem 1.4rem 3.5rem; }
}

/* ─── SERVICE/CONTENT CARDS (3-up) ─── */
.services-grid.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--bark); margin-top: 2.5rem; }
.services-grid.three-up .service-card { background: var(--deep); padding: 2.2rem 1.8rem; transition: background 0.3s; min-height: 200px; }
.services-grid.three-up .service-card:hover { background: var(--bark); }
.services-grid.three-up .service-card h3 { font-size: 1.35rem; color: var(--wheat); margin-bottom: 0.8rem; }
.services-grid.three-up .service-card p { font-size: 0.92rem; line-height: 1.75; color: rgba(242,232,216,0.7); margin: 0; }
@media (max-width: 900px) { .services-grid.three-up { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid.three-up { grid-template-columns: 1fr; } }

/* ─── BENEFITS GRID (2-up) ─── */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--bark); margin-top: 2.5rem; }
.benefits-grid .benefit-card { background: var(--deep); padding: 2rem 1.8rem; border-left: 3px solid transparent; transition: border-color 0.3s, background 0.3s; }
.benefits-grid .benefit-card:hover { border-left-color: var(--wheat); background: var(--bark); }
.benefits-grid .benefit-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.7rem; }
.benefits-grid .benefit-card p { font-size: 0.92rem; line-height: 1.75; color: rgba(242,232,216,0.68); margin: 0; }
@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ─── PROCESS LIST ─── */
.process-list { counter-reset: step; list-style: none; padding-left: 0; margin: 2rem 0; }
.process-list li { counter-increment: step; padding: 1.2rem 1.2rem 1.2rem 4.2rem; border-bottom: 1px solid var(--line); position: relative; font-size: 1rem; line-height: 1.7; color: rgba(242,232,216,0.8); }
.process-list li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 1.1rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--wheat); width: 3.4rem; text-align: center; }

/* ─── RELATED LINKS ─── */
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--bark); margin-top: 1.5rem; }
.related-link { background: var(--deep); padding: 1.4rem 1.6rem; color: var(--cream); display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; font-size: 0.9rem; letter-spacing: 0.04em; }
.related-link:hover { background: var(--bark); color: var(--wheat); }
.related-link strong { font-weight: 600; color: var(--cream); }
.related-link:hover strong { color: var(--wheat); }
@media (max-width: 700px) { .related-links { grid-template-columns: 1fr; } }

/* ─── SERVICE CARD LINK (services index) ─── */
.service-card-link { text-decoration: none; color: inherit; display: block; }
.service-card-link .service-card { background: var(--deep); padding: 2rem 1.8rem; transition: background 0.3s; min-height: 240px; display: flex; flex-direction: column; }
.service-card-link:hover .service-card { background: var(--bark); }
.service-card-link .learn-more { margin-top: auto; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--wheat); font-weight: 600; padding-top: 1rem; }

/* ─── TRUST BANNER (homepage) ─── */
.trust-banner { background: var(--bark); padding: 2.4rem 2.2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.trust-item { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); font-weight: 500; }
.trust-item strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.04em; color: var(--wheat); margin-bottom: 0.3rem; }
@media (max-width: 800px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

/* ─── ARTICLE/BLOG META ─── */
.post-meta { display: flex; gap: 1rem; align-items: center; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.post-meta .dot { color: var(--tan); }

/* ─── BLOG ARTICLE EXTRA ─── */
.article-hero { padding: 8rem 2.2rem 3rem; background: var(--dark); border-bottom: 1px solid var(--line); }
.article-hero-inner { max-width: 820px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); margin-bottom: 1rem; line-height: 1.1; }
.article-hero .lead { font-size: 1.05rem; line-height: 1.75; color: rgba(242,232,216,0.75); margin-bottom: 1rem; }
.article-feature-img { max-width: 1180px; margin: 0 auto; padding: 0 2.2rem; }
.article-feature-img img { width: 100%; max-height: 480px; object-fit: cover; }

/* ─── PROJECT SHOWCASE ─── */
.project-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--bark); margin-top: 2.5rem; align-items: start; }
.project-card { background: var(--deep); padding: 0; color: var(--cream); text-decoration: none; display: block; transition: background 0.3s; }
.project-card:hover { background: var(--bark); }
.project-card .pc-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.project-card .pc-ba { display: block; width: 100%; aspect-ratio: 1659 / 1862; object-fit: contain; background: #0c0c0c; }
.project-card .pc-body { padding: 1.6rem 1.8rem 2rem; }
.project-card .pc-tag { font-size: 0.6rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.6rem; }
.project-card h3 { color: var(--white); margin-bottom: 0.7rem; font-size: 1.4rem; }
.project-card p { font-size: 0.9rem; color: rgba(242,232,216,0.65); }
@media (max-width: 700px) { .project-grid { grid-template-columns: 1fr; } }

/* ─── TWO COLUMN PROSE (location pages) ─── */
.col-2 { columns: 2; column-gap: 2.5rem; margin: 2rem 0; }
.col-2 p { break-inside: avoid; margin-bottom: 1.2rem; }
@media (max-width: 800px) { .col-2 { columns: 1; } }

/* ─── CALLOUT ─── */
.callout { border-left: 3px solid var(--wheat); background: var(--bark); padding: 1.6rem 1.8rem; margin: 2rem 0; }
.callout p { margin: 0; color: var(--cream); font-size: 0.98rem; line-height: 1.75; }

/* ─── INLINE LIST ─── */
.section ul.bullet { list-style: none; padding-left: 0; margin: 1rem 0 1.8rem; }
.section ul.bullet li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; font-size: 0.96rem; color: rgba(242,232,216,0.78); line-height: 1.7; }
.section ul.bullet li::before { content: '▸'; position: absolute; left: 0; color: var(--wheat); }
