:root {
  --bg: #0f0e0c;
  --surface: #1a1814;
  --surface-2: #242019;
  --text: #f7f2e9;
  --muted: #b8aa96;
  --accent: #f0c14b;
  --accent-2: #ff8c42;
  --border: #3d362c;
  --laser-magenta: #d946b8;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-tagline: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(240, 193, 75, 0.14), transparent 50%),
    radial-gradient(circle at 92% 18%, rgba(255, 140, 66, 0.09), transparent 32%),
    linear-gradient(180deg, var(--bg), #080706);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(15, 14, 12, 0.82);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner,
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.header-inner {
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: flex;
  color: var(--accent);
  opacity: 0.92;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.theme-toggle {
  background: linear-gradient(145deg, #2a261f, #352f26);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.875rem;
}

.theme-toggle--hero {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.theme-toggle--hero:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-photo {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.hero-photo__media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-laser.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-photo__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.65) 0%, rgba(8, 6, 10, 0.15) 32%, rgba(8, 6, 10, 0.2) 55%, rgba(6, 5, 8, 0.92) 100%);
  pointer-events: none;
}

.hero-photo__column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
}

.hero-photo__topbar {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.header-inner--hero {
  align-items: center;
}

.brand-link--hero {
  opacity: 0.95;
}

.brand-mark--hero {
  display: flex;
  color: #fff;
}

.site-nav--hero {
  margin-left: auto;
}

.site-nav--hero a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav--hero a:hover,
.site-nav--hero a:focus-visible {
  color: #fff;
}

.hero-photo__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.75rem) 1rem;
}

.hero-photo__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.35rem, 4.2vw, 2.35rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-photo__rule {
  display: block;
  width: min(320px, 78%);
  height: 1px;
  margin: 1.15rem auto;
  border: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.85) 0,
    rgba(255, 255, 255, 0.85) 4px,
    transparent 4px,
    transparent 8px
  );
  opacity: 0.85;
}

.hero-photo__tagline {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-tagline);
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.hero-photo__tagline-line {
  display: block;
}

.hero-photo__tagline-line--solo {
  margin-top: 0.15em;
}

.hero-photo__bottom {
  margin-top: auto;
  width: 100%;
}

.hero-contact {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(2rem, 4vw, 3rem);
  background: rgba(10, 8, 12, 0.82);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-contact__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hero-contact__heading {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: rgba(240, 236, 232, 0.95);
}

.hero-contact__sub {
  margin: 0.35rem 0 1.15rem;
  font-size: 0.95rem;
  color: rgba(220, 215, 208, 0.85);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--laser-magenta);
  outline-offset: 2px;
  border-color: rgba(217, 70, 184, 0.45);
}

.contact-form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.contact-form__submit {
  margin-top: 0.35rem;
  align-self: center;
  padding: 0.72rem 2.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(135deg, #e855c8 0%, #b03092 50%, #7c1f6a 100%);
  box-shadow: 0 6px 22px rgba(217, 70, 184, 0.35);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217, 70, 184, 0.42);
}

.hero-contact__note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: rgba(200, 195, 188, 0.65);
  line-height: 1.4;
}

.hero-contact__note code {
  font-size: 0.72rem;
  padding: 0.08rem 0.28rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-feedback {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.4;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(40, 160, 90, 0.25);
  color: rgba(245, 252, 246, 0.98);
}

.contact-feedback--ok {
  border-color: rgba(120, 220, 160, 0.45);
}

.contact-feedback--error {
  background: rgba(180, 50, 65, 0.28);
  border-color: rgba(255, 120, 140, 0.35);
  color: rgba(255, 236, 238, 0.98);
}

.contact-feedback[hidden] {
  display: none !important;
}

.main-below-hero {
  padding-top: 0.25rem;
}

.hero {
  margin: 1.75rem 0 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(240, 193, 75, 0.07), transparent 40%),
    linear-gradient(185deg, rgba(36, 32, 25, 0.96), rgba(22, 20, 17, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 840px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.hero-kicker {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.hero h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-copy {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #e8b636, #c9972e);
  color: #1a150c;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(240, 193, 75, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 193, 75, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.hero-panel-label {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  z-index: 2;
}

.hero-panel-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laser-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(240, 193, 75, 0.85), transparent);
  opacity: 0.65;
}

.laser-line--h {
  width: 72%;
  height: 2px;
  top: 46%;
  animation: pulse-line 4s ease-in-out infinite;
}

.laser-line--v {
  width: 2px;
  height: 72%;
  left: 48%;
  background: linear-gradient(180deg, transparent, rgba(255, 140, 66, 0.75), transparent);
  animation: pulse-line 5s ease-in-out infinite reverse;
}

.hero-glow {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 193, 75, 0.55) 0%, transparent 70%);
  filter: blur(6px);
  animation: glow-pulse 3.5s ease-in-out infinite;
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  margin: 1.75rem 0 2.25rem;
}

.section-lead {
  margin: -0.35rem 0 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

h2 {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
}

.section-icon {
  font-size: 0.95rem;
  opacity: 0.85;
  color: var(--accent);
}

.section--band {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(240, 193, 75, 0.04);
}

.grid {
  display: grid;
  gap: 0.85rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(240, 193, 75, 0.06), transparent 45%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: 0.85rem;
  padding: 1rem 1rem 1.15rem;
  overflow: hidden;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

a.card:hover,
a.card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.card--static {
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

.card--static:hover {
  border-color: rgba(240, 193, 75, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.card-thumb {
  height: 112px;
  border-radius: 0.55rem;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-end;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(247, 242, 233, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background:
    linear-gradient(165deg, hsla(var(--thumb-hue, 42), 42%, 42%, 0.55), hsla(var(--thumb-hue, 42), 30%, 14%, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.steps li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(240, 193, 75, 0.18);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

.steps span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.contact-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 52ch;
}

.contact-actions .btn-primary {
  word-break: break-all;
}

.contact-note {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 2.75rem;
}

.footer-inner {
  padding: 1rem 0 1.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.hidden {
  display: none;
}

body.light {
  --bg: #f5f0e6;
  --surface: #ffffff;
  --surface-2: #faf6ef;
  --text: #1c1915;
  --muted: #5c554a;
  --accent: #b8891c;
  --accent-2: #c95d28;
  --border: #e0d6c8;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 137, 28, 0.12), transparent 52%),
    linear-gradient(180deg, var(--bg), #ebe4d8);
}

body.light .site-header {
  background: rgba(245, 240, 230, 0.92);
}

body.light .hero {
  background:
    linear-gradient(145deg, rgba(184, 137, 28, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.98));
}

body.light .hero-panel {
  background: var(--surface-2);
}

body.light .laser-line--h {
  background: linear-gradient(90deg, transparent, rgba(184, 137, 28, 0.65), transparent);
}

body.light .laser-line--v {
  background: linear-gradient(180deg, transparent, rgba(201, 93, 40, 0.55), transparent);
}

body.light .hero-glow {
  background: radial-gradient(circle, rgba(184, 137, 28, 0.35) 0%, transparent 70%);
}

body.light .btn-primary {
  background: linear-gradient(135deg, #c9a227, #a9861f);
  color: #fffdf8;
}

body.light .theme-toggle {
  background: linear-gradient(145deg, #fff, #f2ebe0);
  color: var(--text);
}

@media (max-width: 720px) {
  .site-nav {
    width: 100%;
    order: 3;
    margin-left: 0;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
  }

  .header-inner--hero .site-nav--hero {
    border-top-color: rgba(255, 255, 255, 0.15);
    justify-content: center;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .header-inner--hero {
    gap: 0.65rem;
  }

  .header-inner--hero .theme-toggle--hero {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
