@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f8f9fa;
  --text: #212529;
  --muted: #5f6670;
  --gold: #d4af37;
  --gold-dark: #8c6712;
  --black: #0a0a0a;
  --red: #c41e3a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  --container: 1360px;
  --transition: 220ms ease;
  --font-sans:
    "Inter", "Roboto", system-ui, -apple-system, "Segoe UI", Helvetica, Arial,
    sans-serif;
  --fs-body: 1rem;
  --fs-nav: 0.95rem;
  --fs-h1: clamp(2rem, 1.35rem + 2.4vw, 3rem);
  --fs-h2: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  --fs-h3: 1.05rem;
  --fs-button: 0.95rem;
  --fs-label: 0.9rem;
  --fs-input: 0.95rem;
  --fs-footer: 0.94rem;
  --fs-small: 0.85rem;
  --lh-body: 1.6;
  --lh-heading: 1.15;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    var(--font-sans,
      "Inter",
      "Roboto",
      system-ui,
      -apple-system,
      "Segoe UI",
      Helvetica,
      Arial,
      sans-serif);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 66ch;
  text-wrap: pretty;
}

main h1,
main h2,
main h3,
main h4 {
  margin: 0 0 0.75rem;
}

main h1,
main h2,
main h3 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
}

main h4 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

main p {
  margin: 0 0 0.9rem;
  line-height: var(--lh-body);
}

.hero h1 {
  font-size: clamp(2.2rem, 1.2rem + 3vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
  font-weight: 800;
  text-wrap: balance;
}

.hero p {
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.62;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  font-size: var(--fs-input);
  line-height: 1.4;
  min-height: 44px;
  padding: 0.68rem 0.75rem;
  border-radius: 10px;
}

/* ── Gold form focus states ── */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
  outline: none;
}

input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  box-shadow: none;
  border-color: #d2d7de;
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

