:root {
  --cream: #F6EEE1;
  --cream-2: #EFE2CC;
  --espresso: #3B2A1F;
  --espresso-soft: #6b5a4a;
  --gold: #B08A55;
  --gold-2: #8C6A3C;
  --white: #FFFFFF;
  --whatsapp-green: #25D366;
  --danger: #B3261E;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 24px rgba(59, 42, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--espresso);
}

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-2);
  background: var(--white);
  color: var(--espresso);
}

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

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--espresso);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 42, 31, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
