:root {
  --color-bg: #ffffff;
  --color-text: #2b1d14;
  --color-muted: #5a4a3d;
  --color-accent: #8b4a2b;
  --color-accent-soft: #c98a5e;
  --gradient-gold: #f4cf3a;
  --max-width: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('suesbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1.25rem;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.85) 0%, rgba(20, 10, 5, 0.78) 100%);
}

.hero__content {
  position: relative;
  max-width: var(--max-width);
  z-index: 1;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  background: linear-gradient(180deg, var(--gradient-gold) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ---------- Content ---------- */
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
}

/* ---------- Notice ---------- */
.notice {
  background: linear-gradient(135deg, #fff7e8 0%, #fde6d8 100%);
  border: none;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 6px 24px rgba(180, 110, 50, 0.08);
}

.notice__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b5a1f;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.notice p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4a3520;
}

@media (max-width: 540px) {
  .notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.35rem 1.4rem;
  }
}

/* ---------- Details card ---------- */
.intro__details {
  background: linear-gradient(160deg, #fffaf3 0%, #fdecdf 60%, #fbdcd3 100%);
  border: none;
  border-radius: 22px;
  padding: 2.5rem 2rem 2rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 12px 40px rgba(139, 74, 43, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b5a1f;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.intro__heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #c8941a 0%, #8b4a2b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.15;
}

.intro__divider {
  display: block;
  width: 60px;
  height: 2px;
  margin: 1rem auto 1.75rem;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent-soft) 50%, transparent 100%);
  border-radius: 2px;
}

.intro__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(139, 74, 43, 0.1);
  text-align: left;
}

.intro__row:last-of-type {
  border-bottom: none;
}

.intro__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b5a1f;
  flex-shrink: 0;
}

.intro__value {
  font-size: 0.98rem;
  color: var(--color-text);
  text-align: right;
  line-height: 1.45;
}

.intro__value strong {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 540px) {
  .intro__details {
    padding: 2rem 1.4rem 1.6rem;
  }

  .intro__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .intro__value {
    text-align: left;
  }
}

/* ---------- Lead line above form ---------- */
.intro__lead {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  color: var(--color-accent);
}

/* ---------- Form ---------- */
.form {
  margin-top: 1rem;
}

.form__placeholder {
  background: #fff;
  border: 2px dashed #e0c9b3;
  border-radius: 12px;
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--color-muted);
  font-style: italic;
}

/* HubSpot form normalization — keeps embed within container width */
.form .hbspt-form,
.form form {
  max-width: 100%;
}

.form input,
.form select,
.form textarea {
  max-width: 100%;
  font-size: 16px; /* prevents iOS zoom on focus */
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 2rem 1.25rem 2.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 480px) {
  .hero {
    min-height: 55vh;
    padding: 3rem 1rem;
  }

  .content {
    padding: 2rem 1rem 1.5rem;
  }
}
