@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --ink:    #0A0A0A;
  --amber:  #EF9F27;
  --amber-d:#BA7517;
  --cream:  #F5F3EF;
  --slate:  #444441;
  --stone:  #D3D1C7;
  --muted:  #888780;
  --bg-dark:#111111;
  --bg-section: #141414;
  --serif:  'Roboto Slab', Georgia, serif;
  --sans:   'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── LOGO SVG ─── */
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid #1f1f1f;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--cream);
}
.nav-wordmark span { color: var(--amber); }

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

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-cta {
  background: var(--amber);
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--amber-d); }

.nav-mobile-toggle { display: none; cursor: pointer; }

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 68px; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid #1f1f1f;
}

.hero-content { max-width: 680px; position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
}

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--amber-d); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  padding: 14px 24px;
  border: 0.5px solid #444;
  border-radius: 8px;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: #888; transform: translateY(-1px); }

/* Hero background decoration */
.hero-orb {
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,159,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ─── SECTION COMMONS ─── */
.section { padding: 96px 48px; border-bottom: 0.5px solid #1f1f1f; }
.section-alt { background: var(--bg-section); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 48px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 10px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em { color: var(--amber); font-style: normal; }

/* ─── VENTURES GRID ─── */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.venture-card {
  background: #111;
  border: 0.5px solid #222;
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.venture-card:hover {
  border-color: #444;
  transform: translateY(-2px);
}

.venture-card.featured {
  border-color: rgba(239,159,39,0.3);
}
.venture-card.featured:hover { border-color: var(--amber); }

.venture-chip {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.chip-flagship { background: rgba(239,159,39,0.12); color: var(--amber); }
.chip-active    { background: rgba(29,158,117,0.1);  color: #1D9E75; }
.chip-dev       { background: rgba(127,119,221,0.1); color: #7F77DD; }
.chip-soon      { background: rgba(136,135,128,0.1); color: var(--muted); }

.venture-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.venture-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.vi-sq    { background: rgba(239,159,39,0.1); }
.vi-photo { background: rgba(127,119,221,0.1); }
.vi-tv    { background: rgba(29,158,117,0.1); }
.vi-vo    { background: rgba(216,90,48,0.1); }

.venture-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.venture-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.venture-arrow {
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.venture-card:hover .venture-arrow { gap: 10px; }

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

.about-strip h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.about-strip p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.about-strip p + p { margin-top: 16px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 80px 48px 72px;
  border-bottom: 0.5px solid #1f1f1f;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid-lines { opacity: 0.5; }
.page-hero-content { position: relative; z-index: 2; max-width: 640px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ─── PHOTOGRAPHY GRID ─── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  cursor: pointer;
}

.photo-item.tall { grid-row: span 2; }
.photo-item.wide { grid-column: span 2; }

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border: 0.5px dashed #333;
  border-radius: 8px;
  flex-direction: column;
  gap: 8px;
}

.photo-placeholder.tall  { aspect-ratio: 3/5; }
.photo-placeholder.square { aspect-ratio: 1/1; }

.photo-placeholder svg { opacity: 0.2; }
.photo-placeholder span { font-size: 11px; color: #444; letter-spacing: 0.1em; }

.photo-item:hover img { transform: scale(1.04); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.photo-item:hover .photo-overlay { opacity: 1; }

.photo-caption { font-size: 13px; color: var(--cream); }

/* Photo categories */
.photo-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cat-btn {
  font-size: 12px;
  padding: 7px 16px;
  border: 0.5px solid #333;
  border-radius: 20px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

/* ─── SLEEPY QUOKKA PAGE ─── */
.sq-hero-logo {
  width: 100px;
  height: 100px;
  background: #1a1a1a;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 32px;
  border: 0.5px solid #2a2a2a;
}

.sq-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.sq-feature {
  background: #111;
  border: 0.5px solid #222;
  border-radius: 12px;
  padding: 28px;
}

.sq-feature-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.sq-feature h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sq-feature p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.sq-cta-block {
  background: #111;
  border: 0.5px solid rgba(239,159,39,0.25);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
}

.sq-cta-block h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.sq-cta-block p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

.btn-large {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 40px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-large:hover { background: var(--amber-d); transform: translateY(-2px); }

/* ─── SCRIPTS / VOICE PAGES ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.step {
  padding: 32px;
  background: #111;
  border: 0.5px solid #222;
  border-radius: 12px;
}

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: #222;
  line-height: 1;
  margin-bottom: 16px;
}

.step h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}

.step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Genre/spec tags */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }

.tag {
  font-size: 11px;
  padding: 6px 14px;
  border: 0.5px solid #333;
  border-radius: 20px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Voice demos placeholder */
.voice-demos { display: grid; gap: 12px; margin-top: 16px; }

.voice-demo {
  background: #111;
  border: 0.5px solid #222;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: var(--amber-d); }

.play-btn svg { margin-left: 2px; }

.voice-demo-info h5 { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.voice-demo-info p  { font-size: 12px; color: var(--muted); }

.waveform {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.wave-bar {
  flex: 1;
  background: #2a2a2a;
  border-radius: 2px;
  min-height: 4px;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
  padding: 96px 48px;
  background: #0D0D0D;
  border-top: 0.5px solid #1f1f1f;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-inner h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.contact-inner h2 em { color: var(--amber); font-style: normal; }
.contact-inner > div > p { font-size: 15px; color: var(--muted); line-height: 1.7; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 0.5px solid #333;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #555; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form button {
  background: var(--amber);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--amber-d); }

/* ─── FOOTER ─── */
footer {
  padding: 28px 48px;
  background: #0A0A0A;
  border-top: 0.5px solid #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .nav-wordmark { font-size: 15px; }

footer .footer-copy { font-size: 12px; color: #444; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #555; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }

/* ─── DIVIDER ─── */
.divider { height: 0.5px; background: #1f1f1f; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #0a0a0a; padding: 24px; border-bottom: 0.5px solid #1f1f1f; gap: 20px; }
  .nav-mobile-toggle { display: block; }

  .hero, .page-hero, .section { padding-left: 20px; padding-right: 20px; }
  .ventures-grid { grid-template-columns: 1fr; }
  .about-strip   { grid-template-columns: 1fr; gap: 32px; }
  .sq-features   { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .photo-grid    { grid-template-columns: repeat(2, 1fr); }
  .photo-item.tall  { grid-row: auto; }
  .photo-item.wide  { grid-column: auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { flex-direction: column; align-items: flex-start; }
}
