/* ═══════════════════════════════════════════════
   Terra OC Design Build — Main Stylesheet
   Converted from static HTML/CSS to WordPress theme
═══════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────── */
:root {
  --cream:       #F2F2F2;
  --warm-white:  #FFFFFF;
  --stone:       #AAAAAA;
  --stone-dark:  #888888;
  --earth:       #555555;
  --earth-deep:  #222222;
  --charcoal:    #1A1A1A;
  --ink:         #0A0A0A;
  --gold:        #AAAAAA;
  --gold-light:  #CCCCCC;
  --sage:        #888888;
  --white:       #FFFFFF;
  --font-display:'Cormorant Garamond', serif;
  --font-body:   'Jost', sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--warm-white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }

/* ── NAV ──────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 88px; display: flex; align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s;
}
.site-nav.scrolled {
  background: rgba(26,20,16,0.95);
  backdrop-filter: blur(20px);
}
.site-nav.solid {
  background: rgba(26,20,16,0.95);
  backdrop-filter: blur(20px);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display); font-size: 26px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); line-height: 1.1;
}
.nav-logo img { height: 100px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 11px 26px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 1px; background: var(--white); display: block; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: var(--ink); flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--white); letter-spacing: 0.04em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 28px; right: 28px; background: none; border: none; cursor: pointer; color: var(--white); font-size: 32px; line-height: 1; }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 17px 38px; cursor: pointer; border: none;
  transition: all 0.35s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,151,90,0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--earth-deep); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid var(--earth-deep); }
.btn-outline-dark:hover { background: var(--earth-deep); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-white-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.40); }
.btn-white-outline:hover { background: var(--white); color: var(--ink); }
.btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px; cursor: pointer;
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  transition: all 0.35s var(--ease);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.btn-gold-outline svg { width: 14px; height: 14px; transition: transform 0.3s; }
.btn-gold-outline:hover svg { transform: translateX(4px); }

/* ── COMMON ───────────────────────────────────── */
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 22px auto; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; line-height: 1.1; color: var(--ink); margin-bottom: 18px;
}
.section-header h2 em { font-style: italic; color: var(--earth); }
.section-header p { font-size: 15px; font-weight: 300; color: rgba(26,20,16,0.60); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ── HERO (HOME) ─────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/35.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.75) 0%, rgba(26,20,16,0.40) 40%, rgba(26,20,16,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 90px; max-width: 820px;
  animation: heroFadeUp 1.2s 0.4s var(--ease) both;
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 300; line-height: 1.03; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 28px;
  opacity: 0; animation: headlineFadeIn 1.4s 0.7s var(--ease) forwards;
}
@keyframes headlineFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero h1 em { font-style: italic; color: var(--stone); }
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.62); max-width: 520px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 10px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.40);
  animation: heroFadeUp 1.2s 1s var(--ease) both;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 60px; background: rgba(255,255,255,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.25} 50%{opacity:.8} }

/* ── INTRO STRIP ────────────────────────────── */
.intro-strip { background: var(--cream); padding: 80px 0; }
.intro-strip .container { display: flex; align-items: center; gap: 80px; }
.intro-text { flex: 1; }
.intro-text h2 {
  font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 20px;
}
.intro-text h2 em { font-style: italic; color: var(--earth); }
.intro-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(26,20,16,0.65); max-width: 520px; }
.intro-stats { display: flex; gap: 60px; padding-left: 80px; border-left: 1px solid rgba(26,20,16,0.12); }
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 56px; font-weight: 300; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-dark); margin-top: 8px; }

/* ── SERVICES PREVIEW ───────────────────────── */
.services-preview { padding: 120px 0; background: var(--warm-white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.service-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.80) 0%, rgba(26,20,16,0.10) 60%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(26,20,16,0.90) 0%, rgba(26,20,16,0.25) 70%); }
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; }
.service-card-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.service-card-title { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.service-card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.60);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-card-desc { max-height: 100px; opacity: 1; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
  transform: translateX(-8px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.service-card:hover .service-card-arrow { transform: translateX(0); opacity: 1; }
.service-card-arrow svg { width: 14px; height: 14px; }
.services-cta { text-align: center; margin-top: 56px; }

/* ── FEATURED PROJECT ───────────────────────── */
.featured { padding: 0; }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.featured-image { position: relative; overflow: hidden; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.featured-image:hover img { transform: scale(1.04); }
.featured-text { background: var(--charcoal); display: flex; flex-direction: column; justify-content: center; padding: 80px; }
.featured-text .eyebrow { color: var(--stone); }
.featured-text h2 { font-family: var(--font-display); font-size: clamp(36px, 3.5vw, 52px); font-weight: 300; color: var(--white); line-height: 1.12; margin-bottom: 24px; }
.featured-text h2 em { font-style: italic; color: var(--stone); }
.featured-text p { font-size: 14px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.50); margin-bottom: 40px; max-width: 380px; }
.featured-detail { display: flex; gap: 36px; margin-bottom: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.featured-detail-item dt { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 6px; }
.featured-detail-item dd { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--white); }

/* ── PROCESS ────────────────────────────────── */
.process { padding: 120px 0; background: var(--cream); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(26,20,16,0.10); margin-top: 72px; }
.process-step { background: var(--cream); padding: 48px 36px; transition: background 0.35s; }
.process-step:hover { background: var(--warm-white); }
.step-number { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: rgba(26,20,16,0.10); line-height: 1; margin-bottom: 20px; letter-spacing: -0.02em; }
.step-icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--gold); }
.step-icon svg { width: 100%; height: 100%; }
.process-step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.process-step p { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: rgba(26,20,16,0.60); }

/* ── GALLERY STRIP ──────────────────────────── */
.gallery-strip { padding: 120px 0; }
.gallery-strip-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.gallery-strip-header h2 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 300; color: var(--ink); line-height: 1.1; }
.gallery-strip-header h2 em { font-style: italic; color: var(--earth); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
}
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-1 { grid-column: span 5; grid-row: span 2; }
.mosaic-2 { grid-column: span 4; }
.mosaic-3 { grid-column: span 3; }
.mosaic-4 { grid-column: span 4; }
.mosaic-5 { grid-column: span 3; }

/* ── TESTIMONIAL ────────────────────────────── */
.testimonial-section { padding: 100px 0; background: var(--earth-deep); text-align: center; }
.testimonial-section .eyebrow { color: var(--stone); }
.testimonial-quote {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px);
  font-weight: 300; font-style: italic; line-height: 1.4;
  color: var(--white); max-width: 820px; margin: 0 auto 36px;
}
.testimonial-author { font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.40); }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.testimonial-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.2s; }
.testimonial-dots span.active { background: var(--gold); }

/* ── CTA BANNER ─────────────────────────────── */
.cta-banner { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background: url('../images/3D (22).jpg') center/cover; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(26,20,16,0.78); }
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 300; color: var(--white); line-height: 1.08; margin-bottom: 20px; }
.cta-banner h2 em { font-style: italic; color: var(--stone); }
.cta-banner p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 44px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--ink); padding: 80px 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 20px; display: block; }
.footer-logo img { height: 90px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.38); max-width: 280px; }
.footer-col h5 { font-size: 10px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col ul a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.22); letter-spacing: 0.04em; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.13); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.40); transition: all 0.25s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-socials svg { width: 14px; height: 14px; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero { position: relative; height: 58vh; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,.80) 0%, rgba(26,20,16,.30) 60%, rgba(26,20,16,.15) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 60px 72px; }
.page-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.page-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(44px,5.5vw,76px); font-weight: 300; color: var(--white); line-height: 1.06; letter-spacing: -.01em; }
.page-hero h1 em { font-style: italic; color: var(--stone); }

/* ── SERVICES PAGE ───────────────────────────── */
.page-hero-services { background: url('../images/3D (23).jpg') center/cover no-repeat; position: absolute; inset: 0; }
.services-intro { padding: 80px 0; background: var(--cream); border-bottom: 1px solid rgba(26,20,16,.07); }
.services-intro .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.services-intro h2 { font-family: var(--font-display); font-size: clamp(30px,3vw,42px); font-weight: 300; color: var(--ink); line-height: 1.2; margin-bottom: 18px; }
.services-intro h2 em { font-style: italic; color: var(--earth); }
.services-intro p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(26,20,16,.62); margin-bottom: 14px; }
.services-nav-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 10px 20px; border: 1px solid rgba(26,20,16,.15); color: rgba(26,20,16,.60); transition: all .25s; cursor: pointer; background: transparent; }
.pill:hover, .pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.service-block { padding: 100px 0; }
.service-block:nth-child(even) { background: var(--cream); }
.service-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-block-inner.reverse { direction: rtl; }
.service-block-inner.reverse > * { direction: ltr; }
.service-img { position: relative; overflow: hidden; }
.service-img img { width: 100%; height: 500px; object-fit: cover; transition: transform .8s var(--ease); }
.service-img:hover img { transform: scale(1.04); }
.service-img-tag { position: absolute; top: 28px; left: 28px; background: rgba(26,20,16,.75); backdrop-filter: blur(10px); padding: 8px 18px; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.service-number { font-family: var(--font-display); font-size: 80px; font-weight: 300; color: rgba(26,20,16,.07); line-height: 1; margin-bottom: -8px; letter-spacing: -.02em; }
.service-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.service-text h2 { font-family: var(--font-display); font-size: clamp(32px,3.2vw,46px); font-weight: 300; color: var(--ink); line-height: 1.12; margin-bottom: 20px; }
.service-text h2 em { font-style: italic; color: var(--earth); }
.service-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(26,20,16,.60); margin-bottom: 16px; }
.service-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 10px; }
.service-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; font-weight: 300; color: rgba(26,20,16,.70); }
.service-feature::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.mini-process { background: var(--charcoal); padding: 80px 0; }
.mini-process-header { text-align: center; margin-bottom: 56px; }
.mini-process-header span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 16px; }
.mini-process-header h2 { font-family: var(--font-display); font-size: clamp(32px,3.5vw,48px); font-weight: 300; color: var(--white); line-height: 1.1; }
.mini-process-header h2 em { font-style: italic; color: var(--stone); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); }
.process-step-mini { background: var(--charcoal); padding: 40px 32px; transition: background .3s; }
.process-step-mini:hover { background: rgba(255,255,255,.04); }
.step-n { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: rgba(255,255,255,.10); line-height: 1; margin-bottom: 16px; }
.process-step-mini h4 { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--white); margin-bottom: 12px; }
.process-step-mini p { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.38); }
.services-cta-bar { background: var(--earth-deep); padding: 72px 0; text-align: center; }
.services-cta-bar h2 { font-family: var(--font-display); font-size: clamp(36px,4vw,54px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.services-cta-bar h2 em { font-style: italic; color: var(--stone); }
.services-cta-bar p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.50); margin-bottom: 36px; }
.cta-bar-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY PAGE ────────────────────────────── */
.page-header { padding: 160px 0 72px; background: var(--cream); border-bottom: 1px solid rgba(26,20,16,.07); }
.page-header-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.page-header-text .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.page-header-text .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-header-text h1 { font-family: var(--font-display); font-size: clamp(44px,5.5vw,72px); font-weight: 300; color: var(--ink); line-height: 1.06; }
.page-header-text h1 em { font-style: italic; color: var(--earth); }
.page-header-desc { max-width: 380px; font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(26,20,16,.58); flex-shrink: 0; }
.gallery-filters { padding: 40px 0; background: var(--warm-white); border-bottom: 1px solid rgba(26,20,16,.07); position: sticky; top: 88px; z-index: 100; backdrop-filter: blur(12px); }
.filter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.filter-group { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn { font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 9px 18px; border: 1px solid rgba(26,20,16,.15); background: transparent; color: rgba(26,20,16,.55); cursor: pointer; transition: all .22s; }
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-count { font-size: 13px; font-weight: 300; color: rgba(26,20,16,.40); white-space: nowrap; }
.gallery-section { padding: 60px 0 100px; }
.gallery-grid { columns: 3; column-gap: 8px; }
.gallery-item { break-inside: avoid; margin-bottom: 8px; position: relative; overflow: hidden; cursor: pointer; display: block; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,20,16,.80) 0%,transparent 60%); opacity: 0; transition: opacity .4s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; transform: translateY(12px); opacity: 0; transition: transform .4s var(--ease),opacity .4s; }
.gallery-item:hover .gallery-item-info { transform: translateY(0); opacity: 1; }
.gallery-item-tag { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.gallery-item-title { font-family: var(--font-display); font-size: 20px; font-weight: 300; color: var(--white); line-height: 1.2; }
.gallery-item-loc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.55); margin-top: 4px; }
.featured-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 8px; }
.featured-large { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 16/9; }
.featured-large img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.featured-large:hover img { transform: scale(1.04); }
.featured-large .gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,20,16,.80) 0%,transparent 60%); opacity: 0; transition: opacity .4s; }
.featured-large:hover .gallery-item-overlay { opacity: 1; }
.featured-large .gallery-item-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; transform: translateY(12px); opacity: 0; transition: transform .4s var(--ease),opacity .4s; }
.featured-large:hover .gallery-item-info { transform: translateY(0); opacity: 1; }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 88px); margin-top: 88px; }
.contact-left { background: var(--charcoal); padding: 100px 80px 80px; display: flex; align-items: flex-start; }
.contact-left-content { width: 100%; }
.contact-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.contact-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.contact-left h1 { font-family: var(--font-display); font-size: clamp(42px,4.5vw,64px); font-weight: 300; color: var(--white); line-height: 1.06; margin-bottom: 24px; }
.contact-left h1 em { font-style: italic; color: var(--stone); }
.contact-left > .contact-left-content > p { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.48); margin-bottom: 48px; max-width: 360px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-item dt { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 4px; }
.contact-info-item dd { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.70); }
.contact-info-item dd a { color: rgba(255,255,255,.70); transition: color .2s; }
.contact-info-item dd a:hover { color: var(--gold); }
.contact-promise { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); padding: 24px 28px; border-left: 2px solid var(--gold); }
.contact-promise p { font-size: 13.5px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.48); font-style: italic; }
.contact-right { padding: 100px 80px 80px; background: var(--warm-white); overflow-y: auto; }
.form-header { margin-bottom: 48px; }
.form-header h2 { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 12px; }
.form-header h2 em { font-style: italic; color: var(--earth); }
.form-header p { font-size: 14px; font-weight: 300; color: rgba(26,20,16,.55); line-height: 1.7; }
.estimate-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(26,20,16,.50); }
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font-body); font-size: 14px; font-weight: 300;
  color: var(--ink); background: transparent;
  border: none; border-bottom: 1px solid rgba(26,20,16,.15);
  padding: 12px 0; outline: none; transition: border-color .25s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(26,20,16,.30); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239E8B72' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; cursor: pointer; }
.form-select option { background: var(--warm-white); color: var(--ink); }
.form-textarea { resize: vertical; min-height: 100px; border: 1px solid rgba(26,20,16,.12); padding: 14px; background: rgba(26,20,16,.02); }
.form-textarea:focus { border-color: var(--gold); }
.budget-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.budget-opt { position: relative; }
.budget-opt input { position: absolute; opacity: 0; pointer-events: none; }
.budget-opt label { display: block; padding: 11px 12px; text-align: center; font-size: 12px; font-weight: 500; letter-spacing: .08em; border: 1px solid rgba(26,20,16,.12); color: rgba(26,20,16,.55); cursor: pointer; transition: all .22s; }
.budget-opt input:checked + label { background: var(--ink); color: var(--white); border-color: var(--ink); }
.budget-opt label:hover { border-color: var(--ink); color: var(--ink); }
.timeline-options { display: flex; flex-wrap: wrap; gap: 8px; }
.tl-opt { position: relative; }
.tl-opt input { position: absolute; opacity: 0; pointer-events: none; }
.tl-opt label { display: block; padding: 9px 16px; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; border: 1px solid rgba(26,20,16,.12); color: rgba(26,20,16,.55); cursor: pointer; transition: all .22s; }
.tl-opt input:checked + label { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tl-opt label:hover { border-color: var(--ink); color: var(--ink); }
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-check input { position: absolute; opacity: 0; pointer-events: none; }
.checkmark { width: 18px; height: 18px; border: 1px solid rgba(26,20,16,.25); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.form-check input:checked ~ .checkmark { background: var(--ink); border-color: var(--ink); }
.form-check input:checked ~ .checkmark::after { content: ''; width: 5px; height: 9px; border-right: 1.5px solid var(--white); border-bottom: 1.5px solid var(--white); transform: rotate(45deg) translateY(-1px); }
.check-label { font-size: 13px; font-weight: 300; line-height: 1.6; color: rgba(26,20,16,.60); }
.check-label a { color: var(--gold); transition: color .2s; }
.form-submit { margin-top: 36px; }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; padding: 20px; background: var(--ink); color: var(--white); border: none; cursor: pointer; transition: background .35s var(--ease); }
.btn-submit:hover { background: var(--earth-deep); }
.btn-submit svg { width: 14px; height: 14px; transition: transform .3s; }
.btn-submit:hover svg { transform: translateX(5px); }
.form-note { font-size: 12px; font-weight: 300; color: rgba(26,20,16,.38); text-align: center; margin-top: 16px; line-height: 1.6; }
.form-success { display: none; text-align: center; padding: 60px 40px; }
.form-success.show { display: block; }
.success-icon { width: 64px; height: 64px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--gold); }
.success-icon svg { width: 28px; height: 28px; }
.form-success h3 { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--ink); margin-bottom: 12px; }
.form-success p { font-size: 15px; font-weight: 300; color: rgba(26,20,16,.55); line-height: 1.8; }
.faq-section { background: var(--cream); padding: 100px 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-header span { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.faq-header h2 { font-family: var(--font-display); font-size: clamp(32px,3.5vw,46px); font-weight: 300; color: var(--ink); line-height: 1.1; }
.faq-item { border-bottom: 1px solid rgba(26,20,16,.10); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; cursor: pointer; gap: 20px; }
.faq-q p { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--ink); line-height: 1.3; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); transition: transform .3s; }
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { font-size: 14.5px; font-weight: 300; line-height: 1.85; color: rgba(26,20,16,.60); padding-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .site-nav { padding: 0 40px; }
  .hero-content { padding: 0 40px 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-intro .container { grid-template-columns: 1fr; }
  .service-block-inner { gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .intro-strip .container { flex-direction: column; gap: 48px; }
  .intro-stats { padding-left: 0; border-left: none; border-top: 1px solid rgba(26,20,16,0.12); padding-top: 40px; }
  .featured-inner { grid-template-columns: 1fr; }
  .featured-text { padding: 56px 40px; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-1 { grid-column: span 2; grid-row: span 1; height: 260px; }
  .mosaic-2, .mosaic-3, .mosaic-4, .mosaic-5 { grid-column: span 1; height: 200px; }
  .hero-scroll { display: none; }
  .service-block-inner, .service-block-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-img img { height: 340px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 100px 40px 56px; }
  .gallery-grid { columns: 2; }
  .featured-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .site-nav { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .gallery-strip-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 100px 24px 56px; }
  .gallery-grid { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .budget-options { grid-template-columns: 1fr 1fr; }
  .cta-bar-actions { flex-direction: column; align-items: center; }
  .page-header-inner { flex-direction: column; }
  .faq-inner { gap: 32px; }
}
