/* =========================================================
   Tinseltown Sydney Pty Ltd — corporate one-pager
   Black/white palette, bold serif/sans contrast, generous whitespace
   ========================================================= */

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

:root {
  --ink:        #0d0d0d;
  --ink-soft:   #2a2a2a;
  --muted:      #6e6e6e;
  --line:       #d8d8d8;
  --paper:      #ffffff;
  --paper-soft: #f7f6f3;
  --paper-dark: #f1efea;
  --accent:     #0d0d0d;
  --serif:      Georgia, "Times New Roman", serif;
  --sans:       -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
}
.nav-logo img { width: 26px; height: 26px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

/* ---------- HERO ---------- */
.hero {
  padding: 110px 0 90px 0;
  text-align: center;
  background: var(--paper);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--ink);
}
.hero-logo {
  width: 170px;
  height: auto;
  margin: 0 auto 14px auto;
  display: block;
}
.hero-skyline {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto 20px auto;
  color: var(--ink);
}
.hero-australian {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: center;
}
@media (max-width: 700px) {
  .hero-logo { width: 130px; }
  .hero-skyline { max-width: 480px; }
  .hero-australian { font-size: 9px; letter-spacing: 3px; }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--ink);
}
.hero-est {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.hero-tagline {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px auto;
  font-style: italic;
}
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.18s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 90px 0;
}
.section-light { background: var(--paper-soft); }
.section-dark  { background: var(--ink); color: #f4f3ef; }
.section-paper-soft { background: var(--paper-dark); }

/* ---------- PRINCIPLES STRIP ---------- */
.principles {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}
.principle {
  text-align: left;
}
.principle-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  color: var(--ink);
  position: relative;
  padding-bottom: 12px;
}
.principle-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--ink);
}
.principle-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 320px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.section-divider {
  width: 50px;
  height: 2px;
  background: currentColor;
  margin: 18px 0 36px 0;
  opacity: 0.85;
}
.section-lead {
  font-size: 19px;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 22px;
  color: inherit;
}
.section-body {
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
  color: var(--muted);
}
.section-dark .section-body { color: #b5b4ad; }
.section-holdings {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 760px;
  letter-spacing: 0.2px;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 10px;
}
.team-card {
  background: #1a1a1a;
  padding: 32px 28px;
  border: 1px solid #2a2a2a;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}
.team-card:hover {
  border-color: #555;
  transform: translateY(-2px);
}
.team-initials {
  width: 56px;
  height: 56px;
  border: 2px solid #f4f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9c9b95;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.6;
  color: #b5b4ad;
  margin-bottom: 20px;
}
.team-contact {
  list-style: none;
}
.team-contact li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c5c4be;
}
.team-contact .lbl {
  display: inline-block;
  width: 18px;
  font-weight: 700;
  color: #9c9b95;
}
.team-contact a {
  color: #e8e6df;
  text-decoration: none;
  transition: color 0.15s;
}
.team-contact a:hover { color: #fff; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.contact-value {
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  align-self: flex-start;
}
a.contact-value:hover { border-color: var(--ink); }
.contact-value-small {
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  max-width: 720px;
  border-left: 2px solid var(--ink);
  padding-left: 16px;
  line-height: 1.65;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: #b5b4ad;
  padding: 48px 0 36px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f3ef;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.footer-brand img { width: 24px; height: 24px; object-fit: contain; filter: invert(1); }
.footer-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  letter-spacing: 0.5px;
}
.footer-meta .dot { color: #555; }
.footer-copy {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .hero { padding: 70px 0 60px 0; }
  .hero-logo { width: 110px; }
  .section { padding: 64px 0; }
}
