/* Method Construction Inc. — Main Design System */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Pinyon+Script&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --font-script: 'Pinyon Script', 'Alex Brush', cursive;
}

:root {
  --primary: #2c2c2c;
  --primary-light: #444;
  --accent: #b8956a;
  --accent-hover: #a07d55;
  --dark: #1a1a1a;
  --light: #ffffff;
  --cream: #f7f5f0;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --text-light: #ffffff;
  --border: #e0ddd5;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

/* ── SLEEK ARCHITECTURAL CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: #141f19;
}
::-webkit-scrollbar-thumb {
  background: #b38e5d;
  border-radius: 4px;
  border: 2px solid #141f19;
}
::-webkit-scrollbar-thumb:hover {
  background: #cbb082;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #b38e5d #141f19;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--primary); }
p { color: var(--text-muted); font-weight: 400; font-size: 0.95rem; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(12, 20, 15, 0.88) 0%, rgba(12, 20, 15, 0.45) 75%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header.scrolled .nav-link { color: var(--primary); text-shadow: none; }
.header.scrolled .nav-link:hover { color: var(--accent); }
.header.scrolled .logo-line-1,
.header.scrolled .logo-line-2 { color: var(--primary); text-shadow: none; }
.header.scrolled .nav-phone { color: var(--accent); text-shadow: none; }
.header.scrolled .nav-phone svg { fill: var(--accent); }
.header.scrolled .nav-toggle span { background: var(--primary); }

.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .nav-phone,
.header:not(.scrolled) .logo-line-1,
.header:not(.scrolled) .logo-line-2 {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.header .container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: padding 0.3s ease;
}
.header.scrolled .container {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  padding: 0.2rem 0;
}
.logo-icon-svg {
  width: 48px; height: 48px; flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}
.logo-brand:hover .logo-icon-svg { transform: scale(1.04); }

.logo-stacked {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
  text-decoration: none;
  font-family: var(--font-serif);
}
.logo-brand:hover .logo-line-1,
.logo-brand:hover .logo-line-2,
.logo-stacked:hover .logo-line-1,
.logo-stacked:hover .logo-line-2 {
  color: var(--accent);
}
.logo-stacked .logo-line-1 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  transition: var(--transition);
}
.logo-stacked .logo-line-2 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition);
  margin-top: 2px;
}
.logo-stacked .logo-line-3 {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1px;
  transition: var(--transition);
}

.header.scrolled .logo-line-3 {
  color: var(--primary-light);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-sans); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: #fff;
  padding: 0.5rem 0; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--accent); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: -1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 0.75rem 0; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: block; padding: 0.5rem 1.25rem; color: var(--text-muted);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px;
}
.dropdown-link:hover { color: var(--accent); background: var(--cream); }

.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: 600; color: rgba(255,255,255,0.9); font-size: 0.85rem;
}
.nav-phone svg { fill: rgba(255,255,255,0.9); }

.nav-cta .btn { padding: 0.6rem 1.5rem; font-size: 0.75rem; letter-spacing: 1.5px; }

.nav-toggle {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 28px; height: 18px; position: relative; z-index: 1001;
  margin-left: auto; align-self: center; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px; background: #fff;
  position: absolute; left: 0; transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 1rem 2.5rem; border: 1px solid transparent;
  cursor: pointer; transition: var(--transition); position: relative;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 650px; display: flex; align-items: center;
  justify-content: center; text-align: center; position: relative;
  background-size: cover; background-position: center;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.28) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; max-width: 850px; padding: 0 2rem; }
.hero-tagline {
  font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 4.5px;
  text-transform: uppercase; color: #dfb784; margin-bottom: 1.5rem; font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  display: inline-block;
}
.hero-title {
  font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300;
  line-height: 1.1; margin-bottom: 1.5rem; color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}
.hero-title-minimal {
  font-size: 4rem; font-weight: 300; letter-spacing: 3px;
  margin-bottom: 0.75rem;
}
.hero-divider {
  color: var(--accent); font-weight: 200; margin: 0 0.15em;
}
.hero-since {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,0.85); letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.85; color: #ffffff;
  max-width: 680px; margin: 0 auto 2.5rem; font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* ── FULL-WIDTH IMAGE SECTIONS (O&J Style) ── */
.full-image-section {
  width: 100%; height: 70vh; min-height: 450px;
  background-size: cover; background-position: center;
  position: relative;
}
.full-image-section.parallax { background-attachment: fixed; }

/* Full-image CTA overlay */
.full-image-cta {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.full-image-cta-btn {
  position: relative; z-index: 2;
  font-size: 0.85rem; letter-spacing: 2.5px; padding: 1.1rem 3rem;
  border-color: rgba(255,255,255,0.7);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  transition: var(--transition);
}
.full-image-cta-btn:hover {
  background: #fff; color: var(--primary); text-shadow: none;
}

/* ── CONTENT SECTIONS ── */
.section { padding: 7.5rem 0; }
.section-cream { background: var(--cream); padding: 4.5rem 0; }
.section-cream .section-header { margin-bottom: 2.5rem; }

.section-header {
  text-align: center; max-width: 750px;
  margin: 0 auto 5rem;
}
.section-tag {
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 3.5px;
  font-weight: 600; font-size: 0.75rem; color: var(--accent);
  margin-bottom: 1.25rem; display: inline-block;
}
.section-title {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 1.5rem; color: var(--primary);
}

/* ── ASYMMETRIC EDITORIAL STORY (O&J Style) ── */
.editorial-story {
  padding: 8rem 0; background: #fff; position: relative;
}
.editorial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.editorial-image-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}
.editorial-image-wrap img {
  width: 100%; height: 580px; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-image-wrap:hover img { transform: scale(1.04); }
.editorial-badge {
  position: absolute; bottom: 2rem; right: 2rem;
  background: var(--primary); color: #fff; padding: 1rem 1.75rem;
  border-radius: 4px; font-family: var(--font-serif); font-size: 1rem;
  letter-spacing: 1px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.editorial-content { padding-right: 1rem; }
.editorial-quote-mark {
  font-family: var(--font-serif); font-size: 4rem; color: var(--accent);
  line-height: 0.5; margin-bottom: 1.5rem; display: block;
}
.editorial-lead {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 300;
  line-height: 1.25; color: var(--primary); margin-bottom: 1.75rem;
}
.editorial-body {
  font-size: 1.05rem; line-height: 1.9; color: var(--text-muted);
  margin-bottom: 2.5rem; font-weight: 300;
}
.editorial-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  border-top: 1px solid var(--border); padding-top: 2rem;
}
.editorial-feature-item h4 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400;
  color: var(--primary); margin-bottom: 0.4rem;
}
.editorial-feature-item p {
  font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6;
}

/* ── ABOUT BLOCK (text + image side-by-side) ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-text p { font-size: 1rem; line-height: 1.9; }
.about-image { width: 100%; height: 500px; background-size: cover; background-position: center; }

/* ── SERVICES GRID (O&J 4-up cards) ── */
.services-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.service-block {
  position: relative; height: 450px; overflow: hidden;
  background-size: cover; background-position: center; cursor: pointer;
}
.service-block::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  transition: var(--transition);
}
.service-block:hover::before { background: rgba(0,0,0,0.5); }
.service-block-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; color: #fff; z-index: 2;
  transform: translateY(0); transition: var(--transition);
}
.service-block h3 {
  font-family: var(--font-serif); font-size: 1.6rem; color: #fff;
  margin-bottom: 0.5rem; font-weight: 400;
}
.service-block p {
  font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 0;
  max-height: 0; overflow: hidden; transition: var(--transition);
}
.service-block:hover p { max-height: 100px; margin-bottom: 1rem; }
.service-block .btn { opacity: 0; transition: var(--transition); padding: 0.6rem 1.5rem; font-size: 0.7rem; }
.service-block:hover .btn { opacity: 1; }

/* ── 5-COLUMN SERVICES ROW ── */
.services-row.services-row-5 {
  grid-template-columns: repeat(5, 1fr);
}
.services-row-5 .service-block {
  height: 400px;
}
.services-row-5 .service-block-content {
  padding: 1.5rem;
}
.services-row-5 .service-block h3 {
  font-size: 1.35rem;
}
.services-row-5 .service-block p {
  font-size: 0.8rem;
}

/* ── BUSINESS STRATEGY GRID (Dialogue Section) ── */
.strategy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  text-align: center;
}
.strategy-card {
  padding: 1.25rem 1.25rem;
}
.strategy-card h3 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400;
  color: var(--primary); margin-bottom: 0.5rem;
}
.strategy-card p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0;
}

/* ── GALLERY GRID (Masonry-like) ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ── PROCESS / EXCELLENCE ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.process-step-number {
  font-family: var(--font-serif); font-size: 3rem; color: var(--accent);
  font-weight: 300; margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--primary); color: #fff; text-align: center; padding: 6rem 2rem;
}
.testimonial-quote {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300;
  font-style: italic; max-width: 800px; margin: 0 auto 2rem; line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.testimonial-author { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }

/* ── CTA BANNER ── */
.cta-banner {
  text-align: center; padding: 5rem 2rem;
  background: var(--cream);
}
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-banner p { max-width: 600px; margin: 0 auto 2rem; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start; }

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 0.5rem; font-family: var(--font-sans);
}
.form-control {
  width: 100%; padding: 0.9rem 1rem; background: #fff;
  border: 1px solid var(--border); font-family: var(--font-sans);
  font-size: 0.9rem; color: var(--text-dark); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); }
select.form-control {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b6b6b'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.2rem;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Step form */
.step-form-container { background: #fff; border: 1px solid var(--border); padding: 3rem; }
.step-indicator { display: flex; justify-content: space-between; position: relative; margin-bottom: 2.5rem; }
.step-indicator::before { content:''; position:absolute; top:50%; left:0; width:100%; height:1px; background:var(--border); transform:translateY(-50%); z-index:1; }
.step-indicator-bar { position:absolute; top:50%; left:0; width:0; height:1px; background:var(--accent); transform:translateY(-50%); z-index:2; transition:var(--transition); }
.step-node {
  width:32px; height:32px; border-radius:50%; border:1px solid var(--border);
  background:#fff; display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:600; color:var(--text-muted); z-index:3;
  transition:var(--transition); font-family:var(--font-sans);
}
.step-node.active { border-color:var(--accent); color:var(--accent); }
.step-node.completed { background:var(--accent); border-color:var(--accent); color:#fff; }
.step-panel { display:none; }
.step-panel.active { display:block; }
.step-actions { display:flex; justify-content:space-between; align-items:center; margin-top:2rem; }
.step-btn-back { background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:0.85rem; font-family:var(--font-sans); }
.step-btn-back:hover { color:var(--primary); }

.step-options-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:1rem; }
.option-card {
  border:1px solid var(--border); padding:1.5rem 1rem; text-align:center;
  cursor:pointer; transition:var(--transition); background:#fff;
}
.option-card:hover { border-color:var(--accent); }
.option-card.selected { border-color:var(--accent); background:rgba(184,149,106,0.05); }
.option-icon { margin-bottom:0.75rem; }
.option-icon svg { width:28px; height:28px; fill:var(--accent); margin:0 auto; display:block; }
.option-title { font-size:0.8rem; font-weight:600; letter-spacing:0.5px; color:var(--primary); }

.form-success-message { text-align:center; padding:2rem 0; }
.success-icon-circle {
  width:60px; height:60px; border-radius:50%; background:var(--accent);
  display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem;
}
.success-icon-circle svg { width:28px; height:28px; fill:#fff; }

/* ── FOOTER ── */
.footer { background: var(--primary); color: #fff; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer h4 {
  font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; font-weight: 600;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 0.75rem; align-items: start; margin-bottom: 1rem; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-contact svg { fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--accent); }

.footer-col:first-child p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.8; }

/* ── SCROLL TO TOP ── */
#scrollToTop {
  position:fixed; bottom:2rem; right:2rem; z-index:900;
  width:44px; height:44px; border-radius:0; border:1px solid var(--accent);
  background:var(--accent); color:#fff; cursor:pointer;
  font-size:1.2rem; display:none; align-items:center; justify-content:center;
  transition:var(--transition); opacity:0;
}
#scrollToTop:hover { background:var(--accent-hover); }

/* ── SERVICE DETAIL HERO (sub-pages) ── */
.page-hero {
  height: 50vh; min-height: 350px; display: flex; align-items: center;
  justify-content: center; text-align: center; position: relative;
  background-size: cover; background-position: center; color: #fff;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: 3rem; color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ── LUXURY SCROLL ANIMATIONS (O&J Easing) ── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delayed {
  transition-delay: 0.2s;
}
.fade-in-delayed-2 {
  transition-delay: 0.4s;
}

/* ── RESPONSIVE (Mobile & Tablet Polish) ── */
@media (max-width: 1200px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .services-row-5 { grid-template-columns: repeat(2, 1fr); }
  .services-row-5 .service-block { height: 340px; }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { height: 350px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .editorial-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .editorial-content { padding-right: 0; }
  .editorial-image-wrap img { height: 420px; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }

  /* Nav */
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 360px;
    height: 100vh; background: var(--primary); flex-direction: column;
    justify-content: center; align-items: center; gap: 1.5rem;
    transition: var(--transition); z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-link { color: #fff !important; font-size: 0.95rem; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0;
  }
  .dropdown-link { color: rgba(255,255,255,0.7) !important; padding: 0.4rem 0; text-align: center; }

  /* Hero */
  .hero { height: auto; min-height: 520px; padding: 7rem 1.25rem 4rem; }
  .hero-inner { width: 100%; }
  .hero-title { font-size: 2.2rem; line-height: 1.2; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }

  /* Editorial Section */
  .editorial-story { padding: 4rem 0; }
  .editorial-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .editorial-lead { font-size: 1.85rem; line-height: 1.3; }
  .editorial-body { font-size: 0.95rem; margin-bottom: 2rem; }
  .editorial-features { grid-template-columns: 1fr; gap: 1.5rem; }
  .editorial-image-wrap img { height: 320px; }
  .editorial-badge { position: relative; bottom: auto; right: auto; margin-top: -1.5rem; margin-left: 1rem; display: inline-block; }

  /* Services & Grids */
  .section-title { font-size: 2rem; }
  .services-row,
  .services-row.services-row-5 {
    grid-template-columns: 1fr !important;
  }
  .service-block,
  .services-row-5 .service-block {
    height: 320px;
  }
  .service-block-content p {
    max-height: 100px !important;
    margin-bottom: 0.75rem !important;
    opacity: 1 !important;
  }
  .service-block .btn {
    opacity: 1 !important;
  }
  .strategy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
  .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .testimonial-quote { font-size: 1.25rem; line-height: 1.6; }
  .full-image-section { height: 40vh; min-height: 250px; background-attachment: scroll !important; }
  .step-form-container { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .hero-tagline { font-size: 0.7rem; letter-spacing: 3px; }
  .section-title { font-size: 1.65rem; }
  .editorial-lead { font-size: 1.5rem; }
  .btn { width: 100%; box-sizing: border-box; }
}

/* ── GALLERY LIGHTBOX MODAL ── */
.gallery-modal {
  display: none; position: fixed; z-index: 10000;
  left: 0; top: 0; width: 100%; height: 100%;
  overflow: auto; background-color: rgba(10, 15, 12, 0.95);
  backdrop-filter: blur(10px);
  justify-content: center; align-items: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-modal.show { display: flex; opacity: 1; }
.gallery-modal-content {
  position: relative; max-width: 90%; max-height: 85%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gallery-modal-content img {
  max-width: 100%; max-height: 75vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  transform: scale(0.95); transition: transform 0.3s ease;
}
.gallery-modal.show .gallery-modal-content img { transform: scale(1); }

.gallery-close {
  position: absolute; top: 2rem; right: 2rem; color: #fff;
  font-size: 3rem; font-weight: 200; background: none; border: none;
  cursor: pointer; z-index: 10001; transition: color 0.2s, transform 0.2s; line-height: 1;
}
.gallery-close:hover { color: var(--accent); transform: scale(1.1); }

.gallery-prev, .gallery-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2.5rem; font-weight: bold;
  background: rgba(255,255,255,0.05); border: none; cursor: pointer;
  padding: 1.5rem 1rem; user-select: none; z-index: 10001;
  transition: background 0.2s, color 0.2s; border-radius: 4px;
}
.gallery-prev { left: 2rem; }
.gallery-next { right: 2rem; }
.gallery-prev:hover, .gallery-next:hover { background: rgba(255,255,255,0.15); color: var(--accent); }

.gallery-caption {
  margin-top: 1.5rem; color: #fff; font-size: 1rem; text-align: center;
  font-family: var(--font-sans); font-weight: 300; letter-spacing: 0.5px;
}
.gallery-counter {
  margin-top: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.85rem;
  font-family: var(--font-sans);
}
.gallery-thumbnails {
  display: flex; gap: 0.6rem; margin-top: 1.5rem; overflow-x: auto;
  max-width: 90vw; padding: 0.4rem; scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  justify-content: flex-start; align-items: center;
}
.gallery-thumbnails::-webkit-scrollbar { height: 6px; }
.gallery-thumbnails::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background-color: rgba(255,255,255,0.3); border-radius: 4px; }
.gallery-thumb {
  width: 70px; height: 50px; object-fit: cover; border-radius: 4px;
  cursor: pointer; opacity: 0.4; transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  border: 2px solid transparent; flex-shrink: 0;
}
.gallery-thumb:hover { opacity: 0.8; transform: scale(1.05); }
.gallery-thumb.active { opacity: 1; border-color: var(--accent); transform: scale(1.1); }

body.modal-open { overflow: hidden; }

/* ── BEFORE/AFTER SLIDER ── */
.before-after-wrapper {
  position: relative; width: 100%; aspect-ratio: 622/414;
  border-radius: 0; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.slider-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: 100% 100%; background-position: center; user-select: none;
}
.slider-img-before { z-index: 1; }
.slider-img-after { z-index: 2; width: 100%; clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.slider-label {
  position: absolute; bottom: 1.5rem; background: rgba(18,24,20,0.7);
  backdrop-filter: blur(5px); color: white; padding: 0.4rem 0.9rem;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; z-index: 3; pointer-events: none;
}
.slider-label-before { left: 1.5rem; }
.slider-label-after { right: 1.5rem; }
.slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: white; z-index: 4; cursor: ew-resize;
  transform: translateX(-50%); box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.slider-handle-button {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; background: white; border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); display: flex;
  align-items: center; justify-content: center; cursor: ew-resize;
  border: 1px solid var(--accent);
}
.slider-handle-button::before, .slider-handle-button::after {
  content: ''; border: solid var(--primary); border-width: 0 2px 2px 0;
  display: inline-block; padding: 3px;
}
.slider-handle-button::before { transform: rotate(135deg); margin-right: 2px; }
.slider-handle-button::after { transform: rotate(-45deg); margin-left: 2px; }

/* Gallery item cursor hint */
.gallery-item { cursor: pointer; }

/* ── TRUST BADGES ROW ── */
.trust-badges-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
}
.trust-badge-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-badge-item strong { color: #fff; font-weight: 600; }

/* ── UNIFIED PROJECT WIZARD ── */
.wizard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

/* Progress Bar */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
  padding: 0 1rem;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: var(--border);
  z-index: 1;
}
.wizard-progress-fill {
  position: absolute;
  top: 18px;
  left: 2rem;
  width: 0;
  height: 3px;
  background: var(--accent);
  z-index: 2;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wizard-progress-step {
  position: relative;
  z-index: 3;
  text-align: center;
}
.wizard-progress-step::after {
  content: attr(data-label);
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
.wizard-progress-step.active::after,
.wizard-progress-step.completed::after { color: var(--accent); }
.wizard-progress-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-muted);
  margin: 0 auto;
  transition: all 0.3s ease;
}
.wizard-progress-step.active .wizard-progress-dot {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(179, 142, 93, 0.18);
}
.wizard-progress-step.completed .wizard-progress-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Panels */
.wizard-panel { display: none; animation: wizardFadeIn 0.35s ease; }
.wizard-panel.active { display: block; }
@keyframes wizardFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.wizard-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.75rem;
}

/* Step 1: Project Type Cards */
.wizard-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wizard-type-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.wizard-type-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.wizard-type-card.selected {
  border-color: var(--accent);
  background: rgba(179, 142, 93, 0.06);
  box-shadow: 0 4px 16px rgba(179, 142, 93, 0.15);
}
.wizard-type-icon { margin-bottom: 0.75rem; }
.wizard-type-icon svg { width: 28px; height: 28px; fill: var(--accent); margin: 0 auto; display: block; }
.wizard-type-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.wizard-type-card p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* Step 2: Finish Tier Cards */
.wizard-field-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.wizard-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.wizard-tier-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.wizard-tier-card:hover { border-color: var(--accent); }
.wizard-tier-card.selected {
  border-color: var(--accent);
  background: rgba(179, 142, 93, 0.06);
  box-shadow: 0 4px 12px rgba(179, 142, 93, 0.12);
}
.wizard-tier-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.wizard-tier-desc { font-size: 0.75rem; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* Sqft Slider */
.wizard-sqft-val {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}
.wizard-slider {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}
.wizard-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Add-on Chips */
.wizard-addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.wizard-addon-chip {
  cursor: pointer;
}
.addon-chip-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
  user-select: none;
}
.addon-chip-inner:hover { border-color: var(--accent); }
.wizard-addon-chip.active .addon-chip-inner {
  border-color: var(--accent);
  background: rgba(179, 142, 93, 0.08);
  color: var(--primary);
}
.addon-chip-check {
  display: none;
  color: var(--accent);
  font-weight: 700;
}
.wizard-addon-chip.active .addon-chip-check { display: inline; }
.addon-chip-price {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Live Estimate Bar */
.wizard-live-estimate-bar {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.wizard-live-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

/* Step 3: Breakdown Card */
.wizard-breakdown-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.wizard-breakdown-body {
  padding: 2rem;
}
.breakdown-header-label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breakdown-row span:last-child { font-weight: 600; color: var(--primary); }
.breakdown-row.addon-row { color: var(--text-muted); }
.breakdown-row.addon-row span:last-child { font-weight: 500; color: var(--accent); }
.breakdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}
.breakdown-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.breakdown-row.breakdown-total {
  padding: 0.75rem 0;
  font-size: 1.05rem;
}
.breakdown-row.breakdown-total span:last-child {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.breakdown-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
  font-style: italic;
}
.wizard-estimate-range-wrap {
  background: var(--primary);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wizard-estimate-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.wizard-estimate-range {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.wizard-breakdown-actions {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
}

/* Step 4: Timeline Cards */
.wizard-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.wizard-timeline-card {
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 0.9rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.wizard-timeline-card:hover { border-color: var(--accent); }
.wizard-timeline-card.selected {
  border-color: var(--accent);
  background: rgba(179, 142, 93, 0.06);
  color: var(--primary);
  font-weight: 600;
}

/* Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.wizard-btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.wizard-btn-back:hover { color: var(--primary); }

/* Toast */
.wizard-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 99999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.wizard-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .wizard-card { padding: 1.5rem 1.25rem; }
  .wizard-progress { padding: 0; margin-bottom: 2rem; }
  .wizard-progress-step::after { font-size: 0.6rem; }
  .wizard-progress-dot { width: 30px; height: 30px; font-size: 0.7rem; }
  .wizard-type-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .wizard-tier-grid { grid-template-columns: 1fr; }
  .wizard-timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-step-title { font-size: 1.3rem; }
  .wizard-estimate-range-wrap { flex-direction: column; text-align: center; gap: 0.5rem; }
  .wizard-estimate-range { font-size: 1.5rem; }
  .wizard-breakdown-actions { flex-direction: column; }
  .wizard-breakdown-actions .btn { width: 100%; }
  .wizard-live-estimate-bar { flex-direction: column; text-align: center; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .wizard-type-grid { grid-template-columns: 1fr; }
  .wizard-timeline-grid { grid-template-columns: 1fr 1fr; }
}

/* ── HOMEOWNER MILESTONE TIMELINE ── */
.timeline-tracker {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2.5rem 0;
}
.timeline-tracker::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  z-index: 1;
}
.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}
.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.timeline-step.completed .timeline-dot {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.timeline-step.active .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(179, 142, 93, 0.2);
}
.timeline-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── PORTFOLIO FILTER BAR ── */
.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.portfolio-filter-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--primary);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(184, 149, 106, 0.3);
}
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timeline-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}
