@charset "UTF-8";

/* ============================================
   BEAU BICE — styles.css
   Bebas Neue (display) + Barlow (body)
   Bold. Aggressive. Dark. High-contrast.
   ============================================ */

:root {
  --bg:        #060606;
  --surface:   #0d0d0d;
  --surface2:  #141414;
  --border:    rgba(255,255,255,0.08);
  --border-hv: rgba(255,255,255,0.2);
  --accent:    #c9a96e;
  --accent-lt: #e8c98a;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.42);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --nav-h:     60px;
  --transition: 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

/* ── Navigation ─────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: var(--text);
}

nav { display: flex; align-items: center; gap: 28px; }

nav a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

nav a:hover, nav a.active { color: var(--text); }
nav a:hover::after, nav a.active::after { width: 100%; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ── Hero ────────────────────────────────────── */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Hero photo: IMG_3816 copy.jpg */
.hero-bg img {
  width: 110%;              /* 👈 makes image bigger so it can shift */
  height: 110%;
  object-fit: cover;
  object-position: left center;  /* 👈 now this will actually work */
  transform: translateX(20%);    /* 👈 fine adjustment */
  filter: brightness(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.1) 70%),
    linear-gradient(to top, rgba(6,6,6,0.98) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 80px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Client Band ─────────────────────────────── */
.client-band {
  background: rgba(201, 169, 110, 0.08);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}
.client-band-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.client-band-inner span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.band-dot { color: rgba(0,0,0,0.3) !important; letter-spacing: 0 !important; }

/* ── Section Headings ────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 44px;
}

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero { height: 42vh; min-height: 240px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding-bottom: 44px; padding-left: 5%; background: var(--surface); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
}

.page-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.95;
}

/* ── Featured Work Cards ─────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/*
  Featured photos (index.html):
    Ethan Jap Press.jpg  · Greenville_Wildlife_-5.jpg  · March_29_Greenville-8 copy.jpg
*/
.feat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: var(--surface);
}

.feat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.65);
}

.feat-card:hover img { transform: scale(1.06); filter: brightness(0.9); }

.feat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.05) 55%);
}

.feat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.feat-card-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.feat-card-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Who I Work With ─────────────────────────── */
.who-section { background: var(--surface); }
.who-section {
  position: relative; /* add this */
  cursor: pointer;    /* optional: shows it's clickable */
}

.who-section a.section-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.who-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.who-image {
  position: relative;
  overflow: hidden;
}

.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.6s ease;
}

.who-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--bg);
}

.who-card {
  background: var(--surface);
  padding: 44px 38px;
  transition: background var(--transition);
  border-left: 4px solid transparent;
}

.who-card:hover {
  background: var(--surface2);
  border-left-color: var(--accent);
}

.who-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}

.who-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ── About Preview ───────────────────────────── */
.about-preview { background: var(--surface2); }

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* About preview photo: IMG_1152 copy.jpg */
.about-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  position: relative;
}

.about-thumb::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 55%; height: 55%;
  border-bottom: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  pointer-events: none;
}

.about-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.about-text p { color: var(--muted); margin-bottom: 32px; line-height: 1.85; font-size: 14px; }

/* ── Masonry Preview (index) ─────────────────── */
/*
  Original photos:
    IMG_8598 copy.jpg  → .masonry-item.tall
    IMG_4436.jpg       → .masonry-item
    IMG_0318 copy.jpg  → .masonry-item
    Jeep-1 copy.jpg    → .masonry-item.wide
*/
.masonry-preview {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4/3;
}

.masonry-item.tall { grid-row: span 2; aspect-ratio: unset; }
.masonry-item.wide { grid-column: span 2; }

.masonry-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7) contrast(1.05);
}

.masonry-item:hover img { transform: scale(1.05); filter: brightness(0.95) contrast(1.05); }

.masonry-overlay { position: absolute; inset: 0; }

/* ── Services Grid ───────────────────────────── */

.image-card {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
}

.image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.image-card h3,
.image-card p,
.image-card a {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3px;
  background: var(--bg);
}

.service-card {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
  border-top: 4px solid transparent;
}

.service-card:hover { background: var(--surface2); border-top-color: var(--accent); }

.service-icon {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.service-price {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card p { color: var(--muted); font-size: 13px; line-height: 1.8; flex: 1; }
.service-card .btn { align-self: flex-start; margin-top: 16px; }

.services-cta {
  background: var(--surface);
  border-top: 4px solid var(--accent);
  padding: 80px 0;
  text-align: center;
}

.services-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1;
}

.services-cta p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 14px;
  max-width: 420px;
  margin-left: auto; margin-right: auto;
}

/* ── CTA Band ────────────────────────────────── */
.cta-band { background: var(--accent); padding: 64px 0; }

.cta-band-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-inner .section-eyebrow { color: rgba(0,0,0,0.45); }
.cta-band-inner .section-eyebrow::before { background: rgba(0,0,0,0.3); }

.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  line-height: 0.95;
}

.cta-band .btn { border-color: #000; color: #000; white-space: nowrap; }
.cta-band .btn:hover { background: #000; border-color: #000; color: var(--accent); }

/* ── Portfolio Album Grid ────────────────────── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding-bottom: 40px;
}

.album-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  background: var(--surface);
  cursor: pointer;
}

.album-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.4s ease;
  filter: brightness(0.6);
}

.album-card:hover img { transform: scale(1.06); filter: brightness(0.88); }

.album-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.05) 55%);
}

.album-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.album-card-cat {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.album-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.album-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 14px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 999;
}

.album-nav a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.album-nav a:hover {
  color: var(--text);
}

.album-nav a.active {
  color: var(--text);
}

.album-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.album-nav a:hover::after,
.album-nav a.active::after {
  width: 100%;
}
/* ── Portfolio Category Tiles ───────────────── */
.album {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition);
}

.album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.7s ease, filter 0.4s ease;
}

.album span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 2;
}

.album::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
}

.album:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.album:hover {
  border-color: var(--accent);
}

/* ── Smaller Button-style Links ─────────────── */
.album.small {
  aspect-ratio: 3/1;
  padding: 18px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.album.small span {
  position: relative;
  bottom: auto;
  left: auto;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.album.small::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.album.small:hover {
  transform: translateY(-4px);
  background: var(--surface);
}

.album.small:hover::after {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(201, 169, 110, 0.35);
}

.album.small:hover span {
  color: var(--accent);
}
/* ── Photo Grid (gallery pages) ──────────────── */
.photo-grid { columns: 3; column-gap: 3px; padding: 60px 0; }

.photo-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}

.photo-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
  filter: brightness(0.85) contrast(1.05);
}

.photo-item:hover img { transform: scale(1.04); filter: brightness(1) contrast(1.05); }

.album-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  transition: color var(--transition);
}
.album-back:hover { color: var(--accent); }
.album-back::before { content: '←'; font-size: 14px; }

/* ── Films Page ──────────────────────────────── */
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3px;
}

.video-card {
  background: var(--surface);
  border-top: 4px solid transparent;
  overflow: hidden;
  transition: border-top-color var(--transition);
}

.video-card:hover { border-top-color: var(--accent); }

.video-card iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
}
.video-card-info { padding: 20px 22px; }

.video-card-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1;
}

.video-card-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── About Page ──────────────────────────────── */
.about-page .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* About photo: IMG_1152 copy.jpg */
.about-photo {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.05);
}

.about-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 0.95;
}

.about-body p { color: var(--muted); line-height: 1.9; margin-bottom: 20px; font-size: 14px; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 44px 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.fact-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.fact-value { font-size: 13px; color: var(--muted); }

/* ── Contact Page ────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
  position: relative;
  background: url('Merica-12 copy.jpg') center/cover no-repeat;
  padding: 60px;
  color: white;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  line-height: 0.95;
}

.contact-info p { color: #ffffff; line-height: 1.85; margin-bottom: 40px; font-size: 14px; }
.contact-detail { margin-bottom: 22px; }

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-detail-value { font-size: 14px; color: var(--muted); }

/* ── Form ────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 10px; }

.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition), border-left-color var(--transition);
  appearance: none; -webkit-appearance: none;
}

.form input::placeholder, .form textarea::placeholder { color: var(--muted); }

.form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a96e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form select option { background: var(--surface); color: var(--text); }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--border-hv); border-left-color: var(--accent); }
.form textarea { height: 160px; resize: vertical; }

/* ── Lightbox ────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; width: auto; height: auto; }

.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  background: none; border: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────── */
.footer { padding: 30px 0; border-top: 1px solid var(--border); background: var(--bg); }

.footer-inner {
  width: 90%; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.12em; }
.footer-copy { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.footer-social { display: flex; gap: 20px; }

.footer-social a {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition);
}

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

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1000px) { .who-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .album-grid { grid-template-columns: 1fr 1fr; }
  .about-preview .container,
  .about-page .container,
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { position: static; aspect-ratio: 4/3; }
  .photo-grid { columns: 2; }
  .masonry-preview { grid-template-columns: 1fr 1fr; }
  .masonry-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .masonry-item.wide { grid-column: span 2; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  nav { gap: 14px; }
  nav a { font-size: 9px; letter-spacing: 0.1em; }
  .featured-grid, .album-grid { grid-template-columns: 1fr; }
  .feat-card { aspect-ratio: 16/9; }
  .photo-grid { columns: 1; }
  .about-facts { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social { justify-content: center; }
  .masonry-preview { grid-template-columns: 1fr; }
  .masonry-item.wide { grid-column: span 1; }
  .client-band-inner { gap: 10px; }
  .band-dot { display: none; }
  .hero h1 { font-size: clamp(4rem, 18vw, 8rem); }
  .page-hero { padding-left: 5%; }
}

/* ── Services Hero ───────────────────────── */
.services-hero {
  padding: 120px 0 60px;
  background: var(--surface);
}

.services-intro {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ── Services Showcase ───────────────────── */
.services-showcase {
  display: flex;
  flex-direction: column;
}

/* Each row */
.service-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}

/* Alternate layout */
.service-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-content {
  order: 1;
}

/* Image side */
.service-image {
  overflow: hidden;
  background: var(--surface);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.6s ease, filter 0.4s ease;
}

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

.service-row:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

/* Content side */
.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--bg);
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-content p {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 420px;
}
.service-image iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Mobile ───────────────────────── */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 260px;
  }

  .service-content {
    padding: 40px 20px;
  }
}

/* ── About Page Image ───────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-img {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.feat-card,
.who-card,
.about-preview,
.masonry-item,
.cta-band {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.show {
  opacity: 10;
  transform: translateY(0);
}

.feat-card,
.who-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-card:hover,
.who-card:hover {
  transform: translateY(-6px);
}