.cce-interest-wrapper {
  --cce-primary: #6c3c19;
  --cce-primary-dark: #4f2a0f;
  --cce-surface: #fffaf5;
  --cce-surface-alt: #f6ede3;
  --cce-border: #d9c8b7;
  --cce-text: #25170f;
  --cce-muted: #6a584d;
  --cce-input-bg: #ffffff;
  --cce-shadow: 0 18px 40px rgba(79, 42, 15, 0.08);
  --cce-radius: 18px;
  color: var(--cce-text);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
}

.cce-interest-form {
  max-width: 840px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--cce-border);
  border-radius: var(--cce-radius);
  background:
    radial-gradient(circle at top right, rgba(108, 60, 25, 0.09), transparent 30%),
    linear-gradient(180deg, var(--cce-surface) 0%, var(--cce-surface-alt) 100%);
  box-shadow: var(--cce-shadow);
}

.cce-interest-header {
  margin-bottom: 24px;
}

.cce-interest-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--cce-primary);
}

.cce-interest-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.cce-interest-header p {
  margin: 0;
  line-height: 1.6;
  color: var(--cce-muted);
}

.cce-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cce-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cce-field-full {
  grid-column: 1 / -1;
}

.cce-field label,
.cce-consent label {
  font-weight: 700;
}

.cce-field input,
.cce-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--cce-border);
  border-radius: 12px;
  background: var(--cce-input-bg);
  color: var(--cce-text);
  padding: 12px 14px;
  box-sizing: border-box;
}

.cce-field input:focus,
.cce-field select:focus {
  outline: 2px solid rgba(108, 60, 25, 0.18);
  outline-offset: 2px;
  border-color: var(--cce-primary);
}

.cce-required {
  color: #b42318;
}

.cce-consent {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--cce-border);
  background: rgba(255, 255, 255, 0.72);
}

.cce-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.cce-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.cce-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--cce-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, background-color 140ms ease, opacity 140ms ease;
}

.cce-submit:hover {
  background: var(--cce-primary-dark);
  transform: translateY(-1px);
}

.cce-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.cce-form-message {
  font-weight: 700;
  color: var(--cce-muted);
}

.cce-form-message.is-success {
  color: #12663f;
}

.cce-form-message.is-error {
  color: #a12222;
}

.cce-honeypot {
  position: absolute;
  left: -9999px;
}

@media (max-width: 720px) {
  .cce-interest-form {
    padding: 18px;
  }

  .cce-grid {
    grid-template-columns: 1fr;
  }

  .cce-actions {
    align-items: stretch;
  }

  .cce-submit {
    width: 100%;
  }
}
