body {
  margin: 0;
  padding-top: 190px;
  background: #120d0a;
  color: #f5efe2;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-top {
  padding: 18px 28px;
  background: linear-gradient(180deg, #231811 0%, #140d09 100%);
  border-bottom: 1px solid rgba(201, 168, 103, 0.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.brand-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-kicker {
  color: #c9a867;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #f8f0de;
}

.header-menu {
  background: rgba(18, 13, 10, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 168, 103, 0.24);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.main-nav {
  display: flex;
  gap: 12px;
  padding: 14px 28px;
}

.main-nav a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 103, 0.45);
  background: linear-gradient(180deg, rgba(98, 70, 37, 0.5), rgba(48, 31, 16, 0.8));
  color: #f6eddc;
  transition: transform 0.15s ease, background 0.15s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(130, 92, 47, 0.7), rgba(64, 41, 21, 0.92));
}

.page-shell {
  padding: 32px 0 60px 0;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 92%;
  background-repeat: no-repeat;
  background-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 40px 24px;
  padding: 34px 38px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(0, 0, 0, 0.82),
    0 0 110px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
}

.hero-subtitle,
.hero-title,
.hero-text {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.95),
    0 0 24px rgba(0, 0, 0, 0.95),
    0 0 44px rgba(0, 0, 0, 0.75);
}

.hero-subtitle {
  margin: 0 0 10px 0;
  color: #d8bc79;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.hero-title {
  margin: 0 0 14px 0;
  font-size: 3rem;
  line-height: 1.1;
  color: #fff8ea;
}

.hero-text {
  margin: 0;
  font-size: 1.1rem;
  color: #f6eddc;
}

.content-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: -70px auto 0 auto;
  position: relative;
  z-index: 3;
}

.card {
  background: linear-gradient(180deg, rgba(36, 24, 18, 0.96), rgba(19, 13, 10, 0.98));
  border: 1px solid rgba(201, 168, 103, 0.22);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  margin-bottom: 22px;
}

.card h2 {
  margin-top: 0;
  color: #f8f0de;
  font-size: 2rem;
}

.card h3 {
  color: #d8bc79;
  margin-top: 24px;
  margin-bottom: 8px;
}

.card p {
  color: #eadfca;
  line-height: 1.7;
}

.faq-item + .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 103, 0.18);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-copy {
  flex: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff4df;
  border: 1px solid rgba(201, 168, 103, 0.45);
  background: linear-gradient(180deg, #7b5527 0%, #4a2e15 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.cta-button img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}

.cta-button span {
  font-weight: bold;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .brand-copy h1 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-top,
  .main-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero-content {
    padding: 24px 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .card {
    padding: 20px;
  }
}

.form-page {
  width: min(360px, calc(100% - 320px));
  margin: 0 auto;
}

.form-card {
  background: linear-gradient(180deg, rgba(36, 24, 18, 0.96), rgba(19, 13, 10, 0.98));
  border: 1px solid rgba(201, 168, 103, 0.22);
  border-radius: 22px;
  padding: 34px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.form-card h1,
.form-card h2,
.form-card h3 {
  color: #f8f0de;
}

.form-intro {
  margin-bottom: 24px;
  color: #eadfca;
}

.form-section {
  margin-top: 34px;
}

.form-section h2 {
  margin: 0 0 18px 0;
  font-size: 2rem;
}

.choice-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.inline-radio-group {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.choice-group label,
.radio-group label,
.inline-radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2e8d6;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.92rem;
  color: #d8bc79;
  font-weight: bold;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(201, 168, 103, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
  padding: 14px 14px;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 239, 226, 0.55);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(216, 188, 121, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 188, 121, 0.14);
}

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

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.upload-box {
  border: 1px dashed rgba(216, 188, 121, 0.4);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 248, 234, 0.04);
}

.upload-box label {
  display: block;
  margin-bottom: 10px;
  color: #d8bc79;
  font-weight: bold;
}

.upload-box input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(201, 168, 103, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
}

.upload-help {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #eadfca;
}

.form-legal {
  margin-top: 26px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #d8cfbc;
}

@media (max-width: 800px) {
  .form-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 18px;
  }
}

.page-shell {
  padding: 32px 0 60px 0;
}

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

.form-card {
  background: linear-gradient(180deg, rgba(36, 24, 18, 0.96), rgba(19, 13, 10, 0.98));
  border: 1px solid rgba(201, 168, 103, 0.22);
  border-radius: 22px;
  padding: 34px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.form-card h1,
.form-card h2,
.form-card h3 {
  color: #f8f0de;
}

.form-intro {
  margin-bottom: 24px;
  color: #eadfca;
}

.form-section {
  margin-top: 34px;
}

.form-section h2 {
  margin: 0 0 18px 0;
  font-size: 2rem;
}

.choice-group,
.inline-radio-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.inline-radio-group {
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
}

.choice-group label,
.inline-radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2e8d6;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 22px;
}

.form-grid-spaced {
  margin-top: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.92rem;
  color: #d8bc79;
  font-weight: bold;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(201, 168, 103, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
  padding: 14px 14px;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 239, 226, 0.55);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(216, 188, 121, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 188, 121, 0.14);
}

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

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.upload-box {
  border: 1px dashed rgba(216, 188, 121, 0.4);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 248, 234, 0.04);
}

.upload-box label {
  display: block;
  margin-bottom: 10px;
  color: #d8bc79;
  font-weight: bold;
}

.upload-box input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid rgba(201, 168, 103, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
}

.upload-help {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #eadfca;
}

.form-submit {
  border: 1px solid rgba(201, 168, 103, 0.45);
  border-radius: 14px;
  background: linear-gradient(180deg, #7b5527 0%, #4a2e15 100%);
  color: #fff4df;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.form-submit:hover {
  background: linear-gradient(180deg, #8b6230 0%, #5a391b 100%);
}

.form-legal {
  margin-top: 26px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #d8cfbc;
}

.field-errors ul,
.form-errors ul {
  margin: 8px 0 0 0;
  padding-left: 18px;
  color: #ffb3a7;
}

@media (max-width: 800px) {
  .form-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px 18px;
  }
}

.glte-form {
  margin-top: 10px;
}

.radio-stack ul,
.inline-radio-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.radio-stack li,
.inline-radio-group li {
  margin: 0;
  padding: 0;
}

.radio-stack label,
.inline-radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  color: #f1e5ce;
  font-size: 1rem;
}

.radio-stack input[type="radio"],
.inline-radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #c9a867;
  flex: 0 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-top: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #d8bc79;
  letter-spacing: 0.01em;
}

.glte-input,
.glte-select,
.glte-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(201, 168, 103, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
  padding: 12px 14px;
  font-size: 1rem;
  line-height: 1.35;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.glte-input::placeholder,
.glte-textarea::placeholder {
  color: rgba(245, 239, 226, 0.48);
}

.glte-input:focus,
.glte-select:focus,
.glte-textarea:focus {
  border-color: rgba(216, 188, 121, 0.7);
  box-shadow: 0 0 0 3px rgba(216, 188, 121, 0.14);
  background: rgba(255, 248, 234, 0.11);
}

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

.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 18px;
}

.upload-box {
  border: 1px dashed rgba(216, 188, 121, 0.38);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 248, 234, 0.04);
}

.upload-box label {
  display: block;
  margin-bottom: 12px;
  color: #d8bc79;
  font-weight: 700;
}

.upload-help {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #eadfca;
}

.field-errors ul,
.form-errors ul {
  margin: 8px 0 0 0;
  padding-left: 18px;
  color: #ffb3a7;
}

@media (max-width: 820px) {
  .form-grid,
  .upload-grid {
    grid-template-columns: 1fr;
  }
}

.glte-file-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 103, 0.22);
  background: rgba(255, 248, 234, 0.08);
  color: #f8f0de;
}

.glte-file-input::file-selector-button {
  margin-right: 14px;
  border: 1px solid rgba(201, 168, 103, 0.45);
  border-radius: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #7b5527 0%, #4a2e15 100%);
  color: #fff4df;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.glte-file-input::file-selector-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #8b6230 0%, #5a391b 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.form-submit {
  border: 1px solid rgba(201, 168, 103, 0.5);
  border-radius: 14px;
  background: linear-gradient(180deg, #8a6030 0%, #523117 100%);
  color: #fff4df;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.30);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #9a6d37 0%, #633a1b 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.form-submit:active {
  transform: translateY(0);
}

.glte-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.05));
  color: #f8f0de;
}

.glte-select option {
  background: #241812;
  color: #f8f0de;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  border: 1px solid rgba(201, 168, 103, 0.58);
  border-radius: 16px;
  background: linear-gradient(180deg, #9a6d37 0%, #5d3618 100%);
  color: #fff6e8;
  padding: 16px 30px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-submit:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #ad7a3d 0%, #6a3d1c 100%);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.form-submit:active {
  transform: translateY(0);
}

.form-legal {
  margin-top: 34px;
  padding-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #d8cfbc;
}

.form-actions {
  margin-top: 48px !important;
  padding-top: 16px !important;
  display: flex !important;
  justify-content: center !important;
}

button.form-submit,
input.form-submit,
.form-actions .form-submit {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(201, 168, 103, 0.58) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #9a6d37 0%, #5d3618 100%) !important;
  color: #fff6e8 !important;
  padding: 16px 30px !important;
  min-width: 260px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  cursor: pointer !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  text-decoration: none !important;
}

button.form-submit:hover,
input.form-submit:hover,
.form-actions .form-submit:hover {
  background: linear-gradient(180deg, #ad7a3d 0%, #6a3d1c 100%) !important;
  transform: translateY(-1px) !important;
}

.form-errors {
  margin: 0 0 24px 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 120, 120, 0.35);
  background: rgba(120, 20, 20, 0.22);
  color: #ffd1c7;
  line-height: 1.5;
}

.form-errors ul {
  margin: 8px 0 0 18px;
}
