:root {
  --bg: #fdf6ea;
  --bg-2: #fffaf2;
  --ink: #1b1325;
  --text: #33283d;
  --muted: #685b74;
  --gold: #ffbf47;
  --gold-deep: #b87418;
  --emerald: #136f63;
  --plum: #7e3f8f;
  --rose: #f97393;
  --panel: rgba(255, 251, 245, 0.78);
  --line: rgba(69, 46, 35, 0.12);
  --shadow: 0 18px 50px rgba(46, 21, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 147, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 191, 71, 0.25), transparent 24%),
    radial-gradient(circle at bottom right, rgba(19, 111, 99, 0.18), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f8ecda 52%, #fdf8f0 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}

.page-glow-left {
  top: 80px;
  left: -120px;
  background: rgba(249, 115, 147, 0.55);
}

.page-glow-right {
  right: -120px;
  bottom: 120px;
  background: rgba(19, 111, 99, 0.34);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 242, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo,
h1,
h2,
h3,
.eyebrow,
.card-kicker {
  font-family: "Fraunces", serif;
}

.logo {
  font-size: 1.75rem;
  color: var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #1e1227, #6d2f90);
  color: #fff7ef;
  box-shadow: 0 16px 30px rgba(79, 29, 115, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-section {
  padding: 74px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.service-card,
.result-card,
.about-panel,
.credentials-card,
.contact-band,
.faq-list details {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.94), rgba(255, 243, 224, 0.84)),
    linear-gradient(180deg, rgba(249, 115, 147, 0.08), transparent);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 71, 0.28), transparent 70%);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 0.97;
  color: var(--ink);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--ink);
}

.hero-text,
.section-header p,
.service-card p,
.result-card p,
.about-panel p,
.faq-list p,
li {
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.hero-signals {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-signals span,
.visual-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-photo,
.service-media,
.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo img,
.service-media img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  min-height: 250px;
}

.hero-card-main {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 191, 71, 0.22), rgba(255, 255, 255, 0.82)),
    var(--bg-2);
}

.hero-card ul,
.service-card ul,
.credentials-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-proof div {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ribbon-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.ribbon-strip div {
  padding: 18px 16px;
  border-radius: 18px;
  text-align: center;
  color: #fff8ef;
  font-weight: 800;
  background: linear-gradient(135deg, #8a3ea2, #0d6f63);
  box-shadow: 0 12px 28px rgba(34, 28, 78, 0.18);
}

.section {
  padding: 52px 0 18px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.services-grid,
.results-grid,
.about-section {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.82);
}

.service-media {
  margin: -28px -28px 20px;
  border-radius: 28px 28px 0 0;
  border: 0;
  box-shadow: none;
}

.service-media img {
  height: 220px;
}

.service-card-gold {
  background: linear-gradient(180deg, rgba(255, 191, 71, 0.18), rgba(255, 252, 244, 0.86));
}

.service-card-emerald {
  background: linear-gradient(180deg, rgba(19, 111, 99, 0.12), rgba(250, 255, 253, 0.84));
}

.service-card-plum {
  background: linear-gradient(180deg, rgba(126, 63, 143, 0.14), rgba(255, 249, 255, 0.84));
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  color: var(--plum);
}

.visual-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: center;
}

.visual-copy {
  padding-right: 10px;
}

.visual-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.visual-photo {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.visual-photo-large {
  grid-row: span 2;
  min-height: 520px;
}

.visual-photo-small {
  min-height: 220px;
}

.visual-photo-tall {
  min-height: 280px;
}

.results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.result-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.84);
}

.result-card-dark {
  background: linear-gradient(160deg, #241329, #6c2e8c);
}

.result-card-dark h3,
.result-card-dark p {
  color: #fff4eb;
}

.about-section {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-panel,
.credentials-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.82);
}

.about-photo {
  margin-bottom: 22px;
  max-width: 360px;
}

.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.testimonials-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 254, 250, 0.78);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--ink);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 0;
}

.contact-band {
  margin: 44px auto 60px;
  padding: 40px 24px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(255, 191, 71, 0.25), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.94), rgba(255, 240, 213, 0.98));
}

.contact-actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero-grid,
  .services-grid,
  .visual-section,
  .results-grid,
  .about-section,
  .ribbon-strip,
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-row {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .hero-card-main,
  .service-card,
  .result-card,
  .about-panel,
  .credentials-card,
  .contact-band {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-proof,
  .visual-stack {
    grid-template-columns: 1fr;
  }

  .visual-photo-large,
  .visual-photo-small,
  .visual-photo-tall {
    min-height: 240px;
  }

  .about-photo {
    max-width: 100%;
  }
}
