@import url("/brand.css");
:root {
  color-scheme: dark;
  --bg: #101111;
  --panel: #181919;
  --line: #363630;
  --text: #f2f0e9;
  --muted: #b8b9b4;
  --gold: #dfc078;
  --silver: #d4d7d6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.65 Arial,
    Helvetica,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--gold);
  color: #111;
  padding: 10px;
  z-index: 5;
}
.skip:focus {
  top: 10px;
}
.masthead {
  max-width: 1440px;
  margin: auto;
  padding: 30px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-size: 29px;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: 1.1;
}
.wordmark span {
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 400;
}
.wordmark small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 2.4px;
  margin-top: 10px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
}
nav a:hover {
  color: var(--gold);
}
.nav-team {
  padding: 12px 20px;
  border: 1px solid #70716b;
  border-radius: 4px;
}
.nav-team span {
  margin-left: 22px;
  color: var(--gold);
}
main {
  max-width: 1440px;
  margin: auto;
}
.hero {
  padding: 90px 5% 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 7%;
  align-items: center;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.7px;
  color: var(--gold);
  margin: 0 0 24px;
  display: block;
}
.line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
h1 {
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.07;
  letter-spacing: -2.8px;
  font-weight: 500;
  margin: 0 0 27px;
}
em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--gold);
}
.lead {
  color: var(--muted);
  max-width: 490px;
  font-size: 16px;
  line-height: 1.8;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 14px;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 15px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px #0004;
}
.gold {
  background: var(--gold);
  color: #171711;
}
.gold:hover:not(:disabled) {
  background: #eed498;
}
.outline {
  border-color: #666862;
  background: transparent;
}
.fine {
  font-size: 11px;
  color: #b4b4ab;
  line-height: 1.7;
  max-width: 450px;
}
.brand-stage {
  padding: 30px;
  border: 1px solid #62543a;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 50% 30%, #41382444, transparent 70%), #141515;
  box-shadow: 0 20px 60px #0004;
  position: relative;
}
.stage-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--muted);
}
.logo-box {
  aspect-ratio: 1.22;
  display: grid;
  place-items: center;
  margin: 26px 0;
  background: #030303;
  border: 1px solid #2b2d2a;
  border-radius: 6px;
}
.logo-box img {
  width: 87%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.stage-caption {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.stage-caption strong {
  font-weight: 400;
  color: var(--silver);
}
.gold-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px #dfc07810;
}
.service-strip {
  padding: 23px 5%;
  border-block: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
}
.service-strip i {
  color: var(--gold);
  font-size: 15px;
}
.section {
  padding: 85px 5%;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}
h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -1.5px;
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card,
.card {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(150deg, #222421, #151615);
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: #8c784c;
  transform: translateY(-3px);
}
.icon {
  color: var(--gold);
  background: #dfc0780c;
  border: 1px solid #dfc07830;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
}
.icon svg {
  width: 27px;
  height: 27px;
}
.service-card .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}
h3 {
  font-weight: 400;
  font-size: 23px;
  line-height: 1.3;
  margin: 0 0 17px;
  letter-spacing: -0.5px;
}
.service-card p,
.principles p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.service-card a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--gold);
}
.principles {
  background: #191a18;
  border-block: 1px solid var(--line);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.principles h3 {
  color: var(--silver);
  font-family: Georgia, serif;
  font-style: italic;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  background: radial-gradient(ellipse at 0 100%, #66532e24, transparent 65%);
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 390px;
}
.contact-details {
  margin: 34px 0;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.contact-details .eyebrow {
  margin: 0;
  font-size: 9px;
}
.contact-details p {
  font-size: 13px;
  margin: 8px 0;
}
.download {
  display: flex;
  justify-content: space-between;
  max-width: 390px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.contact-form {
  background: #20211e;
  border: 1px solid #414139;
  border-radius: 6px;
  padding: 35px;
}
.contact-form h3 {
  font-size: 21px;
  margin-bottom: 30px;
}
.contact-form > label {
  display: block;
  font-size: 12px;
  color: var(--silver);
  margin: 18px 0 8px;
}
input,
textarea {
  width: 100%;
  background: #151614;
  border: 1px solid #626257;
  color: var(--text);
  padding: 12px;
  border-radius: 3px;
}
textarea {
  resize: vertical;
}
label.consent {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 11px;
  margin: 20px 0;
}
.consent input {
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--gold);
}
.consent a {
  text-decoration: underline;
}
.contact-form .button {
  width: 100%;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
#inquiry-status {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 45px 5%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer p,
footer small,
footer div {
  font-size: 11px;
  color: var(--muted);
}
footer div {
  display: flex;
  gap: 20px;
}
.portfolio-note {max-width:720px;color:var(--muted);margin:24px 0 32px;font-size:14px}
.portfolio-grid {display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.portfolio-card {border:1px solid var(--line);border-radius:8px;overflow:hidden;background:var(--panel)}
.portfolio-preview {display:block;aspect-ratio:16/9;overflow:hidden;background:#070909}
.portfolio-preview img {display:block;width:100%;height:100%;object-fit:cover}
.portfolio-copy {padding:28px}
.portfolio-copy .eyebrow {font-size:9px;margin-bottom:16px}
.portfolio-copy p {color:var(--muted);font-size:14px}
.portfolio-copy .button {min-height:48px;color:var(--gold)}
#portfolio:not([hidden]) {margin-top:28px}
.contact-details a {display:inline-block;min-height:40px;overflow-wrap:anywhere}
@media(max-width:650px){.portfolio-grid{grid-template-columns:1fr}.portfolio-copy{padding:24px}nav a{min-height:44px;display:inline-flex;align-items:center}}
.portfolio-image {
  width: 100%;
  height: auto;
}
.field {
  margin: 15px 0;
}
.field label {
  display: block;
}
#unlock {
  max-width: 500px;
  margin-top: 30px;
}
body > main:not(:has(.hero)) {
  padding: 40px 5%;
}
body > main:not(:has(.hero)) > img {
  height: auto;
}
#unlock button {
  padding: 12px 20px;
  background: var(--gold);
  color: #111;
  border: 0;
  cursor: pointer;
}
@media (max-width: 960px) {
  .hero {
    gap: 4%;
    padding-block: 60px;
  }
  h1 {
    font-size: 46px;
  }
  .brand-stage {
    padding: 20px;
  }
  .services-grid {
    gap: 12px;
  }
  .service-card {
    padding: 25px 20px;
  }
  nav {
    gap: 18px;
  }
  .contact-section {
    gap: 5%;
  }
  .section {
    padding-block: 60px;
  }
  .button {
    padding: 13px;
  }
  .principle-grid {
    gap: 25px;
  }
}
@media (max-width: 650px) {
  .masthead {
    display: block;
    padding: 24px 6%;
  }
  nav {
    margin-top: 26px;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
  }
  .nav-team {
    padding: 9px 12px;
  }
  .nav-team span {
    margin-left: 9px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 6%;
    gap: 34px;
  }
  h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .lead {
    font-size: 14px;
  }
  .brand-stage {
    max-width: 460px;
    width: 100%;
    margin: auto;
  }
  .logo-box {
    aspect-ratio: 1.5;
    margin: 20px 0;
  }
  .service-strip {
    gap: 10px;
    letter-spacing: 1px;
    font-size: 8px;
    padding: 18px 6%;
  }
  .service-strip i {
    font-size: 10px;
  }
  .section {
    padding: 50px 6%;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .services-grid,
  .principle-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px;
  }
  .icon {
    margin-bottom: 24px;
  }
  .principle-grid {
    gap: 25px;
  }
  .contact-section {
    gap: 35px;
  }
  .contact-form {
    padding: 25px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .actions {
    gap: 10px;
  }
  footer {
    padding: 35px 6%;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .service-card:hover,
  .button:hover:not(:disabled) {
    transform: none;
  }
}
