/* ============================================
   Lightning Studios — Editorial Photographer
   Waco · Central Texas
   ============================================ */

:root {
  --cream: #f7f1e6;
  --cream-2: #efe7d5;
  --ink: #14110d;
  --ink-2: #2a2520;
  --char: #3a3530;
  --gold: #c4a572;
  --gold-2: #a8895a;
  --warm: #d4a574;
  --line: rgba(20, 17, 13, 0.12);
  --line-light: rgba(247, 241, 230, 0.18);
  --shadow: 0 30px 60px -25px rgba(20, 17, 13, 0.4);
  --shadow-sm: 0 10px 30px -10px rgba(20, 17, 13, 0.25);
  --radius: 18px;
  --radius-lg: 28px;
  --max-w: 1320px;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: var(--ink); }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 1024px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
em { font-style: italic; color: var(--gold-2); font-family: var(--font-display); font-weight: 500; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ============================================
   Custom cursor
   ============================================ */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease), width .2s, height .2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--cream);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), width .25s, height .25s, opacity .25s;
}
.cursor.hover { transform: translate(-50%, -50%) scale(2.5); }
.cursor-follower.hover { width: 60px; height: 60px; opacity: 0.5; }
@media (max-width: 1024px) { .cursor, .cursor-follower { display: none; } }

/* ============================================
   Loader
   ============================================ */
.loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.l-mark {
  display: inline-block;
  font-size: 64px;
  animation: pulse 1s ease-in-out infinite;
  color: var(--gold);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}
.l-text {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ============================================
   Top bar
   ============================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: 0.5px;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-link {
  color: var(--gold);
  font-weight: 500;
  transition: opacity .2s;
}
.topbar-link:hover { opacity: 0.7; }
@media (max-width: 600px) {
  .topbar-inner span { font-size: 11px; }
  .topbar-inner { gap: 12px; }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 230, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(20, 17, 13, 0.06); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  font-size: 28px;
  color: var(--gold);
  display: inline-block;
  filter: drop-shadow(0 0 8px rgba(196, 165, 114, 0.3));
}
.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.logo-text span {
  font-style: italic;
  color: var(--ink-2);
  margin-left: 2px;
  font-weight: 400;
}
.logo-light .logo-text { color: var(--cream); }
.logo-light .logo-text span { color: rgba(247, 241, 230, 0.7); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--ink);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all .3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { transform: rotate(-45deg); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-size: 13px; font-weight: 500;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-light span { transition: transform .2s var(--ease); }
.btn-light:hover span { transform: translateY(3px); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 241, 230, 0.4);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 20px;
  font-size: 12px;
}
.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; flex-direction: column;
  color: var(--cream);
  overflow: hidden;
}

.hero-images {
  position: absolute; inset: 0;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease), transform 8s var(--ease);
  transform: scale(1.05);
}
.hero-img.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.55) 0%, rgba(20, 17, 13, 0.3) 40%, rgba(20, 17, 13, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; align-items: center;
  padding: 100px 0 60px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 500;
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
  max-width: 1100px;
}
.ht-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s var(--ease) forwards;
}
.ht-line:nth-child(1) { animation-delay: 0.1s; }
.ht-line:nth-child(2) { animation-delay: 0.3s; color: var(--gold); font-style: italic; font-weight: 300; }
.ht-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.ital {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(247, 241, 230, 0.85);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  animation: rise 1s var(--ease) 0.7s forwards;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s var(--ease) 0.9s forwards;
}

.hero-dots {
  position: absolute;
  bottom: 180px; right: 40px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dots button {
  width: 24px; height: 1px;
  background: rgba(247, 241, 230, 0.3);
  transition: all .4s var(--ease);
}
.hero-dots button.active {
  background: var(--gold);
  width: 36px;
}

.hero-strip {
  position: relative; z-index: 3;
  background: rgba(20, 17, 13, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-stats div {
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}
.hero-stats div:first-child { border-left: none; padding-left: 0; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stats span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(247, 241, 230, 0.6);
  margin-top: 8px;
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--gold);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  align-items: center;
}
.marquee-track span:nth-child(even) {
  color: var(--cream);
  font-size: 14px;
  font-style: normal;
  opacity: 0.4;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 140px 0; position: relative; }
.section-head { margin-bottom: 80px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  max-width: 1200px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-2);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px;
  color: var(--char);
  line-height: 1.6;
}

/* ============================================
   Gallery (asymmetric grid)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  grid-auto-rows: 180px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: none;
  background: var(--cream-2);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: saturate(0.95);
}
.g-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(20, 17, 13, 0.85));
  color: var(--cream);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
  transition: all .4s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }
.g-item figcaption span {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
}
.g-item figcaption em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.g-1 { grid-column: span 3; grid-row: span 2; }
.g-2 { grid-column: span 3; grid-row: span 3; }
.g-3 { grid-column: span 3; grid-row: span 3; }
.g-4 { grid-column: span 3; grid-row: span 2; }
.g-5 { grid-column: span 2; grid-row: span 2; }
.g-6 { grid-column: span 2; grid-row: span 2; }
.g-7 { grid-column: span 2; grid-row: span 2; }
.g-8 { grid-column: span 3; grid-row: span 2; }
.g-9 { grid-column: span 3; grid-row: span 2; }
.g-10 { grid-column: span 4; grid-row: span 2; }

/* ============================================
   About
   ============================================ */
.about { background: var(--cream-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px; align-items: center;
}
.about-imgs {
  position: relative;
  aspect-ratio: 1;
}
.a-img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.a-1 {
  width: 70%; height: 80%;
  top: 0; left: 0;
  background-image: url('images/05-steps-carry.jpg');
  background-size: cover; background-position: center;
  transform: rotate(-3deg);
}
.a-2 {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  background-image: url('images/04-wedding-dance.jpg');
  background-size: cover; background-position: center;
  transform: rotate(4deg);
  z-index: 2;
}
.a-signature {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: var(--cream);
  padding: 24px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 3;
  text-align: center;
  font-family: 'Brush Script MT', cursive;
  line-height: 1.1;
}
.a-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.a-signature strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  font-weight: 500;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 16px 0 28px;
}
.about-text p {
  font-size: 17px;
  color: var(--char);
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-text .btn { margin-top: 16px; }

/* ============================================
   Services
   ============================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all .4s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--cream);
}
.service.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service.featured .service-num { color: var(--gold); }
.service.featured h3 { color: var(--cream); }
.service.featured .service-tag { color: var(--gold); }
.service.featured p { color: rgba(247, 241, 230, 0.75); }
.service.featured ul li { color: rgba(247, 241, 230, 0.85); }
.service.featured ul li::before { background: var(--gold); }
.service.featured .service-price { color: var(--gold); }
.ribbon {
  position: absolute; top: -1px; right: 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 6px 6px;
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-2);
  margin-bottom: 16px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.service-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--char);
  margin-bottom: 20px;
}
.service p { font-size: 14px; color: var(--char); margin-bottom: 24px; line-height: 1.6; }
.service ul {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.service ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.service.featured ul li { border-color: rgba(255,255,255,0.08); }
.service ul li:last-child { border-bottom: none; }
.service ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 10px;
  color: var(--gold);
  font-size: 12px;
}
.service-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service.featured .service-foot { border-color: rgba(255,255,255,0.08); }
.service-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}

/* ============================================
   Process
   ============================================ */
.process { background: var(--cream-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-2);
  margin: 0 auto 20px;
  transition: all .3s var(--ease);
}
.step:hover .step-num {
  background: var(--ink);
  color: var(--gold);
  transform: rotate(360deg);
  border-color: var(--ink);
}
.step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.step p {
  font-size: 14px;
  color: var(--char);
  line-height: 1.6;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials { background: var(--cream); }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote {
  background: var(--cream-2);
  padding: 40px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: all .3s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.quote:nth-child(2) { background: var(--ink); color: var(--cream); }
.quote:nth-child(2) p { color: rgba(247, 241, 230, 0.9); }
.quote:nth-child(2) footer strong { color: var(--cream); }
.quote:nth-child(2) footer span { color: var(--gold); }
.quote:nth-child(2) .quote-mark { color: var(--gold); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.quote p {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
}
.quote footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex; flex-direction: column;
}
.quote:nth-child(2) footer { border-color: rgba(255,255,255,0.1); }
.quote footer strong { font-size: 14px; font-weight: 500; }
.quote footer span { font-size: 12px; color: var(--char); text-transform: uppercase; letter-spacing: 1.5px; }

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .eyebrow {
  color: var(--gold);
  border-color: var(--gold);
}
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 16px 0 24px;
}
.contact-text h2 em { color: var(--gold); }
.contact-text > p {
  font-size: 16px;
  color: rgba(247, 241, 230, 0.75);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-info {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 20px;
}
.contact-info li {
  display: flex; flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info li:last-child { border-bottom: none; }
.contact-info span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
}

.contact-form {
  background: rgba(247, 241, 230, 0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
}
.row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex; flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(247, 241, 230, 0.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(247, 241, 230, 0.3);
  font-style: italic;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}
.field select option { background: var(--ink); }
.contact-form .btn { margin-top: 8px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(247, 241, 230, 0.5);
  margin-top: 16px;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-top .logo { margin-bottom: 16px; }
.footer-top p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(247, 241, 230, 0.7);
  max-width: 480px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer a {
  display: block;
  color: rgba(247, 241, 230, 0.65);
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s, transform .2s;
}
.footer a:hover { color: var(--gold); transform: translateX(3px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(247, 241, 230, 0.4);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(20, 17, 13, 0.97);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: all .4s var(--ease);
  padding: 60px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  max-width: 90vw; max-height: 90vh;
}
#lbImg {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform .5s var(--ease);
}
.lightbox.open #lbImg { transform: scale(1); }
.lb-caption {
  text-align: center;
  color: var(--cream);
}
.lb-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  margin-bottom: 4px;
}
.lb-caption span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,255,255,0.05);
  color: var(--cream);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: grid; place-items: center;
  transition: all .2s;
  cursor: none;
}
.lb-close:hover, .lb-nav:hover {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
}
.lb-close { top: 30px; right: 30px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 30px; }
.lb-next { right: 30px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.1); }
@media (max-width: 720px) {
  .lightbox { padding: 30px; }
  .lb-close, .lb-nav { width: 40px; height: 40px; font-size: 18px; }
  .lb-close { top: 16px; right: 16px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ============================================
   Toast
   ============================================ */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--cream); color: var(--ink);
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px; font-weight: 500;
  z-index: 300;
  transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   Reveal animations
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 2; grid-row: span 2; }
  .g-4 { grid-column: span 2; grid-row: span 2; }
  .g-5, .g-6, .g-7 { grid-column: span 2; }
  .g-8, .g-9 { grid-column: span 2; }
  .g-10 { grid-column: span 4; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 100px 0; }
  .container { padding: 0 24px; }
  .nav-links {
    position: fixed; top: 82px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform .3s var(--ease);
    box-shadow: 0 20px 30px rgba(20, 17, 13, 0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border: none; }
  .nav-links a::after { display: none; }
  .nav-actions .btn-ghost-dark { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { padding: 80px 0 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats div:nth-child(3), .hero-stats div:nth-child(4) { border-left: none; padding-left: 0; }
  .hero-stats div:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
  .hero-stats div:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
  .hero-dots { display: none; }

  .section-head.split { grid-template-columns: 1fr; gap: 24px; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .g-1, .g-2, .g-3, .g-4 { grid-column: span 2; grid-row: span 2; }
  .g-5, .g-6, .g-7, .g-8, .g-9 { grid-column: span 1; grid-row: span 1; }
  .g-10 { grid-column: span 2; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-imgs { max-width: 480px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .topbar-inner span { display: none; }
  .topbar-inner { justify-content: center; }
  .nav { height: 70px; }
  .logo-text { font-size: 20px; }
  .nav-links { top: 70px; }
  .hero { min-height: 80vh; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { border-left: none !important; padding-left: 0 !important; border-top: 1px solid rgba(255,255,255,0.1) !important; padding-top: 16px; }
  .hero-stats div:first-child { border-top: none; padding-top: 0; }
  .hero-stats strong { font-size: 36px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10 { grid-column: span 1; grid-row: span 1; }
  .g-2, .g-3 { grid-row: span 2; }
  .g-4 { grid-row: span 1; }
}
