:root {
  --cream: #f1ead8;
  --cream-light: #f8f3e3;
  --olive: #5c6b3f;
  --olive-dark: #44512e;
  --olive-light: #7a8a55;
  --charcoal: #2b2a25;
  --brown: #5d4a37;
  --paper-shadow: rgba(43, 42, 37, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--charcoal);
  background: radial-gradient(ellipse at top, #e8dfc4 0%, #d8cfb0 100%);
  background-attachment: fixed;
  line-height: 1.5;
  padding: 20px 10px;
  min-height: 100vh;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(92,107,63,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(93,74,55,0.05) 0%, transparent 40%);
  box-shadow: 0 10px 40px var(--paper-shadow);
  border: 1px solid #d4c9a8;
  overflow: hidden;
}

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

/* HERO */
.hero {
  text-align: center;
  padding: 40px 30px 30px;
  border-bottom: 3px double var(--olive);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 84px);
  color: var(--charcoal);
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.08);
}

.brand-sub {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--olive);
  letter-spacing: 12px;
  margin-top: 4px;
}

.dog-silhouette {
  font-size: 36px;
  margin-bottom: 8px;
}

.ribbon {
  display: inline-block;
  background: var(--olive);
  color: var(--cream);
  padding: 8px 30px;
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
}

.tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--charcoal);
  margin-top: 24px;
}

.sub-tagline {
  color: var(--olive);
  font-style: italic;
  margin-top: 6px;
  font-size: 15px;
}

.banner-stripe {
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 14px;
  margin-top: 24px;
  font-size: clamp(14px, 2vw, 18px);
}

/* BONUS */
.bonus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  background: var(--cream-light);
  flex-wrap: wrap;
}

.bonus-content { flex: 1; min-width: 280px; }

.bonus h3 {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 16px;
}

.bonus-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bonus-item {
  text-align: center;
  max-width: 160px;
}

.bonus-item strong {
  display: block;
  color: var(--charcoal);
  font-family: 'Playfair Display', serif;
}

.bonus-item em {
  color: var(--olive);
  font-size: 13px;
}

.plus {
  background: var(--olive);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 22px;
}

.price-circle {
  background: var(--olive);
  color: var(--cream);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--cream);
  box-shadow: 0 0 0 3px var(--olive);
  flex-shrink: 0;
}

.price-only { font-size: 13px; letter-spacing: 2px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
}
.price-per { font-size: 10px; letter-spacing: 2px; }

/* STRIP */
.strip {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 12px;
  letter-spacing: 3px;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
}

/* FORM */
.form-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

@media (max-width: 720px) {
  .form-section { grid-template-columns: 1fr; }
}

.form-sidebar {
  background: var(--cream);
  padding: 28px 22px;
  border-right: 1px dashed var(--olive-light);
}

.form-sidebar h3 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 16px;
}

.form-sidebar p {
  font-size: 13px;
  margin-bottom: 10px;
}

.checks {
  list-style: none;
  margin: 12px 0 20px;
}

.checks li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 13px;
}

.checks li::before {
  content: '✓';
  color: var(--olive);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-box {
  background: var(--cream-light);
  border: 1px dashed var(--olive);
  padding: 14px;
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
}

.contact-box p { margin-bottom: 8px; }
.or-divider { color: var(--olive); font-style: italic; margin: 10px 0; }
.phone { color: var(--olive); font-weight: 700; font-size: 16px; }

/* FORM MAIN */
.form-main {
  padding: 0;
  background: var(--cream-light);
}

.form-header {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  padding: 14px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 3px;
  font-size: 14px;
}

form { padding: 24px 28px 28px; }

fieldset {
  border: none;
  margin-bottom: 22px;
  padding: 0;
}

fieldset.dog-info,
fieldset.preferences,
fieldset.notes {
  border: 1px dashed var(--olive);
  padding: 16px 18px;
  background: rgba(255,255,255,0.4);
}

legend {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0 10px;
  font-size: 13px;
}

.row { margin-bottom: 12px; }

.row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 8px 4px;
  margin-top: 4px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--charcoal);
  font-family: 'Lora', serif;
  font-size: 16px;  /* 16px prevents iOS Safari zoom-on-focus */
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  border: 1.5px solid var(--charcoal);
  padding: 10px;
  resize: vertical;
  background: rgba(255,255,255,0.3);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--olive);
  background: rgba(92,107,63,0.05);
}

select { cursor: pointer; }

.hint {
  font-size: 12px;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 10px;
}

button[type="submit"] {
  width: 100%;
  background: var(--olive);
  color: var(--cream);
  border: 2px solid var(--olive);
  padding: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}

button[type="submit"]:hover:not(:disabled) {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-1px);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* FOOTER */
.page-footer {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 14px;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
}

/* THANK YOU PAGE */
.thank-you-content {
  text-align: center;
  padding: 60px 30px;
  background: var(--cream-light);
}

.thank-you-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--olive);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.thank-you-content p {
  font-family: 'Lora', serif;
  font-size: 16px;
  margin-bottom: 14px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-content .script {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(24px, 3.5vw, 30px);
  color: var(--olive);
  margin-top: 20px;
}

.thank-you-content a.back-link {
  display: inline-block;
  margin-top: 30px;
  background: var(--olive);
  color: var(--cream);
  text-decoration: none;
  padding: 14px 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 14px;
  border: 2px solid var(--olive);
  transition: all 0.2s;
}

.thank-you-content a.back-link:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}
