/* ========= DESIGN TOKENS ========= */
:root {
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --warm-gray: #E8E5DF;
  --mid-gray: #9A9590;
  --dark: #0D0D0D;
  --charcoal: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;
  --gold-muted: #C9A84C22;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;

  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.18);
  --radius: 2px;
}

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

/* ========= TYPOGRAPHY ========= */
.display-xl { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; }
.display-md { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.15; }
.eyebrow { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.body-lg { font-size: 1.1rem; line-height: 1.75; color: #4A4A4A; }
.body-md { font-size: 0.95rem; line-height: 1.7; color: #5A5A5A; }

/* ========= LAYOUT ========= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ========= PAGE SYSTEM ========= */
.page { display: none; }
.page.active { display: block; }

/* ========= NAVIGATION ========= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--warm-gray); }
nav.dark-nav { background: transparent; }
nav.dark-nav.scrolled { background: rgba(13,13,13,0.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; letter-spacing: 0.04em;
  display: flex; align-items: baseline; gap: 0.08em; cursor: pointer;
}
.logo span.mr { color: var(--gold); }
.logo span.jay { color: var(--dark); }
.logo span.shots { color: var(--dark); font-weight: 300; }
nav.dark-nav .logo span.jay,
nav.dark-nav .logo span.shots { color: var(--white); }
nav.dark-nav .logo span.mr { color: var(--gold-light); }
.logo sub { font-size: 0.45em; letter-spacing: 0.15em; color: var(--mid-gray); margin-left: 0.3em; font-family: var(--font-ui); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
nav.dark-nav .nav-link { color: rgba(255,255,255,0.8); }
nav.dark-nav .nav-link:hover, nav.dark-nav .nav-link.active { color: var(--gold-light); }
.nav-cta {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 24px; background: var(--gold); color: var(--white);
  transition: background var(--transition), transform var(--transition); border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; cursor: pointer; }
.hamburger span { height: 1.5px; background: currentColor; transition: var(--transition); display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--dark); z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.2rem; color: var(--white); }
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 1.5rem; cursor: pointer; z-index: 1101; }
.mobile-menu .btn-primary { width: 100%; justify-content: center; }

/* ========= BUTTONS ========= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 32px; background: var(--gold); color: var(--white);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border-radius: var(--radius);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid currentColor; color: inherit;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border-radius: var(--radius);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.service-option {
  width: 100%;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.service-option.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-primary.disabled,
.btn-primary[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}
.hero .btn-outline:hover,
.hero .btn-outline-dark:hover {
  border-color: var(--dark); background: rgba(255,255,255,0.95); color: var(--dark);
}
.btn-outline-dark {
  border-color: var(--dark); color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-arrow::after { content: '→'; font-size: 1rem; }

/* ========= GOLD DIVIDER ========= */
.gold-line { width: 48px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.gold-line-center { margin-left: auto; margin-right: auto; }

/* ========= HERO ========= */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1510 50%, #0D0D0D 100%);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45; transition: transform 8s ease;
  transform: scale(1.05);
}
.hero:hover .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding-top: var(--nav-h);
}
.hero-eyebrow { color: var(--gold-light); margin-bottom: 28px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.7; max-width: 520px; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll span { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-dot { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* ========= STATS ========= */
.stats-bar { background: var(--dark); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold); letter-spacing: -0.02em; }
.stat-label { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ========= SERVICES PREVIEW ========= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--warm-gray); }
.service-card {
  background: var(--white); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: transform var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 24px; }
.service-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.7; }
.service-arrow { margin-top: 24px; font-size: 0.75rem; font-family: var(--font-ui); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.service-arrow::after { content: '→'; }

/* ========= PORTFOLIO GRID ========= */
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.port-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.port-item:hover img { transform: scale(1.04); }
.port-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0); 
  display: flex; align-items: flex-end; padding: 24px;
  transition: background var(--transition);
}
.port-item:hover .port-overlay { background: rgba(0,0,0,0.4); }
.port-label {
  font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); opacity: 0; transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.port-item:hover .port-label { opacity: 1; transform: translateY(0); }
/* masonry layout */
.port-item:nth-child(1) { grid-column: 1/6; grid-row: 1/3; height: 480px; }
.port-item:nth-child(2) { grid-column: 6/9; grid-row: 1/2; height: 236px; }
.port-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; height: 236px; }
.port-item:nth-child(4) { grid-column: 6/9; grid-row: 2/3; height: 236px; }
.port-item:nth-child(5) { grid-column: 9/13; grid-row: 2/3; height: 236px; }
.port-item:nth-child(6) { grid-column: 1/5; grid-row: 3/4; height: 320px; }
.port-item:nth-child(7) { grid-column: 5/9; grid-row: 3/4; height: 320px; }
.port-item:nth-child(8) { grid-column: 9/13; grid-row: 3/4; height: 320px; }

/* ========= BEFORE/AFTER SLIDER ========= */
.ba-section { background: var(--off-white); }
.ba-container { max-width: 960px; margin: 0 auto; }
.ba-slider { position: relative; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow-card); user-select: none; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img-after { position: relative; width: 100%; }
.ba-img-after img { width: 100%; display: block; max-height: 500px; object-fit: cover; }
.ba-img-before {
  position: absolute; inset: 0; overflow: hidden;
  width: 50%;
  transition: none;
}
.ba-img-before img { position: absolute; top: 0; left: 0; width: 100%; max-height: none; object-fit: cover; height: 100%; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--white); cursor: ew-resize; display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.ba-handle-circle {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  font-size: 0.8rem; color: var(--dark); flex-shrink: 0;
}
.ba-labels { display: flex; justify-content: space-between; margin-top: 16px; }
.ba-label { font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); }

/* ========= TESTIMONIALS ========= */
.testimonials { background: var(--dark); overflow: hidden; }
.testimonial-track { display: flex; gap: 32px; overflow-x: auto; scrollbar-width: none; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px; min-width: 400px; flex-shrink: 0; scroll-snap-align: start;
  position: relative; transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: 0.3; position: absolute; top: 20px; left: 32px; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-ui); font-weight: 700; color: var(--white); font-size: 0.9rem; flex-shrink: 0; }
.author-name { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; color: var(--white); }
.author-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.testimonial-nav { display: flex; gap: 8px; margin-top: 32px; }
.t-dot { width: 24px; height: 2px; background: rgba(255,255,255,0.2); cursor: pointer; transition: background var(--transition); }
.t-dot.active { background: var(--gold); }

/* ========= FINAL CTA ========= */
.final-cta {
  background: var(--off-white); text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.cta-ctas { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ========= FAQ ========= */
.faq-item { border-bottom: 1px solid var(--warm-gray); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; gap: 16px;
}
.faq-icon { width: 24px; height: 24px; border: 1px solid var(--warm-gray); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: var(--transition); color: var(--gold); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); border-color: var(--gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 24px; color: #5A5A5A; line-height: 1.75; font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 400px; }

/* ========= PORTFOLIO PAGE ========= */
.filter-bar { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--warm-gray); background: transparent; color: var(--mid-gray);
  transition: var(--transition); cursor: pointer; border-radius: var(--radius);
}
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.portfolio-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pf-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pf-item:hover img { transform: scale(1.05); }
.pf-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity var(--transition);
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-overlay span { font-size: 1.5rem; color: var(--white); }
.pf-overlay p { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 2rem; cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--white); cursor: pointer; opacity: 0.6; padding: 20px; }
.lightbox-arrow:hover { opacity: 1; color: var(--gold); }
.lightbox-arrow.prev { left: 12px; }
.lightbox-arrow.next { right: 12px; }

/* ========= SERVICES PAGE ========= */
.services-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.svc-card {
  border: 1px solid var(--warm-gray); padding: 48px 40px;
  position: relative; overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition);
}
.svc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-hover); }
.svc-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.svc-card:hover .svc-card-accent { transform: scaleX(1); }
.svc-icon-lg { font-size: 2.5rem; margin-bottom: 20px; }
.svc-name { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 16px; }
.svc-description { color: #5A5A5A; line-height: 1.75; margin-bottom: 24px; font-size: 0.95rem; }
.svc-benefits { margin-bottom: 28px; }
.svc-benefits li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: #4A4A4A; padding: 6px 0; border-bottom: 1px solid var(--off-white); }
.svc-benefits li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.svc-pricing { margin-bottom: 28px; padding: 20px; background: var(--off-white); }
.svc-price-label { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 4px; }
.svc-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--dark); }
.svc-price span { font-size: 1rem; color: var(--mid-gray); font-weight: 300; }

/* ========= ABOUT PAGE ========= */
.about-hero { background: var(--dark); padding: 160px 0 100px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--white); padding: 24px;
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; text-align: center; line-height: 1.1;
}
.about-img-badge small { display: block; font-size: 0.7rem; font-family: var(--font-ui); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.why-card { padding: 32px; background: var(--off-white); transition: background var(--transition); }
.why-card:hover { background: var(--white); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; }
.why-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.why-text { font-size: 0.88rem; color: #5A5A5A; line-height: 1.7; }
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin: 0;
  padding: 0;
}
.services-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5A5A5A;
}
.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.team-section { background: var(--dark); }
.mission-card { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25); padding: 48px; text-align: center; }
.mission-card blockquote { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; font-style: italic; color: var(--white); line-height: 1.5; }
.mission-card cite { display: block; margin-top: 20px; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ========= CONTACT PAGE ========= */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap { }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 10px; }
.form-control {
  width: 100%; padding: 14px 16px; border: 1px solid var(--warm-gray); background: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: var(--radius); outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-success-banner {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.form-success-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.success-content {}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  animation: successBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes successBounce {
  0% { transform: scale(0.3); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.success-message {
  font-size: 1rem;
  line-height: 1.7;
  color: #5A5A5A;
  margin-bottom: 12px;
}
.success-contact {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-style: italic;
}

/* Bundles grid used on services.html to present 4 packages in a single row */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

/* Responsive breakpoints for bundles */
@media (max-width: 1100px) {
  .bundles-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .bundles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bundles-grid { grid-template-columns: 1fr; }
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9590' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { }
.contact-info-item { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--warm-gray); }
.contact-info-icon { width: 44px; height: 44px; border: 1px solid var(--warm-gray); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold); }
.contact-info-label { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: var(--dark); font-weight: 500; }
.ohio-map { margin-top: 32px; background: var(--off-white); border: 1px solid var(--warm-gray); padding: 32px; }
.ohio-map-title { font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 16px; }
.ohio-svg { width: 100%; }
.form-success { display: none; text-align: center; padding: 48px; border: 1px solid var(--gold); background: rgba(201,168,76,0.05); }
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.form-success p { color: #5A5A5A; }

/* ========= PAGE HERO (inner pages) ========= */
.page-hero {
  background: var(--dark); padding: 160px 0 80px;
  position: relative; overflow: hidden; min-height: 520px;
}
.page-hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0;
  background: radial-gradient(ellipse at top right, var(--gold) 0%, transparent 60%);
}
.page-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.45;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .body-lg { color: rgba(255,255,255,0.65); max-width: 560px; margin-top: 20px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--gold); }

/* ========= INSTAGRAM STRIP ========= */
.instagram-strip { background: var(--off-white); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.insta-item:hover img { transform: scale(1.05); filter: brightness(0.8); }
.insta-hover { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.insta-item:hover .insta-hover { opacity: 1; }
.insta-hover span { font-size: 1.5rem; }
.insta-handle { text-align: center; margin-top: 24px; font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--mid-gray); }
.insta-handle a { color: var(--dark); font-weight: 500; }

/* ========= FOOTER ========= */
footer { background: #080808; color: rgba(255,255,255,0.6); }
.footer-top { padding: 80px 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .logo { margin-bottom: 20px; font-size: 1.6rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 28px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); border-radius: 50%; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ========= ANIMATIONS ========= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .services-list { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-full { grid-template-columns: 1fr; }
  .port-item:nth-child(1) { grid-column: 1/8; }
  .port-item:nth-child(2) { grid-column: 8/13; }
  .port-item:nth-child(3) { grid-column: 1/6; }
  .port-item:nth-child(4) { grid-column: 6/13; }
  .port-item:nth-child(5) { grid-column: 1/7; }
  .port-item:nth-child(6) { grid-column: 7/13; }
  .port-item:nth-child(7) { grid-column: 1/7; }
  .port-item:nth-child(8) { grid-column: 7/13; }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 18px; max-width: 100%; }
  .nav-inner { justify-content: space-between; align-items: center; gap: 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  nav.dark-nav .hamburger span { background: var(--white); }
  nav.scrolled .hamburger span { background: var(--dark); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr !important; }
  .port-item { grid-column: auto !important; grid-row: auto !important; height: 200px !important; }
  .testimonial-card { min-width: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-success-banner { padding: 40px 24px; }
  .success-icon { width: 60px; height: 60px; font-size: 1.8rem; margin-bottom: 16px; }
  .success-title { font-size: 1.5rem; }
  .section { padding: 64px 0; }
  .about-img-badge { right: 0; bottom: -16px; }
  .page-hero { padding: 100px 0 50px; }
  .page-hero .body-lg, .page-hero h1 { max-width: 100%; }
  .breadcrumb { flex-wrap: wrap; gap: 8px; }
  .mobile-menu { padding: 48px 20px 24px; overflow-y: auto; }
  .mobile-menu.open { align-items: flex-start; justify-content: flex-start; padding-top: 80px; }
  .mobile-menu .nav-link { width: 100%; text-align: left; }
}

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .container-wide { padding: 0 24px; }
  .nav-inner { gap: 18px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .hero { min-height: 640px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero .body-lg, .page-hero h1 { max-width: 100%; }
}


@media (max-width: 768px) {
  .container, .container-wide { padding: 0 18px; }
  .nav-inner { align-items: center; gap: 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .portfolio-masonry { grid-template-columns: 1fr !important; }
  .testimonial-card { min-width: auto; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .container-wide, .container { max-width: 100%; }
  .page-hero .body-lg, .page-hero h1 { max-width: 100%; }
  .breadcrumb { flex-wrap: wrap; gap: 8px; }
  .mobile-menu { padding: 48px 20px 24px; overflow-y: auto; }
  .mobile-menu.open { align-items: flex-start; justify-content: flex-start; padding-top: 80px; }
  .mobile-menu .nav-link { width: 100%; text-align: left; }
}
