:root {
  --ink: #17332f;
  --ink-soft: #4d645f;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --sage: #dce7df;
  --sage-dark: #aac2b3;
  --accent: #d96f45;
  --accent-dark: #ba5632;
  --line: rgba(23, 51, 47, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 51, 47, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}

h3 {
  line-height: 1.25;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 900px);
}

.section {
  padding: 120px 0;
  scroll-margin-top: 85px;
}

.section-tinted {
  background: var(--cream);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.large-copy {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 51, 47, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 0.95rem;
}

.logo-text small {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

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

.main-nav a {
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover {
  background: var(--accent);
}

.menu-button {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
}

.hero::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  opacity: 0.58;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 65px;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-card {
  position: relative;
}

.portrait-placeholder {
  display: grid;
  min-height: 520px;
  place-content: center;
  overflow: hidden;
  border-radius: 180px 180px 24px 24px;
  background:
    radial-gradient(circle at 65% 20%, rgba(255,255,255,.8), transparent 22%),
    linear-gradient(145deg, var(--sage), #bdd0c3);
  box-shadow: var(--shadow);
  text-align: center;
}

.portrait-initials {
  display: grid;
  width: 145px;
  height: 145px;
  margin: auto;
  place-items: center;
  border: 2px solid rgba(23, 51, 47, 0.18);
  border-radius: 50%;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
}

.portrait-placeholder p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.hero-card-note {
  position: absolute;
  right: -20px;
  bottom: 32px;
  display: flex;
  min-width: 310px;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  border: 1px solid rgba(23, 51, 47, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(23, 51, 47, 0.16);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #43a26b;
  box-shadow: 0 0 0 5px rgba(67, 162, 107, 0.14);
}

.hero-card-note div {
  display: flex;
  flex-direction: column;
}

.hero-card-note strong {
  font-size: 0.92rem;
}

.hero-card-note small {
  color: var(--ink-soft);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 32px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.trust-grid span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.intro-section .large-copy {
  margin-inline: auto;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 55px;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.cards-grid {
  display: grid;
  gap: 20px;
}

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

.profile-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.profile-card:nth-child(2) {
  transform: translateY(22px);
}

.card-label,
.service-meta,
.step-label {
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin: 16px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
}

.profile-card p {
  color: var(--ink-soft);
}

.profile-card ul,
.about-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.profile-card li,
.about-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 23px;
}

.profile-card li::before,
.about-list li::before {
  position: absolute;
  left: 0;
  content: "→";
  color: var(--accent);
  font-weight: 700;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  align-items: center;
  padding: 36px 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 1fr 170px;
  gap: 25px;
  transition: background 0.25s ease, padding 0.25s ease;
}

.service-row:hover {
  padding-inline: 24px;
  background: var(--cream);
}

.service-number {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.service-content h3 {
  margin: 5px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.service-content p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.service-price span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.service-price strong {
  font-size: 1.1rem;
}

.note-card {
  display: grid;
  align-items: center;
  margin-top: 52px;
  padding: 30px 34px;
  border-radius: var(--radius-md);
  background: var(--sage);
  grid-template-columns: 65px 1fr auto;
  gap: 25px;
}

.note-mark {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.note-card h3 {
  margin-bottom: 4px;
}

.note-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  min-height: 310px;
  padding: 30px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
}

.process-step:first-child {
  border-left: 1px solid rgba(255,255,255,.2);
}

.process-step > span {
  display: block;
  margin-bottom: 70px;
  color: var(--sage-dark);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.process-step h3 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.process-step p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
  font-size: 0.94rem;
}

.testimonial-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.testimonial.featured {
  background: var(--sage);
  transform: translateY(25px);
}

.quote-mark {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0.8;
}

.testimonial > p {
  margin: 35px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.testimonial footer span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.about-photo-placeholder {
  display: grid;
  min-height: 600px;
  place-items: center;
  border-radius: 24px 170px 24px 24px;
  background:
    linear-gradient(rgba(23,51,47,.14), rgba(23,51,47,.14)),
    linear-gradient(145deg, #dce7df, #b8cdbf);
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}

.about-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stats-grid div {
  display: flex;
  flex-direction: column;
}

.stats-grid strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.stats-grid span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-section {
  background: var(--sage);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.contact-copy h2 {
  max-width: 580px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--ink-soft);
}

.contact-details {
  display: grid;
  margin-top: 48px;
  gap: 20px;
}

.contact-details a,
.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-form {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form label span {
  color: var(--ink-soft);
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--white);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,111,69,.12);
}

.contact-form textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-align: center;
}

.site-footer {
  padding: 80px 0 25px;
  background: #102723;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 45px;
}

.footer-logo .logo-mark {
  background: var(--white);
  color: var(--ink);
}

.footer-logo .logo-text small {
  color: rgba(255,255,255,.65);
}

.footer-grid > div:first-child > p {
  max-width: 370px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.65);
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255,255,255,.65);
  font-size: 0.88rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.48);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-card {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

.portrait-placeholder {
    min-height: 420px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .three-columns,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .profile-card:nth-child(2),
  .testimonial.featured {
    transform: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(3) {
    border-left: 1px solid rgba(255,255,255,.2);
  }

  .about-photo {
  max-width: 380px;
  margin-inline: auto;
}

.about-photo-placeholder {
  border-radius: 28px;
  overflow: hidden;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}


  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header {
    transition: all 0.4s ease;
  }

  .nav-wrap {
    transition: min-height 0.4s ease;
  }

  .header-logo {
    height: 90px;
    width: auto;
    transition: height 0.4s ease;
  }

  .site-header.scrolled .nav-wrap {
    min-height: 58px;
  }

  .site-header.scrolled .header-logo {
    height: 50px;
    width: auto;
  }

  .logo {
    position: relative;
    z-index: 103;
  }

  .menu-button {
    display: block;
    z-index: 102;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;

    overflow-y: auto;
    overscroll-behavior: contain;

    z-index: 101;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    gap: 25px;
    padding-top: 50px;

    background-color: #f7f4ec;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
  }

  .main-nav .nav-cta {
    padding: 12px 25px;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 65px 0 70px;
  }

  .hero::before {
    width: 500px;
    height: 500px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-placeholder {
    min-height: 430px;
  }

  .hero-card-note {
    right: 14px;
    bottom: 18px;
    left: 14px;
    min-width: 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div,
  .trust-grid > div:first-child {
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .service-row {
    padding: 30px 0;
    grid-template-columns: 45px 1fr;
  }

  .service-price {
    grid-column: 2;
    align-items: flex-start;
  }

  .note-card {
    grid-template-columns: 55px 1fr;
  }

  .note-card .text-link {
    grid-column: 2;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(255,255,255,.2);
  }

  .process-step {
    min-height: 260px;
  }

  .process-step > span {
    margin-bottom: 45px;
  }

  .about-grid,
  .contact-grid {
    gap: 30px;
  }

  .about-photo-placeholder {
    min-height: 440px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .hero-card {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-photo {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}

.about-photo-placeholder {
  min-height: 0;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .trust-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div:nth-child(odd) {
    border-right: 0;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.header-logo {
  height: 100px;
  width: auto;
  max-width: 400px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.note-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  transform: translateY(-30px);

   filter: brightness(0) invert(1)
}

.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.about-photo-placeholder {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(20, 52, 47, 0.35);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.success-popup.show {
  display: flex;
}

.success-popup-box {
  position: relative;
  width: min(420px, 100%);
  background: #fffdf9;
  border-radius: 28px;
  padding: 42px 35px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(20, 52, 47, 0.18);
}

.success-popup-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #14342f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.success-popup-box h3 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #14342f;
}

.success-popup-box p {
  margin: 0 0 25px;
  line-height: 1.6;
}

.success-popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.success-popup-ok {
  border: 0;
  border-radius: 999px;
  padding: 13px 30px;
  background: #df7044;
  color: white;
  font-weight: 700;
  cursor: pointer;
}