/*
Theme Name: BuildCraft
Theme URI: https://buildcraft.co
Author: BuildCraft
Author URI: https://buildcraft.co
Description: Premium construction company WordPress theme with full Customizer support for all sections and content.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: buildcraft
Tags: construction, business, one-page, customizer, full-width-template
*/

/* ======================================================================
   BuildCraft — editorial construction landing
   Palette: deep navy / ivory / signal gold / concrete gray
   Type: Fraunces (display serif) + Inter Tight (UI) + JetBrains Mono (labels)
   ====================================================================== */

:root {
  --navy: #0B1C2E;
  --navy-deep: #060F1C;
  --navy-soft: #13283F;
  --gold: #D4A24C;
  --gold-bright: #E8B85C;
  --ivory: #F5F1E8;
  --ivory-2: #EDE7D8;
  --paper: #FAF7F0;
  --ink: #0B1C2E;
  --ink-soft: #4A5568;
  --line: rgba(11, 28, 46, 0.08);
  --line-dark: rgba(245, 241, 232, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.display { font-family: 'Fraunces', 'Times New Roman', serif; font-weight: 400; letter-spacing: -0.02em; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ==================== NAV ==================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(11, 28, 46, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--line-dark);
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--ivory); text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; background: var(--gold);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px;
  color: var(--navy); border-radius: 2px;
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: -4px;
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: 2px;
}
.logo-text { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }

/* Image logo variant */
.logo--image { gap: 0; }
.logo-image {
  display: block;
  width: auto;
  height:unset!important;
  max-width: 340px;
  object-fit: contain;
  /* keeps crisp on retina */
  image-rendering: -webkit-optimize-contrast;
}
/* Smooth brightness on dark nav before scroll */
.logo--image .logo-image { transition: opacity 0.3s; }
.logo--image:hover .logo-image { opacity: 0.85; }

/* Footer logo — slightly smaller */
.footer-logo.logo--image .logo-image { opacity: 0.9; }
.footer-logo.logo--image:hover .logo-image { opacity: 1; }
/* Footer text logo keeps ivory colour */
.footer-logo.logo { color: var(--ivory); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(245, 241, 232, 0.75);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--ivory); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-cta {
  padding: 12px 24px; background: var(--gold); color: var(--navy);
  text-decoration: none; font-weight: 600; font-size: 13px;
  border-radius: 2px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* ==================== NAV RIGHT / HAMBURGER ==================== */
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.nav-menu-wrap { display: flex; align-items: center; }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer; padding: 8px;
  position: relative; z-index: 102;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ivory); border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== DESKTOP DROPDOWN ==================== */
.nav-links > li { position: relative; }

.nav-links .nav-arrow {
  font-size: 10px; margin-left: 5px;
  display: inline-block; vertical-align: middle;
  transition: transform 0.25s ease; line-height: 1;
}
.nav-links > li:hover .nav-arrow,
.nav-links > li.open .nav-arrow { transform: rotate(180deg); }

.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--navy);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--gold);
  padding: 6px 0;
  border-radius: 2px;
  box-shadow: 0 24px 48px -10px rgba(6,15,28,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
  pointer-events: none;
}
.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown,
.nav-links > li.open > .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-links .dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--gold);
}
.nav-links .dropdown ul { list-style: none; }
.nav-links .dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  color: rgba(245,241,232,0.78) !important;
  font-size: 13px; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,241,232,0.06);
  transition: color 0.2s, padding-left 0.2s, background 0.2s;
  letter-spacing: 0; text-transform: none;
}
.nav-links .dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(245,241,232,0.04);
  padding-left: 26px;
}
.nav-links .dropdown li:last-child a { border-bottom: none; }
.nav-links .dropdown a::before {
  content: '—'; font-size: 9px; color: var(--gold);
  opacity: 0; transition: opacity 0.2s; flex-shrink: 0;
}
.nav-links .dropdown a:hover::before { opacity: 1; }

/* ==================== MOBILE NAV OVERLAY ==================== */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(6,15,28,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ==================== MOBILE NAV DRAWER ==================== */
.mobile-nav {
  position: fixed; top: 0; right: 0;
  width: 88vw; max-width: 380px; height: 100vh;
  background: var(--navy-deep);
  border-left: 1px solid var(--line-dark);
  z-index: 999;
  overflow-y: auto; overflow-x: hidden;
  /* Use transform — more reliable than right: -100% on fixed elements */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-dark);
  position: sticky; top: 0; z-index: 2;
  background: var(--navy-deep); flex-shrink: 0;
}
.mobile-nav-close {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: rgba(245,241,232,0.06); border: 1px solid var(--line-dark);
  border-radius: 50%; cursor: pointer;
  color: var(--ivory); transition: all 0.2s;
}
.mobile-nav-close:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Mobile links */
.mobile-nav ul.mobile-nav-links,
ul.mobile-nav-links { list-style: none; flex: 1; padding: 8px 0; margin: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--line-dark); }
.mobile-nav-links > li > a,
.mobile-nav-links > li > span {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 24px;
  color: rgba(245,241,232,0.85) !important;
  font-size: 15px; font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0 !important; text-transform: none !important;
  font-family: 'Inter Tight', system-ui, sans-serif !important;
}
.mobile-nav-links > li > a .nav-arrow {
  font-size: 14px; transition: transform 0.3s ease;
  flex-shrink: 0; color: var(--gold);
}
.mobile-nav-links > li > a:hover { color: var(--gold) !important; background: rgba(245,241,232,0.03); }
.mobile-nav-links > li.open > a { color: var(--gold) !important; }
.mobile-nav-links > li.open > a .nav-arrow { transform: rotate(180deg); }
.mobile-nav-links > li > a.active {
  color: var(--ivory) !important;
  border-left: 3px solid var(--gold);
  padding-left: 21px;
}

/* Mobile accordion sub-menu */
.mobile-nav-links .dropdown { display: none; background: rgba(255,255,255,0.02); border-top: 1px solid var(--line-dark); }
.mobile-nav-links li.open > .dropdown { display: block; }
.mobile-nav-links .dropdown ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav-links .dropdown li { border-bottom: 1px solid rgba(245,241,232,0.05); }
.mobile-nav-links .dropdown li:last-child { border-bottom: none; }
.mobile-nav-links .dropdown a {
  display: flex !important; align-items: center; gap: 12px;
  padding: 13px 24px 13px 40px !important;
  color: rgba(245,241,232,0.6) !important;
  font-size: 13px !important; font-weight: 400 !important;
  text-decoration: none !important; border-bottom: none !important;
  transition: all 0.2s;
}
.mobile-nav-links .dropdown a::before {
  content: '' !important; width: 4px !important; height: 4px !important;
  background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0.6;
  border-left: none !important; font-size: 0 !important;
}
.mobile-nav-links .dropdown a:hover { color: var(--gold) !important; padding-left: 48px !important; background: none; }

/* Drawer footer */
.mobile-nav-footer { padding: 24px; border-top: 1px solid var(--line-dark); flex-shrink: 0; }
.mobile-nav-footer .btn {
  display: block !important; text-align: center; width: 100%;
  justify-content: center; box-sizing: border-box;
}
.mobile-contact-links { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.mobile-contact-links a {
  display: flex !important; flex-direction: column; gap: 2px;
  color: rgba(245,241,232,0.6) !important; font-size: 13px; text-decoration: none !important;
  padding: 12px 0; border-bottom: 1px solid var(--line-dark); transition: color 0.2s;
  font-family: 'Inter Tight', system-ui, sans-serif !important;
  text-transform: none !important; letter-spacing: 0 !important;
}
.mobile-contact-links a:last-child { border-bottom: none; }
.mobile-contact-links a:hover { color: var(--gold) !important; }
.mobile-contact-links .mono { color: var(--gold); font-size: 9px; margin-bottom: 2px; display: block; }

/* Show hamburger on ≤1024px, hide desktop nav */
@media (max-width: 1024px) {
  .nav-menu-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh; position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  display: flex; align-items: center;
  padding: 140px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy-deep) 30%, rgba(6, 15, 28, 0.6) 60%, transparent 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.08;
  background-image:
    linear-gradient(var(--ivory) 1px, transparent 1px),
    linear-gradient(90deg, var(--ivory) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: end;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold);
  padding: 8px 0;
  border-top: 1px solid rgba(212, 162, 76, 0.3);
  border-bottom: 1px solid rgba(212, 162, 76, 0.3);
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.95;
  color: var(--ivory);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  animation: fadeUp 1s ease 0.1s both;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  font-weight: 400;
}
.hero h1 .underline-word {
  position: relative; display: inline-block;
}
.hero h1 .underline-word::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0.1em; height: 0.08em;
  background: var(--gold); opacity: 0.6;
  transform-origin: left;
  animation: drawLine 1.2s ease 0.8s both;
}
.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(245, 241, 232, 0.75);
  max-width: 540px;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; animation: fadeUp 1s ease 0.3s both; }
.btn {
  padding: 18px 32px; font-family: inherit;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--navy); border-radius: 2px; }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(212, 162, 76, 0.4); }
.btn-ghost { background: transparent; color: var(--ivory); border-bottom: 1px solid var(--ivory); padding: 18px 4px; }
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* Hero side card */
.hero-side {
  background: rgba(245, 241, 232, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark);
  padding: 32px;
  color: var(--ivory);
  border-radius: 2px;
  animation: fadeUp 1s ease 0.5s both;
  position: relative;
}
.hero-side::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 60px; height: 1px;
  background: var(--gold);
}
.hero-side .label { color: var(--gold); margin-bottom: 16px; }
.hero-side h3 {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 400;
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.hero-side .meta { font-size: 13px; color: rgba(245, 241, 232, 0.6); margin-bottom: 24px; }
.progress-row { display: flex; justify-content: space-between; font-size: 12px; color: rgba(245, 241, 232, 0.7); margin-bottom: 10px; }
.progress-bar {
  height: 2px; background: rgba(245, 241, 232, 0.12);
  overflow: hidden; position: relative;
}
.progress-fill {
  height: 100%; background: var(--gold);
  animation: fillBar 1.6s ease 1s both;
}
.hero-side-img {
  width: 100%; height: 160px; object-fit: cover;
  margin-bottom: 24px; border-radius: 2px; filter: saturate(0.9);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 40px;
  color: rgba(245, 241, 232, 0.5);
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 1s ease 1s both;
}
.hero-scroll .line {
  width: 40px; height: 1px; background: rgba(245, 241, 232, 0.3);
  position: relative; overflow: hidden;
}
.hero-scroll .line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  animation: slideLine 2s infinite;
}

/* Trust bar */
.hero-trust {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line-dark);
  background: rgba(6, 15, 28, 0.6);
  backdrop-filter: blur(10px);
  padding: 20px 40px;
  display: flex; gap: 60px; justify-content: center;
  color: rgba(245, 241, 232, 0.5);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  overflow: hidden;
}
.hero-trust span {
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.hero-trust span::before {
  content: '✦'; color: var(--gold); font-size: 10px;
}

/* ==================== STATS ==================== */
.stats {
  background: var(--paper);
  padding: 80px 40px;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px;
}
.stat { border-left: 2px solid var(--gold); padding-left: 28px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 72px; line-height: 1;
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.stat-num em { font-style: normal; color: var(--gold); font-weight: 400; }
.stat-label { font-size: 14px; color: var(--ink-soft); max-width: 200px; line-height: 1.4; }

/* ==================== ABOUT ==================== */
.about {
  padding: 140px 40px;
  background: var(--paper);
  position: relative;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center;
}
.about-images {
  position: relative; height: 640px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.95);
}
.about-img-sub {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 340px;
  object-fit: cover;
  border-radius: 2px;
  border: 8px solid var(--paper);
}
.about-badge {
  position: absolute; top: 410px; left: 58%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  text-align: center; color: var(--navy);
  box-shadow: 0 20px 40px -10px rgba(212, 162, 76, 0.4);
  z-index: 2;
  animation: spin 30s linear infinite;
}
.about-badge-inner {
  animation: spin 30s linear infinite reverse;
}
.about-badge .num {
  font-family: 'Fraunces', serif; font-size: 48px; font-weight: 300;
  line-height: 1; display: block;
}
.about-badge .txt {
  font-size: 10px; letter-spacing: 0.15em; font-weight: 600;
  text-transform: uppercase; margin-top: 4px; display: block;
}

.about-content .mono { color: var(--gold); margin-bottom: 20px; display: inline-block; }
.about-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 36px; max-width: 500px;
}
.feature-list { list-style: none; margin-bottom: 40px; }
.feature-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  align-items: center;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .num-label {
  font-family: 'Fraunces', serif; font-size: 24px; color: var(--gold);
  font-weight: 300;
}
.feature-list .feat-title { font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.feature-list .feat-desc { font-size: 14px; color: var(--ink-soft); }

/* ==================== SERVICES ==================== */
.services {
  padding: 140px 40px;
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: 'SERVICES';
  position: absolute;
  top: 40px; right: -40px;
  font-family: 'Fraunces', serif;
  font-size: 280px;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.03);
  letter-spacing: -0.03em;
  pointer-events: none;
}
.services-head {
  max-width: 1320px; margin: 0 auto 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
}
.services-head .mono { color: var(--gold); margin-bottom: 20px; display: inline-block; }
.services-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.025em;
}
.services-head h2 em { font-style: italic; color: var(--gold); }
.services-head p {
  font-size: 17px; line-height: 1.7;
  color: rgba(245, 241, 232, 0.7);
}

.services-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.service-card {
  background: var(--navy-soft);
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { background: var(--navy-deep); }
.service-img {
  width: 100%; height: 240px;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.85);
  transition: all 0.6s ease;
}
.service-card:hover .service-img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}
.service-body { padding: 32px 28px 36px; flex: 1; display: flex; flex-direction: column; }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; color: var(--gold);
  margin-bottom: 16px; letter-spacing: 0.08em;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(245, 241, 232, 0.6);
  margin-bottom: 24px;
  flex: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
}
.service-link .arrow { transition: transform 0.3s; }
.service-card:hover .service-link .arrow { transform: translateX(6px); }

/* ==================== PROJECTS ==================== */
.projects {
  padding: 140px 40px;
  background: var(--paper);
}
.projects-head {
  max-width: 1320px; margin: 0 auto 60px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; flex-wrap: wrap;
}
.projects-head-left .mono { color: var(--gold); margin-bottom: 20px; display: inline-block; }
.projects-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300; line-height: 1;
  color: var(--navy); letter-spacing: -0.025em;
}
.projects-head h2 em { font-style: italic; color: var(--gold); }
.projects-filter { display: flex; gap: 8px; }
.projects-filter button {
  padding: 10px 20px; background: transparent;
  border: 1px solid var(--line);
  font-family: inherit; font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: all 0.3s;
  border-radius: 2px;
}
.projects-filter button.active { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.projects-filter button:hover { border-color: var(--gold); color: var(--navy); }
.projects-filter button.active:hover { color: var(--ivory); }

.projects-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.proj {
  position: relative; overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.proj img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.proj:hover img { transform: scale(1.08); }
.proj::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 15, 28, 0.85) 100%);
  transition: opacity 0.4s;
}
.proj-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2; color: var(--ivory);
  transition: transform 0.4s ease;
}
.proj-tag {
  display: inline-block; padding: 4px 10px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 10px;
  border-radius: 2px;
}
.proj h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 400;
  line-height: 1.1; letter-spacing: -0.015em;
}
.proj-meta {
  font-size: 13px; color: rgba(245, 241, 232, 0.7);
  margin-top: 6px;
}
.proj-1 { grid-column: span 3; grid-row: span 2; }
.proj-2 { grid-column: span 3; grid-row: span 1; }
.proj-3 { grid-column: span 3; grid-row: span 1; }
.proj-4 { grid-column: span 2; grid-row: span 2; }
.proj-5 { grid-column: span 2; grid-row: span 2; }
.proj-6 { grid-column: span 2; grid-row: span 2; }
.proj-1 h3 { font-size: 40px; }

/* ==================== PROCESS ==================== */
.process {
  padding: 140px 40px;
  background: var(--ivory);
  position: relative;
}
.process-inner { max-width: 1320px; margin: 0 auto; }
.process-head { text-align: center; margin-bottom: 100px; }
.process-head .mono { color: var(--gold); display: inline-block; margin-bottom: 20px; }
.process-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.025em;
  max-width: 800px; margin: 0 auto;
}
.process-head h2 em { font-style: italic; color: var(--gold); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 14px);
  opacity: 0.4;
}
.step {
  text-align: left;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 400; color: var(--navy);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400;
  color: var(--navy); letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.step p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 140px 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.testi-inner { max-width: 1320px; margin: 0 auto; }
.testi-head { margin-bottom: 60px; }
.testi-head .mono { color: var(--gold); display: inline-block; margin-bottom: 20px; }
.testi-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.025em;
  max-width: 700px;
}
.testi-head h2 em { font-style: italic; color: var(--gold); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.testi-card {
  padding: 40px 36px;
  background: var(--ivory);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(11, 28, 46, 0.15);
}
.testi-card .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 80px; line-height: 0.6; color: var(--gold);
  position: absolute; top: 24px; right: 28px;
  opacity: 0.5;
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.testi-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: 20px; line-height: 1.45;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author .name { font-weight: 600; font-size: 15px; color: var(--navy); }
.testi-author .role { font-size: 13px; color: var(--ink-soft); }

/* ==================== CTA ==================== */
.cta-section {
  padding: 100px 40px 140px;
  background: var(--paper);
}
.cta-card {
  max-width: 1320px; margin: 0 auto;
  padding: 80px 60px;
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.15; filter: grayscale(1);
}
.cta-card::after {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: 50%;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .mono { color: var(--gold); margin-bottom: 20px; display: inline-block; }
.cta-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-content p {
  font-size: 16px; line-height: 1.6;
  color: rgba(245, 241, 232, 0.75);
  max-width: 500px; margin-bottom: 40px;
}
.cta-right { position: relative; z-index: 1; }
.cta-phone {
  border-top: 1px solid var(--line-dark);
  padding-top: 32px;
  margin-top: 32px;
}
.cta-phone .label { font-size: 12px; color: rgba(245, 241, 232, 0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.cta-phone .num {
  font-family: 'Fraunces', serif; font-size: 32px; color: var(--ivory);
  font-weight: 300; letter-spacing: -0.01em;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 100px 40px 40px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px; line-height: 1.7;
  color: rgba(245, 241, 232, 0.6);
  margin-bottom: 32px;
  max-width: 320px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  color: var(--ivory);
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 50%;
  font-size: 14px;
}
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h5 {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 500;
  margin-bottom: 24px; color: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  color: rgba(245, 241, 232, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(245, 241, 232, 0.45);
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes fillBar {
  from { width: 0; }
  to { width: var(--progress-width, 75%); }
}
@keyframes slideLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* Safety: never stay invisible longer than 2s even if JS fails */
  animation: revealFallback 0s 2s forwards;
}
.reveal.in { opacity: 1; transform: translateY(0); animation: none; }

@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== INNER PAGE HERO ==================== */
.inner-hero {
  min-height: 55vh;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 140px 0 70px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.inner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy-deep) 30%, rgba(6,15,28,0.55) 70%, rgba(6,15,28,0.3) 100%);
}
.inner-hero-content {
  position: relative; z-index: 2;
  color: var(--ivory);
}
.inner-hero-eyebrow {
  color: var(--gold); display: inline-block; margin-bottom: 20px;
  border-top: 1px solid rgba(212,162,76,0.3);
  border-bottom: 1px solid rgba(212,162,76,0.3);
  padding: 6px 0;
}
.inner-hero-content h1 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.inner-hero-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(245,241,232,0.75);
  max-width: 540px;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
  padding: 120px 0;
  background: var(--paper);
}
.story-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: center;
}
.story-images {
  position: relative; height: 560px;
}
.story-img-main {
  position: absolute; top: 0; left: 0;
  width: 70%; height: 420px;
  object-fit: cover; border-radius: 2px; filter: saturate(0.95);
}
.story-img-sub {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 300px;
  object-fit: cover; border-radius: 2px;
  border: 8px solid var(--paper);
}
.story-h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.1;
  color: var(--navy); margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.story-content p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
}

/* VALUES */
.values-section {
  padding: 100px 0;
  background: var(--navy);
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.value-card {
  background: var(--navy-soft);
  padding: 48px 36px;
  border-top: 2px solid var(--gold);
  color: var(--ivory);
  transition: background 0.3s;
}
.value-card:hover { background: var(--navy-deep); }
.value-icon {
  font-size: 32px; color: var(--gold); margin-bottom: 20px; display: block;
}
.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400; margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.value-card p {
  font-size: 15px; line-height: 1.7;
  color: rgba(245,241,232,0.7);
}

/* TEAM */
.team-section {
  padding: 120px 0;
  background: var(--ivory);
}
.team-h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.025em; margin-top: 8px;
}
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(11,28,46,0.18);
}
.team-img-wrap {
  height: 280px; overflow: hidden;
}
.team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-info {
  padding: 24px;
}
.team-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.team-role {
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.team-bio {
  font-size: 13px; line-height: 1.6; color: var(--ink-soft);
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-section {
  padding: 80px 0 0;
  background: var(--paper);
}
.contact-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 80px;
}
.contact-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(11,28,46,0.12);
}
.contact-card-icon {
  font-size: 28px; margin-bottom: 12px; display: block;
}
.contact-card-label {
  color: var(--gold); margin-bottom: 8px; display: block;
}
.contact-card-value {
  font-family: 'Fraunces', serif;
  font-size: 17px; color: var(--navy); font-weight: 400;
  text-decoration: none; display: block;
  letter-spacing: -0.01em;
}
.contact-card-value:hover { color: var(--gold); }

.contact-form-section {
  padding: 0 0 120px;
  background: var(--paper);
}
.contact-layout {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
.contact-form-h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 36px;
  margin-top: 8px;
}
.cf7-wrapper {
  background: var(--ivory);
  padding: 40px;
  border: 1px solid var(--line);
}
.cf7-wrapper .wpcf7-form input,
.cf7-wrapper .wpcf7-form textarea,
.cf7-wrapper .wpcf7-form select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; color: var(--ink);
  border-radius: 2px; margin-bottom: 16px;
  transition: border-color 0.2s;
}
.cf7-wrapper .wpcf7-form input:focus,
.cf7-wrapper .wpcf7-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.cf7-wrapper .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.cf7-wrapper .wpcf7-form input[type="submit"] {
  background: var(--gold); color: var(--navy);
  font-weight: 600; cursor: pointer; letter-spacing: 0.02em;
  border: none; width: auto; padding: 16px 36px;
}
.cf7-wrapper .wpcf7-form input[type="submit"]:hover { background: var(--gold-bright); }

.map-wrap {
  height: 360px; border: 1px solid var(--line);
  margin-bottom: 32px; overflow: hidden;
}
.map-placeholder {
  height: 200px; background: var(--ivory);
  border: 1px dashed var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft); padding: 20px;
  margin-bottom: 32px; text-align: center;
}
.contact-side-info {
  background: var(--navy);
  padding: 32px;
}
.contact-side-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 6px;
}
.contact-side-item:last-child { border-bottom: none; }
.contact-side-item .mono { color: var(--gold); }
.contact-side-item span,
.contact-side-item a {
  color: var(--ivory); font-size: 15px; text-decoration: none;
}
.contact-side-item a:hover { color: var(--gold); }

/* ==================== SERVICES ARCHIVE ==================== */
.services-archive-section {
  padding: 100px 0 120px;
  background: var(--paper);
}
.services-archive-h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.025em; margin-top: 8px;
  max-width: 600px;
}
.services-archive-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.service-archive-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -16px rgba(11,28,46,0.15);
}
.sac-image {
  height: 260px; overflow: hidden;
}
.sac-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.service-archive-card:hover .sac-image img { transform: scale(1.05); }
.sac-body {
  padding: 36px 32px 40px; flex: 1; display: flex; flex-direction: column;
}
.sac-cat {
  color: var(--gold); margin-bottom: 12px; display: inline-block;
}
.sac-title {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400; margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.sac-title a { color: var(--navy); text-decoration: none; }
.sac-title a:hover { color: var(--gold); }
.sac-excerpt {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 20px; flex: 1;
}
.sac-features {
  list-style: none; margin-bottom: 24px;
}
.sac-features li {
  font-size: 13px; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
}
.sac-features li::before {
  content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0;
}

/* ==================== SERVICE SINGLE ==================== */
.service-single-section {
  padding: 80px 0 100px;
  background: var(--paper);
}
.service-single-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start;
}
.service-content.wp-content { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }
.service-content.wp-content h2,
.service-content.wp-content h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  color: var(--navy); margin: 36px 0 16px; letter-spacing: -0.02em;
}
.service-content.wp-content h2 { font-size: 32px; }
.service-content.wp-content h3 { font-size: 24px; }
.service-content.wp-content p { margin-bottom: 20px; }
.service-content.wp-content img { max-width: 100%; border-radius: 2px; margin: 24px 0; }

.sidebar-box {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.sidebar-box-title {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400;
  color: var(--navy); margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line); letter-spacing: -0.01em;
}
.sidebar-features {
  list-style: none;
}
.sidebar-features li {
  font-size: 14px; color: var(--ink-soft);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 10px;
}
.sidebar-features li::before {
  content: '✦'; color: var(--gold); font-size: 9px; flex-shrink: 0; margin-top: 3px;
}
.sidebar-features li:last-child { border-bottom: none; }
.sidebar-cta {
  background: var(--navy); color: var(--ivory); border-color: var(--navy);
}
.sidebar-cta h4 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400;
  color: var(--ivory); margin-bottom: 12px; letter-spacing: -0.01em;
}
.sidebar-cta p { font-size: 14px; color: rgba(245,241,232,0.7); line-height: 1.6; }

.other-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.other-service-card {
  display: block; text-decoration: none; background: var(--paper);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.other-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -10px rgba(11,28,46,0.14); }
.other-service-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.osc-body { padding: 20px; }
.osc-body h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.osc-body p { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }

.no-posts-notice {
  text-align: center; padding: 80px 40px;
  background: var(--ivory); border: 1px solid var(--line);
  font-size: 16px; color: var(--ink-soft); line-height: 1.6;
}

/* ==================== PROJECTS ARCHIVE ==================== */
.projects-archive-section {
  padding: 80px 0 120px;
  background: var(--paper);
}
.projects-archive-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.projects-archive-filter button {
  padding: 10px 20px; background: transparent;
  border: 1px solid var(--line);
  font-family: inherit; font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: all 0.3s; border-radius: 2px;
}
.projects-archive-filter button.active { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.projects-archive-filter button:hover { border-color: var(--gold); color: var(--navy); }

.projects-archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-archive-card {
  position: relative; overflow: hidden; border-radius: 2px;
  height: 320px;
}
.proj-archive-link {
  display: block; width: 100%; height: 100%; position: relative;
}
.proj-archive-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.proj-archive-card:hover img { transform: scale(1.07); }
.proj-archive-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,15,28,0.88) 100%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ivory);
}
.proj-archive-overlay .proj-tag { margin-bottom: 10px; }
.proj-archive-overlay h3 {
  font-size: 26px; font-weight: 400; line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 6px;
}
.proj-view-btn {
  display: inline-block; margin-top: 10px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s;
}
.proj-archive-card:hover .proj-view-btn {
  opacity: 1; transform: translateY(0);
}

/* ==================== PROJECT SINGLE ==================== */
.project-hero {
  min-height: 65vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 140px 0 70px;
  background-size: cover; background-position: center;
}
.project-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,28,0.3) 0%, rgba(6,15,28,0.7) 60%, var(--navy-deep) 100%);
}
.project-hero-content {
  position: relative; z-index: 2; color: var(--ivory);
}
.project-hero-content .proj-tag { margin-bottom: 16px; display: inline-block; }
.project-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.project-hero-meta {
  font-size: 16px; color: rgba(245,241,232,0.7);
}

.project-single-section {
  padding: 80px 0 100px;
  background: var(--paper);
}
.project-single-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start;
}
.project-content.wp-content { font-size: 16px; line-height: 1.8; color: var(--ink-soft); }
.project-content.wp-content h2,
.project-content.wp-content h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  color: var(--navy); margin: 36px 0 16px; letter-spacing: -0.02em;
}
.project-content.wp-content h2 { font-size: 32px; }
.project-content.wp-content h3 { font-size: 24px; }
.project-content.wp-content p { margin-bottom: 20px; }
.project-content.wp-content img { max-width: 100%; border-radius: 2px; margin: 24px 0; }

.project-details-box {}
.project-details-list { list-style: none; }
.project-details-list li {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  gap: 16px;
}
.project-details-list li:last-child { border-bottom: none; }
.detail-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; padding-top: 2px; }
.detail-value { font-size: 14px; color: var(--navy); font-weight: 500; text-align: right; }

.gallery-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300; color: var(--navy); margin: 60px 0 28px;
  letter-spacing: -0.02em;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: 2px; display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-full { grid-column: span 3; }
.gallery-item-full img { height: 420px; }

.related-projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-projects-grid .proj { height: 260px; }
.related-projects-grid .proj h3 { font-size: 22px; }

/* ==================== RESPONSIVE — INNER PAGES ==================== */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; gap: 60px; }
  .story-images { height: 480px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .services-archive-grid { grid-template-columns: 1fr; }
  .service-single-layout { grid-template-columns: 1fr; }
  .project-single-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-full { grid-column: span 2; }
  .projects-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .related-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .inner-hero { padding: 120px 20px 50px; }
  .project-hero { padding: 120px 20px 50px; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .projects-archive-grid { grid-template-columns: 1fr; }
  .related-projects-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-full { grid-column: span 1; }
  .cf7-wrapper { padding: 24px 20px; }
  .about-story { padding: 80px 0; }
  .team-section, .values-section { padding: 80px 0; }
  .services-archive-section, .projects-archive-section { padding: 60px 0 80px; }
  .contact-info-section { padding: 60px 0 0; }
  .contact-form-section { padding: 0 0 80px; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-side { max-width: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-head { grid-template-columns: 1fr; gap: 20px; }
  .projects-grid { grid-template-columns: repeat(4, 1fr); }
  .proj-1 { grid-column: span 4; grid-row: span 2; }
  .proj-2, .proj-3 { grid-column: span 2; }
  .proj-4, .proj-5, .proj-6 { grid-column: span 2; grid-row: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 60px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .hero, .about, .services, .projects, .process, .testimonials, .cta-section, footer { padding-left: 20px; padding-right: 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .proj { grid-column: span 1 !important; grid-row: span 1 !important; }
  .process-steps { grid-template-columns: 1fr; }
  .projects-head { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-trust { gap: 20px; font-size: 10px; flex-wrap: wrap; }
  .about-badge { width: 120px; height: 120px; top: 380px; }
  .about-badge .num { font-size: 36px; }
}


@media (max-width: 600px) {
 .logo-image {
    max-width: 256px!important;
}
}