:root {
  --bg: #fef9ef;
  --text: #14213d;
  --muted: #4e5c73;
  --panel: rgba(255, 255, 255, 0.82);
  --accent: #ff5a36;
  --accent-2: #0ea5a4;
  --stroke: rgba(20, 33, 61, 0.14);
  --shadow: 0 18px 40px rgba(20, 33, 61, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 90, 54, 0.18) 0%, transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(14, 165, 164, 0.2) 0%, transparent 40%),
    linear-gradient(155deg, #fffef8 0%, #fef9ef 42%, #f6f8fa 100%);
  line-height: 1.6;
  padding: 0.65rem clamp(1.1rem, 2.8vw, 2.8rem) 3rem;
  overflow-x: hidden;
}

.bg-shapes .shape {
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  filter: blur(2px);
}

.shape-a {
  width: 280px;
  height: 280px;
  right: -80px;
  top: -70px;
  background: linear-gradient(145deg, rgba(255, 90, 54, 0.2), rgba(255, 90, 54, 0.04));
}

.shape-b {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: 14%;
  background: linear-gradient(145deg, rgba(14, 165, 164, 0.18), rgba(14, 165, 164, 0.03));
}

.shape-c {
  width: 160px;
  height: 160px;
  right: 22%;
  bottom: -50px;
  background: linear-gradient(145deg, rgba(20, 33, 61, 0.14), rgba(20, 33, 61, 0.03));
}

.hero {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
}

.hero__content,
.hero__card,
.section,
.panel,
.price-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero__content {
  padding: clamp(1.2rem, 2.4vw, 2.4rem);
}

.tagline {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-size: 0.78rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.25rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.intro {
  max-width: 64ch;
  font-size: 1.03rem;
  color: var(--muted);
}

.hero__actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

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

.btn--primary {
  background: linear-gradient(120deg, var(--accent), #ff8748);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 90, 54, 0.28);
}

.btn--ghost {
  color: var(--text);
  border-color: rgba(20, 33, 61, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.hero__card {
  padding: 1.2rem 1.1rem;
}

.profile-photo {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(20, 33, 61, 0.16);
  background: rgba(255, 255, 255, 0.85);
}

.hero__card p {
  margin-top: 0;
  font-weight: 600;
  color: var(--muted);
}

.hero__card ul,
.list {
  margin: 0;
  padding-left: 1rem;
}

.hero__card li,
.list li {
  margin-bottom: 0.65rem;
}

main {
  max-width: 1050px;
  margin: 1.2rem auto 0;
}

.section {
  padding: clamp(1rem, 2.2vw, 1.8rem);
  margin-top: 1rem;
}

.section--split {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  padding: clamp(1rem, 2.2vw, 1.8rem);
}

.price-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.price-card {
  padding: 1rem;
}

.price {
  font-size: 1.9rem;
  margin: 0.35rem 0;
  font-weight: 800;
}

.price span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.section--contact {
  text-align: center;
}

.section--contact p {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--muted);
}

.section--contact .contact-buttons {
  justify-content: center;
}

footer {
  max-width: 1050px;
  margin: 1rem auto 0;
  text-align: center;
  color: rgba(20, 33, 61, 0.74);
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: rise 0.9s cubic-bezier(0.2, 0.84, 0.38, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 120ms;
}

.reveal-delay-2 {
  animation-delay: 240ms;
}

.reveal-delay-3 {
  animation-delay: 360ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .section--split,
  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0.45rem 0.8rem 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .contact-buttons {
    width: 100%;
  }
}
