/* ═══════════════════════════════════════
   GRAND VIEW CREATIVE — Main Stylesheet
   ═══════════════════════════════════════ */

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

:root {
  --gold:    #1a1a1a;   /* was gold, now near-black accent */
  --gold-lt: #f0f0f0;   /* light accent for dark backgrounds */
  --gold-dk: #000000;   /* strong black */

  --cream:   #f7f5f0;
  --cream-2: #edeae3;
  --white:   #ffffff;
  --black:   #0a0a0a;
  --char:    #1c1c1c;

  --text:    #111111;
  --text-2:  #4a4a48;
  --muted:   #8a8880;
  --border:  #e0dbd1;
  --border-2:#c8c3b8;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --r:     12px;
  --t:     0.3s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }
#hero em { color: var(--white); }
.contact-dark em { color: var(--white); }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
/* Gold flanking lines on centered eyebrows */
.section-header .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-header h2 { margin-bottom: 18px; }
.section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
/* Light version for dark sections */
.section-header.light h2,
.section-header.light .section-sub { color: rgba(255,255,255,0.9); }
.section-header.light .section-sub { color: rgba(255,255,255,0.5); }
.section-header.light .eyebrow { color: var(--gold-lt); }
.section-header.light .eyebrow::before,
.section-header.light .eyebrow::after { background: var(--gold-lt); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 34px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-gold { background: var(--black); color: var(--white); }
.btn-gold:hover { background: var(--char); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-light { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); width: 100%; justify-content: center; }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,245,240,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
  padding: 0 28px;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-wrap { display: block; line-height: 0; }
.logo-img { height: 52px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-2);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
}
.nav-cta:hover { background: var(--char) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 74px;
}

/* Aperture rings — echo the camera lens logo */
.aperture {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-52%);
  pointer-events: none;
}
.ap {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r1 { width: 780px; height: 780px; border: 1px solid rgba(201,168,76,0.08); }
.r2 { width: 624px; height: 624px; border: 2px solid rgba(201,168,76,0.14); }
.r3 { width: 468px; height: 468px; border: 1px solid rgba(201,168,76,0.1); background: rgba(201,168,76,0.02); }
.r4 { width: 312px; height: 312px; border: none; background: rgba(201,168,76,0.04); }
.r5 { width: 156px; height: 156px; border: none; background: rgba(201,168,76,0.06); }

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 40px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.label-line {
  display: block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
#hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.stat-div {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ── MARQUEE TICKER ── */
.marquee-strip {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-track .mdot { color: rgba(255,255,255,0.25); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services {
  padding: 120px 0;
  background: var(--cream);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.svc-card {
  position: relative;
  background: var(--white);
  padding: 48px 44px;
  overflow: hidden;
  transition: background var(--t);
}
.svc-card:hover { background: #fdfaf4; }
.featured-svc { background: linear-gradient(160deg, #fdf9ee 0%, var(--white) 70%); }

.svc-bg-num {
  position: absolute;
  bottom: -20px; right: -8px;
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.svc-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.svc-icon {
  width: 48px; height: 48px;
  background: rgba(154,122,40,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  margin-bottom: 24px;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { color: var(--text); margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  font-size: 0.84rem;
  color: var(--text-2);
  padding-left: 14px;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: 120px 0;
  background: var(--char);
}
.port-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-family: var(--sans);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.bento-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.bento-item.b-tall  { grid-row: span 2; }
.bento-item.b-wide  { grid-column: span 2; }
.bento-item.hidden  { display: none; }

.bento-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s ease;
}
.bento-item:hover .bento-bg { transform: scale(1.05); }
.bento-emoji { font-size: 2.8rem; opacity: 0.3; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--black);
  transition: transform var(--t);
}
.bento-item:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }

.bento-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--t);
}
.bento-item:hover .bento-info { opacity: 1; transform: translateY(0); }
.bento-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.bento-info p { font-size: 0.9rem; color: var(--white); font-family: var(--serif); }

/* ── PROCESS ── */
#process {
  padding: 120px 0;
  background: var(--cream-2);
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 48px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.ps-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { color: var(--text); margin-bottom: 12px; }
.process-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.ps-arrow {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.ps-arrow svg { width: 40px; height: 14px; }

/* ── PRICING ── */
#pricing {
  padding: 120px 0;
  background: var(--black);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 36px;
}
.pricing-card {
  position: relative;
  background: var(--char);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 40px 32px;
  transition: border-color var(--t);
  display: flex;
  flex-direction: column;
}
.pricing-card .btn {
  margin-top: auto;
}
.pricing-card:hover { border-color: rgba(201,168,76,0.3); }
.pc-featured {
  background: rgba(201,168,76,0.06);
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: 0 16px 64px rgba(201,168,76,0.14);
}
.pc-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-tier {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.pc-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.pc-from { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.pc-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pc-desc { color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 28px; line-height: 1.65; }
.pc-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pc-features li { font-size: 0.88rem; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 10px; }
.pc-features li.off { color: rgba(255,255,255,0.2); }
.ck { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.28);
  max-width: 600px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 120px 0;
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.testi-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testi-attr { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── ABOUT ── */
#about {
  padding: 120px 0;
  background: var(--cream-2);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left .eyebrow { margin-bottom: 20px; }
.about-left h2 { margin-bottom: 24px; }
.about-left p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.badge {
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* Pull quote */
.pull-quote {
  position: relative;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  padding: 32px 32px 32px 40px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 32px;
}
.pq-mark {
  font-size: 5rem;
  line-height: 0;
  position: absolute;
  top: 42px; left: 12px;
  color: var(--gold);
  opacity: 0.25;
  font-style: normal;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--t);
}
.team-card:hover { border-color: var(--gold); }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.team-card h4 { font-size: 0.92rem; color: var(--text); margin-bottom: 2px; }
.team-card p { font-size: 0.78rem; color: var(--muted); }

/* ── CONTACT ── */
#contact { padding: 0; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
}
.contact-dark {
  background: var(--black);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-dark .eyebrow { color: var(--gold-lt); margin-bottom: 20px; }
.contact-dark h2 { color: var(--white); margin-bottom: 20px; line-height: 1.15; }
.contact-dark > p { color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 44px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}
.cd-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.contact-light {
  background: var(--white);
  padding: 100px 64px;
  display: flex;
  align-items: center;
}

/* ── FORM ── */
form { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
label { font-size: 0.8rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.02em; }
input, select, textarea {
  background: var(--cream);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.93rem;
  padding: 13px 16px;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
  outline: none;
  resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--border-2); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
select { appearance: none; cursor: pointer; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,160,67,0.07);
  border: 1px solid rgba(46,160,67,0.28);
  color: #2a7d42;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.88rem;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo-wrap { height: 52px; }
.footer-brand .logo-img { height: 60px; }
.footer-logo-img { filter: none; }
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.32);
  max-width: 220px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.87rem; color: rgba(255,255,255,0.44); transition: color var(--t); }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--t);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.24); }

/* ═══════════════════════════════════════
   LOGO INTEGRATION STYLES
   ═══════════════════════════════════════ */

/* ── New logo is pure B&W with no tagline — show in full, no clipping needed ── */

/* ── HERO brand panel ── */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
}
.hero-text { flex: 1; min-width: 0; }
.hero-brand {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Subtle white glow behind the B&W logo on dark hero */
.hero-logo-glow {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.logo-clip-hero {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 32px 80px rgba(0,0,0,0.65);
}
.hero-logo-img {
  height: 320px;
  width: auto;
  display: block;
  border-radius: 14px;
}

/* ── SECTION LOGO DIVIDER ── */
.logo-divider {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--cream);
  padding: 16px 40px;
}
.ld-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 40%, var(--border) 60%, transparent);
}
.logo-clip-sm {
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.logo-clip-sm img {
  height: 60px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* ── ABOUT logo feature ── */
.about-logo-feature {
  text-align: center;
  margin-bottom: 0;
}
.logo-clip-about {
  display: inline-block;
  width: 100%;
}
.logo-clip-about img {
  height: 420px;
  width: 100%;
  object-fit: contain;
  display: block;
}
.about-logo-caption {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-top: 14px;
}

/* ── CONTACT dark panel logo ── */
.contact-logo-display {
  margin-bottom: 36px;
}
.logo-clip-contact {
  border-radius: 10px;
  display: inline-block;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 16px 48px rgba(0,0,0,0.5);
}
.logo-clip-contact img {
  height: 140px;
  width: auto;
  display: block;
  border-radius: 10px;
}

/* ── FOOTER logo banner — cream strip, black border (matches B&W logo) ── */
.footer-logo-banner {
  background: var(--cream);
  border-bottom: 3px solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 28px 44px;
  gap: 16px;
}
.logo-clip-footer {
  border-radius: 16px;
  display: inline-block;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.logo-clip-footer:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 28px 80px rgba(0,0,0,0.14);
}
.logo-clip-footer img {
  height: 220px;
  width: auto;
  display: block;
  border-radius: 16px;
}
.footer-banner-tagline {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   WIDE SKYLINE LOGO
   ═══════════════════════════════════════ */

/* Banner strip (inner pages — cream, sits under the fixed navbar) */
.page-wide-logo {
  background: var(--cream);
  padding-top: 74px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.page-wide-logo img {
  max-width: 720px;
  width: 88%;
  height: auto;
  display: block;
  padding: 28px 0 20px;
}
/* Remove double top-padding when wide logo precedes a page-header */
.page-wide-logo + .page-header { padding-top: 0; }

/* Footer banner (all pages) */
.wide-logo-footer {
  max-width: 540px;
  width: 82%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.wide-logo-footer:hover { transform: scale(1.02); opacity: 0.85; }

/* Section divider (home page) */
.wide-divider-logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   INNER PAGE STYLES
   ═══════════════════════════════════════ */

/* Active nav link */
.nav-links a.nav-active {
  color: var(--black) !important;
  font-weight: 600;
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
/* Don't underline the CTA when active */
.nav-cta.nav-active { color: var(--white) !important; }
.nav-cta.nav-active::after { display: none; }

/* Page header (dark, replaces hero on inner pages) */
.page-header {
  position: relative;
  background: var(--black);
  padding-top: 74px;
  overflow: hidden;
  text-align: center;
}
.page-header .aperture { opacity: 0.6; }
.page-header-inner {
  position: relative;
  z-index: 1;
  padding: 80px 28px 72px;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.ph-rule {
  width: 56px; height: 2px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 20px;
}
.page-header-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Generic page section */
.page-section { padding: 100px 0; background: var(--cream); }

/* Team full cards */
.team-cards-full {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.team-card-full {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  transition: border-color var(--t), box-shadow var(--t);
}
.team-card-full:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.08);
}
.tcf-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.tcf-info h3 { color: var(--text); margin-bottom: 6px; }
.tcf-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 16px;
}
.tcf-bio { color: var(--muted); line-height: 1.75; font-size: 0.95rem; }

/* Pricing page includes grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.inc-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--t), transform var(--t);
}
.inc-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.inc-icon {
  width: 52px; height: 52px;
  background: rgba(154,122,40,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold-dk);
}
.inc-icon svg { width: 22px; height: 22px; }
.inc-item h4 { color: var(--text); margin-bottom: 10px; }
.inc-item p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* Page CTA section */
.page-cta {
  background: var(--black);
  padding: 80px 28px;
  text-align: center;
}
.page-cta h2 { color: var(--white); margin-bottom: 14px; }
.page-cta p { color: rgba(255,255,255,0.45); margin-bottom: 32px; font-size: 1rem; }

/* Contact full-height on contact.html */
.contact-full { min-height: calc(100vh - 74px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-dark, .contact-light { padding: 72px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 36px; }
  .pc-featured { transform: none; }
  .process-steps { flex-direction: column; gap: 0; }
  .ps-arrow { transform: rotate(90deg); margin: 8px 0; }
  .bento-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .bento-item.b-tall, .bento-item.b-wide { grid-column: span 1; grid-row: span 1; }
  .bento-grid .bento-item { height: 240px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: rgba(247,245,240,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 28px; color: var(--text-2) !important; }
  .nav-cta { margin: 8px 28px 0; text-align: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-div { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .aperture { display: none; }
  .hero-brand { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid .bento-item { height: 200px; }
}

@media (max-width: 480px) {
  #services, #portfolio, #process, #pricing,
  #testimonials, #about { padding: 80px 0; }
  .contact-dark, .contact-light { padding: 60px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}
