:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: rgba(247, 242, 232, 0.72);
  --soft: rgba(247, 242, 232, 0.16);
  --line: rgba(247, 242, 232, 0.24);
  --gold: #c9a05a;
  --deep: #120f0c;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--deep);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 56px);
  isolation: isolate;
}

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

.hero-media {
  background-image: url("/assets/leather-workshop-hero.png?v=20260712");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.93) 0%, rgba(12, 9, 6, 0.78) 38%, rgba(12, 9, 6, 0.36) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.68) 100%);
}

.topbar,
.footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(18, 15, 12, 0.52);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
}

.hero-content {
  align-self: center;
  max-width: 720px;
  padding-block: clamp(76px, 13vh, 148px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(201, 160, 90, 0.72);
}

.footer-note {
  align-self: end;
  gap: 18px;
  color: rgba(247, 242, 232, 0.62);
  font-size: 0.86rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
    padding: 20px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.76) 0%, rgba(8, 7, 6, 0.82) 46%, rgba(8, 7, 6, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.76), rgba(8, 7, 6, 0.42));
  }

  .hero-content {
    padding-block: 78px 72px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.5rem, 18vw, 5.8rem);
  }

  .lead {
    max-width: 34rem;
  }

  .footer-note {
    align-items: flex-start;
    flex-direction: column;
  }
}
