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

:root {
  --bg: #080808;
  --bg-soft: #0d0d0d;
  --text: #ffffff;
  --text-muted: #9e9e9e;
  --accent: #b87333;
  --card: #111111;
  --border: rgba(255, 255, 255, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 18px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(184, 115, 51, 0.3);
  --font-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ============================================
   SHARED TEXT
   ============================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}

.lead {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.55; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO — full-bleed editorial image
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-placeholder {
  background:
    radial-gradient(ellipse at 50% 28%, rgba(184, 115, 51, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 45%, #030303 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.05) 18%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 110px;
  color: white;
  text-align: center;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 10vw, 168px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: white;
}

.hero-tagline {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 600;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.image-placeholder {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at 30% 18%, rgba(184, 115, 51, 0.12) 0%, transparent 55%),
    linear-gradient(140deg, #2c2c2c 0%, #161616 60%, #050505 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Card-context: fills its parent (parent sets the aspect ratio) */
.image-placeholder.card-placeholder {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  box-shadow: none;
  border-radius: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: transform 0.25s, opacity 0.2s, background 0.3s, color 0.2s, border-color 0.25s, box-shadow 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      transparent 1px,
      transparent 2px
    ),
    linear-gradient(180deg, #cc8a44 0%, #b87333 55%, #a36428 100%);
  color: #ffffff;
  border-color: #b87333;
  transform: translateY(-2px);
  opacity: 1;
  box-shadow:
    0 8px 24px rgba(184, 115, 51, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-ghost:hover {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      transparent 1px,
      transparent 2px
    ),
    linear-gradient(180deg, #cc8a44 0%, #b87333 55%, #a36428 100%);
  color: #ffffff;
  border-color: #b87333;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(184, 115, 51, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-ghost-light:hover {
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.05) 0px,
      transparent 1px,
      transparent 2px
    ),
    linear-gradient(180deg, #cc8a44 0%, #b87333 55%, #a36428 100%);
  color: #ffffff;
  border-color: #b87333;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(184, 115, 51, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-large {
  padding: 22px 48px;
  font-size: 16px;
}

.link-arrow {
  display: inline-block;
  margin-top: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 4px;
  transition: opacity 0.2s, transform 0.2s;
}

.link-arrow:hover {
  opacity: 0.6;
  transform: translateX(4px);
}

.link-arrow-small {
  font-size: 13px;
  margin-top: 16px;
}

/* ============================================
   LOGOS STRIP
   ============================================ */
.logos {
  padding: 64px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

.logos-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}

.logos-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.logos-grid span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.logos-grid span:hover { opacity: 1; }

/* ============================================
   SECTIONS COMMON
   ============================================ */
section {
  padding: 140px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 72px;
  max-width: 760px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .lead { margin-bottom: 24px; }
.about-text .lead + .lead { margin-bottom: 32px; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  padding: 48px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.location-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.location-image-wrap img,
.location-image-wrap .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover .location-image-wrap img,
.location-card:hover .location-image-wrap .image-placeholder {
  transform: scale(1.05);
}

.location-body {
  padding: 28px 32px 32px;
}

.location-body h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 10px;
}

.location-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   EDITORIAL & MODELLING — photo grid
   ============================================ */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: var(--bg-soft);
}

.photo-tile img,
.photo-tile .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.photo-tile:hover img,
.photo-tile:hover .image-placeholder {
  transform: scale(1.06);
}

.photo-tile figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 100%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================
   STORY / JOURNEY
   ============================================ */
.story-content { max-width: 760px; }

.story-paragraph {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ============================================
   VENTURES — extensible card grid
   ============================================ */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.venture-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.venture-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.venture-image-wrap img,
.venture-image-wrap .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venture-card:hover .venture-image-wrap img,
.venture-card:hover .venture-image-wrap .image-placeholder {
  transform: scale(1.05);
}

.venture-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venture-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}

.venture-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 12px;
}

.venture-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { text-align: center; }

.contact-content {
  max-width: 720px;
  margin: 0 auto;
}

.contact-content .eyebrow { text-align: center; }
.contact-content .lead { margin: 0 auto 48px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 32px 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 0.15em;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.55; }

.footer-copy {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  padding-top: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero.fade-section {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1000px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-grid,
  .locations-grid,
  .ventures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 700px) {
  .hero {
    min-height: 640px;
    padding: 0;
  }

  .hero-content {
    padding: 0 24px 80px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn { justify-content: center; }

  section { padding: 80px 24px; }

  .logos { padding: 48px 24px; }
  .logos-grid { gap: 32px; }

  .services-grid,
  .locations-grid,
  .ventures-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-card,
  .location-body,
  .venture-body {
    padding: 28px;
  }
}
