:root {
  color-scheme: dark;
  --black: #050504;
  --black-soft: #0b0a08;
  --panel: rgba(15, 13, 9, 0.82);
  --panel-solid: #100e0a;
  --ivory: #fff8e7;
  --gold-pale: #ffe6a0;
  --gold: #d8aa4d;
  --gold-deep: #8c5e17;
  --muted: #c6b992;
  --line: rgba(238, 198, 111, 0.2);
  --line-strong: rgba(238, 198, 111, 0.42);
  --success: #6ed29a;
  --danger: #ff8f7e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.18), rgba(4, 4, 3, 0.78) 48%, #050504 92%),
    url("assets/gbsr-background.png") center top / cover fixed no-repeat,
    var(--black);
  font-family: var(--sans);
  letter-spacing: 0;
}
body {
  background:
    linear-gradient(180deg, rgba(4, 4, 3, 0.18), rgba(4, 4, 3, 0.78) 48%, #050504 92%),
    url("assets/gbsr-background.png") center top / cover fixed no-repeat,
    var(--black);
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.98;
}

h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--nav-x, 50%) var(--nav-y, 50%), rgba(255, 220, 136, 0.18), transparent 19%),
    rgba(5, 5, 4, 0.82);
  backdrop-filter: blur(22px) saturate(125%);
}

.site-header::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--nav-x, 50%) var(--nav-y, 50%), rgba(255, 246, 210, 0.16), transparent 10%);
  opacity: var(--nav-light, 0);
  transition: opacity 180ms ease;
}

.site-header:hover {
  --nav-light: 1;
}

.brand,
.nav-links,
.nav-toggle {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  color: var(--gold-pale);
  text-transform: uppercase;
}

.brand::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 20px rgba(255, 216, 124, 0.74);
}

.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand-suffix {
  color: #c6ad70;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #d9cfb4;
  font-size: 13px;
  font-weight: 600;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--line);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.045);
}

.nav-links .nav-contact {
  margin-left: 8px;
  border-color: rgba(239, 203, 120, 0.45);
  color: #090704;
  background: linear-gradient(135deg, #ffebac, #d6a447 55%, #a56c17);
  box-shadow: 0 8px 24px rgba(198, 145, 46, 0.18);
}

.nav-links .nav-contact:hover,
.nav-links .nav-contact[aria-current="page"] {
  border-color: #ffe7a0;
  color: #050504;
  background: linear-gradient(135deg, #fff3c9, #e1b55f 58%, #b27820);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-pale);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: 180ms ease;
}

.nav-toggle-icon {
  top: 21px;
}

.nav-toggle-icon::before {
  top: -6px;
  left: 0;
}

.nav-toggle-icon::after {
  top: 6px;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(70px, 10vw, 142px) clamp(20px, 6vw, 90px) 48px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.08), rgba(5, 5, 4, 0.72) 76%, #050504),
    radial-gradient(circle at 50% 22%, rgba(255, 208, 92, 0.22), transparent 26%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1050px;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero h1 {
  max-width: 1030px;
  color: #fff2c8;
  text-wrap: balance;
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.62);
}

.hero-text {
  max-width: 750px;
  margin: 28px auto 0;
  color: #d9cfb5;
  font-size: 17px;
}

.hero-stars {
  width: min(380px, 76vw);
  margin: 15px auto -6px;
}

.hero-stars img {
  width: 100%;
  filter:
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 20px rgba(255, 201, 75, 0.3));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: rgba(255, 229, 157, 0.62);
  color: #080604;
  background: linear-gradient(135deg, #fff1bd, #dda943 54%, #a56b15);
  box-shadow: 0 14px 36px rgba(188, 129, 29, 0.24);
}

.button.primary:hover {
  box-shadow: 0 18px 44px rgba(216, 165, 70, 0.32);
}

.button.ghost {
  color: var(--ivory);
  background: rgba(5, 5, 4, 0.34);
  backdrop-filter: blur(12px);
}

.button.ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.065);
}

.hero-caption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  margin-top: clamp(62px, 9vh, 110px);
  color: #ac9e7a;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-caption span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-caption span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(6, 6, 5, 0.88);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  min-height: 118px;
  padding: 26px clamp(20px, 3.2vw, 46px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.trust-strip span {
  color: #938767;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section,
.page {
  position: relative;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 90px);
}

.page {
  min-height: calc(100vh - 82px);
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.35), rgba(5, 5, 4, 0.86));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 130px;
}

.section-intro p:last-child,
.section-heading > p:last-child,
.page-title > p:last-child {
  max-width: 720px;
  margin-top: 24px;
  font-size: 16px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article,
.service-grid article,
.values article,
.industry-grid article,
.result-card,
.contact-form,
.admin-form,
.admin-output > div {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.steps article {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 30px 30px 26px 94px;
}

.steps article::before {
  position: absolute;
  inset: 0 auto 0 66px;
  width: 1px;
  content: "";
  background: var(--line);
}

.step-number,
.service-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-number {
  position: absolute;
  top: 34px;
  left: 22px;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p,
.service-grid p {
  margin: 0;
  font-size: 14px;
}

.services-section {
  border-block: 1px solid rgba(238, 198, 111, 0.1);
  background: rgba(7, 7, 5, 0.72);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-grid article {
  min-height: 280px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-grid article:hover,
.industry-grid article:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(255, 225, 145, 0.1), rgba(255, 255, 255, 0.02));
  transform: translateY(-5px);
}

.service-grid h3 {
  margin: 72px 0 14px;
}

.industries-section {
  background: linear-gradient(180deg, rgba(5, 5, 4, 0.8), rgba(10, 8, 5, 0.94));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.industry-grid article {
  display: grid;
  min-height: 170px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 20px 12px;
  text-align: center;
  transition: 220ms ease;
}

.industry-grid h3 {
  font-size: 19px;
}

.industry-sticker {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 232, 170, 0.64);
  border-radius: 50%;
  color: #090704;
  background: radial-gradient(circle at 34% 26%, #fff8dc, #e1ad4c 42%, #8d5b13 78%);
  box-shadow:
    inset 0 0 0 5px rgba(255, 246, 210, 0.18),
    0 14px 34px rgba(207, 152, 44, 0.2);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.industry-more {
  grid-column: span 2;
}

.nomination-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(62px, 8vw, 100px) clamp(20px, 6vw, 90px);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.96), rgba(40, 28, 9, 0.84)),
    url("assets/gbsr-background.png") center 66% / cover;
}

.nomination-band > div {
  max-width: 850px;
}

.nomination-band h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.page-title {
  max-width: 1050px;
  margin: 0 0 clamp(60px, 8vw, 110px);
  padding-top: clamp(16px, 4vw, 46px);
}

.page-title.narrow {
  max-width: 920px;
}

.page-title h1,
.contact-copy h1,
.verify-intro h1,
.admin-intro h1 {
  font-size: clamp(48px, 6vw, 82px);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.album-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.album-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.album-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.album-card.featured .album-art {
  min-height: 430px;
}

.album-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 4, 0.74));
}

.album-art span {
  position: absolute;
  right: 24px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255, 243, 206, 0.76);
  font-family: var(--serif);
  font-size: 48px;
}

.album-art.gold {
  background-image: url("assets/gbsr-background.png");
}

.album-art.ceremony {
  background:
    linear-gradient(135deg, rgba(7, 7, 5, 0.14), rgba(158, 100, 14, 0.36)),
    url("assets/hero-certificate.png") center / cover;
}

.album-art.industry {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 218, 118, 0.36), transparent 30%),
    linear-gradient(135deg, #171207, #4e330c 55%, #0c0a06);
}

.album-art.leadership {
  background:
    linear-gradient(45deg, rgba(255, 226, 146, 0.08) 25%, transparent 25%) 0 0 / 42px 42px,
    linear-gradient(135deg, #070705, #51350d);
}

.album-content {
  padding: 30px;
}

.album-card.featured .album-content {
  display: grid;
  align-content: center;
  padding: 46px;
}

.album-label,
.result-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.album-content h2 {
  font-size: 38px;
}

.about-story {
  padding-inline: 0;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.values article {
  display: grid;
  min-height: 190px;
  align-content: end;
  gap: 12px;
  padding: 28px;
}

.values strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 26px;
}

.values span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-layout,
.verify-shell,
.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.contact-copy,
.verify-intro,
.admin-intro {
  padding-top: 32px;
}

.contact-copy > p,
.verify-intro > p,
.admin-intro > p {
  max-width: 650px;
  font-size: 16px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.contact-lines div {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-lines span {
  color: #8f8263;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-lines strong {
  color: var(--gold-pale);
  font-size: 15px;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.form-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.form-heading span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 9px;
  color: #d9cdad;
  font-size: 12px;
  font-weight: 600;
}

.optional-text {
  display: inline;
  margin-left: 5px;
  color: #897b5c;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(238, 198, 111, 0.18);
  border-radius: 3px;
  outline: 0;
  padding: 15px 16px;
  color: var(--ivory);
  background: rgba(0, 0, 0, 0.34);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(216, 170, 77, 0.08);
}

input::placeholder,
textarea::placeholder {
  color: #6e654f;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.verify-form {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.verify-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.verify-note {
  margin-top: 16px;
  color: #8e8265;
  font-size: 12px !important;
}

.result-card {
  min-height: 470px;
  padding: clamp(28px, 5vw, 52px);
}

.result-empty,
.result-loading,
.result-valid,
.result-invalid {
  display: grid;
  height: 100%;
  align-content: center;
  justify-items: start;
}

.seal {
  display: inline-grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(255, 230, 160, 0.7);
  border-radius: 50%;
  color: #070604;
  background: radial-gradient(circle at 36% 28%, #fff6d0, #d7a74c 46%, #8b5911);
  box-shadow:
    inset 0 0 0 6px rgba(255, 249, 224, 0.18),
    0 16px 45px rgba(201, 144, 36, 0.24);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.result-card h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.status-line {
  display: inline-flex;
  margin: 0 0 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-valid .status-line {
  color: var(--success);
}

.result-invalid .status-line {
  color: var(--danger);
}

.certificate-facts {
  display: grid;
  width: 100%;
  margin-top: 28px;
}

.certificate-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.certificate-facts span {
  color: #8e8265;
  font-size: 12px;
}

.certificate-facts strong {
  color: var(--ivory);
  text-align: right;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(300px, 750px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 40px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.96);
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 25px;
}

.footer-brand span {
  color: #776c54;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  color: #776d58;
  font-size: 10px;
  line-height: 1.65;
  text-align: right;
}

.admin-page {
  background:
    linear-gradient(135deg, rgba(5, 5, 4, 0.88), rgba(27, 18, 5, 0.82)),
    url("assets/gbsr-background.png") center / cover fixed;
}

.admin-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 30px auto;
}

.admin-shell > h1 {
  max-width: 620px;
  margin: clamp(70px, 12vh, 140px) auto 30px;
  font-size: clamp(46px, 6vw, 72px);
  text-align: center;
}

#loginForm {
  max-width: 560px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.admin-header > span {
  color: #897b5c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-layout {
  padding: clamp(62px, 9vw, 110px) 0;
}

.admin-output {
  margin-bottom: 60px;
}

.admin-output > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  padding: 38px;
}

.certificate-info h2 {
  font-size: 48px;
}

.certificate-info a {
  color: var(--gold-pale);
  overflow-wrap: anywhere;
}

.qr-section {
  text-align: center;
}

.qr-section img {
  width: 220px;
  height: 220px;
  border: 10px solid white;
  border-radius: 3px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .split,
  .contact-layout,
  .verify-shell,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .industry-more {
    grid-column: span 2;
  }
}

@media (max-width: 800px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand-name {
    font-size: 24px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: 70px 14px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 10px;
    background: rgba(7, 7, 5, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links .nav-contact {
    margin: 5px 0 0;
    text-align: center;
  }

.hero {
    min-height: auto;
    padding: 25px 18px 20px;
}
  .hero-caption {
    margin-top: 58px;
  }

  .hero-caption span:not(:last-child)::after {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .album-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .album-card.featured .album-art {
    min-height: 320px;
  }

  .values,
  .form-row {
    grid-template-columns: 1fr;
  }

  .nomination-band,
  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .nomination-band {
    display: grid;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .trust-strip,
  .service-grid,
  .album-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-more {
    grid-column: span 2;
  }

  .steps article {
    padding: 76px 24px 25px;
  }

  .steps article::before {
    inset: 58px 24px auto;
    width: auto;
    height: 1px;
  }

  .step-number {
    top: 25px;
    left: 24px;
  }

  .verify-input-row,
  .admin-output > div {
    grid-template-columns: 1fr;
  }

  .verify-input-row .button {
    width: 100%;
  }

  .certificate-facts div {
    display: grid;
    gap: 5px;
  }

  .certificate-facts strong {
    text-align: left;
  }

  .qr-section {
    text-align: left;
  }
}
/* Project additions and final mobile launch polish */
.brand::before {
  display: none;
}

.brand-logo {
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(216, 170, 77, 0.22));
}

.album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-section {
  max-width: 940px;
  border-top: 1px solid var(--line);
  padding-inline: 0;
}

.editorial-section > p {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: 16px;
}

select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(238, 198, 111, 0.18);
  border-radius: 3px;
  outline: 0;
  padding: 0 15px;
  color: var(--ivory);
  background: #090805;
  font: inherit;
}

select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(216, 170, 77, 0.08);
}

.search-section {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  background: rgba(10, 9, 6, 0.82);
}

.search-section h3 {
  margin-bottom: 20px;
}

#searchResult {
  margin-top: 20px;
}

:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 3px;
}

.mobile-quick-contact {
  display: none;
}

@media (max-width: 800px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(4, 4, 3, 0.12), rgba(4, 4, 3, 0.78) 38%, #050504 82%),
      url("assets/mobile-bg.png") center top / 100% auto no-repeat,
      #050504;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 66px;
    padding: 8px max(15px, env(safe-area-inset-left)) 8px max(15px, env(safe-area-inset-right));
  }

  .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-size: 28px;
    line-height: 1;
    line-height: 1;
    white-space: nowrap;
}

.brand-suffix {
    font-size: 10px;
    letter-spacing: 0.18em;
    line-height: 1;
    white-space: nowrap;
}

  .nav-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  box-shadow: none;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background: #d4af37;
  content: "";
}

.nav-toggle-icon {
  top: 19px;
}

.nav-toggle-icon::before {
  top: -6px;
  left: 0;
}

.nav-toggle-icon::after {
  top: 6px;
  left: 0;
}

  .nav-links {
    inset: 66px 10px auto;
    max-height: calc(100svh - 78px);
    gap: 4px;
    overflow-y: auto;
    padding: 12px;
  }

  .nav-links a {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px 34px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.55;
    text-align: left;
  }

  .hero .eyebrow {
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    max-width: 560px;
    margin-top: 22px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .hero-stars {
    width: min(290px, 82vw);
    margin-top: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    min-height: 52px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .hero-caption {
    gap: 8px 16px;
    margin-top: 42px;
    font-size: 8px;
    line-height: 1.5;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    min-height: 104px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 18px;
  }

  .trust-strip div:nth-child(even) {
    border-right: 0;
  }

  .trust-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 29px;
  }

  .trust-strip span {
    font-size: 9px;
    line-height: 1.45;
  }

  .section,
  .page {
    padding: 68px 18px;
  }

  .page {
    min-height: auto;
  }

  .split,
  .contact-layout,
  .verify-shell,
  .admin-layout {
    gap: 44px;
  }

  h2,
  .page-title h1,
  .contact-copy h1,
  .verify-intro h1,
  .admin-intro h1 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: 1.02;
  }

  h3 {
    font-size: 25px;
    line-height: 1.12;
  }

  p,
  .section-intro p:last-child,
  .section-heading > p:last-child,
  .page-title > p:last-child,
  .contact-copy > p,
  .verify-intro > p,
  .admin-intro > p,
  .editorial-section > p {
    font-size: 15px;
    line-height: 1.78;
  }

  .section-heading,
  .page-title {
    margin-bottom: 38px;
  }

  .page-title {
    padding-top: 14px;
  }

  .section-intro {
    margin-bottom: 4px;
  }

  .steps,
  .service-grid {
    gap: 14px;
  }

  .steps article {
    min-height: 0;
    padding: 76px 24px 26px;
  }

  .steps article::before {
    inset: 58px 24px auto;
    width: auto;
    height: 1px;
  }

  .step-number {
    top: 24px;
    left: 24px;
  }

  .steps p,
  .service-grid p {
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.72;
  }

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

  .service-grid article {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .service-grid h3 {
    margin: 40px 0 12px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .industry-grid article {
    min-height: 142px;
    gap: 14px;
    padding: 18px 8px;
  }

  .industry-grid h3 {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .industry-sticker {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .industry-more {
    grid-column: span 2;
  }

  .nomination-band {
    gap: 28px;
    padding: 58px 18px;
    background-position: 72% center;
  }

  .nomination-band h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .nomination-band .button {
    width: 100%;
  }

  .album-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .album-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .album-art,
  .album-card.featured .album-art {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .album-content,
  .album-card.featured .album-content {
    padding: 24px 22px 28px;
  }

  .album-content h2 {
    font-size: 31px;
    line-height: 1.05;
  }

  .album-content p:last-child {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .values {
    gap: 12px;
  }

  .values article {
    min-height: 0;
    padding: 24px;
  }

  .editorial-section {
    padding-block: 54px;
  }

  .editorial-section > p + p {
    margin-top: 18px;
  }

  .contact-copy,
  .verify-intro,
  .admin-intro {
    padding-top: 0;
  }

  .contact-lines {
    margin-top: 30px;
  }

  .contact-lines div {
    padding-bottom: 16px;
  }

  .contact-lines strong {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .contact-form,
  .admin-form {
    gap: 17px;
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  textarea {
    min-height: 136px;
  }

  .contact-form .button,
  .admin-form .button {
    width: 100%;
  }

  .verify-input-row {
    grid-template-columns: 1fr;
  }

  .verify-input-row .button {
    width: 100%;
  }

  .result-card {
    min-height: 360px;
    padding: 28px 22px;
  }

  .seal {
    width: 66px;
    height: 66px;
    margin-bottom: 28px;
  }

  .certificate-facts div {
    display: grid;
    gap: 6px;
  }

  .certificate-facts strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .site-footer {
    gap: 22px;
    padding: 34px 18px calc(34px + env(safe-area-inset-bottom));
  }

  .copyright {
    font-size: 10px;
    line-height: 1.7;
  }

  .admin-shell {
    width: min(100% - 28px, 1240px);
    margin-block: 14px;
  }

  .admin-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .admin-header > span {
    order: 3;
    width: 100%;
  }

  .admin-output > div {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px;
  }

  .search-section {
    padding: 22px 18px;
  }

  .mobile-quick-contact {
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 60;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 235, 178, 0.54);
    border-radius: 999px;
    padding: 0 18px;
    color: #090704;
    background: linear-gradient(135deg, #fff1bd, #d9a844 58%, #a56c17);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44);
    font-size: 12px;
    font-weight: 700;
  }
}

@media (max-width: 380px) {
  .brand-suffix {
    display: none;
    line-height: 1;
position: relative;
top: -2px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:nth-child(even),
  .trust-strip div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }
}
