:root {
  color-scheme: dark;
  --bg: #030302;
  --panel: rgba(18, 14, 10, 0.78);
  --line: rgba(244, 198, 89, 0.28);
  --gold: #f1c45a;
  --gold-soft: #ffe1a0;
  --coral: #f06f72;
  --cyan: #70d5c6;
  --text: #fff7e8;
  --muted: rgba(255, 247, 232, 0.72);
  --quiet: rgba(255, 247, 232, 0.5);
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.7), rgba(3, 3, 2, 0.96) 72%),
    repeating-linear-gradient(90deg, rgba(241, 196, 90, 0.045) 0 1px, transparent 1px 72px),
    linear-gradient(135deg, #030302 0%, #090806 48%, #020202 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, rgba(240, 111, 114, 0.1), transparent 30%),
    linear-gradient(250deg, rgba(112, 213, 198, 0.08), transparent 32%);
  opacity: 0.75;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: url("aurata-logo-symbol.jpg");
  background-position: center 42%;
  background-repeat: no-repeat;
  background-size: min(82vw, 760px);
  filter: blur(2px);
  opacity: 0.07;
}

a {
  color: inherit;
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(241, 196, 90, 0.12);
  background: rgba(3, 3, 2, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

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

.brand-mini img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 196, 90, 0.35);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(241, 196, 90, 0.18);
}

.brand-mini strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mini span span {
  display: block;
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.72rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: var(--line);
  color: var(--gold-soft);
  background: rgba(255, 247, 232, 0.045);
}

.hero {
  display: grid;
  grid-template-columns: minmax(220px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 6vw, 88px);
  min-height: calc(80svh - 76px);
  padding: clamp(26px, 5vw, 62px) 0 clamp(42px, 6vw, 76px);
}

.hero-logo-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  position: absolute;
  left: 50%;
  width: 78%;
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(240, 111, 114, 0.75), rgba(241, 196, 90, 0.9), rgba(112, 213, 198, 0.72), transparent);
}

.hero-logo-wrap::before {
  top: -12px;
}

.hero-logo-wrap::after {
  bottom: -12px;
}

.hero-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(241, 196, 90, 0.22);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 90px var(--shadow), 0 0 46px rgba(241, 196, 90, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 9vw, 7rem);
  line-height: 0.93;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.62);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  line-height: 1.05;
}

.subtitle {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.1rem, 2.5vw, 1.72rem);
  font-weight: 600;
  line-height: 1.25;
}

.lead,
.plain-text {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.hero-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 1px solid rgba(241, 196, 90, 0.72);
  color: #15110a;
  background: linear-gradient(180deg, #ffe39c, #d79c29);
  box-shadow: 0 14px 36px rgba(241, 196, 90, 0.16);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.is-quiet {
  border-color: rgba(255, 247, 232, 0.2);
  color: var(--text);
  background: rgba(255, 247, 232, 0.045);
  box-shadow: none;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 247, 232, 0.12);
  border-radius: 999px;
  color: var(--quiet);
  background: rgba(255, 247, 232, 0.035);
  font-size: 0.86rem;
}

.content-band {
  border-top: 1px solid rgba(241, 196, 90, 0.17);
  border-bottom: 1px solid rgba(241, 196, 90, 0.1);
  background: rgba(8, 7, 5, 0.5);
}

.section {
  padding: clamp(42px, 7vw, 82px) 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.contact-panel {
  padding: 16px 18px;
  border: 1px solid rgba(241, 196, 90, 0.16);
  border-radius: 8px;
  background: var(--panel);
}

.feature-list strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.98rem;
}

.feature-list span {
  display: block;
  margin-top: 7px;
  color: var(--quiet);
  font-size: 0.92rem;
  line-height: 1.55;
}

.small-logo {
  width: min(34vw, 170px);
  min-width: 86px;
  border-radius: 8px;
  opacity: 0.92;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.44);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(241, 196, 90, 0.2);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(241, 196, 90, 0.08);
}

.notice.is-error {
  border-color: rgba(240, 111, 114, 0.36);
  color: #ffb4b7;
  background: rgba(240, 111, 114, 0.08);
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 247, 232, 0.1);
  color: var(--quiet);
  font-size: 0.86rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-logo-wrap {
    width: min(68vw, 300px);
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .tag-row {
    justify-content: center;
  }

  .eyebrow::before {
    display: none;
  }

  .lead,
  .plain-text,
  .subtitle {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1180px);
  }

  .main-nav a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.68rem, 16vw, 4.15rem);
  }

  .hero-logo-wrap {
    width: min(72vw, 250px);
  }

  .button,
  button.button {
    width: 100%;
  }
}
