:root {
  --color-black: #000000;
  --color-black-soft: #050505;
  --color-gold-500: #c8a25a;
  --color-gold-400: #e2c57b;
  --color-white: #ffffff;
  --color-off-white: #f5f7fb;
  --color-slate-100: #e9eef7;
  --color-slate-200: #d6deea;
  --color-slate-300: #becadc;
  --color-slate-500: #6d7b95;
  --color-slate-700: #31405d;
  --color-text-dark: #12203d;
  --color-text-light: #f8fbff;
  --color-success-bg: #e8f7ee;
  --color-success-text: #15603b;
  --shadow-soft: 0 20px 60px rgba(5, 12, 28, 0.12);
  --shadow-strong: 0 24px 80px rgba(3, 10, 25, 0.28);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container-width: 1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--color-text-dark);
  background: var(--color-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
}

textarea {
  resize: vertical;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(226, 197, 123, 0.12), transparent 22%),
    linear-gradient(180deg, #000000 0%, #000000 100%);
  color: var(--color-text-light);
  padding: 40px 0 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  min-height: 100vh;
}

.hero-panel {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-logo-card {
  width: min(100%, 760px);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo-image {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.hero-copy {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--color-gold-400);
  margin-bottom: 10px;
}

.eyebrow::before {
  content: none;
  display: none;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold-400), var(--color-white));
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: clamp(2rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 12ch;
}

.hero-text {
  margin-top: 18px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 1rem;
  max-width: 64ch;
}

.hero-promise {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: rgba(200, 162, 90, 0.14);
  border: 1px solid rgba(226, 197, 123, 0.28);
  color: var(--color-white);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-400));
  color: #000000;
  box-shadow: 0 16px 32px rgba(200, 162, 90, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(200, 162, 90, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid rgba(226, 197, 123, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
}

.trust-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  justify-items: center;
}

.trust-strip li {
  position: relative;
  padding-left: 18px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.96rem;
  text-align: left;
}

.trust-strip li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-400);
  box-shadow: 0 0 0 6px rgba(226, 197, 123, 0.12);
}

.services-section {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.04), transparent 18%),
    linear-gradient(180deg, #f9fbff 0%, #f2f6fc 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-label {
  color: #9d7a39;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #000000;
  font-weight: 800;
}

.section-heading p {
  margin-top: 14px;
  color: var(--color-slate-700);
  font-size: 1rem;
  max-width: 62ch;
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(8, 18, 37, 0.14);
  border-color: rgba(200, 162, 90, 0.24);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(200, 162, 90, 0.08), rgba(0, 0, 0, 0.02));
  transform: rotate(25deg);
}

.service-accent {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold-500), var(--color-gold-400));
  margin-bottom: 18px;
}

.service-card h3 {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--color-slate-700);
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
  max-width: 34ch;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 197, 123, 0.14), transparent 22%),
    linear-gradient(180deg, #050505 0%, #000000 100%);
  color: var(--color-text-light);
  padding: 72px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 197, 123, 0.14), transparent 70%);
}

.contact-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 12ch;
}

.contact-copy > p:not(.section-label) {
  margin-top: 14px;
  color: rgba(248, 251, 255, 0.82);
  max-width: 54ch;
}

.contact-highlights {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.highlight-item {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-title {
  display: block;
  color: var(--color-white);
  font-weight: 700;
}

.highlight-text {
  display: block;
  margin-top: 4px;
  color: rgba(248, 251, 255, 0.76);
  font-size: 0.96rem;
}

.contact-form-wrap {
  width: 100%;
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-dark);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-strong);
}

.form-group + .form-group {
  margin-top: 16px;
}

.form-group label {
  display: inline-block;
  margin-bottom: 8px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  appearance: none;
  border: 1px solid var(--color-slate-200);
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-text-dark);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-slate-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 162, 90, 0.65);
  box-shadow: 0 0 0 4px rgba(200, 162, 90, 0.14);
}

.form-group textarea {
  min-height: 140px;
}

.form-note {
  margin-top: 14px;
  color: var(--color-slate-500);
  font-size: 0.92rem;
}

.form-success-message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--color-success-bg);
  color: var(--color-success-text);
  font-weight: 700;
  border: 1px solid rgba(21, 96, 59, 0.14);
}

.form-success-message.is-visible {
  display: block;
}

.site-footer {
  background: #000000;
  color: rgba(248, 251, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-inner p {
  font-size: 0.92rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(226, 197, 123, 0.35);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 40px, var(--container-width));
  }

  .hero-logo-image {
    max-width: 820px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    min-width: 220px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 28px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 48px 0 92px;
  }

  .hero-content {
    gap: 34px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, auto);
    gap: 24px;
  }

  .services-section,
  .contact-section {
    padding: 92px 0;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .hero-logo-image {
    max-width: 920px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-card {
    padding: 24px;
  }

  .contact-form {
    padding: 32px;
  }
}

@media (min-width: 1200px) {
  .hero-logo-image {
    max-width: 980px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}