:root {
  --black: #0b0b0c;
  --panel: #151517;
  --panel-2: #1c1c1f;
  --gold: #d6a63e;
  --gold-light: #f0c766;
  --gold-dark: #a97f22;
  --white: #ffffff;
  --muted: #a9a9ad;
  --muted-dark: #6f6f74;
  --off-white: #f6f4ef;
  --border: #2b2b2f;
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}

svg { display: inline-block; flex-shrink: 0; }
.w-3\.5.h-3\.5 { width: 0.875rem; height: 0.875rem; }
.w-4.h-4 { width: 1rem; height: 1rem; }
.w-5.h-5 { width: 1.25rem; height: 1.25rem; }
.w-6.h-6 { width: 1.5rem; height: 1.5rem; }
.w-10.h-10 { width: 2.5rem; height: 2.5rem; }
.w-24.h-24 { width: 6rem; height: 6rem; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.gold { color: var(--gold); }
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--light { background: var(--off-white); color: #1a1a1a; }
.section--panel { background: var(--panel); }
.eyebrow {
  color: var(--gold);
  font-family: var(--font-head);
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 22px;
}
.rule--center { margin-left: auto; margin-right: auto; }
.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
}
.section--light .lead { color: #4a4a4a; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
}
.btn--gold { background: var(--gold); color: #171308; }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* Header */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.brand-logo { height: 46px; width: auto; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .b1 { font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: 0.04em; }
.brand-text .b2 { font-family: var(--font-head); font-weight: 400; font-size: 10.5px; letter-spacing: 0.32em; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 40px; }
.nav a {
  font-family: var(--font-head);
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active { color: var(--gold); border-color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.is-open { max-height: 320px; }
  .nav a { width: 100%; padding: 16px 24px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, #0b0b0c 0%, #0b0b0c 32%, rgba(11,11,12,0.55) 58%, rgba(11,11,12,0.15) 78%, transparent 100%),
    url('/images/hero-studio-v2.jpg') right center / cover no-repeat,
    #0b0b0c;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero {
  background:
    linear-gradient(100deg, #0b0b0c 0%, #0b0b0c 38%, rgba(11,11,12,0.72) 62%, rgba(11,11,12,0.45) 100%),
    url('/images/hero-studio-v2.jpg') right center / cover no-repeat,
    #0b0b0c;
}
.hero .container { position: relative; padding-top: 110px; padding-bottom: 130px; }
.hero-grid { max-width: 620px; }
.hero h1 { font-size: 52px; margin: 14px 0 22px; }
.hero h1 .sub { display: block; color: var(--gold); }
.hero-tag { font-size: 20px; color: var(--white); margin-bottom: 16px; font-weight: 500; }
.hero-copy { color: var(--muted); font-size: 16px; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero { padding: 64px 0 56px; }
.page-hero h1 { font-size: 46px; margin: 10px 0 18px; }
.page-hero .lead { font-size: 17px; }

/* Feature strip */
.strip {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.strip-grid--5 { grid-template-columns: repeat(5, 1fr); }
.strip-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid var(--border);
}
.strip-item:last-child { border-right: none; }
.strip-item img.strip-icon { width: 64px; height: 64px; margin: 0 auto 16px; display: block; }
.strip-item span { font-family: var(--font-head); font-size: 12.5px; letter-spacing: 0.04em; color: var(--white); display: block; }
@media (max-width: 980px) {
  .strip-grid, .strip-grid--5 { grid-template-columns: repeat(4, 1fr); gap: 28px 0; }
  .strip-item { border-right: none; padding: 0 12px 20px; border-bottom: 1px solid var(--border); }
}
@media (max-width: 620px) {
  .strip-grid, .strip-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.icon-badge--fill { background: var(--gold); color: #171308; border-color: var(--gold); }
.icon-badge--sm { width: 44px; height: 44px; }

/* Two column split (mission/vision) */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel {
  padding: 48px;
  min-height: 480px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.split-panel--mission {
  background-image:
    radial-gradient(ellipse 480px 380px at 50% 55%, rgba(8,7,5,0.55), rgba(8,7,5,0.28) 70%, rgba(8,7,5,0.15)),
    url('/images/mission-panel.jpg');
  border-right: 1px solid var(--border);
}
.split-panel--vision {
  background-image:
    radial-gradient(ellipse 480px 380px at 50% 55%, rgba(4,7,12,0.55), rgba(4,7,12,0.28) 70%, rgba(4,7,12,0.15)),
    url('/images/vision-panel.jpg');
}
.split-panel .icon-badge { margin: 0 auto 20px; }
.split-panel h3 { font-size: 26px; color: var(--white); margin-bottom: 16px; }
.split-panel .rule { margin: 0 auto 20px; }
.split-panel p { color: var(--muted); max-width: 420px; margin: 0 auto; }
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split-panel--mission { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Cards */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 26px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card .icon-badge { margin-bottom: 18px; }
.card h3 {
  font-size: 15.5px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 980px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-cards { grid-template-columns: 1fr; } }

/* Values grid (light) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.value-item { text-align: center; }
.value-item .icon-badge { margin: 0 auto 16px; border-color: var(--gold-dark); color: var(--gold-dark); }
.value-item h4 { font-size: 14px; color: #1a1a1a; margin-bottom: 10px; }
.value-item p { font-size: 13.5px; color: #5c5c5c; }
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

/* CTA band */
.cta-band {
  background:
    linear-gradient(90deg, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.65) 28%, rgba(10,9,8,0.3) 55%, rgba(10,9,8,0.6) 100%),
    url('/images/cta-band.jpg') center / cover no-repeat,
    var(--panel-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 24px; }
.cta-band p { color: var(--muted); margin-top: 8px; }
@media (max-width: 780px) { .cta-band .container { flex-direction: column; text-align: center; } }

/* Company info / about */
.about-media {
  background: linear-gradient(160deg, #1c1710, #0c0c0d);
  border-radius: 6px;
  border: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-media .brand-mark { width: 96px; height: 96px; font-size: 34px; border-width: 3px; }
.about-media-logo { width: 220px; height: auto; }
.info-table { border-top: 1px solid var(--border); }
.info-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-row .icon-badge { flex-shrink: 0; }
.info-row .label { font-family: var(--font-head); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 6px; }
.info-row .value { color: var(--white); font-size: 15px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list .info-row:last-child { border-bottom: none; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; color: #4a4a4a; }
.hours-row strong { color: #1a1a1a; font-weight: 500; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid--full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 600; color: #333; }
.field input, .field textarea {
  border: 1px solid #d8d5cc;
  background: #fff;
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #1a1a1a;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,166,62,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-error { color: #b3261e; font-size: 12.5px; }
.form-note { font-size: 13px; color: #767676; margin-top: 4px; }
.alert {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14.5px;
  margin-bottom: 24px;
}
.alert--success { background: #e9f6ec; color: #1e6b34; border: 1px solid #bfe4c8; }
.alert--error { background: #fbeceb; color: #9a2f27; border: 1px solid #f3c8c4; }

/* Footer */
.site-footer { background: #0a0a0b; border-top: 1px solid var(--border); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h5 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-about p { color: var(--muted); font-size: 14px; margin-top: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { color: var(--muted); font-size: 14px; margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon-badge--sm { color: var(--gold); border-color: var(--gold); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.footer-cta-box {
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-cta-box .icon-badge { color: var(--gold); border-color: var(--gold); }
.footer-cta-box strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-cta-box span { font-size: 12.5px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
  color: var(--muted-dark);
  font-size: 13px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .hero h1 { font-size: 38px; }
}

/* Admin */
.admin-shell { min-height: 100vh; display: flex; flex-direction: column; }
.admin-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-main { flex: 1; padding: 40px 28px; max-width: 1000px; margin: 0 auto; width: 100%; }
.admin-login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(214,166,62,0.12), transparent 60%), var(--black);
}
.admin-login-card {
  width: 100%; max-width: 400px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
}
.admin-login-card .brand { justify-content: center; margin-bottom: 28px; }
.admin-login-card .brand-logo { height: 72px; }
.admin-login-card h1 { font-size: 20px; text-align: center; margin-bottom: 6px; }
.admin-login-card .sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.admin-field label { color: #ddd; }
.admin-field input {
  background: #101012;
  border: 1px solid var(--border);
  color: var(--white);
}
.admin-field input:focus { border-color: var(--gold); }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }

.table-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
table.messages { width: 100%; border-collapse: collapse; }
table.messages th {
  text-align: left;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
table.messages td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: top; }
table.messages tr:last-child td { border-bottom: none; }
table.messages tr.is-unread td { color: var(--white); font-weight: 600; }
table.messages tr:hover { background: rgba(255,255,255,0.02); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-family: var(--font-head); letter-spacing: 0.04em; }
.badge--new { background: var(--gold); color: #171308; }
.badge--read { background: var(--panel-2); color: var(--muted); border: 1px solid var(--border); }
.empty-state { padding: 60px 20px; text-align: center; color: var(--muted); }
.pagination { margin-top: 24px; }
.msg-detail { background: var(--panel); border: 1px solid var(--border); border-radius: 6px; padding: 32px; }
.msg-detail .info-row { border-color: var(--border); }
.msg-body { white-space: pre-wrap; line-height: 1.7; color: #e6e6e6; margin-top: 8px; }
.admin-actions { display: flex; gap: 12px; margin-top: 28px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.back-link:hover { color: var(--gold); }
