:root {
  color-scheme: dark;
  --black: #050403;
  --ink: #0a0806;
  --panel: #11100d;
  --panel-strong: #18130c;
  --gold: #d9b76a;
  --gold-bright: #f4dda0;
  --bronze: #9b6d31;
  --sage: #879078;
  --wine: #3a1713;
  --text: #f8efd8;
  --muted: #c9bea7;
  --soft: rgba(248, 239, 216, 0.72);
  --line: rgba(217, 183, 106, 0.24);
  --shadow: rgba(0, 0, 0, 0.56);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #050403 0%, #090705 44%, #050403 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(18px, 4vw, 58px);
  background: rgba(5, 4, 3, 0.7);
  border-bottom: 1px solid rgba(217, 183, 106, 0.15);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(244, 221, 160, 0.22), rgba(155, 109, 49, 0.04)),
    #070604;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  overflow: hidden;
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.71rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.details a:hover {
  color: var(--gold-bright);
}

.header-cta {
  display: inline-flex;
  min-width: 78px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding: 134px clamp(18px, 5vw, 74px) 92px;
  border-bottom: 1px solid rgba(217, 183, 106, 0.18);
}

.hero::after {
  position: absolute;
  inset: auto clamp(18px, 5vw, 74px) 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.52;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/embodied-gold-hero.png") center right / cover no-repeat;
  transform: scale(1.025);
  filter: saturate(0.96) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.98) 0%, rgba(5, 4, 3, 0.78) 42%, rgba(5, 4, 3, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.9), transparent 48%),
    linear-gradient(145deg, rgba(58, 23, 19, 0.3), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3.95rem, 9.2vw, 8.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.7vw, 4.85rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.44rem;
}

.hero-copy,
.lead {
  color: var(--soft);
  font-size: clamp(1.07rem, 2vw, 1.28rem);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-actions,
.appointment {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 44%, var(--bronze));
  color: #120d04;
  box-shadow: 0 18px 44px rgba(217, 183, 106, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(5, 4, 3, 0.5);
  color: var(--text);
}

.hero-footer {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 74px);
  right: clamp(18px, 5vw, 74px);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: rgba(248, 239, 216, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-band,
.work,
.contact {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 74px);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(17, 16, 13, 0.88), rgba(5, 4, 3, 0.98)),
    var(--ink);
}

.statement-grid,
.work,
.process-layout,
.appointment,
.contact {
  max-width: var(--max);
  margin-inline: auto;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: end;
}

.quiet-panel {
  border-left: 1px solid var(--line);
  padding: 8px 0 8px clamp(22px, 4vw, 38px);
}

.quiet-panel p,
.section-heading p,
.work-card p,
.steps span,
.appointment p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.work {
  background:
    linear-gradient(180deg, var(--black), #090705 58%, var(--black));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.48fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.work-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(24, 19, 12, 0.93), rgba(8, 7, 5, 0.94)),
    var(--panel);
  box-shadow: 0 24px 58px var(--shadow);
}

.work-number {
  display: block;
  margin-bottom: 54px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 24px 24px 24px 82px;
  border: 1px solid rgba(217, 183, 106, 0.22);
  border-radius: 8px;
  background: rgba(5, 4, 3, 0.44);
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  content: counter(steps);
  counter-increment: steps;
  font-family: Georgia, "Times New Roman", serif;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.appointment {
  justify-content: space-between;
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.appointment div {
  max-width: 760px;
}

.appointment h2 {
  margin-bottom: 16px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(58, 23, 19, 0.22), transparent 38%),
    #080604;
}

.details {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.details div {
  padding-top: 16px;
  border-top: 1px solid rgba(217, 183, 106, 0.18);
}

.details dt {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.details dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 19, 12, 0.97), rgba(10, 8, 5, 0.97));
  box-shadow: 0 24px 70px var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(217, 183, 106, 0.3);
  border-radius: 6px;
  background: rgba(5, 4, 3, 0.78);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(244, 221, 160, 0.54);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 74px);
  border-top: 1px solid rgba(217, 183, 106, 0.16);
  color: rgba(248, 239, 216, 0.66);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1000px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-top: 126px;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.52)),
      linear-gradient(0deg, rgba(5, 4, 3, 0.92), transparent 50%);
  }

  h1 {
    font-size: clamp(3.15rem, 14vw, 5.2rem);
  }

  .statement-grid,
  .section-heading,
  .process-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .quiet-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }
}

@media (max-width: 560px) {
  .brand strong {
    max-width: 190px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-width: 64px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: auto;
  }

  .work-number {
    margin-bottom: 34px;
  }

  .steps li {
    padding: 22px;
  }

  .steps li::before {
    position: static;
    margin-bottom: 18px;
  }

  .hero-actions .button,
  .appointment .button {
    width: 100%;
  }

  .hero-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 56px;
  }
}
