/* ═══════════════════════════════════════
   TWO FRIENDS PHOTOGRAPHY — style.css
   Theme: Muted Dark Forest Green
═══════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #1e2018;
  --bg-surface:   #252a20;
  --bg-mid:       #2e342a;
  --gold:         #a89070;
  --gold-mid:     rgba(168,144,112,0.4);
  --gold-soft:    rgba(168,144,112,0.15);
  --text:         #f0ede6;
  --text-muted:   #7a8070;
  --text-dim:     rgba(240,237,230,0.5);
  --border:       rgba(168,144,112,0.15);
  --border-mid:   rgba(168,144,112,0.3);
  --cream:        #f5f0e8;
  --ink:          #1a1c16;
  --ink-mid:      #2e2e28;
  --font:         'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.centered { text-align: center; }

/* ── Section ornament ── */
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 1rem; }
.ornament-line { width: 28px; height: 1px; background: rgba(168,144,112,0.35); }
.ornament-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); opacity: 0.7; flex-shrink: 0; }
.section-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: block; }
.section-title { font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 200; letter-spacing: 0.06em; line-height: 1.3; color: var(--text); margin-bottom: 2.5rem; }

/* ── Corner brackets ── */
.service-card, .testimonial { position: relative; }
.service-card-corners, .testimonial-corners { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.sc-tl, .sc-tr, .sc-bl, .sc-br { position: absolute; width: 14px; height: 14px; opacity: 0; transition: opacity 0.3s ease; }
.sc-tl { top: 8px; left: 8px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.sc-tr { top: 8px; right: 8px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.sc-bl { bottom: 8px; left: 8px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.sc-br { bottom: 8px; right: 8px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.service-card:hover .sc-tl, .service-card:hover .sc-tr, .service-card:hover .sc-bl, .service-card:hover .sc-br,
.testimonial:hover .sc-tl, .testimonial:hover .sc-tr, .testimonial:hover .sc-bl, .testimonial:hover .sc-br { opacity: 1; }

/* ── Buttons ── */
.btn-inquire { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); border: 1px solid var(--border-mid); padding: 7px 18px; transition: all 0.3s ease; }
.btn-inquire:hover { border-color: var(--gold); color: var(--gold); }
.btn-text { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold-mid); padding-bottom: 3px; transition: all 0.3s ease; display: inline-block; margin-top: 0.5rem; }
.btn-text:hover { opacity: 0.75; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); border: 1px solid var(--border-mid); padding: 14px 40px; transition: border-color 0.35s ease, color 0.35s ease, padding 0.35s ease; }
.btn-outline::after { content: '→'; opacity: 0; width: 0; overflow: hidden; transform: translateX(-6px); transition: width 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); padding-right: 32px; }
.btn-outline:hover::after { opacity: 1; width: 14px; transform: translateX(0); }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 16px 44px; transition: background 0.35s ease, color 0.35s ease, padding 0.35s ease; }
.btn-primary::after { content: '→'; opacity: 0; width: 0; overflow: hidden; transform: translateX(-6px); transition: width 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.btn-primary:hover { background: var(--text); color: var(--bg); padding-right: 36px; }
.btn-primary:hover::after { opacity: 1; width: 14px; transform: translateX(0); }

/* ── Scroll fade-in ── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 50px; height: 100px; background: rgba(30,32,24,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: background 0.4s ease; }
.site-header.scrolled { background: rgba(30,32,24,0.99); height: 72px; }
.site-header.scrolled .header-logo img { height: 50px; }
.header-left { display: flex; align-items: center; gap: 24px; }
.header-logo img { height: 70px; width: auto; }
.ig-icon { width: 18px; height: 18px; fill: var(--text-muted); transition: fill 0.3s ease; }
.ig-icon:hover { fill: var(--gold); }
.header-nav { display: flex; gap: 40px; }
.header-nav a { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s ease; position: relative; }
.header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-muted); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: var(--bg-surface); z-index: 200; display: flex; flex-direction: column; justify-content: center; gap: 32px; padding: 60px 40px; border-left: 1px solid var(--border); transition: right 0.4s ease; }
.mobile-nav.open { right: 0; }
.mobile-nav a { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s ease; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-inquire { border: 1px solid var(--border-mid) !important; padding: 10px 20px; text-align: center; margin-top: 10px; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 199; }
.mobile-nav-overlay.open { display: block; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.03); transition: opacity 1.4s ease, transform 6s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,32,24,0.3) 0%, rgba(30,32,24,0.15) 50%, rgba(30,32,24,0.7) 100%); z-index: 1; }
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.hero-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.hero-title { font-size: clamp(2.2rem, 5.5vw, 4.5rem); font-weight: 200; letter-spacing: 0.14em; color: var(--text); margin-bottom: 1.2rem; line-height: 1.15; }
.hero-sub { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); }
.hero-dots { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 10px; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text-dim); cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ══════════════════════════════════════
   WHO WE ARE
══════════════════════════════════════ */
.who-outer { background: var(--bg); padding: 80px 48px; }
.who-frame-outer { max-width: 1100px; margin: 0 auto; border: 1px solid #3d3a32; padding: 5px; position: relative; }
.who-frame-inner { border: 1px solid rgba(168,144,112,0.3); overflow: hidden; position: relative; }
.who-corner { position: absolute; width: 18px; height: 18px; z-index: 10; }
.who-corner svg { display: block; }
.who-corner-tl { top: -1px; left: -1px; }
.who-corner-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.who-corner-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.who-corner-br { bottom: -1px; right: -1px; transform: scale(-1); }
.who-split { display: flex; width: 100%; min-height: 640px; }
.who-split-left { flex: 0 0 46%; position: relative; overflow: hidden; background: var(--bg); }
.who-split-left img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.8s ease; }
.who-split-left:hover img { transform: scale(1.03); }
.who-split-right { flex: 1; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 5rem 4.5rem; position: relative; }
.who-content { max-width: 440px; width: 100%; position: relative; }
.who-ornament { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.who-ornament-line { flex: 1; height: 1px; background: rgba(168,144,112,0.35); max-width: 28px; }
.who-ornament-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); opacity: 0.7; flex-shrink: 0; }
.who-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-left: 4px; }
.who-headline { font-size: 2.9rem; font-weight: 200; letter-spacing: 0.01em; line-height: 1.15; color: var(--ink); margin: 0 0 1.4rem; }
.who-subheading { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: #7c8c6a; margin: 0 0 1.8rem; }
.who-divider { display: flex; align-items: center; gap: 10px; margin-bottom: 1.8rem; width: 100%; }
.who-divider-line { flex: 1; height: 1px; background: rgba(168,144,112,0.5); }
.who-divider-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(168,144,112,0.5); flex-shrink: 0; }
.who-body { font-size: 0.875rem; font-weight: 300; line-height: 2.1; letter-spacing: 0.04em; color: var(--ink-mid); margin: 0 0 2.2rem; }
.who-tagline { font-size: 0.75rem; font-weight: 300; font-style: italic; letter-spacing: 0.14em; color: var(--gold); opacity: 0.85; }
.who-watermark { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(28,31,26,0.12); }

/* ══════════════════════════════════════
   LIVING GALLERY
══════════════════════════════════════ */
.portfolio-preview { padding: 80px 48px; background: var(--bg-surface); border-top: 1px solid var(--border); }
.preview-frame-outer { max-width: 1100px; margin: 0 auto; border: 1px solid #3d3a32; padding: 40px; position: relative; }
.preview-corner { position: absolute; width: 18px; height: 18px; z-index: 10; }
.preview-corner svg { display: block; }
.preview-corner-tl { top: -1px; left: -1px; }
.preview-corner-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.preview-corner-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.preview-corner-br { bottom: -1px; right: -1px; transform: scale(-1); }

.living-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 260px;
  gap: 6px;
}

.lg-cell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168,144,112,0.2);
  cursor: pointer;
  background: var(--bg);
}
.lg-cell.lg-tall { grid-row: span 2; }
.lg-cell.lg-wide { grid-column: span 2; }

.lg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease, transform 0.6s ease;
}
.lg-img.fading-out { opacity: 0; }
.lg-img.fading-in { opacity: 1; }

.lg-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,32,24,0.2);
  transition: background 0.4s ease;
  z-index: 1;
  pointer-events: none;
}
.lg-cell:hover::after { background: rgba(30,32,24,0); }
.lg-cell:hover { border-color: rgba(168,144,112,0.6); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(14,16,12,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid rgba(168,144,112,0.3); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color 0.3s ease; z-index: 1000; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 24px; right: 32px; font-size: 1.4rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { padding: 110px 60px; background: var(--bg); border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 1rem; }
.service-card { display: block; cursor: pointer; }
.service-img { height: 340px; overflow: hidden; margin-bottom: 1.4rem; position: relative; }
.service-img::after { content: ''; position: absolute; inset: 0; background: rgba(30,32,24,0.25); transition: background 0.5s ease; }
.service-card:hover .service-img::after { background: rgba(30,32,24,0.05); }
.service-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.service-card:hover .service-img-inner { transform: scale(1.05); }
.service-card h3 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; transition: color 0.3s ease; }
.service-card:hover h3 { color: var(--gold); }
.service-card p { font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em; color: var(--text-muted); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { padding: 110px 60px; background: var(--bg-mid); border-top: 1px solid var(--border); }
.testimonials-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 1rem; }
.testimonial { padding: 48px 40px; background: var(--bg-surface); display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--border); transition: border-color 0.3s ease; }
.testimonial:hover { border-color: var(--gold-mid); }
.quote { font-size: 0.82rem; font-weight: 300; font-style: italic; line-height: 2.1; color: var(--text-muted); }
.quote::before { content: '\201C'; font-size: 2.5rem; font-weight: 200; color: var(--gold); line-height: 0; vertical-align: -0.6rem; margin-right: 4px; }
.attribution { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section { position: relative; min-height: 65vh; background-image: url('images/cta-bg.jpg'); background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--border); }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(20,22,18,0.65); z-index: 1; }
.cta-frame-outer { position: relative; z-index: 2; max-width: 700px; width: 90%; border: 1px solid rgba(168,144,112,0.3); padding: 5px; }
.cta-corner { position: absolute; width: 18px; height: 18px; z-index: 10; }
.cta-corner svg { display: block; }
.cta-corner-tl { top: -1px; left: -1px; }
.cta-corner-tr { top: -1px; right: -1px; transform: scaleX(-1); }
.cta-corner-bl { bottom: -1px; left: -1px; transform: scaleY(-1); }
.cta-corner-br { bottom: -1px; right: -1px; transform: scale(-1); }
.cta-overlay { position: absolute; inset: 0; background: rgba(20,22,18,0.72); z-index: 0; }
.cta-content { position: relative; z-index: 3; text-align: center; color: var(--text); padding: 60px 50px; }
.cta-content h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 200; letter-spacing: 0.07em; line-height: 1.25; margin-bottom: 1rem; }
.cta-sub { font-size: 0.72rem; font-weight: 300; letter-spacing: 0.14em; color: var(--text-dim); line-height: 2.1; margin-bottom: 2.5rem; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 40px; }
.stats-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 16px 20px; }
.stat-num { display: block; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 200; letter-spacing: 0.06em; color: var(--gold); line-height: 1; margin-bottom: 0.6rem; }
.stat-label { display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }
@media (max-width: 600px) { .stat-divider { display: none; } .stat-item { min-width: 140px; } }

/* ══════════════════════════════════════
   PROCESS FLOW
══════════════════════════════════════ */
.process-section { padding: 110px 60px; background: var(--bg); border-top: 1px solid var(--border); }
.process-steps { max-width: 1060px; margin: 0 auto; display: flex; align-items: flex-start; gap: 0; }
.process-step { flex: 1; text-align: center; padding: 0 20px; position: relative; }
.process-step-num { font-size: 0.5rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1.2rem; }
.process-step-icon { width: 48px; height: 48px; border: 1px solid var(--border-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; position: relative; z-index: 1; background: var(--bg); transition: border-color 0.3s; }
.process-step:hover .process-step-icon { border-color: var(--gold); }
.process-step-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.process-step-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); margin-bottom: 0.8rem; }
.process-step-desc { font-size: 0.7rem; font-weight: 300; line-height: 1.9; color: var(--text-muted); max-width: 160px; margin: 0 auto; }
.process-connector { flex: 0 0 40px; display: flex; align-items: center; justify-content: center; padding-top: 62px; }
.process-connector::before { content: ''; display: block; width: 100%; height: 1px; background: var(--border); }
@media (max-width: 768px) {
  .process-section { padding: 70px 20px; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { display: none; }
  .process-step { padding: 0; }
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter-strip { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 52px 40px; text-align: center; }
.newsletter-label { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.newsletter-title { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 200; letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.6rem; }
.newsletter-sub { font-size: 0.7rem; font-weight: 300; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; border: 1px solid var(--border-mid); transition: border-color 0.3s; }
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-input { flex: 1; background: transparent; border: none; outline: none; padding: 14px 20px; font-family: var(--font); font-size: 0.7rem; font-weight: 300; letter-spacing: 0.08em; color: var(--text); }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn { background: var(--gold); border: none; color: var(--bg); font-family: var(--font); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; padding: 14px 24px; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--text); }
.newsletter-note { font-size: 0.55rem; color: var(--text-dim); letter-spacing: 0.12em; margin-top: 1rem; }
@media (max-width: 600px) { .newsletter-form { flex-direction: column; } .newsletter-btn { padding: 14px; } }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); padding: 70px 40px 40px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-logo img { height: 56px; width: auto; opacity: 0.8; }
.footer-nav { display: flex; gap: 36px; }
.footer-nav a { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 28px; }
.footer-social a { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); transition: color 0.3s ease; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 0.58rem; letter-spacing: 0.18em; color: rgba(240,237,230,0.2); }

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-header { padding: 0 20px; height: 70px; }
  .header-logo img { height: 50px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .who-outer { padding: 40px 16px; }
  .who-split { flex-direction: column; min-height: auto; }
  .who-split-left { flex: none; height: 70vw; }
  .who-split-right { padding: 3rem 2rem; }
  .who-headline { font-size: 1.9rem; }
  .portfolio-preview { padding: 50px 16px; }
  .preview-frame-outer { padding: 20px; }
  .living-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, 180px); }
  .lg-cell.lg-tall { grid-row: span 1; }
  .lg-cell.lg-wide { grid-column: span 2; }
  .services-section { padding: 70px 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-img { height: 220px; }
  .testimonials-section { padding: 70px 20px; }
  .testimonial { padding: 36px 28px; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-social { flex-wrap: wrap; justify-content: center; }
  .cta-content { padding: 40px 24px; }
}