/* ============================================================
   BENSTEAD CONSTRUCTION — Global Stylesheet
   Light & Refined | Cormorant + Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #2C2C2C;   /* charcoal — main dark */
  --navy-mid:    #3D3D3D;   /* mid charcoal */
  --navy-light:  #555555;   /* light charcoal */
  --stone:       #A57B3C;   /* logo gold */
  --stone-light: #C49A56;   /* lighter gold */
  --stone-pale:  #E8D4A8;   /* pale gold tint */
  --cream:       #FFFFFF;   /* bright white */
  --cream-dark:  #F4F4F4;   /* light grey */
  --charcoal:    #1C1C1C;   /* body text */
  --mid:         #6B6B6B;   /* secondary text */
  --border:      #E2E2E2;   /* borders */
  --white:       #FFFFFF;

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --t-fast:      0.2s var(--ease);
  --t-med:       0.4s var(--ease);
  --t-slow:      0.7s var(--ease-out);

  --max-w:       1280px;
  --section-py:  clamp(4rem, 8vw, 8rem);
  --nav-h:       80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Typography Scale ──────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);   font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { font-size: 0.9375rem; line-height: 1.75; color: var(--mid); max-width: 65ch; }
p.large { font-size: clamp(1rem, 1.5vw, 1.125rem); }

.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--stone { background: var(--cream-dark); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── Decorative Elements ───────────────────────────────────── */
.stone-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--stone);
  margin-bottom: 1.5rem;
}
.stone-line--center { margin: 0 auto 1.5rem; }

.section-intro { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-intro .label { display: block; margin-bottom: 1rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--t-med);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Ensure all interactive elements show pointer */
a, button, [role="button"],
.service-card, .project-card,
.about-value, .value-card { cursor: pointer; }

.btn--primary {
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
}
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(15,25,35,0.25); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--cream); }

.btn--stone {
  background: var(--stone);
  color: var(--white);
  border: 1px solid var(--stone);
}
.btn--stone:hover { background: var(--stone-light); border-color: var(--stone-light); transform: translateY(-1px); }

.btn--light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--light:hover { background: rgba(255,255,255,0.1); border-color: var(--stone); color: var(--stone-light); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
}

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

/* Dark variant no longer needed — kept for safety */
#navbar.nav--dark { background: rgba(255,255,255,0.92); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--t-fast);
}
.logo-img:hover { opacity: 0.85; }

/* Footer text-only logo */
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--stone);
  transition: right var(--t-med);
}
.nav-links a:hover { color: var(--stone); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--stone) !important;
  color: var(--stone) !important;
  font-weight: 600 !important;
  transition: all var(--t-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--stone) !important; color: var(--white) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  right: 0;
  height: 1rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 1rem 0 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
  box-shadow: 0 20px 60px rgba(15,25,35,0.12);
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  transition: background var(--t-fast), color var(--t-fast);
}
.dropdown-menu li a::after { display: none !important; }
.dropdown-menu li a:hover { background: var(--cream-dark); color: var(--stone) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: all var(--t-fast);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--stone); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #F4F4F4;
  padding-top: var(--nav-h);
}

/* Left text panel */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 7rem) clamp(2rem, 7vw, 7rem);
  position: relative;
  z-index: 2;
}

/* Diagonal gold accent between columns */
.hero-content::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -1px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--stone) 30%, var(--stone) 70%, transparent);
  z-index: 3;
}

/* Right photo panel */
.hero-bg {
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8E8E8 0%, #D4D4D4 100%);
}

/* Real photo when provided */
.hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 60% center;
  width: 100%;
  height: 100%;
}

/* Gold geometric frame on photo panel */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 3rem);
  right: clamp(1.5rem, 3vw, 3rem);
  width: 45%;
  height: 55%;
  border: 1px solid rgba(165,123,60,0.4);
  z-index: 2;
  pointer-events: none;
}

/* Gold tag top-left of photo */
.hero-bg::after {
  content: 'DUBAI · UAE';
  position: absolute;
  top: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1.5rem, 3vw, 3rem);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--stone);
  background: rgba(255,255,255,0.9);
  padding: 0.5rem 0.85rem;
  z-index: 3;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); }
.hero-eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--stone); flex-shrink: 0; }

.hero h1 {
  color: var(--charcoal);
  max-width: 14ch;
  margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; color: var(--stone); }

.hero-sub {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--mid);
  max-width: 42ch;
  line-height: 1.8;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 7vw, 7rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-scroll span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }
.scroll-line { width: 40px; height: 1px; background: linear-gradient(to right, var(--stone), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.5; transform: scaleX(0.8); transform-origin: left; } 50% { opacity: 1; transform: scaleX(1); } }

/* Hero responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: auto;
  }
  .hero-content { padding: 3rem clamp(1.5rem, 5vw, 3rem) 3rem; order: 2; }
  .hero-content::after { display: none; }
  .hero-bg { min-height: 55vw; order: 1; }
  .hero-scroll { display: none; }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 3rem 0;
  border-top: 2px solid var(--stone);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-number span { color: var(--stone); }
.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,196,168,0.6);
  margin-top: 0.5rem;
}

/* ── Services Overview ─────────────────────────────────────── */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }

.service-card {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

/* Placeholder styled backgrounds */
.service-card:nth-child(1) .service-card-bg {
  background: linear-gradient(135deg, #1a2535 0%, #0f1923 100%);
}
.service-card:nth-child(2) .service-card-bg {
  background: linear-gradient(135deg, #243040 0%, #1C2D3D 100%);
}
.service-card:nth-child(3) .service-card-bg {
  background: linear-gradient(135deg, #1e2b38 0%, #152028 100%);
}

/* Photo placeholder labels */
.service-card-bg::before {
  content: 'PROJECT PHOTOGRAPHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
  white-space: nowrap;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,35,0.95) 0%, rgba(15,25,35,0.3) 60%, transparent 100%);
  transition: opacity var(--t-med);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.8125rem;
  color: rgba(250,249,246,0.6);
  line-height: 1.65;
  max-width: 30ch;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.service-card-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out) 0.05s;
}
.service-card-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast); }

.service-card:hover .service-card-bg { transform: scale(1.04); }
.service-card:hover p { opacity: 1; transform: translateY(0); }
.service-card:hover .service-card-arrow { opacity: 1; transform: translateY(0); }
.service-card:hover .service-card-arrow svg { transform: translateX(4px); }

/* ── About Snippet ─────────────────────────────────────────── */
.about-grid { gap: clamp(3rem, 6vw, 7rem); }
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
}
.about-img::after {
  content: 'COMPANY PHOTOGRAPHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.12);
}
.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--stone);
  z-index: -1;
}

.about-text .label { margin-bottom: 1.25rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 1rem; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.about-value { padding: 1.5rem; border: 1px solid var(--border); transition: border-color var(--t-fast); }
.about-value:hover { border-color: var(--stone); }
.about-value h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem; }
.about-value p { font-size: 0.8125rem; max-width: none; margin: 0; }

/* ── Process ───────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; position: relative; }

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--stone-pale), var(--stone), var(--stone-pale));
}

.process-step { text-align: center; position: relative; }
.process-num {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--stone);
  margin: 0 auto 1.5rem;
  background: var(--cream);
  position: relative;
  z-index: 1;
}
.process-step h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.8125rem; max-width: none; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--charcoal);
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 80px,
      rgba(165,123,60,0.05) 80px,
      rgba(165,123,60,0.05) 81px
    );
}

.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .label { color: var(--stone); margin-bottom: 1.5rem; display: block; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; max-width: 20ch; margin-left: auto; margin-right: auto; }
.cta-banner p { color: rgba(250,249,246,0.6); margin-bottom: 3rem; }
.cta-banner .btn-group { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #1C1C1C;
  color: var(--cream);
  padding: 5rem 0 2rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { text-align: center; }
.footer-brand .logo-main { color: var(--cream); font-size: 1.75rem; margin-bottom: 0.5rem; display: block; }
.footer-brand .logo-sub { display: block; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.8125rem; line-height: 1.75; color: rgba(250,249,246,0.45); max-width: 28ch; margin: 0 auto; }

.footer-col { text-align: center; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.footer-col ul li a {
  font-size: 0.8125rem;
  color: rgba(250,249,246,0.5);
  transition: color var(--t-fast);
  letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: var(--stone-light); }

.footer-contact-item { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; justify-content: center; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--stone); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.8125rem; color: rgba(250,249,246,0.5); line-height: 1.6; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(250,249,246,0.25); margin: 0; max-width: none; text-align: center; }

/* ── Inner Page Hero ───────────────────────────────────────── */
.page-hero {
  background: #F4F4F4;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Gold accent bar on left edge */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--stone), var(--stone-pale));
}

/* Subtle diagonal lines */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px,
      transparent 60px,
      rgba(165,123,60,0.05) 60px,
      rgba(165,123,60,0.05) 61px
    );
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 1.25rem; display: block; }
.page-hero h1 { color: var(--charcoal); max-width: 16ch; }
.page-hero p { color: var(--mid); margin-top: 1.5rem; font-size: 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(184,154,108,0.7); }
.breadcrumb a:hover { color: var(--stone); }
.breadcrumb span { color: rgba(250,249,246,0.35); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── Project Grid ──────────────────────────────────────────── */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.project-grid--2 { grid-template-columns: repeat(2, 1fr); }

.project-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.project-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.project-card:nth-child(6n+1) .project-card-img { background: linear-gradient(135deg, #1a2535 0%, #0f1923 100%); }
.project-card:nth-child(6n+2) .project-card-img { background: linear-gradient(135deg, #1f2d3d 0%, #162028 100%); }
.project-card:nth-child(6n+3) .project-card-img { background: linear-gradient(135deg, #1a2b3c 0%, #0f1f2c 100%); }
.project-card:nth-child(6n+4) .project-card-img { background: linear-gradient(135deg, #22303f 0%, #162028 100%); }
.project-card:nth-child(6n+5) .project-card-img { background: linear-gradient(135deg, #18263a 0%, #0f1923 100%); }
.project-card:nth-child(6n+6) .project-card-img { background: linear-gradient(135deg, #1c2d3f 0%, #131f2c 100%); }

.project-card-img::after {
  content: 'PROJECT PHOTOGRAPHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.1);
  white-space: nowrap;
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,35,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
}

.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--t-med);
  z-index: 1;
}

.project-card-info h4 { font-size: 1.1rem; font-weight: 400; color: var(--white); margin-bottom: 0.25rem; }
.project-card-info span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }

.project-card:hover .project-card-img { transform: scale(1.04); }
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card:hover .project-card-info { opacity: 1; transform: translateY(0); }

/* Featured project (spans 2 cols) */
.project-card--featured { grid-column: span 2; aspect-ratio: 16/7; }

/* ── Services Detail ───────────────────────────────────────── */
.services-list { display: flex; flex-direction: column; gap: 0; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 360px;
  border-bottom: 1px solid var(--border);
}

.service-row:nth-child(even) .service-row-content { order: -1; }

.service-row-img {
  position: relative;
  overflow: hidden;
}

.service-row-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out);
}

.service-row:nth-child(1) .service-row-img-inner { background: linear-gradient(135deg, #1a2535 0%, #0f1923 100%); }
.service-row:nth-child(2) .service-row-img-inner { background: linear-gradient(135deg, #1f2d3d 0%, #162028 100%); }
.service-row:nth-child(3) .service-row-img-inner { background: linear-gradient(135deg, #1c2b3c 0%, #0f1923 100%); }

.service-row-img-inner::after {
  content: 'PROJECT PHOTOGRAPHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.1);
}

.service-row:hover .service-row-img-inner { transform: scale(1.03); }

.service-row-content {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-content .label { margin-bottom: 1rem; }
.service-row-content h3 { margin-bottom: 1.25rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.service-row-content p { margin-bottom: 1rem; }

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0 2rem;
}

.service-features li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.service-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--stone);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Contact Form ──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }

.contact-info .label { margin-bottom: 1.25rem; display: block; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--stone); }
.contact-detail h5 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.35rem; }
.contact-detail p { font-size: 0.875rem; color: var(--charcoal); margin: 0; max-width: none; }

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

label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--stone);
  box-shadow: 0 0 0 3px rgba(184,154,108,0.1);
}

textarea { resize: vertical; min-height: 140px; line-height: 1.65; }

.form-submit { margin-top: 2rem; }
.form-note { font-size: 0.75rem; color: var(--mid); margin-top: 1rem; display: block; }

/* ── About Page ────────────────────────────────────────────── */
.team-grid { display: flex; justify-content: center; gap: 2.5rem; margin-top: 4rem; flex-wrap: wrap; }
.team-grid .team-member { width: 280px; max-width: 100%; }
.team-member {}
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.team-photo:hover img { transform: scale(1.04); }
.team-member h4 { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 0.25rem; }
.team-member .role { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }

/* Real photos in about-img containers */
.about-img.has-photo {
  background: none;
}
.about-img.has-photo::after { display: none; }
.about-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-img-wrap:hover .about-img.has-photo img { transform: scale(1.03); }

/* ── Animations ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Hero entry animations */
.hero-eyebrow { animation: fadeUp 0.8s var(--ease-out) 0.2s both; }
.hero h1       { animation: fadeUp 0.8s var(--ease-out) 0.35s both; }
.hero-sub      { animation: fadeUp 0.8s var(--ease-out) 0.5s both; }
.hero-actions  { animation: fadeUp 0.8s var(--ease-out) 0.65s both; }
.hero-scroll   { animation: fadeIn 1s var(--ease-out) 1s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Sound toggle button ────────────────────────────────── */
.sound-toggle {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.sound-toggle:hover {
  background: rgba(165,123,60,0.75);
  border-color: var(--stone);
  transform: scale(1.08);
}
.sound-toggle svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-img { min-height: 300px; position: relative; }
  .service-row:nth-child(even) .service-row-content { order: 0; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; }
  .team-grid { flex-direction: column; align-items: center; }
  .service-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}
