*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f2ed;
  --dark: #1a1a18;
  --mid: #888;
  --accent: #c8a97a;
  --border: rgba(245,242,237,0.13);
  --border-dark: rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #1a1a18;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.nav-logo {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a18;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #888;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  position: relative;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #555;
  text-transform: uppercase;
  padding: 0 1rem;
  line-height: 64px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: #1a1a18; }

/* dropdown */
.has-dropdown:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  background: #fff;
  border: 0.5px solid rgba(0,0,0,0.08);
  min-width: 180px;
  z-index: 300;
}

.dropdown a {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  padding: 12px 16px;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  transition: background 0.2s, color 0.2s;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #f9f9f9; color: #1a1a18; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1a1a18;
  padding: 4px;
}

/* ── SPLASH PAGE ── */
.splash-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #1a1a18;
}

.splash-page nav {
  background: rgba(26,26,24,0.0);
  border-bottom: 0.5px solid var(--border);
  position: absolute;
}

.splash-page .nav-logo { color: var(--cream); }
.splash-page .nav-logo span { color: rgba(245,242,237,0.5); }
.splash-page .nav-links > li > a { color: rgba(245,242,237,0.6); }
.splash-page .nav-links > li > a:hover { color: var(--cream); }
.splash-page .dropdown { background: #222; border-color: var(--border); }
.splash-page .dropdown a { color: rgba(245,242,237,0.6); border-color: var(--border); }
.splash-page .dropdown a:hover { background: #2a2a28; color: var(--cream); }

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,0.38) 0%, rgba(26,26,24,0.55) 50%, rgba(26,26,24,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 2rem 0;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 1s ease 0.4s forwards;
}

.hero-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(245,242,237,0.6);
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-enter {
  margin-top: 2.5rem;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  border: 0.5px solid rgba(245,242,237,0.4);
  padding: 12px 40px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-enter:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

/* ── FOOTER ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  color: #999;
  background: #fff;
}

.splash-page footer {
  position: relative;
  z-index: 10;
  background: transparent;
  border-top: 0.5px solid var(--border);
  color: rgba(245,242,237,0.35);
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a { color: inherit; transition: color 0.2s; }
.footer-socials a:hover { color: #1a1a18; }
.splash-page .footer-socials a:hover { color: var(--cream); }

/* ── INNER PAGES ── */
.inner-page {
  padding-top: 64px;
  min-height: 100vh;
  background: #fff;
}

.page-hero {
  padding: 3.5rem 3rem 2.5rem;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #1a1a18;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.page-hero h1 em { font-style: italic; color: #888; }

/* ── ABOUT ── */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  padding: 3rem;
  max-width: 980px;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.about-text {
  padding-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s forwards;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: #1a1a18;
}

.about-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.25rem;
}

/* ── CONTACT ── */
.contact-wrap {
  padding: 3rem;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.contact-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.contact-wrap p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.contact-wrap a {
  color: #1a1a18;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SHOWREELS ── */
.showreels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 3rem;
}

.reel-card { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.reel-card:nth-child(1) { animation-delay: 0.1s; }
.reel-card:nth-child(2) { animation-delay: 0.2s; }

.reel-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
}

.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-label {
  padding: 1rem 0 0.25rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}

.reel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: #1a1a18;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}

/* ── VIDEO SUB-PAGES ── */
.video-grid {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 900px;
}

.video-item {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.video-item:nth-child(1) { animation-delay: 0.1s; }
.video-item:nth-child(2) { animation-delay: 0.2s; }
.video-item:nth-child(3) { animation-delay: 0.3s; }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  margin-bottom: 1.25rem;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a18;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.video-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
}

.video-divider {
  border: none;
  border-top: 0.5px solid rgba(0,0,0,0.08);
  margin-top: 3.5rem;
}

/* ── VIDEO JOURNALISM INDEX ── */
.outlets-list {
  padding: 3rem;
}

.outlet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: #1a1a18;
  transition: padding-left 0.3s;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.outlet-row:nth-child(1) { animation-delay: 0.1s; }
.outlet-row:nth-child(2) { animation-delay: 0.2s; }
.outlet-row:nth-child(3) { animation-delay: 0.3s; }
.outlet-row:nth-child(4) { animation-delay: 0.4s; }

.outlet-row:hover { padding-left: 0.5rem; }

.outlet-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.outlet-arrow { font-size: 18px; color: #bbb; transition: color 0.2s; }
.outlet-row:hover .outlet-arrow { color: #1a1a18; }

/* ── PHOTOGRAPHY ── */
.photo-section {
  padding: 3rem;
  max-width: 900px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.photo-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.photo-grid img:hover { opacity: 0.88; }

.photo-caption {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.photo-caption a {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a18;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: block;
  margin-bottom: 0.5rem;
}

.photo-caption p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
}

/* ── PRINT ── */
.print-list {
  padding: 3rem;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.print-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  text-decoration: none;
  color: #1a1a18;
}

.print-item:nth-child(1) { animation-delay: 0.1s; }
.print-item:nth-child(2) { animation-delay: 0.2s; }
.print-item:nth-child(3) { animation-delay: 0.3s; }
.print-item:nth-child(4) { animation-delay: 0.4s; }
.print-item:nth-child(5) { animation-delay: 0.5s; }

.print-thumb {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  transition: opacity 0.3s;
}

.print-item:hover .print-thumb { opacity: 0.85; }

.print-body {}

.print-outlet {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.4rem;
}

.print-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: #1a1a18;
}

.print-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 500;
  }
  .splash-page .nav-links.open { background: rgba(26,26,24,0.97); }
  .nav-links > li > a { line-height: 1; font-size: 14px; }
  .nav-toggle { display: block; }
  .dropdown { position: static; border: none; }

  .about-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .showreels-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  .video-grid { padding: 1.5rem; }
  .outlets-list { padding: 1.5rem; }
  .photo-section { padding: 1.5rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .print-list { padding: 1.5rem; }
  .print-item { grid-template-columns: 1fr; }
  .page-hero { padding: 2rem 1.5rem; }
  footer { padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem; }
}
