:root {
  --gold: #b8963b;
  --black: #45403a;
  --stone: #f9f4ec;
  --white: #ffffff;
  --red: #cc331d;
  --line: rgba(69, 64, 58, 0.18);
  --shadow: 0 18px 50px rgba(69, 64, 58, 0.10);
  --serif: "Castoro", Georgia, serif;
  --sans: "Raleway", Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.1; font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
h1 { font-size: clamp(48px, 8vw, 92px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: 24px; }
p { margin: 0 0 18px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-bar {
  padding: 8px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
  background: var(--black);
}
.nav {
  min-height: 78px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 148px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a { text-decoration: none; }
.menu-button { display: none; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section-light { background: var(--stone); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .eyebrow, .section-dark .note { color: #e4c778; }
.section-head { max-width: 780px; margin-bottom: 42px; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lead {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
}
.note, .form-note {
  margin-top: 18px;
  color: rgba(69, 64, 58, 0.75);
  font-size: 13px;
  line-height: 1.55;
}

.hero {
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--stone) 0 66%, var(--white) 66% 100%);
}
.hero-grid, .split, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-media {
  margin: 0;
  min-height: 560px;
  border-left: 10px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media img, .image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button:hover, .button:focus { background: #9f7d29; border-color: #9f7d29; }
.button-secondary { background: transparent; color: var(--black); }
.button-secondary:hover, .button-secondary:focus { color: var(--white); }
.button-small { min-height: 40px; padding: 8px 14px; }

.cards, .trust-grid {
  display: grid;
  gap: 20px;
}
.cards-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .trust-grid article, .steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}
.card p, .trust-grid p, .steps p { margin-bottom: 0; }

.steps {
  display: grid;
  gap: 16px;
}
.steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 700;
}
.image-panel {
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.reverse { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr); }

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}
.section-dark .trust-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.topic-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.contact-grid { align-items: start; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
label { display: grid; gap: 6px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--black);
  font: inherit;
  background: var(--white);
}
input:focus, select:focus, textarea:focus, .button:focus, a:focus, .menu-button:focus {
  outline: 3px solid rgba(184, 150, 59, 0.35);
  outline-offset: 2px;
}
.button:disabled {
  cursor: wait;
  opacity: 0.72;
}
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.checkbox input { width: auto; margin-top: 6px; }
.hidden { display: none; }
.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}
.form-status.is-success { color: #2c6b3f; }
.form-status.is-error { color: #9f2f24; }

.footer {
  padding: 54px 0;
  color: var(--white);
  background: #2f2b26;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 0.6fr;
  gap: 34px;
}
.footer-logo { width: 150px; margin-bottom: 16px; filter: brightness(1.15); }
.footer h2 { font-size: 22px; }
.footer a { display: block; margin-bottom: 10px; color: var(--white); }
.footer p { color: rgba(255, 255, 255, 0.78); font-size: 13px; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  margin: 0;
  color: var(--black);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
    padding: 8px 12px;
    color: var(--black);
    font: inherit;
    font-weight: 700;
  }
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .hero { min-height: auto; background: var(--stone); }
  .hero-grid, .split, .reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-media, .image-panel { min-height: 360px; }
  .cards-four, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 64px 0; }
  .top-bar { font-size: 12px; }
  .brand img { width: 118px; }
  .cards-four, .trust-grid, .topic-list { grid-template-columns: 1fr; }
  .card, .trust-grid article, .steps article, .contact-form { padding: 22px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .cookie-banner {
    display: grid;
    bottom: 12px;
  }
}
