:root {
  --bg: #e9d8a6;
  --card-bg: #f8f1dc;
  --card-border: #001219;
  --accent: #ca6702;
  --accent-dark: #bb3e03;
  --btn-bg: #ee9b00;
  --btn-bg-hover: #ca6702;
  --btn-text: #ffffff;
  --teal: #005f73;
  --teal-light: #0a9396;
  --mint: #94d2bd;
  --text-dark: #001219;
  --text-gray: #5c5642;
  --price-was: #ab9569;
  --radius-card: 14px;
  --radius-btn: 10px;
  --shadow: 0 6px 0 rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* Profile */
.profile {
  text-align: center;
  position: sticky;
  top: 64px;
}

.avatar {
  width: 190px;
  height: 190px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px #fbf6e8, 0 8px 24px rgba(0,0,0,0.12);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

.tagline {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 24px;
  line-height: 1.5;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--btn-bg);
  color: var(--btn-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.social-icon:hover { transform: translateY(-2px); }

/* Cards layout */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-top {
  margin-bottom: 18px;
}

.card-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.card-copy p {
  font-size: 0.92rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.45;
}

.price {
  margin-top: 10px !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.price .now { color: var(--accent); }
.price .was {
  color: var(--price-was);
  text-decoration: line-through;
  font-size: 0.95rem;
  margin-left: 6px;
}

/* Forms & buttons */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(0,18,25,0.15);
  background: #efe2bb;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: inherit;
}

.lead-form input::placeholder { color: #8a8266; }

.lead-form input:focus,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: background 0.15s ease;
}

.btn:hover { background: var(--btn-bg-hover); }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  margin-top: 10px;
}

.btn-secondary:hover { background: rgba(202,103,2,0.08); }

.form-note {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
}

/* Modal */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

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

.modal {
  background: #fbf6e8;
  border-radius: var(--radius-card);
  border: 1.5px solid var(--card-border);
  padding: 28px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
}

.modal p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 860px) {
  .page {
    grid-template-columns: 1fr;
    padding: 40px 18px 60px;
    gap: 36px;
  }
  .profile { position: static; }
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .avatar { width: 150px; height: 150px; }
  .name { font-size: 1.4rem; }
  .card { padding: 18px; }
}
