/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #eeece8;
  --mid-gray: #999490;
  --dark: #1a1a18;
  --accent: #c8a96e;
  --accent-dark: #a88a50;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--light-gray);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu ul a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--dark);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-placeholder span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,12,0.72) 0%,
    rgba(15,15,12,0.3) 60%,
    rgba(15,15,12,0.1) 100%
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 2.5rem 6rem 5vw;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.75rem;
  font-weight: 300;
  max-width: 400px;
  line-height: 1.7;
}

/* Light button variant for dark hero */
.btn-light {
  background: white;
  color: var(--dark);
  border-color: white;
}

.btn-light:hover {
  background: transparent;
  color: white;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 0 5vw;
  margin-top: auto;
  margin-bottom: 5rem;
  align-self: flex-end;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.work-placeholder span,
.about-image-placeholder span {
  font-size: 0.8rem;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn:hover {
  background: transparent;
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* ===== SECTION BASE ===== */
section {
  padding: 6rem 2.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 520px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

/* ===== SERVICES ===== */
#services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== WORK / PORTFOLIO ===== */
#work {
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 1rem;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  aspect-ratio: 3 / 4;
}

.work-item.tall {
  grid-row: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

.work-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.work-item:hover .work-placeholder {
  transform: scale(1.03);
}

.work-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(26,26,24,0.75) 0%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

/* Album always-visible label */
.album-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(15,15,12,0.82) 0%, transparent 100%);
}

.album-label-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.album-label-location {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.work-location {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}

.work-category {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.work-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ===== ABOUT ===== */
#about {
  background: var(--off-white);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-text .btn {
  margin-top: 1rem;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--white);
}

.contact-inner {
  max-width: 720px;
  text-align: center;
}

.contact-inner h2,
.contact-inner .section-label,
.contact-inner .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin-top: 2.5rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--mid-gray);
  margin-top: 1rem;
  text-align: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WORK PLAY BADGE ===== */
.work-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  padding-left: 3px;
  pointer-events: none;
  transition: background var(--transition), transform var(--transition);
  z-index: 1;
}

.work-item:hover .work-play-badge {
  background: rgba(200,169,110,0.85);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== SUB-ALBUM VIEW ===== */
#subAlbumView {
  opacity: 0;
  transition: opacity 0.35s ease;
}
#subAlbumView.visible {
  opacity: 1;
}

.sub-alb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.5rem 3rem 1.5rem;
  flex-shrink: 0;
}

.sub-alb-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.sub-alb-meta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.6rem;
}

.sub-alb-close {
  background: none;
  border: none;
  color: var(--mid-gray);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.sub-alb-close:hover { color: var(--dark); }

.sub-alb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  padding: 0 3rem 3rem;
  flex: 1;
}

.sub-alb-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--light-gray);
  height: calc((100vh - 180px) / 1);
  min-height: 320px;
}

.sub-alb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sub-alb-card:hover img {
  transform: scale(1.04);
}

.sub-alb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
  transition: background 0.4s ease;
}

.sub-alb-card:hover .sub-alb-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.sub-alb-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.75rem;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.sub-alb-card:hover .sub-alb-card-label {
  transform: translateY(0);
}

.sub-alb-card-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.sub-alb-card-count {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
  transition: color 0.3s;
}

.sub-alb-card:hover .sub-alb-card-count {
  color: var(--accent);
}

@media (max-width: 768px) {
  .sub-alb-header { padding: 2rem 1.5rem 1rem; }
  .sub-alb-grid { grid-template-columns: 1fr; padding: 0 1.5rem 2rem; gap: 0.4rem; }
  .sub-alb-card { height: 55vw; min-height: 220px; }
}

/* ===== ALBUM VIEW (white background) ===== */
#albumView {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 600;
  opacity: 0;
  transition: opacity 0.35s ease;
  flex-direction: row;
  overflow: hidden;
}
#albumView.visible { opacity: 1; }

.alv-photos {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: block;
  min-height: 0;
}

.alv-photo-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: var(--light-gray);
}
.alv-photo-item img,
.alv-photo-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.alv-photo-item:hover img { transform: scale(1.04); }

/* Video-only albums: single item centered vertically */
.alv-photos.alv-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

/* Sub-album selection: two full-height columns */
.alv-photos.alv-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: unset;
  gap: 0.4rem;
  padding: 0;
  overflow: hidden;
  align-content: unset;
  justify-content: unset;
  flex-direction: unset;
}
.alv-photos.alv-subgrid .alv-photo-item {
  aspect-ratio: unset;
  height: 100%;
  width: 100%;
}

/* Photo albums: 3-column masonry, vertical scroll */
.alv-photos.photo-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
}
.alv-masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.alv-masonry-col .alv-photo-item {
  aspect-ratio: unset;
  height: auto;
  width: 100%;
  display: block;
  cursor: pointer;
}
.alv-masonry-col .alv-photo-item img,
.alv-masonry-col .alv-photo-item video {
  position: relative;
  inset: unset;
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}
@media (max-width: 768px) {
  .alv-photos.photo-grid { /* 2 cols handled in JS */ }
}

.alv-photo-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.alv-photo-play span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
}

.alv-panel {
  width: 320px;
  flex-shrink: 0;
  border-left: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.alv-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.5;
}
.alv-close:hover { opacity: 1; }

.alv-back {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  padding: 0;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.alv-back:hover { color: var(--dark); }

/* Sub-album cards inside album view */
.alv-photo-item .alv-sub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  transition: background 0.4s;
}
.alv-photo-item:hover .alv-sub-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 65%, transparent 100%);
}
.alv-sub-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  transform: translateY(3px);
  transition: transform 0.3s ease;
}
.alv-photo-item:hover .alv-sub-label { transform: translateY(0); }
.alv-sub-name {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
}
.alv-sub-count {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
  transition: color 0.25s;
}
.alv-photo-item:hover .alv-sub-count { color: var(--accent); }

.alv-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}
.alv-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.alv-divider {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}
.alv-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  white-space: pre-line;
}
.alv-count {
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

@media (max-width: 768px) {
  #albumView { flex-direction: column; }
  .alv-panel {
    width: 100%;
    height: auto;
    position: relative;
    padding: 2rem 1.5rem 1.5rem;
    border-left: none;
    border-bottom: 1px solid var(--light-gray);
    order: -1;
  }
  .alv-photos { padding: 1rem; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .alv-count { margin-top: 1rem; padding-top: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    padding-right: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 1.5rem 4rem;
  }

  .hero-overlay {
    background: rgba(15,15,12,0.55);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-item.tall {
    grid-row: span 1;
  }

  .work-item.wide {
    grid-column: span 2;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-placeholder {
    aspect-ratio: 4 / 3;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 4rem 1.5rem;
  }

  #navbar {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item.wide {
    grid-column: span 1;
  }
}
