/* Modern contact & subscribe forms */

.contact-modern {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-modern__card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow:
    0 4px 24px rgba(42, 40, 36, 0.06),
    0 24px 64px rgba(42, 40, 36, 0.08);
  border: 1px solid rgba(58, 80, 107, 0.08);
}

.contact-modern__card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark, #2a2a2a);
  margin: 0 0 0.35rem;
  text-align: left;
}

.contact-modern__lead {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.contact-modern__details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(58, 80, 107, 0.12);
}

.contact-modern__details a {
  color: var(--slate, #4a5d74);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.contact-modern__details a:hover {
  color: var(--slate-dark, #3a506b);
}

.contact-modern__details span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}

.form-modern {
  display: grid;
  gap: 1.25rem;
}

.form-modern__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-modern__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-modern__field--full {
  grid-column: 1 / -1;
}

.form-modern__field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate, #4a5d74);
  opacity: 1;
  margin: 0;
}

.form-modern input:not([type="checkbox"]),
.form-modern textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream-light, #f7f5f1);
  border: 1px solid rgba(58, 80, 107, 0.18);
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-modern input::placeholder,
.form-modern textarea::placeholder {
  color: #9a958c;
}

.form-modern input:not([type="checkbox"]):hover,
.form-modern textarea:hover {
  border-color: rgba(58, 80, 107, 0.35);
}

.form-modern input:not([type="checkbox"]):focus,
.form-modern textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--slate, #4a5d74);
  box-shadow: 0 0 0 4px rgba(74, 93, 116, 0.12);
}

.form-modern textarea {
  min-height: 140px;
  resize: vertical;
}

.form-modern > .btn-modern {
  grid-column: 1 / -1;
  width: 100%;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--slate, #4a5d74) 0%, var(--slate-dark, #3a506b) 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(58, 80, 107, 0.25);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(58, 80, 107, 0.32);
  color: #fff;
}

.btn-modern:active {
  transform: translateY(0);
}

.contact-modern__visual {
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 24px 64px rgba(42, 40, 36, 0.12);
  position: relative;
}

.contact-modern__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 35%;
}

.contact-modern__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 40, 36, 0.35) 100%);
  pointer-events: none;
}

.subscribe-modern {
  max-width: 560px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.5rem);
  box-shadow: 0 12px 40px rgba(42, 40, 36, 0.08);
  border: 1px solid rgba(58, 80, 107, 0.08);
}

.subscribe-modern h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.subscribe-modern p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.subscribe-modern .form-modern {
  max-width: 400px;
  margin: 0 auto;
}

/* Waitlist — shared (puppies + contact) */
#waitlist {
  scroll-margin-top: 7.5rem;
}

.waitlist-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.waitlist-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 2.75rem);
  box-shadow:
    0 4px 24px rgba(42, 40, 36, 0.06),
    0 24px 64px rgba(42, 40, 36, 0.08);
  border: 1px solid rgba(58, 80, 107, 0.08);
}

.waitlist-card__header {
  text-align: center;
  margin-bottom: 2rem;
}

.waitlist-card__eyebrow {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #b8956a);
}

.waitlist-card__header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.waitlist-card__lead {
  margin: 0 auto;
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.waitlist-card__note {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(58, 80, 107, 0.1);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
}

.waitlist-card--cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.waitlist-card--cta .btn-modern {
  display: inline-flex;
  margin-top: 0.5rem;
}

.waitlist-card--dark {
  max-width: none;
  background: linear-gradient(145deg, var(--ink, #121110) 0%, var(--slate, #4a5d74) 100%);
  border: 1px solid rgba(184, 149, 106, 0.25);
  color: #fff;
  text-align: center;
}

.waitlist-card--dark .waitlist-card__header {
  margin-bottom: 1.75rem;
}

.waitlist-card--dark .waitlist-card__eyebrow {
  color: var(--gold-light, #d4b88a);
}

.waitlist-card--dark .waitlist-card__header h2 {
  color: #fff;
}

.waitlist-card--dark .waitlist-card__lead {
  color: rgba(255, 255, 255, 0.82);
}

.waitlist-card--dark .waitlist-card__note {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.waitlist-card--dark .form-modern {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.waitlist-card--dark .btn-modern {
  width: 100%;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  grid-column: 1 / -1;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted, #5a554e);
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.form-consent span {
  flex: 1;
  min-width: 0;
}

.form-consent input[type="checkbox"] {
  width: auto;
  min-width: 1rem;
  margin-top: 0.2rem;
  padding: 0;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--slate-dark, #3a506b);
}

.form-consent input[type="checkbox"]:hover,
.form-consent input[type="checkbox"]:focus {
  background: transparent;
  border: none;
  box-shadow: none;
}

.form-legal-notice {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted, #5a554e);
}

.form-legal-notice a {
  color: var(--slate-dark, #3a506b);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal-notice a:hover {
  color: var(--gold, #b8956a);
}

.form-legal-notice--dark {
  color: rgba(255, 255, 255, 0.62);
}

.form-legal-notice--dark a {
  color: var(--gold-light, #d4b88a);
}

.form-legal-notice--dark a:hover {
  color: #fff;
}

.form-consent--dark {
  color: rgba(255, 255, 255, 0.78);
}

.form-consent--dark input {
  accent-color: var(--gold-light, #d4b88a);
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--slate-dark, #3a506b);
}

.form-status--error {
  color: #8b2e2e;
}

.waitlist-card--dark .form-status {
  color: rgba(255, 255, 255, 0.85);
}

.waitlist-card--dark .form-status--error {
  color: #f5b4b4;
}

@media (max-width: 900px) {
  .contact-modern {
    grid-template-columns: 1fr;
  }

  .contact-modern__visual {
    order: -1;
    max-height: 320px;
  }

  .contact-modern__visual img {
    min-height: 280px;
  }

  .form-modern__row {
    grid-template-columns: 1fr;
  }
}
