/* work/photography.html — page-specific styles
   Shared design system, nav, footer, buttons, and reset live in /assets/css/main.css
   Do not duplicate rules that belong there. */

/* ============================================================
     PAGE HERO — full bleed image
  ============================================================ */
  .page-hero {
    min-height: 70vh;
    background-color: var(--color-slate);
    background-image: url('/assets/img/photography/hero-photo.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--space-8) var(--space-16);
    position: relative;
    overflow: hidden;
  }

/* Gradient overlay — heavier at bottom for text legibility */
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        rgba(30,45,61,0.82) 0%,
        rgba(30,45,61,0.75) 60%,
        rgba(30,45,61,0.88) 100%
      );
    z-index: 0;
  }

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--color-amber);
    z-index: 2;
  }

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
  }

.page-hero-eyebrow {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

.page-hero-eyebrow::after {
    content: '';
    display: block;
    width: 48px; height: 1px;
    background: var(--color-amber);
    opacity: 0.5;
  }

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 400;
    font-style: italic;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 720px;
  }

/* ============================================================
     INTRO
  ============================================================ */
  .intro {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-8);
    text-align: center;
  }

.intro-body {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--color-charcoal-mid);
    line-height: 1.8;
  }

.intro-body p + p { margin-top: var(--space-6); }

/* ============================================================
     STYLE GALLERY
  ============================================================ */
  .gallery {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-8) var(--space-16);
  }

.gallery-label {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: var(--space-6);
    text-align: center;
  }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: var(--space-3);
  }

/* First tile spans two rows — hero tile */
  .gallery-tile:first-child {
    grid-row: span 2;
  }

.gallery-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-cream-dark);
    position: relative;
    border: 1px solid rgba(30,45,61,0.08);
  }

.gallery-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
    display: block;
  }

.gallery-tile:hover img { transform: scale(1.04); }

/* Placeholder state */
  .gallery-tile-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
  }

.gallery-tile-placeholder svg {
    width: 28px; height: 28px;
    stroke: var(--color-charcoal-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.35;
  }

/* Style label — frosted glass pill */
  .gallery-tile-label {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    font-family: var(--font-label);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(30,45,61,0.6);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
  }

/* Placeholder label — visible without image */
  .gallery-tile-label.placeholder-label {
    color: var(--color-charcoal-light);
    background: transparent;
    backdrop-filter: none;
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    opacity: 0.6;
  }

/* ============================================================
     DRONE CALLOUT
  ============================================================ */
  .drone {
    background: var(--color-slate);
    padding: var(--space-24) var(--space-8);
  }

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

.drone-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--color-slate-mid);
    border: 1px solid rgba(201,147,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.drone-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

.drone-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%; height: 100%;
  }

.drone-image-placeholder svg {
    width: 32px; height: 32px;
    stroke: rgba(255,255,255,0.2);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

.drone-image-placeholder span {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }

.drone-text {}

.drone-eyebrow {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: var(--space-4);
  }

.drone-heading {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--space-6);
  }

.drone-body {
    font-size: var(--text-base);
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
  }

.drone-body p + p { margin-top: var(--space-4); }

.drone-compliance {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-top: var(--space-8);
    padding: var(--space-4);
    border: 1px solid rgba(201,147,58,0.25);
    border-radius: var(--radius-md);
  }

.drone-compliance svg {
    width: 16px; height: 16px;
    stroke: var(--color-amber);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 3px;
  }

.drone-compliance-text {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

/* ============================================================
     PODCAST & STUDIO LIGHTING
  ============================================================ */
  .lighting {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-16) var(--space-8);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

.lighting-text {}

.lighting-eyebrow {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-amber);
    margin-bottom: var(--space-4);
  }

.lighting-heading {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
    font-weight: 400;
    color: var(--color-slate);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--space-6);
  }

.lighting-body {
    font-size: var(--text-base);
    color: var(--color-charcoal-mid);
    line-height: 1.8;
  }

.lighting-body p + p { margin-top: var(--space-4); }

.lighting-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-cream-dark);
    border: 1px solid var(--color-amber);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.lighting-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

.lighting-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    width: 100%; height: 100%;
  }

.lighting-image-placeholder svg {
    width: 28px; height: 28px;
    stroke: var(--color-charcoal-light);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.4;
  }

.lighting-image-placeholder span {
    font-family: var(--font-label);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-charcoal-light);
    opacity: 0.5;
  }

/* ============================================================
     ENQUIRY CTA
  ============================================================ */
  .enquiry-cta {
    background: var(--color-cream-dark);
    border-top: 1px solid rgba(30,45,61,0.08);
    padding: var(--space-16) var(--space-8);
    text-align: center;
  }

.enquiry-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    font-weight: 400;
    color: var(--color-slate);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    line-height: 1.25;
  }

.enquiry-cta-sub {
    font-size: var(--text-base);
    color: var(--color-charcoal-mid);
    max-width: 480px;
    margin: 0 auto var(--space-8);
    line-height: 1.65;
  }

/* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 900px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 220px);
    }
    .gallery-tile:first-child { grid-row: span 1; }
    .drone-inner { grid-template-columns: 1fr; gap: var(--space-8); }
    .lighting { grid-template-columns: 1fr; gap: var(--space-8); }
    .lighting-image { order: -1; }
  }


@media (max-width: 640px) {
  .page-hero {
        padding: 0 var(--space-4) var(--space-12);
        min-height: 60vh;
        align-items: flex-end;
      }
  .gallery { padding: 0 var(--space-4) var(--space-12); }
  .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
      }
  .drone { padding: var(--space-12) var(--space-4); }
  .lighting { padding: var(--space-12) var(--space-4); }
  .enquiry-cta { padding: var(--space-12) var(--space-4); }
}


@media (prefers-reduced-motion: reduce) {
  .gallery-tile img { transition: none; }
}
