:root {
  --gold: #bfa06a;
  --gold-dark: #a98c52;
  --brown: #735e4c;
  --dark: #1c1b1a;
  --text: #333333;
  --bg: #fcfcfc;
  --section-bg: #efece8;
  --footer-bg: #bfb3a3;
  --border: #e2ddd4;
  --font-body: "Montserrat", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header */
.site-header {
  background: var(--section-bg);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  justify-content: center;
}

.logo {
  height: 64px;
  width: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

.arrow { font-size: 15px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--section-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero-inner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 460px;
}

/* About / Trust */
.about {
  background: var(--bg);
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background-image: url('assets/slogan-banner.png');
  background-size: 480% auto;
  background-position: 78% 35%;
  background-repeat: no-repeat;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 8px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 20px;
}

.about-text p {
  margin: 0 0 16px;
  color: var(--text);
}

.about-text .btn {
  margin-top: 12px;
}

/* Form section */
.form-section {
  background: var(--section-bg);
  padding: 80px 0 90px;
}

.form-container {
  max-width: 680px;
}

.form-head {
  text-align: center;
  margin-bottom: 40px;
}

.form-head h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px;
}

.form-head p {
  margin: 0;
  color: var(--brown);
  font-size: 16px;
}

form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(28, 27, 26, 0.06);
}

.form-row {
  margin-bottom: 22px;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label, .fieldset-label {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  margin-bottom: 8px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fcfcfc;
  color: var(--text);
  transition: border-color .15s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea { resize: vertical; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--text);
  background: #fcfcfc;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}

.radio-option input, .checkbox-option input {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.consent-row .checkbox-option {
  align-items: flex-start;
  width: 100%;
}

.consent-row .checkbox-option input {
  margin-top: 3px;
}

.consent-row a {
  color: var(--gold-dark);
}

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

.fine-print {
  font-size: 12.5px;
  color: #8a8380;
  margin: 16px 0 0;
  text-align: center;
}

.form-status {
  margin-top: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
}

.form-status.success { color: #4b7a4f; }
.form-status.error { color: #b3453a; }

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 13.5px;
}

.footer-inner p { margin: 0; }

.footer-links a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 760px) {
  .hero-text h1 { font-size: 32px; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; min-height: auto; }
  .hero-bg { opacity: 0.35; background-position: 70% center; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-photo { margin: 0 auto; }
  .form-row-half { grid-template-columns: 1fr; }
  form { padding: 28px 20px; }
  .form-head h2 { font-size: 28px; }
}
