:root {
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Open Sans", Arial, Helvetica, sans-serif;
  --color-page: #f2ebe7;
  --color-paper: #fffaf7;
  --color-sand: #eddfc8;
  --color-clay: #e1d4c7;
  --color-rose: #ae8883;
  --color-gold: #a6722b;
  --color-gold-dark: #785223;
  --color-ink: #472d19;
  --color-text: #54351e;
  --color-text-soft: #785223;
  --color-primary: #54351e;
  --color-primary-dark: #472d19;
  --color-accent: #a6722b;
  --color-accent-dark: #785223;
  --color-soft: var(--color-accent);
  --color-red: #830c0e;
  --color-blue: #132e4c;
  --color-border: #e1d4c7;
  --color-shadow: rgba(71, 45, 25, 0.1);
  --container: 1328px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--color-page);
  color: var(--color-text);
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
}

section,
footer {
  scroll-margin-top: calc(var(--header-height) + 56px);
}

body {
  overflow-x: hidden;
  padding-top: var(--header-height);
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: var(--color-sand);
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: var(--header-height);
  padding: 0 44px 0 18px;
  background: rgba(255, 250, 247, 0.98);
  border-top: 1px solid rgba(225, 212, 199, 0.52);
  border-bottom: 1px solid rgba(225, 212, 199, 0.78);
  box-shadow: 0 2px 14px rgba(71, 45, 25, 0.035);
  backdrop-filter: blur(10px);
  animation: header-drop-in 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes header-drop-in {
  from {
    opacity: 0;
    transform: translate3d(0, -26px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 0 334px;
  color: var(--color-blue);
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 5px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  color: var(--color-red);
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 4.1vw, 72px);
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Montserrat", var(--font-body);
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: var(--header-height);
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 19px;
  width: 58px;
  height: 2px;
  background: var(--color-red);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.35);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  padding: 2.5px;
  border-radius: 999px;
  background: rgba(19, 46, 76, 0.08);
  color: var(--color-blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-item.active .nav-link,
.nav-item:hover .nav-link,
.nav-item.is-open .nav-link {
  color: var(--color-red);
}

.nav-item.active .nav-link::after,
.nav-item:hover .nav-link::after,
.nav-item.is-open .nav-link::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-item.active .menu-icon,
.nav-item:hover .menu-icon,
.nav-item.is-open .menu-icon {
  background: var(--color-blue);
  color: #fffaf7;
  transform: translateY(-1px);
}

.chevron,
.submenu-icon {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown,
.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  min-width: 176px;
  padding: 17px 0;
  background: var(--color-paper);
  border-radius: 5px;
  box-shadow: 0 20px 44px var(--color-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown {
  z-index: 40;
}

.submenu {
  top: 29px;
  left: calc(100% - 1px);
  min-width: 176px;
  transform: translate(8px, 0);
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.is-open > .dropdown,
.dropdown-item:hover > .submenu,
.dropdown-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-item:hover > .submenu,
.dropdown-item:focus-within > .submenu {
  transform: translate(0, 0);
}

.dropdown a,
.submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 18px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.dropdown a:hover,
.submenu a:hover {
  color: var(--color-blue);
  background: rgba(19, 46, 76, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 160px;
  font-family: var(--font-body);
}

.social-header-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(166, 114, 43, 0.56);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(255, 250, 247, 0.9);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, background 160ms ease;
}

.social-header-link .menu-icon {
  width: 23px;
  height: 23px;
  padding: 0;
  background: transparent;
  color: currentColor;
  border-radius: 0;
}

.brand-menu-icon {
  display: inline-block;
  background: currentColor;
  border-radius: 0;
  fill: none;
  stroke: none;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.brand-menu-icon-instagram {
  -webkit-mask-image: url("assets/vendor/bootstrap-icons/icons/instagram.svg");
  mask-image: url("assets/vendor/bootstrap-icons/icons/instagram.svg");
}

.brand-menu-icon-linkedin {
  -webkit-mask-image: url("assets/vendor/bootstrap-icons/icons/linkedin.svg");
  mask-image: url("assets/vendor/bootstrap-icons/icons/linkedin.svg");
}

.brand-menu-svg {
  fill: currentColor;
  stroke: none;
  background: transparent;
}

.social-header-link:hover {
  border-color: var(--color-gold);
  background: #fffaf7;
  color: var(--color-gold);
  transform: translateY(-1px);
}

.phone-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.phone-button {
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(19, 46, 76, 0.42);
  color: var(--color-blue);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.phone-button:hover {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fffaf7;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--color-blue);
}

.whatsapp-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: calc(26px + env(safe-area-inset-bottom));
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28), 0 8px 18px rgba(19, 46, 76, 0.14);
  animation: whatsapp-float 3.8s ease-in-out infinite;
  transition: background 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-whatsapp .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.floating-whatsapp:hover {
  background: #1fbe5b;
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.34), 0 10px 20px rgba(19, 46, 76, 0.16);
  filter: saturate(1.08);
}

@keyframes whatsapp-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(19, 46, 76, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.86);
  box-shadow: 0 12px 28px rgba(19, 46, 76, 0.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mobile-toggle:hover {
  border-color: rgba(19, 46, 76, 0.28);
  background: #fffaf7;
  box-shadow: 0 16px 34px rgba(19, 46, 76, 0.12);
  transform: translateY(-1px);
}

.mobile-toggle .hamburger-box {
  width: 24px;
  height: 18px;
}

.mobile-toggle .hamburger-inner,
.mobile-toggle .hamburger-inner::before,
.mobile-toggle .hamburger-inner::after {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-blue);
}

.mobile-toggle .hamburger-inner::before {
  top: -7px;
}

.mobile-toggle .hamburger-inner::after {
  bottom: -7px;
}

.mobile-toggle.is-active .hamburger-inner,
.mobile-toggle.is-active .hamburger-inner::before,
.mobile-toggle.is-active .hamburger-inner::after {
  background-color: #830c0e;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(71, 45, 25, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(82vw, 340px);
  height: 100vh;
  padding: 26px 28px;
  background: rgba(255, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: -24px 0 60px rgba(19, 46, 76, 0.16);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 0.8, 0.22, 1);
  font-family: var(--font-body);
}

body.menu-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 27px;
}

.mobile-menu-head p {
  margin: 0;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-blue);
}

.mobile-close span {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
}

.mobile-close span:first-child {
  transform: rotate(45deg);
}

.mobile-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 0;
  font-family: var(--font-body);
}

.mobile-nav-item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 40px;
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.mobile-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.mobile-nav-label .menu-icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  background: rgba(19, 46, 76, 0.08);
}

.mobile-nav-button.active {
  color: var(--color-blue);
}

.mobile-nav-button.active .menu-icon {
  background: var(--color-blue);
  color: #fffaf7;
}

.mobile-nav-button .mobile-chevron {
  width: 20px;
  height: 20px;
  padding: 5px;
  background: rgba(19, 46, 76, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.mobile-nav-button.is-expanded .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  transition: max-height 180ms ease;
}

.mobile-submenu a {
  padding: 0 0 12px 10px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
}

.mobile-submenu a.nested {
  padding-left: 22px;
  color: var(--color-text-soft);
}

.mobile-nav-button.is-expanded + .mobile-submenu {
  max-height: 360px;
}

.page-content {
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  padding: 0 31px;
}

.banner-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 24px;
  min-height: calc(88vh - var(--header-height) - 64px);
  padding: 48px;
  border-radius: 30px;
  background: transparent;
  animation: banner-fade-in 720ms ease both;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.banner-section::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.92) 0%, rgba(255, 250, 247, 0.78) 42%, rgba(255, 250, 247, 0.18) 72%),
    linear-gradient(180deg, rgba(255, 250, 247, 0.12), rgba(71, 45, 25, 0.18));
}

.banner-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(430px, 100%);
  min-height: 420px;
  padding: 92px 0 34px;
  color: var(--color-blue);
  margin-left: 46px;
  animation: banner-panel-in 780ms ease 180ms both;
}

.banner-eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 4px 10px;
  color: var(--color-ink);
  background: rgba(237, 223, 200, 0.92);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: banner-copy-in 650ms ease 360ms both;
}

.banner-section h1 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(58px, 6.3vw, 88px);
  font-weight: 400;
  line-height: 0.78;
  text-shadow: none;
  animation: banner-copy-in 700ms ease 460ms both;
}

.banner-section h1 span {
  display: block;
  margin-top: 2px;
  color: var(--color-red);
  font-style: italic;
  font-weight: 700;
  font-size: 1.06em;
  line-height: 0.84;
}

.banner-highlight {
  margin: 18px 0 0;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: clamp(20px, 2.05vw, 28px);
  font-weight: 500;
  line-height: 1.08;
  animation: banner-copy-in 700ms ease 560ms both;
}

.banner-highlight strong {
  font-weight: 900;
}

.banner-description {
  margin: 58px 0 0;
  max-width: 380px;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.42vw, 20px);
  font-weight: 500;
  line-height: 1.03;
  animation: banner-copy-in 700ms ease 660ms both;
}

.banner-description strong {
  font-weight: 900;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 34px;
  padding: 0 8px 0 0;
  border-radius: 999px;
  background: var(--color-red);
  animation: banner-copy-in 700ms ease 760ms both;
  transition: transform 180ms ease, background 180ms ease;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 0 0 28px;
  border-radius: 999px;
  color: #fffaf7;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
}

.banner-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-sand);
  color: var(--color-red);
  font-size: 18px;
  line-height: 1;
}

.banner-actions:hover {
  background: #6d090b;
  transform: translateY(-2px);
}

.banner-arrow span {
  display: inline-flex;
  transform: translateY(-1px);
}

@keyframes banner-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes banner-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes banner-image-drift {
  from {
    transform: scale(1.04) translate3d(-8px, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(10px, -6px, 0);
  }
}

@keyframes banner-panel-in {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes banner-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  margin-bottom: 36px;
  padding: 26px 24px;
  border-radius: 6px;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
}

.content-section.section-soft {
  background: rgba(237, 223, 200, 0.44);
}

.about-section {
  position: relative;
  overflow: hidden;
  margin: 36px 0 34px;
  padding: 58px 64px;
  border: 1px solid rgba(225, 212, 199, 0.72);
  border-radius: 22px;
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 24px 70px rgba(71, 45, 25, 0.08);
  opacity: 0;
  transform: translateY(28px);
}

.about-section::before {
  content: "";
  display: none;
}

.about-section::after {
  content: "";
  display: none;
}

.about-floral {
  position: absolute;
  right: 0;
  top: 34px;
  z-index: 0;
  width: min(17vw, 210px);
  height: auto;
  fill: none;
  stroke: rgba(225, 212, 199, 0.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.about-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(360px, 1fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.9;
  border-radius: 20px;
  background: var(--color-clay);
  opacity: 0;
  transform: translateX(-26px);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transform: scale(1.02);
}

.about-copy {
  max-width: 650px;
  opacity: 0;
  transform: translateY(24px);
}

.section-inner {
  position: relative;
  max-width: 840px;
}

.section-label {
  margin: 0;
  color: var(--color-soft);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.content-section h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-text);
}

.section-text {
  margin: 0;
  color: var(--color-text);
  max-width: 70ch;
  line-height: 1.4;
}

.about-copy .section-label {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 580px;
  margin: 24px 0 0;
  color: #830c0e;
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 0.96;
}

.about-title-line {
  display: block;
  width: 78px;
  height: 2px;
  margin: 34px 0 0;
  background: var(--color-gold);
}

.about-text-stack {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.about-text-stack p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
}

.about-section h2 {
  clip-path: inset(0 100% 0 0);
}

.about-section.is-visible {
  animation: about-section-in 760ms ease both;
}

.about-section.is-visible .about-photo-card {
  animation: about-photo-in 760ms ease 160ms both;
}

.about-section.is-visible .about-copy {
  animation: about-copy-in 700ms ease 260ms both;
}

.about-section.is-visible .section-label {
  animation: about-copy-in 560ms ease 360ms both;
}

.about-section.is-visible h2 {
  animation: about-title-in 780ms cubic-bezier(0.2, 0.8, 0.2, 1) 430ms both;
}

.about-section.is-visible .about-title-line {
  animation: about-line-in 580ms ease 600ms both;
}

.about-section.is-visible .about-text-stack p:nth-child(1) {
  animation: about-copy-in 580ms ease 680ms both;
}

.about-section.is-visible .about-text-stack p:nth-child(2) {
  animation: about-copy-in 580ms ease 790ms both;
}

.about-section.is-visible .about-text-stack p:nth-child(3) {
  animation: about-copy-in 580ms ease 900ms both;
}

.about-section.is-visible .about-text-stack p:nth-child(4) {
  animation: about-copy-in 580ms ease 1010ms both;
}

.about-section.is-visible .about-text-stack p:nth-child(5) {
  animation: about-copy-in 580ms ease 1120ms both;
}

.about-section.is-visible .about-button {
  animation: about-copy-in 580ms ease 1230ms both;
}

.about-copy .section-label,
.about-copy h2,
.about-title-line,
.about-text-stack p,
.about-button {
  opacity: 0;
  transform: translateY(18px);
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 178px;
  min-height: 56px;
  margin-top: 34px;
  padding: 0 8px 0 28px;
  border-radius: 999px;
  background: #830c0e;
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.about-button span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(131, 12, 14, 0.32);
  border-radius: 50%;
  background: #fffaf7;
  color: var(--color-gold);
  font-size: 18px;
}

.about-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

@keyframes about-section-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-photo-in {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-line-in {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes about-accent-in {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes about-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-title-in {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes about-list-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-section {
  margin: 78px 0 64px;
  padding: 0 10px;
  background: transparent;
}

.services-shell {
  display: grid;
  gap: 28px;
  width: min(100%, 1328px);
  margin: 0 auto;
}

.services-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(26px);
}

.services-pill {
  position: relative;
  display: inline-grid;
  grid-template-columns: 72px auto 72px;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.services-pill::before,
.services-pill::after {
  content: "";
  height: 1px;
  background: rgba(166, 114, 43, 0.45);
}

.services-pill::after {
  box-shadow: -90px 14px 0 -5px var(--color-gold);
}

.services-hero-copy h2 {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.98;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(18px);
}

.services-hero-copy h2 span {
  color: #830c0e;
}

.services-hero-copy > p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #202020;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}

.services-focus-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(28px);
}

.services-focus-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 178px;
  padding: 0 18px;
  text-align: center;
}

.services-focus-card + .services-focus-card {
  border-left: 1px solid rgba(174, 136, 131, 0.26);
}

.services-focus-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border: 1px solid rgba(166, 114, 43, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.88);
  color: var(--color-blue);
  box-shadow: 0 10px 24px rgba(71, 45, 25, 0.055);
}

.services-focus-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-focus-card h3 {
  margin: 0;
  color: #830c0e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.services-focus-star {
  display: block;
  width: 7px;
  height: 7px;
  margin: 9px 0 9px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.services-focus-card p {
  margin: 0;
  color: #202020;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2px;
  overflow: hidden;
  border: 1px solid rgba(225, 212, 199, 0.96);
  border-radius: 12px;
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 18px 48px rgba(71, 45, 25, 0.08);
  opacity: 0;
  transform: translateY(28px) scale(0.98);
}

.service-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.78fr) 52px minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 16px 28px 16px 16px;
  transition: transform 220ms ease;
}

.service-card + .service-card {
  padding-right: 28px;
  padding-left: 28px;
  border-left: 1px solid rgba(174, 136, 131, 0.28);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-visual {
  overflow: hidden;
  align-self: stretch;
  min-height: 154px;
  border-radius: 8px;
  background: rgba(237, 223, 200, 0.5);
}

.service-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
  object-position: center;
}

.service-card:nth-child(1) .service-card-visual img {
  object-position: 14% center;
}

.service-card:nth-child(2) .service-card-visual img {
  object-position: center;
}

.service-card-icon {
  display: inline-grid;
  place-items: center;
  align-self: start;
  width: 42px;
  height: 42px;
  color: var(--color-blue);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  color: #830c0e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
}

.service-card-line {
  display: block;
  width: 42px;
  height: 1px;
  margin: 10px 0 12px;
  background: rgba(125, 11, 11, 0.46);
}

.service-card p {
  margin: 0;
  color: #202020;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
}

.services-psychk {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
  min-height: 430px;
  padding: 56px 70px;
  border: 1px solid rgba(225, 212, 199, 0.88);
  border-radius: 10px;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 250, 247, 0.42) 0%, rgba(184, 197, 207, 0.5) 17%, rgba(19, 46, 76, 0) 37%),
    linear-gradient(90deg, #fffdfb 0%, #f9faf9 31%, #eef2f5 43%, #aebbc7 53%, #344b63 63%, #132e4c 74%, #041a33 100%);
  box-shadow: 0 24px 58px rgba(19, 46, 76, 0.18);
  opacity: 0;
  transform: translateY(28px) scale(0.98);
}

.services-psychk::before {
  content: "";
  position: absolute;
  top: 74px;
  bottom: 74px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(166, 114, 43, 0.62), transparent);
  opacity: 1;
  pointer-events: none;
}

.services-psychk::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  opacity: 0.9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.services-psychk-copy {
  position: relative;
  z-index: 1;
}

.services-psychk-eyebrow {
  margin: 0 0 16px;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-psychk-ornament {
  display: block;
  width: 108px;
  height: 13px;
  margin: 0 0 26px;
  background:
    linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 42px 1px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 42px 1px no-repeat;
  position: relative;
}

.services-psychk-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  transform: translate(-50%, -50%);
}

.services-psychk-copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.services-psychk-copy h3 span {
  color: #830c0e;
}

.services-psychk-line {
  display: block;
  width: 48px;
  height: 1px;
  margin: 28px 0 24px;
  background: var(--color-gold);
}

.services-psychk-copy div {
  display: grid;
  gap: 0;
  max-width: 570px;
}

.services-psychk-copy div p {
  margin: 0;
  color: rgba(19, 46, 76, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
}

.services-psychk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: fit-content;
  margin-top: 30px;
  min-height: 54px;
  padding: 0 8px 0 28px;
  border: 1px solid rgba(19, 46, 76, 0.72);
  border-radius: 999px;
  background: transparent;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.services-psychk-cta .services-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(19, 46, 76, 0.72);
  border-radius: 50%;
  color: var(--color-blue);
}

.services-psychk-cta .services-cta-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-psychk-cta:hover {
  background: var(--color-blue);
  color: #fffaf7;
  box-shadow: none;
}

.services-psychk-cta:hover .services-cta-icon {
  background: #fffaf7;
  color: var(--color-blue);
}

.services-psychk-brand {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 168px minmax(0, auto);
  gap: 14px 34px;
  align-items: center;
  justify-content: center;
  color: #fffaf7;
  min-height: 270px;
}

.services-psychk-emblem {
  grid-row: 1 / span 2;
  display: inline-flex;
  width: 168px;
  height: 168px;
  color: #fffaf7;
}

.services-psychk-emblem svg {
  width: 100%;
  height: 100%;
  fill: none;
}

.services-psychk-emblem circle {
  stroke: currentColor;
  stroke-width: 2;
}

.services-psychk-emblem path {
  fill: #fffaf7;
}

.services-psychk-emblem path:nth-of-type(2),
.services-psychk-emblem path:nth-of-type(3) {
  fill: rgba(255, 250, 247, 0.76);
}

.services-psychk-emblem path:last-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.services-psychk-brand strong {
  display: block;
  color: #fffaf7;
  font-size: clamp(54px, 5.6vw, 82px);
  font-weight: 700;
  line-height: 1;
}

.services-psychk-brand > span:not(.services-psychk-emblem) {
  display: block;
  position: relative;
  color: #fffaf7;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.18;
}

.services-psychk-brand > span:not(.services-psychk-emblem)::before {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  margin: 0 0 16px;
  background: var(--color-gold);
}

.services-section.is-visible .services-hero-copy {
  animation: services-fade-up 800ms ease both;
}

.services-section.is-visible .services-hero-copy h2 {
  animation: services-title-reveal 980ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.services-section.is-visible .services-focus-grid {
  animation: services-panel-in 760ms ease 280ms both;
}

.services-section.is-visible .services-list {
  animation: services-panel-in 760ms ease 560ms both;
}

.services-section.is-visible .services-psychk {
  animation: services-panel-in 760ms ease 720ms both;
}

@keyframes services-fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes services-title-reveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes services-image-in {
  from {
    opacity: 0;
    clip-path: inset(8% 0 8% 0 round 18px);
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 18px);
    transform: translateX(0);
  }
}

@keyframes services-panel-in {
  from {
    opacity: 0;
    translate: 0 28px;
    scale: 0.98;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes services-heading-bloom {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

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

@keyframes services-star-draw {
  from {
    opacity: 0;
    scale: 0.58 1;
  }

  to {
    opacity: 1;
    scale: 1 1;
  }
}

@keyframes services-card-cascade {
  from {
    opacity: 0;
    filter: saturate(0.72);
    translate: 0 34px;
    scale: 0.965;
  }

  to {
    opacity: 1;
    filter: saturate(1);
    translate: 0 0;
    scale: 1;
  }
}

@keyframes services-image-settle {
  from {
    opacity: 0.74;
    transform: scale(1.09);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes services-approach-left {
  from {
    opacity: 0;
    transform: translate(-22px, 18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes services-approach-right {
  from {
    opacity: 0;
    transform: translate(22px, 18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes services-feature-reveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

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

@keyframes services-logo-drift-in {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.94);
  }

  to {
    opacity: 0.92;
    transform: translateX(0) scale(1);
  }
}

@keyframes services-closing-rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
  }

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

@keyframes faq-item-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  margin: 82px -31px 0;
  padding: 108px 31px 88px;
  background:
    radial-gradient(circle at 50% 0%, rgba(237, 223, 200, 0.28), transparent 36%),
    var(--color-paper);
}

.faq-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 9px 18px;
  border: 1px solid rgba(225, 212, 199, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.82);
  color: #830c0e;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 30px rgba(71, 45, 25, 0.06);
  opacity: 0;
  transform: translateY(14px);
}

.faq-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-red);
}

.faq-heading {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
}

.faq-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(44px, 4.1vw, 62px);
  font-weight: 400;
  line-height: 0.98;
}

.faq-heading h2 span {
  display: block;
  color: #830c0e;
}

.faq-heading p {
  margin: 24px 0 0;
  color: rgba(31, 31, 31, 0.68);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
}

.faq-heading-divider {
  display: grid;
  grid-template-columns: minmax(104px, 1fr) 44px minmax(104px, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 354px;
  margin: 34px auto 0;
  color: #830c0e;
}

.faq-heading-divider span {
  height: 1px;
  background: rgba(155, 7, 7, 0.42);
}

.faq-heading-divider svg {
  width: 44px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-decoration {
  position: absolute;
  pointer-events: none;
}

.faq-decoration-line {
  top: -20px;
  right: -190px;
  width: 188px;
  color: rgba(174, 136, 131, 0.31);
}

.faq-decoration-line svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-decoration-leaf {
  left: -330px;
  bottom: -64px;
  width: 260px;
  color: rgba(174, 136, 131, 0.28);
}

.faq-decoration-leaf svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-card {
  overflow: hidden;
  border: 1px solid rgba(225, 212, 199, 0.82);
  border-radius: 10px;
  background: rgba(255, 250, 247, 0.93);
  box-shadow: 0 14px 36px rgba(71, 45, 25, 0.055);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  opacity: 0;
}

.faq-card.is-open {
  border-color: rgba(131, 12, 14, 0.22);
  background: linear-gradient(180deg, rgba(255, 250, 247, 0.98), rgba(253, 238, 232, 0.96));
  box-shadow: 0 24px 60px rgba(128, 12, 12, 0.12);
}

.faq-question {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 70px;
  padding: 0 28px 0 32px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.faq-card.is-open .faq-question {
  color: var(--color-ink);
  box-shadow: inset 0 -1px rgba(131, 12, 14, 0.16);
}

.faq-question-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #830c0e;
  box-shadow: 0 8px 18px rgba(128, 12, 12, 0.16);
}

.faq-question-mark::before,
.faq-question-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #fffaf7;
  transition: transform 220ms ease, opacity 220ms ease, background 220ms ease;
}

.faq-question-mark::after {
  transform: rotate(90deg);
}

.faq-card.is-open .faq-question-mark {
  background: #830c0e;
}

.faq-card.is-open .faq-question-mark::before,
.faq-card.is-open .faq-question-mark::after {
  background: #fffaf7;
}

.faq-card.is-open .faq-question-mark::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.2);
}

.faq-question-text {
  min-width: 0;
}

.faq-question-chevron {
  width: 18px;
  height: 18px;
  justify-self: end;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.faq-card.is-open .faq-question-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.faq-card.is-open .faq-answer {
  max-height: 620px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 22px 74px 30px 74px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  white-space: pre-line;
}

.faq-card.is-open .faq-answer p {
  color: var(--color-ink);
}

.faq-contact {
  display: grid;
  grid-template-columns: 62px minmax(220px, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 720px;
  margin: 36px auto 0;
  opacity: 0;
  transform: translateY(18px);
}

.faq-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(237, 223, 200, 0.62);
  color: #830c0e;
}

.faq-contact-icon svg,
.faq-contact a svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-contact div {
  padding-left: 22px;
  border-left: 1px solid rgba(155, 7, 7, 0.35);
}

.faq-contact strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 800;
}

.faq-contact p {
  margin: 4px 0 0;
  color: rgba(31, 31, 31, 0.66);
  font-family: var(--font-body);
  font-size: 17px;
}

.faq-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #830c0e;
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(128, 12, 12, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.faq-contact a:hover {
  background: #830c0e;
  box-shadow: 0 20px 40px rgba(128, 12, 12, 0.22);
  transform: translateY(-2px);
}

.articles-section {
  margin: 72px -31px 48px;
  padding: 46px 31px 34px;
  background:
    linear-gradient(180deg, rgba(237, 223, 200, 0.3), rgba(255, 250, 247, 0.86) 44%, var(--color-paper)),
    var(--color-paper);
  color: var(--color-ink);
  overflow: hidden;
}

.articles-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.articles-heading {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
}

.articles-heading .section-label {
  margin: 0 auto 8px;
  color: #830c0e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.articles-heading h2 {
  margin: 0;
  color: #830c0e;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.08;
}

.articles-heading-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  color: #830c0e;
  line-height: 1;
}

.articles-heading-heart svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.articles-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(174, 136, 131, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.9);
  box-shadow: 0 14px 30px rgba(71, 45, 25, 0.055);
  opacity: 0;
  transform: translateY(32px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.article-card:hover {
  border-color: rgba(174, 136, 131, 0.46);
  box-shadow: 0 18px 40px rgba(71, 45, 25, 0.12);
  transform: translateY(-4px);
}

.article-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2.12;
  border-radius: 8px 8px 0 0;
  background: var(--color-clay);
}

.article-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(71, 45, 25, 0.18));
  opacity: 0.9;
  pointer-events: none;
}

.article-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 480ms ease, filter 480ms ease;
}

.article-card:hover .article-image-link img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.article-card-body {
  padding: 18px 20px 20px;
}

.article-category {
  position: absolute;
  left: 18px;
  bottom: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: #830c0e;
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(71, 45, 25, 0.18);
}

.article-card h3 {
  margin: 0;
  color: #1c1715;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.08;
}

.article-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 260ms ease;
}

.article-card h3 a:hover,
.article-card:hover h3 a {
  background-size: 100% 2px;
}

.article-card-body > p:not(.article-category) {
  margin: 8px 0 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #830c0e;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
}

.article-read-more span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: background 180ms ease, transform 180ms ease;
}

.article-read-more svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-read-more:hover span {
  transform: translate(2px, -2px);
}

.article-page-body {
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 223, 200, 0.3), transparent 34%),
    var(--color-paper);
}

.article-page {
  width: min(100% - 48px, 1020px);
  margin: 0 auto;
  padding: 96px 0 104px;
}

.article-detail {
  color: #28211d;
}

.article-detail-header {
  max-width: 690px;
  margin-bottom: 48px;
}

.article-detail-header h1 {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(42px, 5.1vw, 62px);
  font-weight: 500;
  line-height: 1.05;
}

.article-detail-header > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #2f2a27;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
}

.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  color: #2f2a27;
  font-family: var(--font-body);
  font-size: 16px;
}

.article-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.article-detail-meta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-detail-meta b {
  width: 1px;
  height: 26px;
  background: rgba(131, 12, 14, 0.42);
}

.article-detail-image {
  overflow: hidden;
  margin: 0 0 42px;
  border-radius: 10px;
  background: var(--color-clay);
}

.article-detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 2.48 / 1;
  object-fit: cover;
  object-position: center 42%;
}

.article-detail-content {
  max-width: 910px;
  color: #2f2a27;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
}

.article-detail-content p {
  margin: 0 0 26px;
}

.article-detail-content h2 {
  margin: 54px 0 24px;
  color: var(--color-red);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.16;
}

.article-detail-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.article-detail-content li {
  padding-left: 10px;
}

.article-detail-content li::marker {
  color: var(--color-red);
  font-size: 0.85em;
}

.article-detail-content ul + p {
  margin-top: 28px;
}

.article-care-note {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  width: min(100%, 700px);
  margin-top: 34px;
  padding: 15px 22px;
  border-left: 2px solid var(--color-red);
  border-radius: 4px;
  background: rgba(131, 12, 14, 0.055);
}

.article-care-note span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fffaf7;
  color: var(--color-red);
  box-shadow: 0 10px 24px rgba(71, 45, 25, 0.12);
}

.article-care-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-care-note p {
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .article-page {
    width: min(100% - 32px, 1020px);
    padding: 62px 0 74px;
  }

  .article-detail-header {
    margin-bottom: 34px;
  }

  .article-detail-header h1 {
    font-size: 34px;
  }

  .article-detail-header > p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .article-detail-meta {
    gap: 12px;
    margin-top: 28px;
    font-size: 13px;
  }

  .article-detail-meta b {
    display: none;
  }

  .article-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
  }

  .article-detail-image img {
    aspect-ratio: 1.45 / 1;
  }

  .article-detail-content {
    font-size: 15px;
    line-height: 1.72;
  }

  .article-detail-content h2 {
    margin-top: 38px;
    font-size: 24px;
  }

  .article-care-note {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .article-care-note span {
    width: 42px;
    height: 42px;
  }

  .article-care-note svg {
    width: 20px;
    height: 20px;
  }
}

.articles-cta {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 148px;
  margin: 18px 0 0;
  padding: 36px 300px 36px 44px;
  border-radius: 8px;
  background: #830c0e;
  color: #fffaf7;
  box-shadow: 0 20px 46px rgba(71, 45, 25, 0.16);
  opacity: 0;
  transform: translateY(28px);
}

.articles-cta-logo {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.14);
  overflow: hidden;
}

.articles-cta-logo img {
  display: block;
  position: static;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.articles-cta-copy {
  position: relative;
  z-index: 1;
  margin-left: 22px;
}

.articles-cta h3 {
  margin: 0;
  color: #fffaf7;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.articles-cta p {
  max-width: 330px;
  margin: 7px 0 0;
  color: rgba(255, 250, 247, 0.86);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
}

.articles-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: #fffaf7;
  color: #830c0e;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.articles-cta a span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #830c0e;
  color: #fffaf7;
}

.articles-cta a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.articles-cta a:hover {
  background: #f2ebe7;
  transform: translateY(-2px);
}

.articles-cta > img {
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 354px;
  height: 210px;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
}

.final-cta-section {
  margin: 12px 31px 42px;
}

.final-page-cta {
  grid-template-columns: 78px minmax(320px, 1fr) auto;
  justify-items: stretch;
  gap: 28px;
  margin-top: 0;
  padding: 42px 44px 46px;
  background: #830c0e;
  opacity: 1;
  transform: none;
}

.final-page-cta .articles-cta-copy {
  margin-left: 0;
  text-align: center;
}

.final-page-cta h3 {
  font-size: 34px;
  line-height: 1.05;
}

.final-page-cta p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  line-height: 1.5;
}

.final-page-cta a {
  align-self: center;
  justify-self: end;
}

.articles-section.is-visible .articles-heading {
  animation: articles-rise 700ms ease both;
}

.articles-section.is-visible .article-card:nth-child(1) {
  animation: articles-card-in 720ms ease 120ms both;
}

.articles-section.is-visible .article-card:nth-child(2) {
  animation: articles-card-in 720ms ease 240ms both;
}

.articles-section.is-visible .article-card:nth-child(3) {
  animation: articles-card-in 720ms ease 360ms both;
}

.articles-section.is-visible .articles-cta {
  animation: articles-cta-in 720ms ease 480ms both;
}

.final-cta-section.is-visible .articles-cta {
  animation: articles-cta-in 720ms ease both;
}

@keyframes articles-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes articles-card-in {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes articles-cta-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  margin: 72px -31px 56px;
  padding: 58px 44px;
  border-radius: 0;
  background: var(--color-primary-dark);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(45, 28, 17, 0.58), rgba(45, 28, 17, 0.18) 48%, rgba(45, 28, 17, 0.34)),
    linear-gradient(rgba(45, 28, 17, 0.18), rgba(45, 28, 17, 0.42)),
    var(--contact-image) center / cover;
  transform: scale(1.03);
}

.contact-section.is-visible::before {
  animation: contact-bg-drift 12s ease-in-out both;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(350px, 0.64fr) minmax(620px, 1fr);
  gap: 24px;
  width: min(100%, 1480px);
  margin: 0 auto;
  align-items: stretch;
  justify-content: stretch;
}

.contact-info-card,
.contact-form-card {
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 24px 62px rgba(31, 20, 13, 0.18);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  min-height: 782px;
  padding: 54px 56px 52px;
  color: var(--color-ink);
  opacity: 0;
  transform: translateX(-34px);
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 30px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.86);
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(71, 45, 25, 0.055);
}

.contact-pill span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-red);
}

.contact-title-divider {
  position: relative;
  display: block;
  width: 74px;
  height: 14px;
  margin: 0 auto 26px;
  background:
    linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 31px 1px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 31px 1px no-repeat;
}

.contact-title-divider::after,
.contact-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  transform: translate(-50%, -50%);
}

.contact-info-card h2 {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.02;
}

.contact-info-card h2 span {
  color: inherit;
}

.contact-info-card > p:not(.contact-pill) {
  max-width: 335px;
  margin: 18px 0 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.72;
}

.contact-divider {
  position: relative;
  height: 1px;
  margin: 30px 0 26px;
  background: rgba(166, 114, 43, 0.28);
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.contact-info-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(242, 235, 231, 0.88);
  color: #830c0e;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item div,
.contact-info-item p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-info-item small {
  display: block;
  margin-top: 5px;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.35;
}

.contact-info-item div > p {
  font-size: 17px;
  line-height: 1.35;
}

.contact-online-item {
  margin-top: 10px;
  padding: 18px 22px 18px 0;
  border-radius: 8px;
  background: rgba(242, 235, 231, 0.7);
}

.contact-online-item p {
  font-size: 13px;
  transform: translateY(5px);
}

.contact-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(131, 12, 14, 0.62);
  border-radius: 8px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-instagram-link:hover {
  background: rgba(131, 12, 14, 0.055);
  box-shadow: 0 12px 24px rgba(71, 45, 25, 0.08);
  transform: translateY(-2px);
}

.contact-instagram-link span {
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.contact-instagram-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.contact-form-card {
  min-height: 782px;
  padding: 70px 56px 48px;
  opacity: 0;
  transform: translateX(34px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 26px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 72px;
  border: 1px solid rgba(174, 136, 131, 0.34);
  border-radius: 5px;
  padding: 0 22px;
  background: rgba(255, 250, 247, 0.56);
  color: var(--color-text);
  font: 18px var(--font-body);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  opacity: 0;
  transform: translateY(16px);
}

.contact-form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23111111' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

.contact-form-card textarea {
  min-height: 266px;
  padding-top: 24px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(155, 7, 7, 0.34);
  background: #fffaf7;
  box-shadow: 0 0 0 3px rgba(155, 7, 7, 0.12);
}

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form-card button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 70px;
  margin-top: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #9b1013 0%, #830c0e 100%);
  color: #fffaf7;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 15px 30px rgba(131, 12, 14, 0.28);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  opacity: 0;
  transform: translateY(16px);
}

.contact-form-card button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-card button:hover {
  filter: saturate(1.08);
  box-shadow: 0 18px 34px rgba(131, 12, 14, 0.34);
  transform: translateY(-2px);
}

.contact-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.contact-security svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-gold-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-care-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) repeat(3, minmax(190px, 1fr));
  grid-template-rows: auto auto;
  gap: 0;
  align-items: stretch;
  margin: 6px auto 0;
  padding: 56px 58px 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 250, 247, 0.07), transparent 38%),
    linear-gradient(135deg, #830c0e 0%, #9b1013 48%, #7b080a 100%);
  color: #fffaf7;
  box-shadow: 0 24px 62px rgba(31, 20, 13, 0.24);
  opacity: 0;
  transform: translateY(34px);
}

.contact-care-main,
.contact-care-item {
  min-height: 214px;
}

.contact-care-main {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  padding-right: 44px;
  border-right: 1px solid rgba(255, 250, 247, 0.22);
}

.contact-care-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 0 36px 34px;
  border-left: 1px solid rgba(255, 250, 247, 0.22);
}

.contact-care-main + .contact-care-item {
  border-left: 0;
}

.contact-care-item > span,
.contact-care-note > span {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 250, 247, 0.94);
  color: #830c0e;
}

.contact-care-item > span svg,
.contact-care-note > span svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-care-item > span .contact-care-whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.contact-care-main h3 {
  margin: 0;
  max-width: 280px;
  color: #fffaf7;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.12;
}

.contact-care-item p,
.contact-care-note p {
  margin: 0;
  color: rgba(255, 250, 247, 0.92);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

.contact-care-item strong {
  position: relative;
  display: block;
  margin: 2px 0 26px;
  padding-bottom: 16px;
  color: #fffaf7;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.16;
}

.contact-care-item strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 86px;
  height: 1px;
  background: rgba(255, 250, 247, 0.24);
}

.contact-care-item p > span,
.contact-care-note p > span {
  display: block;
}

.contact-care-item b {
  display: block;
  margin-top: 4px;
  color: #fffaf7;
  font-weight: 900;
  text-transform: none;
}

.contact-care-note {
  grid-column: 2 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 118px;
  padding: 28px 36px 0;
  border-top: 1px solid rgba(255, 250, 247, 0.2);
}

.contact-care-note > span {
  background: rgba(255, 250, 247, 0.94);
  color: #830c0e;
}

.contact-care-note p {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
}

.contact-care-note strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 250, 247, 0.26);
  color: #fffaf7;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
}

.contact-section.is-visible .contact-info-card {
  animation: contact-card-left 780ms ease both;
}

.contact-section.is-visible .contact-form-card {
  animation: contact-card-right 780ms ease 120ms both;
}

.contact-section.is-visible .contact-care-info {
  animation: contact-care-in 780ms ease 220ms both;
}

.contact-section.is-visible .contact-form-card input:nth-child(1) {
  animation: contact-field-in 520ms ease 280ms both;
}

.contact-section.is-visible .contact-form-card input:nth-child(2) {
  animation: contact-field-in 520ms ease 340ms both;
}

.contact-section.is-visible .contact-form-card input:nth-child(3) {
  animation: contact-field-in 520ms ease 400ms both;
}

.contact-section.is-visible .contact-form-card select {
  animation: contact-field-in 520ms ease 460ms both;
}

.contact-section.is-visible .contact-form-card input:nth-child(5) {
  animation: contact-field-in 520ms ease 520ms both;
}

.contact-section.is-visible .contact-form-card textarea {
  animation: contact-field-in 520ms ease 580ms both;
}

.contact-section.is-visible .contact-form-card button {
  animation: contact-field-in 520ms ease 640ms both;
}

.contact-section.is-visible .contact-security {
  animation: contact-field-in 520ms ease 700ms both;
}

@keyframes contact-bg-drift {
  from {
    transform: scale(1.08) translate3d(-12px, 0, 0);
  }

  to {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes contact-card-left {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-card-right {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-field-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-care-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.instagram-section {
  position: relative;
  overflow: hidden;
  margin: 0 -31px 72px;
  padding: 64px 31px 76px;
  background: #fffaf7;
}

.instagram-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.instagram-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 50px;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
}

.instagram-section.is-visible .instagram-heading {
  animation: instagram-lift 720ms ease forwards;
}

.instagram-ornament,
.instagram-heading-divider {
  display: inline-grid;
  grid-template-columns: 78px 18px 78px;
  gap: 22px;
  align-items: center;
  color: var(--color-gold);
}

.instagram-ornament span,
.instagram-heading-divider span {
  display: block;
  height: 1px;
  background: rgba(166, 114, 43, 0.55);
}

.instagram-ornament b {
  display: block;
  width: 16px;
  height: 16px;
  background: #830c0e;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.instagram-heading-divider b {
  display: block;
  width: 15px;
  height: 15px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  opacity: 0.58;
}

.instagram-heading .instagram-ornament,
.instagram-heading .instagram-heading-divider {
  display: none;
}

.instagram-mark {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(166, 114, 43, 0.36);
  border-radius: 50%;
  color: var(--color-red);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 12px 26px rgba(71, 45, 25, 0.1);
}

.instagram-mark-icon {
  display: block;
  width: 39px;
  height: 39px;
  background: currentColor;
  -webkit-mask: url("assets/vendor/bootstrap-icons/icons/instagram.svg") center / contain no-repeat;
  mask: url("assets/vendor/bootstrap-icons/icons/instagram.svg") center / contain no-repeat;
}

.instagram-mark-svg {
  display: block;
  width: 33px;
  height: 33px;
  fill: currentColor;
  stroke: none;
}

.instagram-heading h2 {
  margin: 0;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.instagram-heading h2 span {
  color: #830c0e;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.instagram-post-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: var(--color-clay);
  box-shadow: 0 18px 42px rgba(71, 45, 25, 0.11);
  opacity: 0;
  transform: translateY(26px);
}

.instagram-section.is-visible .instagram-post-card {
  animation: instagram-card-in 720ms ease forwards;
}

.instagram-section.is-visible .instagram-post-card:nth-child(2) {
  animation-delay: 80ms;
}

.instagram-section.is-visible .instagram-post-card:nth-child(3) {
  animation-delay: 160ms;
}

.instagram-post-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease, filter 520ms ease;
}

.instagram-post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 250, 247, 0.28);
  pointer-events: none;
}

.instagram-post-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.instagram-post-type {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fffaf7;
}

.instagram-post-type svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-post-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 26px;
  color: #fffaf7;
}

.instagram-post-overlay h3 {
  max-width: 260px;
  margin: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.03;
}

.instagram-post-overlay strong {
  font-weight: 800;
}

.instagram-post-overlay em {
  font-style: italic;
}

.instagram-post-card:nth-child(1) .instagram-post-overlay,
.instagram-post-card:nth-child(3) .instagram-post-overlay {
  color: #1d1714;
}

.instagram-post-card:nth-child(1) .instagram-post-overlay h3 strong,
.instagram-post-card:nth-child(3) .instagram-post-overlay h3 strong,
.instagram-post-card:nth-child(4) .instagram-post-overlay h3 strong {
  color: #830c0e;
}

.instagram-post-card:nth-child(1) .instagram-post-overlay h3 em {
  color: #830c0e;
}

.instagram-post-overlay p {
  position: absolute;
  left: 26px;
  bottom: 24px;
  margin: 0;
  color: currentColor;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
}

.instagram-footer {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 760px;
  margin: 54px auto 0;
  text-align: center;
}

.instagram-footer p {
  max-width: 650px;
  margin: 0;
  color: #1d1d1d;
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.45;
}

.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 62px;
  min-width: min(100%, 560px);
  padding: 0 32px;
  border-radius: 999px;
  background: #830c0e;
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(131, 12, 14, 0.22);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.instagram-profile-link span {
  font-size: 24px;
  line-height: 1;
}

.instagram-profile-link:hover {
  background: #6d090b;
  box-shadow: 0 22px 42px rgba(131, 12, 14, 0.28);
  transform: translateY(-2px);
}

@keyframes instagram-lift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes instagram-card-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-page-body {
  background: #fbf8f3;
}

.profile-page {
  width: min(100% - 48px, 1240px);
  margin: 24px auto 72px;
  color: var(--color-ink);
}

.profile-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 530px) minmax(420px, 1fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  min-height: 620px;
  padding: 28px 44px 42px 0;
}

.profile-hero-photo {
  overflow: hidden;
  aspect-ratio: 0.83;
  border-radius: 20px;
  background: var(--color-clay);
}

.profile-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 29%;
}

.profile-hero-copy {
  position: relative;
  z-index: 1;
  padding-right: min(9vw, 118px);
}

.profile-floral {
  position: absolute;
  right: -54px;
  top: -48px;
  z-index: -1;
  width: 192px;
  height: auto;
  fill: none;
  stroke: rgba(225, 212, 199, 0.82);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.profile-kicker {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-hero h1 {
  margin: 0;
  color: #830c0e;
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.92;
}

.profile-hero h1 span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-ink);
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.05;
}

.profile-credential {
  margin: 24px 0 0;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
}

.profile-credential span {
  display: inline-flex;
  margin: 0 14px;
  color: var(--color-gold-dark);
}

.profile-intro {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  max-width: 610px;
}

.profile-intro p,
.profile-split p,
.profile-contact-copy p,
.profile-help p {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.82;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.profile-primary-button,
.profile-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.profile-primary-button {
  padding: 0 9px 0 24px;
  background: var(--color-primary);
  color: #fffaf7;
}

.profile-outline-button {
  padding: 0 18px 0 24px;
  border: 1px solid rgba(84, 53, 30, 0.36);
  background: rgba(255, 250, 247, 0.6);
  color: var(--color-primary);
}

.profile-primary-button > span,
.profile-outline-button > span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.profile-primary-button > span {
  background: var(--color-sand);
  color: var(--color-primary);
}

.profile-outline-button > span {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.profile-primary-button svg,
.profile-outline-button svg,
.profile-section-icon svg,
.profile-help svg,
.profile-contact-list svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-primary-button:hover,
.profile-outline-button:hover {
  transform: translateY(-2px);
}

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

.profile-outline-button:hover {
  border-color: var(--color-gold);
  background: var(--color-paper);
}

.profile-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 58px;
  padding: 72px 24px 58px;
  border-top: 1px solid rgba(225, 212, 199, 0.78);
}

.profile-split article + article {
  border-left: 1px solid rgba(225, 212, 199, 0.9);
  padding-left: 56px;
}

.profile-section-icon,
.profile-help article > span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(237, 223, 200, 0.42);
  color: var(--color-gold);
}

.profile-section-icon svg {
  width: 32px;
  height: 32px;
}

.profile-split h2,
.profile-contact-strip h2,
.profile-help h2 {
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}

.profile-small-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 14px 0 32px;
  background: var(--color-gold);
}

.profile-split p + p {
  margin-top: 26px;
}

.profile-help {
  padding: 48px 0 58px;
  text-align: center;
}

.profile-help .profile-small-line {
  margin-right: auto;
  margin-left: auto;
}

.profile-help-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
}

.profile-help article {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 22px;
  border-left: 1px solid rgba(225, 212, 199, 0.9);
}

.profile-help article:first-child {
  border-left: 0;
}

.profile-help article > span {
  width: 58px;
  height: 58px;
}

.profile-help article > span svg {
  width: 30px;
  height: 30px;
}

.profile-help h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-help p {
  max-width: 150px;
  font-size: 12px;
  line-height: 1.65;
}

.profile-quote {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 42px 0 72px;
  padding: 34px clamp(34px, 8vw, 210px);
  border-radius: 16px;
  background: rgba(237, 223, 200, 0.48);
  overflow: hidden;
}

.profile-quote::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -28px;
  width: 150px;
  height: 190px;
  border: solid rgba(174, 136, 131, 0.25);
  border-width: 0 2px 0 0;
  border-radius: 50%;
  transform: rotate(26deg);
}

.profile-quote > span {
  color: var(--color-gold);
  font-size: 70px;
  line-height: 0.8;
}

.profile-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 720px;
  color: var(--color-ink);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
}

.profile-quote small {
  color: var(--color-gold);
  font-size: 28px;
}

.profile-contact-strip {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 520px);
  gap: 70px;
  align-items: start;
  padding: 0 48px 34px;
}

.profile-contact-copy strong {
  display: block;
  margin-top: 28px;
  color: var(--color-ink);
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
}

.profile-contact-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
}

.profile-contact-copy .profile-primary-button {
  width: fit-content;
  margin-top: 28px;
}

.profile-contact-list {
  display: grid;
  gap: 28px;
  padding-left: 64px;
  border-left: 1px solid rgba(225, 212, 199, 0.9);
}

.profile-contact-list p {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.profile-contact-list p > span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--color-gold);
}

.detail-brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask-image: url("assets/vendor/bootstrap-icons/icons/instagram.svg");
  mask-image: url("assets/vendor/bootstrap-icons/icons/instagram.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.detail-brand-svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.profile-contact-list a {
  color: inherit;
}

.psychk-page-body {
  --psychk-blue: #132e4c;
  --psychk-blue-dark: #132e4c;
  --psychk-blue-soft: #e8eef2;
  --psychk-cream: #fbf7ef;
  --psychk-line: rgba(19, 46, 76, 0.14);
  background: var(--psychk-cream);
  color: var(--psychk-blue);
}

.psychk-page {
  width: min(100% - 48px, 1400px);
  margin: 0 auto 70px;
}

.psychk-page svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.psychk-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  padding: 64px 72px;
  border-radius: 0 0 18px 18px;
  background: #fffdf8;
  box-shadow: inset 0 -1px 0 rgba(19, 46, 76, 0.05);
}

.psychk-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.psychk-hero h1 {
  margin: 0;
  color: var(--psychk-blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.1vw, 58px);
  font-weight: 700;
  line-height: 1.04;
}

.psychk-hero h1 span {
  display: block;
  white-space: nowrap;
  animation: psychk-hero-copy-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.psychk-hero h1 span:nth-child(2) {
  animation-delay: 90ms;
}

.psychk-hero h1 span:nth-child(3) {
  animation-delay: 180ms;
}

.psychk-hero-divider {
  position: relative;
  display: block;
  width: 194px;
  height: 1px;
  margin: 32px 0 24px;
  background: rgba(166, 114, 43, 0.58);
}

.psychk-hero-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.psychk-hero p {
  max-width: 360px;
  margin: 0;
  color: rgba(19, 46, 76, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  animation: psychk-hero-copy-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 360ms both;
}

.psychk-hero .psychk-button {
  animation: psychk-hero-button-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 520ms backwards;
}

.psychk-hero-brand {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(410px, 100%);
  aspect-ratio: 1;
  animation: psychk-hero-logo-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms backwards;
}

.psychk-hero-brand::before,
.psychk-hero-brand::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(19, 46, 76, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.psychk-hero-brand::before {
  inset: -14%;
}

.psychk-hero-brand::after {
  inset: 10%;
  transform: translate(-14%, 12%);
}

.psychk-logo-mask {
  display: block;
  aspect-ratio: 1;
  background: var(--psychk-blue);
  mask: url("assets/images/logo-psych-k.png") center / contain no-repeat;
  -webkit-mask: url("assets/images/logo-psych-k.png") center / contain no-repeat;
}

.psychk-hero-brand .psychk-logo-mask {
  position: relative;
  z-index: 1;
  width: min(190px, 54%);
}

.psychk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 8px 0 24px;
  border-radius: 999px;
  background: var(--psychk-blue);
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(19, 46, 76, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.psychk-button span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fffaf7;
  color: var(--psychk-blue);
}

.psychk-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.psychk-button:hover {
  background: var(--psychk-blue-dark);
  box-shadow: 0 22px 44px rgba(19, 46, 76, 0.22);
  transform: translateY(-2px);
}

.psychk-hero-mark,
.psychk-method-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
  color: var(--psychk-blue);
}

.psychk-hero-mark::before,
.psychk-hero-mark::after,
.psychk-method-mark::before,
.psychk-method-mark::after {
  content: "";
  position: absolute;
  inset: 4%;
  border: 1px solid rgba(19, 46, 76, 0.13);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.psychk-hero-mark::after,
.psychk-method-mark::after {
  inset: 10%;
  transform: rotate(18deg);
}

.psychk-hero-mark span {
  align-self: end;
  margin-bottom: 52%;
  color: var(--psychk-blue);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.psychk-mark-svg {
  position: absolute;
  width: 158px;
  height: 158px;
  color: var(--psychk-blue);
}

.psychk-mark-svg path {
  fill: currentColor;
  stroke: none;
}

.psychk-blocks,
.psychk-process,
.psychk-benefits,
.psychk-about-me,
.psychk-final-cta {
  padding: 46px 0;
}

.psychk-blocks {
  padding: 92px 0 78px;
}

.psychk-blocks h2,
.psychk-process h2 {
  max-width: 680px;
  margin: 0 auto 32px;
  color: #132e4c;
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.12;
}

.psychk-blocks h2 {
  position: relative;
  max-width: 1040px;
  margin-bottom: 72px;
  color: #0b234d;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 0.98;
}

.psychk-blocks h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 200px;
  height: 1px;
  background: rgba(166, 114, 43, 0.62);
  transform: translateX(-50%);
}

.psychk-blocks h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  transform: translateX(-50%) rotate(45deg);
}

.psychk-process h2 {
  margin: 0 auto 50px;
  color: #0B234D;
  text-align: center;
  font-size: clamp(32px, 3.2vw, 44px);
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.02;
}

.psychk-block-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(350px, 1.18fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.psychk-block-list {
  display: grid;
  gap: 18px;
}

.psychk-block-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 22px 28px;
  border: 1px solid rgba(19, 46, 76, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  color: #0b234d;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 14px 34px rgba(19, 46, 76, 0.08);
}

.psychk-block-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(166, 114, 43, 0.72);
  border-radius: 50%;
  color: var(--color-gold);
}

.psychk-block-list svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.8;
}

.psychk-percent-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 52px 44px 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b2949 0%, #082542 100%);
  color: #fffaf7;
  box-shadow: 0 20px 48px rgba(19, 46, 76, 0.2);
}

.psychk-percent-card strong {
  display: block;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(86px, 8vw, 124px);
  font-weight: 400;
  line-height: 0.72;
}

.psychk-percent-card p {
  max-width: 280px;
  margin: 34px 0 0;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.28;
}

.psychk-percent-icon {
  position: absolute;
  right: 10px;
  top: 54px;
  width: 220px;
  height: 147px;
  object-fit: contain;
}

.psychk-block-note {
  max-width: 920px;
  margin: 58px auto 0;
  color: rgba(19, 46, 76, 0.74);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.psychk-about-method {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  margin: 28px auto 46px;
  padding: 48px 52px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(120deg, #132e4c 0%, var(--psychk-blue) 44%, #cbd5dc 100%);
  color: #fffaf7;
  box-shadow: 0 24px 58px rgba(19, 46, 76, 0.16);
}

.psychk-about-method > div:first-child {
  position: relative;
  z-index: 1;
}

.psychk-about-method p {
  margin: 0;
  color: rgba(255, 250, 247, 0.88);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.62;
}

.psychk-about-method p + p {
  margin-top: 18px;
}

.psychk-about-method h2 {
  margin: 4px 0 18px;
  color: #fffaf7;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}

.psychk-method-mark {
  display: grid;
  gap: 10px;
  place-items: center;
  width: min(360px, 100%);
  color: #fffaf7;
}

.psychk-method-mark::before,
.psychk-method-mark::after {
  display: none;
}

.psychk-method-mark span {
  color: #fffaf7;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(34px);
}

.psychk-method-mark .psychk-logo-mask {
  display: block;
  width: min(230px, 64%);
  background: #fffaf7;
  transform: translateY(-10px);
}

.psychk-process {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #F8F8F8;
  background-image: radial-gradient(rgba(0, 0, 0, 0.032) 1px, transparent 1px);
  background-size: 22px 22px;
}

.psychk-process-flow {
  --psychk-timeline-gap: 34px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--psychk-timeline-gap);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4px;
  justify-items: center;
}

.psychk-process-step {
  position: relative;
  z-index: 1;
  max-width: 220px;
  text-align: center;
}

.psychk-process-step::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 50%;
  width: calc(100% + var(--psychk-timeline-gap));
  height: 2px;
  background: #C8B98A;
  pointer-events: none;
}

.psychk-process-step:last-child::after {
  display: none;
}

.psychk-process-number {
  margin: 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #0B234D;
  color: #fffaf7;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.psychk-process-icon-frame {
  margin: 35px auto 0;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border: 1.5px solid #C8B98A;
  border-radius: 50%;
  background: #fff;
}

.psychk-process-icon-frame img {
  display: block;
  width: 88px;
  height: 58px;
  object-fit: contain;
}

.psychk-process-step h3 {
  margin: 20px auto 0;
  color: #111111;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 220px;
}

.psychk-process-step p {
  margin: 16px 0 0;
  max-width: 220px;
  color: #333333;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.psychk-payment-details {
  display: grid;
  max-width: min(100%, 1280px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 38px auto 0;
  padding: 26px 24px;
  border-radius: 12px;
  background: #fff;
  color: #111111;
  border: 1px solid rgba(11, 35, 77, 0.12);
  box-shadow: 0 14px 34px rgba(19, 46, 76, 0.055);
}

.psychk-payment-details p {
  margin: 0;
  white-space: pre-line;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.psychk-benefits {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(360px, 1fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 120px 0;
}

.psychk-benefits > div {
  align-self: center;
  max-width: 470px;
}

.psychk-benefits h2,
.psychk-about-me h2,
.psychk-final-cta h2 {
  margin: 0;
  color: var(--psychk-blue);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
}

.psychk-benefits h2 {
  color: #0b234d;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(30px, 2.7vw, 40px);
  font-weight: 700;
  line-height: 1.12;
}

.psychk-benefits div > span,
.psychk-about-me div > span {
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 28px;
  background: rgba(19, 46, 76, 0.42);
}

.psychk-benefits div > span {
  position: relative;
  width: 184px;
  height: 1px;
  margin-top: 34px;
  background: rgba(166, 114, 43, 0.72);
}

.psychk-benefits div > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.psychk-benefits ul {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.psychk-benefits ul + ul {
  min-height: 430px;
  padding-left: 48px;
  border-left: 1px solid rgba(19, 46, 76, 0.16);
}

.psychk-benefits li {
  position: relative;
  min-height: 32px;
  padding-left: 52px;
  color: #0b234d;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.psychk-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 29px;
  height: 29px;
  border: 2px solid #111820;
  border-radius: 50%;
}

.psychk-benefits li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #111820;
  border-bottom: 3px solid #111820;
  transform: rotate(-45deg);
}

.psychk-about-me {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.psychk-about-photo {
  overflow: hidden;
  min-height: 360px;
  border-radius: 10px;
  background: var(--color-clay);
}

.psychk-about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 25%;
}

.psychk-about-me p {
  margin: 22px 0 0;
  color: rgba(19, 46, 76, 0.78);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.7;
}

.psychk-final-cta {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-top: 8px;
  padding: 46px 64px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.74)),
    url("data:image/svg+xml,%3Csvg width='300' height='240' viewBox='0 0 300 240' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23CBB6AA' stroke-width='3' stroke-linecap='round' opacity='.38'%3E%3Cpath d='M240-10c-48 68-62 137-43 207'/%3E%3Cpath d='M202 79c-35-5-62 8-82 38 36 7 63-6 82-38Z'/%3E%3Cpath d='M207 126c-32 2-57 19-76 50 34-1 59-18 76-50Z'/%3E%3Cpath d='M222 46c-19-26-22-52-8-81 21 26 24 53 8 81Z'/%3E%3Cpath d='M216 88c29-16 55-16 80 0-27 18-53 18-80 0Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.psychk-final-cta p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(19, 46, 76, 0.72);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.psychk-hero-divider,
.psychk-hero .psychk-button,
.psychk-hero-brand,
.psychk-blocks h2,
.psychk-block-grid,
.psychk-block-list div,
.psychk-percent-card,
.psychk-block-note,
.psychk-about-method > div:first-child,
.psychk-method-mark,
.psychk-process h2,
.psychk-process-step,
.psychk-benefits > div,
.psychk-benefits ul,
.psychk-benefits li,
.psychk-final-cta > div,
.psychk-final-cta .psychk-button {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.psychk-hero-divider {
  transform: scaleX(0);
  transform-origin: left center;
}

.psychk-hero-brand {
  transform: translate3d(22px, 0, 0) scale(0.94);
}

.psychk-hero-brand::before,
.psychk-hero-brand::after,
.psychk-method-mark .psychk-logo-mask,
.psychk-percent-icon,
.psychk-process-icon-frame img {
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.psychk-hero:not(.is-visible) .psychk-hero-brand::before,
.psychk-hero:not(.is-visible) .psychk-hero-brand::after {
  opacity: 0;
}

.psychk-hero.is-visible .psychk-button,
.psychk-hero.is-visible .psychk-hero-brand,
.psychk-blocks.is-visible h2,
.psychk-blocks.is-visible .psychk-block-grid,
.psychk-blocks.is-visible .psychk-block-list div,
.psychk-blocks.is-visible .psychk-percent-card,
.psychk-blocks.is-visible .psychk-block-note,
.psychk-about-method.is-visible > div:first-child,
.psychk-about-method.is-visible .psychk-method-mark,
.psychk-process.is-visible h2,
.psychk-process.is-visible .psychk-process-step,
.psychk-benefits.is-visible > div,
.psychk-benefits.is-visible ul,
.psychk-benefits.is-visible li,
.psychk-final-cta.is-visible > div,
.psychk-final-cta.is-visible .psychk-button {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.psychk-hero.is-visible .psychk-hero-divider {
  opacity: 1;
  transform: scaleX(1);
}

.psychk-hero.is-visible .psychk-hero-brand::before,
.psychk-hero.is-visible .psychk-hero-brand::after {
  opacity: 1;
}

.psychk-hero.is-visible .psychk-hero-divider {
  transition-delay: 320ms;
}

.psychk-hero.is-visible .psychk-button {
  transition-delay: 480ms;
}

.psychk-hero.is-visible .psychk-hero-brand {
  transition-delay: 260ms;
}

.psychk-blocks.is-visible .psychk-block-list:first-of-type div:nth-child(1),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(1),
.psychk-process.is-visible .psychk-process-step:nth-child(1) {
  transition-delay: 90ms;
}

.psychk-blocks.is-visible .psychk-block-list:first-of-type div:nth-child(2),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(2),
.psychk-process.is-visible .psychk-process-step:nth-child(2) {
  transition-delay: 160ms;
}

.psychk-blocks.is-visible .psychk-block-list:first-of-type div:nth-child(3),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(3),
.psychk-process.is-visible .psychk-process-step:nth-child(3) {
  transition-delay: 230ms;
}

.psychk-blocks.is-visible .psychk-percent-card,
.psychk-benefits.is-visible ul:first-of-type li:nth-child(4),
.psychk-process.is-visible .psychk-process-step:nth-child(4) {
  transition-delay: 300ms;
}

.psychk-blocks.is-visible .psychk-block-list:last-of-type div:nth-child(1),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(5),
.psychk-process.is-visible .psychk-process-step:nth-child(5) {
  transition-delay: 370ms;
}

.psychk-blocks.is-visible .psychk-block-list:last-of-type div:nth-child(2),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(6),
.psychk-process.is-visible .psychk-process-step:nth-child(6) {
  transition-delay: 440ms;
}

.psychk-blocks.is-visible .psychk-block-list:last-of-type div:nth-child(3),
.psychk-benefits.is-visible ul:first-of-type li:nth-child(7) {
  transition-delay: 510ms;
}

.psychk-benefits.is-visible ul:first-of-type li:nth-child(8),
.psychk-benefits.is-visible ul:last-of-type li:nth-child(1) {
  transition-delay: 580ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(2) {
  transition-delay: 650ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(3) {
  transition-delay: 720ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(4) {
  transition-delay: 790ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(5) {
  transition-delay: 860ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(6) {
  transition-delay: 930ms;
}

.psychk-benefits.is-visible ul:last-of-type li:nth-child(7) {
  transition-delay: 1000ms;
}

.psychk-process-step::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 720ms ease;
}

.psychk-process.is-visible .psychk-process-step::after {
  transform: scaleX(1);
}

.psychk-process.is-visible .psychk-process-step:nth-child(1)::after {
  transition-delay: 240ms;
}

.psychk-process.is-visible .psychk-process-step:nth-child(2)::after {
  transition-delay: 340ms;
}

.psychk-process.is-visible .psychk-process-step:nth-child(3)::after {
  transition-delay: 440ms;
}

.psychk-process.is-visible .psychk-process-step:nth-child(4)::after {
  transition-delay: 540ms;
}

.psychk-process.is-visible .psychk-process-step:nth-child(5)::after {
  transition-delay: 640ms;
}

.psychk-about-method.is-visible .psychk-method-mark .psychk-logo-mask {
  transform: translateY(-10px) scale(1.02);
}

.psychk-blocks.is-visible .psychk-percent-icon,
.psychk-process.is-visible .psychk-process-icon-frame img {
  transform: scale(1.03);
}

@keyframes psychk-hero-copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes psychk-hero-button-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes psychk-hero-logo-in {
  from {
    opacity: 0;
    transform: translate3d(26px, 0, 0) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1180px) {
  .psychk-page {
    width: min(100% - 32px, 980px);
  }

  .psychk-hero {
    grid-template-columns: minmax(390px, 0.95fr) minmax(260px, 0.6fr);
    gap: 44px;
  }

  .psychk-hero-brand {
    width: min(320px, 100%);
  }

  .psychk-about-method,
  .psychk-about-me {
    grid-template-columns: 1fr;
  }

  .psychk-hero-mark,
  .psychk-method-mark {
    width: min(360px, 100%);
  }

  .psychk-block-grid,
  .psychk-benefits {
    grid-template-columns: 1fr;
  }

  .psychk-block-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .psychk-block-list div {
    min-height: 94px;
    padding: 20px;
    font-size: 21px;
  }

  .psychk-percent-card {
    min-height: 320px;
  }

  .psychk-benefits ul + ul {
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .psychk-benefits {
    gap: 34px;
    padding: 82px 0;
  }

  .psychk-benefits > div {
    max-width: 620px;
  }

  .psychk-process-flow,
  .psychk-payment-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    --psychk-timeline-gap: 24px;
  }

  .psychk-process-step:last-child::after {
    display: none;
  }

  .psychk-process-step:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .psychk-page {
    width: min(100% - 28px, 680px);
    margin-bottom: 48px;
  }

  .psychk-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 46px 24px;
    border-radius: 18px;
  }

  .psychk-hero h1 {
    font-size: clamp(24px, 6.8vw, 36px);
  }

  .psychk-hero-divider {
    width: 118px;
    margin: 22px 0 18px;
  }

  .psychk-hero-divider::after {
    width: 6px;
    height: 6px;
  }

  .psychk-hero p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.52;
  }

  .psychk-hero-brand {
    justify-self: start;
    width: min(240px, 70%);
    margin-left: 18px;
  }

  .psychk-hero-brand .psychk-logo-mask {
    width: min(132px, 58%);
  }

  .psychk-hero-mark span {
    font-size: 26px;
  }

  .psychk-mark-svg {
    width: 112px;
    height: 112px;
  }

  .psychk-blocks,
  .psychk-process,
  .psychk-benefits,
  .psychk-about-me,
  .psychk-final-cta {
    padding: 34px 0;
  }

  .psychk-blocks {
    padding: 54px 0 46px;
  }

  .psychk-blocks h2 {
    margin-bottom: 56px;
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.05;
  }

  .psychk-blocks h2::after {
    bottom: -28px;
    width: 128px;
  }

  .psychk-blocks h2::before {
    bottom: -32px;
    width: 8px;
    height: 8px;
  }

  .psychk-blocks h2 br {
    display: none;
  }

  .psychk-block-list,
  .psychk-process-flow {
    grid-template-columns: 1fr;
  }

  .psychk-process-step::after,
  .psychk-process-flow::before {
    display: none;
  }

  .psychk-process h2 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .psychk-percent-card {
    min-height: 280px;
    padding: 42px 32px 34px;
  }

  .psychk-block-list div {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 86px;
    padding: 18px 20px;
    font-size: 22px;
  }

  .psychk-block-list span {
    width: 38px;
    height: 38px;
  }

  .psychk-percent-card strong {
    font-size: 82px;
  }

  .psychk-percent-card p {
    max-width: 230px;
    margin-top: 28px;
    font-size: 23px;
  }

  .psychk-percent-icon {
    right: 4px;
    top: 48px;
    width: 170px;
    height: 113px;
  }

  .psychk-block-note {
    margin-top: 34px;
    font-size: 17px;
  }

  .psychk-benefits {
    gap: 28px;
    padding: 46px 0;
  }

  .psychk-benefits h2 {
    font-size: 28px;
  }

  .psychk-benefits div > span {
    width: 132px;
    margin-top: 22px;
  }

  .psychk-benefits ul {
    gap: 18px;
  }

  .psychk-benefits li {
    min-height: 28px;
    padding-left: 44px;
    font-size: 15px;
    line-height: 1.45;
  }

  .psychk-benefits li::before {
    width: 26px;
    height: 26px;
  }

  .psychk-benefits li::after {
    left: 8px;
    top: 6px;
    width: 11px;
    height: 6px;
  }

  .psychk-about-method {
    gap: 28px;
    padding: 34px 24px;
  }

  .psychk-about-method h2 {
    font-size: 36px;
  }

  .psychk-payment-details {
    grid-template-columns: 1fr;
  }

  .psychk-about-photo,
  .psychk-about-photo img {
    min-height: 300px;
  }

  .psychk-final-cta {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .psychk-final-cta .psychk-button {
    width: fit-content;
  }
}

@media (max-width: 360px) {
  .psychk-page {
    width: min(100% - 20px, 680px);
  }

  .psychk-hero {
    padding: 38px 18px;
  }

  .psychk-hero h1 {
    font-size: 21px;
  }

  .psychk-hero p {
    max-width: 260px;
    font-size: 13px;
  }

  .psychk-hero-brand {
    width: min(210px, 76%);
    margin-left: 10px;
  }

  .psychk-blocks h2 {
    font-size: 24px;
  }

  .psychk-block-list div {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 78px;
    padding: 16px;
    font-size: 20px;
  }

  .psychk-block-list span {
    width: 34px;
    height: 34px;
  }

  .psychk-percent-card {
    min-height: 252px;
    padding: 36px 24px 30px;
  }

  .psychk-percent-card strong {
    font-size: 70px;
  }

  .psychk-percent-card p {
    max-width: 190px;
    margin-top: 24px;
    font-size: 20px;
  }

  .psychk-percent-icon {
    right: 2px;
    top: 40px;
    width: 128px;
    height: 85px;
  }

  .psychk-benefits h2 {
    font-size: 25px;
  }

  .psychk-benefits li {
    padding-left: 40px;
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 22px;
    padding: 0 28px;
  }

  .brand {
    flex-basis: 250px;
    gap: 10px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .desktop-nav {
    gap: clamp(18px, 2.2vw, 30px);
  }

  .nav-link {
    font-size: 11px;
  }

  .header-actions {
    flex-basis: 160px;
  }

  .services-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-hero-copy {
    max-width: 760px;
  }

  .services-pill {
    margin-bottom: 8px;
  }

  .services-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .services-focus-card:nth-child(4) {
    border-left: 0;
  }

  .services-list {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .service-card + .service-card {
    border-top: 1px solid rgba(174, 136, 131, 0.28);
    border-left: 0;
  }

  .services-psychk {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
    padding: 46px 42px;
    background:
      radial-gradient(circle at 50% 50%, rgba(255, 250, 247, 0.38) 0%, rgba(184, 197, 207, 0.42) 18%, rgba(19, 46, 76, 0) 36%),
      linear-gradient(180deg, #fffdfb 0%, #f4f6f7 42%, #9aaaba 52%, #132e4c 65%, #041a33 100%);
  }

  .services-psychk::before,
  .services-psychk::after {
    display: none;
  }

  .services-psychk-brand {
    justify-content: center;
    padding: 36px 0 18px;
  }

  .articles-card-grid {
    gap: 24px;
  }

  .articles-cta {
    grid-template-columns: 78px minmax(240px, 1fr) auto;
    padding-right: 230px;
  }

  .articles-cta-logo {
    width: 58px;
    height: 58px;
  }

  .articles-cta-logo img {
    width: 38px;
    height: 38px;
  }

  .articles-cta > img {
    right: -70px;
    width: 320px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    width: min(100%, 860px);
  }

  .contact-info-card,
  .contact-form-card {
    min-height: 0;
  }

  .contact-info-card {
    padding: 54px 58px;
  }

  .contact-form-card {
    padding: 56px 48px 42px;
  }

  .contact-care-info {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 42px 36px 36px;
  }

  .contact-care-main {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 247, 0.22);
  }

  .contact-care-item {
    min-height: 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 250, 247, 0.2);
    border-left: 0;
  }

  .contact-care-main + .contact-care-item {
    border-top: 0;
  }

  .contact-care-note {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin-top: 0;
    padding: 28px 0 0;
  }

  .profile-page {
    width: min(100% - 32px, 980px);
  }

  .profile-hero {
    grid-template-columns: minmax(300px, 440px) minmax(360px, 1fr);
    gap: 38px;
    padding-right: 0;
  }

  .profile-hero-copy {
    padding-right: 54px;
  }

  .profile-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .profile-help article:nth-child(3n + 1) {
    border-left: 0;
  }

  .profile-contact-strip {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 69px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 16px;
  }

  .brand {
    flex: 0 1 auto;
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp .whatsapp-icon {
    width: 29px;
    height: 29px;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .page-content {
    padding: 0 16px;
    margin-top: 28px;
  }

  .final-cta-section {
    margin: 14px 16px 34px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .profile-page {
    width: min(100% - 32px, 720px);
    margin-top: 22px;
  }

  .profile-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 0;
  }

  .profile-hero-photo {
    aspect-ratio: 0.86;
    border-radius: 18px;
  }

  .profile-hero-copy {
    padding-right: 0;
  }

  .profile-floral {
    display: none;
  }

  .profile-kicker {
    font-size: 12px;
  }

  .profile-hero h1 {
    font-size: 50px;
  }

  .profile-hero h1 span {
    font-size: 27px;
  }

  .profile-credential {
    font-size: 15px;
  }

  .profile-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-primary-button,
  .profile-outline-button {
    width: 100%;
  }

  .profile-split {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 42px;
    padding: 46px 0 32px;
  }

  .profile-split article + article {
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid rgba(225, 212, 199, 0.9);
    border-left: 0;
  }

  .profile-help {
    padding: 36px 0 42px;
  }

  .profile-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .profile-help article {
    padding: 0 16px;
  }

  .profile-help article:nth-child(odd) {
    border-left: 0;
  }

  .profile-help article:nth-child(3n + 1):not(:nth-child(odd)) {
    border-left: 1px solid rgba(225, 212, 199, 0.9);
  }

  .profile-quote {
    align-items: flex-start;
    gap: 16px;
    margin: 28px 0 52px;
    padding: 28px 24px;
  }

  .profile-quote > span {
    font-size: 48px;
  }

  .profile-quote p {
    font-size: 28px;
  }

  .profile-contact-strip {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 0 28px;
  }

  .profile-contact-list {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid rgba(225, 212, 199, 0.9);
    border-left: 0;
  }

  .about-section {
    margin: 28px 0 26px;
    padding: 22px;
    border-radius: 18px;
  }

  .about-section::before,
  .about-section::after,
  .about-floral {
    display: none;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-photo-card {
    aspect-ratio: 0.78;
    border-radius: 18px;
  }

  .about-copy h2 {
    margin-top: 18px;
    font-size: 34px;
    line-height: 1;
  }

  .about-title-line {
    margin-top: 24px;
  }

  .about-text-stack {
    gap: 18px;
    margin-top: 28px;
  }

  .about-text-stack p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-button {
    width: 100%;
    margin-top: 28px;
  }

  .services-section {
    margin: 54px 0;
    padding: 0;
  }

  .services-shell {
    gap: 24px;
  }

  .services-pill {
    grid-template-columns: 44px auto 44px;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 11px;
  }

  .services-hero-copy h2 {
    font-size: 38px;
  }

  .services-hero-copy > p {
    margin-top: 12px;
    font-size: 13px;
  }

  .services-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
    margin-top: 8px;
  }

  .services-focus-card {
    min-height: 0;
    padding: 0 14px;
  }

  .services-focus-card:nth-child(odd) {
    border-left: 0;
  }

  .services-focus-card:nth-child(even) {
    border-left: 1px solid rgba(174, 136, 131, 0.26);
  }

  .services-focus-icon {
    width: 56px;
    height: 56px;
  }

  .services-focus-icon svg {
    width: 31px;
    height: 31px;
  }

  .services-focus-card h3 {
    font-size: 16px;
  }

  .services-focus-card p {
    font-size: 11px;
  }

  .services-psychk {
    gap: 30px;
    padding: 34px 24px;
    border-radius: 14px;
  }

  .services-psychk-copy h3 {
    font-size: 32px;
  }

  .services-psychk-copy div p {
    font-size: 14px;
  }

  .services-psychk-cta {
    min-height: 48px;
    padding-left: 20px;
    font-size: 11px;
  }

  .service-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .service-card-visual {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .service-card-visual img {
    min-height: 170px;
  }

  .service-card + .service-card {
    padding: 18px;
    border-top: 1px solid rgba(174, 136, 131, 0.28);
    border-left: 0;
  }

  .service-card-icon {
    width: 42px;
    height: 42px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card-line {
    margin: 12px 0 14px;
  }

  .service-card p {
    font-size: 13px;
  }

  .faq-section {
    margin-right: -16px;
    margin-left: -16px;
    padding: 52px 16px 58px;
  }

  .faq-pill {
    margin-bottom: 16px;
  }

  .faq-decoration {
    display: none;
  }

  .faq-heading {
    margin-bottom: 26px;
  }

  .faq-heading h2 {
    font-size: 40px;
  }

  .faq-heading p {
    font-size: 16px;
  }

  .faq-heading p br {
    display: none;
  }

  .faq-heading-divider {
    max-width: 240px;
    gap: 12px;
    margin-top: 18px;
  }

  .faq-question {
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 64px;
    padding: 0 16px;
    font-size: 15px;
  }

  .faq-question-mark {
    width: 28px;
    height: 28px;
  }

  .faq-question-chevron {
    width: 16px;
    height: 16px;
  }

  .faq-answer p {
    padding: 18px 18px 24px 56px;
    font-size: 14px;
  }

  .faq-contact {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    margin-top: 28px;
  }

  .faq-contact-icon {
    width: 56px;
    height: 56px;
  }

  .faq-contact div {
    padding-left: 16px;
  }

  .faq-contact strong {
    font-size: 18px;
  }

  .faq-contact p {
    font-size: 15px;
  }

  .faq-contact a {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .articles-section {
    margin-right: -16px;
    margin-left: -16px;
    padding: 44px 16px 34px;
  }

  .articles-heading {
    margin-bottom: 22px;
    text-align: center;
  }

  .articles-heading .section-label {
    margin: 0 auto 8px;
  }

  .articles-heading h2 {
    font-size: 30px;
  }

  .articles-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 420px;
  }

  .article-image-link {
    aspect-ratio: 1.85;
  }

  .article-card-body {
    padding: 20px 22px 22px;
  }

  .article-card h3 {
    font-size: 22px;
  }

  .article-card-body > p:not(.article-category) {
    font-size: 13px;
  }

  .articles-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: none;
    min-height: 0;
    padding: 38px 22px;
    text-align: center;
  }

  .articles-cta > img {
    display: none;
  }

  .articles-cta-logo {
    display: inline-grid;
    margin: 0 auto;
  }

  .articles-cta-copy {
    margin-left: 0;
  }

  .articles-cta p {
    margin-right: auto;
    margin-left: auto;
  }

  .articles-cta a {
    width: fit-content;
    margin: 0 auto;
  }

  .contact-section {
    margin-right: -16px;
    margin-left: -16px;
    padding: 34px 16px;
    border-radius: 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px 22px;
    border-radius: 18px;
  }

  .contact-pill {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .contact-title-divider {
    margin-bottom: 22px;
  }

  .contact-info-card h2 {
    font-size: 32px;
  }

  .contact-info-card > p:not(.contact-pill) {
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-divider {
    margin: 30px 0 24px;
  }

  .contact-info-list {
    gap: 20px;
  }

  .contact-info-item,
  .contact-online-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-info-item span {
    width: 52px;
    height: 52px;
  }

  .contact-info-item svg {
    width: 26px;
    height: 26px;
  }

  .contact-info-item div,
  .contact-info-item p,
  .contact-online-item p {
    font-size: 13px;
  }

  .contact-info-item div > p {
    font-size: 16px;
  }

  .contact-online-item {
    margin-top: 8px;
    padding: 20px 16px 20px 0;
  }

  .contact-instagram-link {
    width: fit-content;
    min-height: 48px;
    margin-top: 26px;
    padding: 0 18px;
    font-size: 13px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    min-height: 58px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 15px;
  }

  .contact-form-card textarea {
    min-height: 170px;
    padding-top: 16px;
  }

  .contact-form-card button {
    min-height: 62px;
    margin-top: 24px;
    font-size: 20px;
  }

  .contact-form-card button svg {
    width: 23px;
    height: 23px;
  }

  .contact-security {
    align-items: flex-start;
    font-size: 13px;
    text-align: left;
  }

  .contact-care-info {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .contact-care-item,
  .contact-care-note {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
  }

  .contact-care-item {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 250, 247, 0.2);
    border-left: 0;
  }

  .contact-care-item > span,
  .contact-care-note > span {
    width: 52px;
    height: 52px;
  }

  .contact-care-item > span svg,
  .contact-care-note > span svg {
    width: 26px;
    height: 26px;
  }

  .contact-care-main h3 {
    max-width: none;
    font-size: 21px;
  }

  .contact-care-item strong {
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .contact-care-item p,
  .contact-care-note p {
    font-size: 14px;
  }

  .contact-care-note {
    grid-column: auto;
    margin-top: 0;
    padding-top: 24px;
  }

  .contact-care-note p {
    display: block;
  }

  .contact-care-note strong {
    display: block;
    min-height: 0;
    margin-bottom: 8px;
    padding-right: 0;
    border-right: 0;
    font-size: 15px;
  }

  .instagram-section {
    margin: 0 -16px 48px;
    padding: 48px 16px 56px;
  }

  .instagram-heading {
    gap: 16px;
    margin-bottom: 34px;
  }

  .instagram-ornament,
  .instagram-heading-divider {
    grid-template-columns: 54px 16px 54px;
    gap: 14px;
  }

  .instagram-mark {
    width: 64px;
    height: 64px;
  }

  .instagram-mark-icon,
  .instagram-mark-svg {
    width: 32px;
    height: 32px;
  }

  .instagram-heading h2 {
    font-size: 32px;
    letter-spacing: 0;
  }

  .instagram-profile-link {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 20px;
    gap: 14px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  .instagram-feed {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .instagram-post-overlay {
    padding: 28px 22px;
  }

  .instagram-post-overlay h3 {
    font-size: 30px;
  }

  .instagram-footer {
    gap: 18px;
    margin-top: 36px;
  }

  .instagram-footer p {
    font-size: 17px;
  }

  .banner-section {
    min-height: calc(86svh - var(--header-height) - 44px);
    padding: 18px;
    border-radius: 22px;
    background: transparent;
  }

  .banner-section::before {
    display: block;
    background-position: 64% center;
  }

  .banner-section::after {
    background: none;
  }

  .banner-inner {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-top: 205px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .banner-section h1 {
    font-size: 47px;
  }

  .banner-highlight {
    margin-top: 16px;
    font-size: 20px;
  }

  .banner-description {
    max-width: 310px;
    margin-top: 42px;
    font-size: 15px;
  }

  .banner-actions {
    align-items: stretch;
    width: 100%;
  }

  .banner-cta {
    flex: 1 1 auto;
  }

  .banner-arrow {
    margin: auto 0;
  }

}

@media (max-width: 767px) {
  .banner-section {
    min-height: auto;
    padding: 12px 18px 26px;
    background: #fffaf7;
  }

  .banner-section::before {
    display: none;
  }

  .banner-inner {
    margin-top: 0;
    padding: 18px 12px 8px;
  }
}

.services-section {
  margin: 82px 0 66px;
  padding: 0;
}

.services-redesign {
  width: min(100%, 1180px);
  margin: 0 auto;
  color: var(--color-blue);
}

.services-redesign-heading,
.services-approaches-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.services-redesign-heading {
  margin-top: 80px;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.services-kicker {
  margin: 0;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.58em;
  line-height: 1;
  text-transform: uppercase;
}

.services-heading-star {
  position: relative;
  display: block;
  width: 88px;
  height: 16px;
  margin: 12px auto 18px;
  background:
    linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 39px 1px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 39px 1px no-repeat;
}

.services-heading-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  transform: translate(-50%, -50%);
}

.services-redesign-heading h2 {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(40px, 3.7vw, 56px);
  font-weight: 500;
  line-height: 0.95;
}

.services-redesign-heading h2 span {
  display: block;
  color: inherit;
}

.services-redesign-heading > p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: #333333;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 54px;
}

.service-area-card {
  display: grid;
  justify-items: center;
  min-height: 382px;
  padding: 22px 30px 30px;
  border: 1px solid rgba(225, 212, 199, 0.92);
  border-radius: 10px;
  background: rgba(255, 250, 247, 0.9);
  text-align: center;
  box-shadow: 0 18px 42px rgba(71, 45, 25, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-area-card:hover {
  border-color: rgba(166, 114, 43, 0.34);
  box-shadow: 0 22px 50px rgba(71, 45, 25, 0.1);
  transform: translateY(-4px);
}

.service-area-image {
  overflow: hidden;
  width: min(100%, 200px);
  aspect-ratio: 1.42;
  margin-bottom: 28px;
  border-radius: 7px;
  background: rgba(237, 223, 200, 0.45);
}

.service-area-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-area-card:nth-child(1) .service-area-image img {
  object-position: 48% center;
}

.service-area-card:nth-child(2) .service-area-image img {
  object-position: center;
}

.service-area-card:nth-child(3) .service-area-image img {
  object-position: center 28%;
}

.service-area-card:nth-child(4) .service-area-image img {
  object-position: 25% center;
}

.service-area-card:nth-child(5) .service-area-image img {
  object-position: 50% center;
}

.service-area-card:nth-child(6) .service-area-image img {
  object-position: 58% center;
}

.service-area-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.service-approach-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area-title h3 {
  margin: 0;
  color: var(--color-red);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.service-area-divider {
  position: relative;
  display: block;
  width: 78px;
  height: 13px;
  margin: 12px auto 14px;
  background:
    linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 34px 1px no-repeat,
    linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 34px 1px no-repeat;
}

.service-area-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  transform: translate(-50%, -50%);
}

.service-area-card > p {
  max-width: 250px;
  margin: 0;
  color: #202020;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
}

.services-approaches-heading {
  margin-top: 64px;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.services-approaches-heading h3 {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.services-approaches-heading h3 span {
  color: inherit;
}

.service-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid rgba(225, 212, 199, 0.95);
  border-radius: 10px;
  background: rgba(255, 250, 247, 0.92);
  box-shadow: 0 18px 44px rgba(71, 45, 25, 0.08);
}

.service-approach-card {
  position: relative;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  min-height: 392px;
  padding: 44px 58px 48px;
  isolation: isolate;
  opacity: 0;
  will-change: opacity, transform;
}

.service-approach-card + .service-approach-card {
  border-left: 1px solid rgba(225, 212, 199, 0.95);
}

.service-approach-card-blue::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 0;
  width: 190px;
  height: 190px;
  background: url("assets/images/logo-psych-k.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.service-approach-icon {
  display: inline-grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(225, 212, 199, 0.95);
  border-radius: 50%;
  background: #fffaf7;
  color: var(--color-red);
  box-shadow: 0 12px 28px rgba(71, 45, 25, 0.08);
}

.service-approach-card-blue .service-approach-icon {
  color: var(--color-blue);
}

.service-approach-logo {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.service-approach-logo-psychk {
  background: var(--color-blue);
  mask: url("assets/images/logo-psych-k.png") center / contain no-repeat;
  -webkit-mask: url("assets/images/logo-psych-k.png") center / contain no-repeat;
}

.service-approach-icon .service-approach-brain {
  display: block;
  width: 118px;
  height: 118px;
  background: var(--color-red);
  mask: url("assets/images/icone-cerebro.png") center / contain no-repeat;
  -webkit-mask: url("assets/images/icone-cerebro.png") center / contain no-repeat;
}

.service-approach-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-approach-copy h4 {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(32px, 2.65vw, 40px);
  font-weight: 700;
  line-height: 1.05;
}

.service-approach-card-blue h4 {
  color: var(--color-red);
}

.service-approach-copy .service-area-divider {
  margin: 18px 0 24px;
}

.service-approach-copy p {
  margin: 0;
  color: #202020;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
}

.service-approach-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(100%, 414px);
  min-height: 82px;
  margin-top: 44px;
  padding: 0 34px;
  border-radius: 8px;
  background: var(--color-red);
  color: #fffaf7;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
  box-shadow: 0 12px 24px rgba(131, 12, 14, 0.18);
  transition: transform 180ms ease, filter 180ms ease;
}

.service-approach-card-blue .service-approach-cta {
  background: var(--color-blue);
  box-shadow: 0 12px 24px rgba(19, 46, 76, 0.18);
}

.service-approach-cta:hover {
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.service-approach-cta span {
  display: none;
}

.services-psychk-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 44px;
  align-items: center;
  min-height: 300px;
  margin-top: 32px;
  padding: 48px 48px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 50%, rgba(255, 250, 247, 0.08), transparent 28%),
    linear-gradient(135deg, #132e4c 0%, #09213d 58%, #06172c 100%);
  color: #fffaf7;
  box-shadow: 0 22px 52px rgba(19, 46, 76, 0.2);
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.services-psychk-feature::before,
.services-psychk-feature::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 290px;
  border: 1px solid rgba(255, 250, 247, 0.08);
  border-radius: 62% 38% 55% 45%;
  pointer-events: none;
}

.services-psychk-feature::before {
  left: -88px;
  top: -24px;
  transform: rotate(18deg);
}

.services-psychk-feature::after {
  right: -74px;
  top: -58px;
  transform: rotate(-22deg);
}

.services-psychk-feature-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.services-psychk-feature-copy > p:first-child {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.services-psychk-feature h3 {
  margin: 0;
  color: #fffaf7;
  font-size: clamp(33px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
}

.services-psychk-feature-copy > span {
  display: block;
  width: 68px;
  height: 1px;
  margin: 26px 0 22px;
  background: rgba(255, 250, 247, 0.52);
}

.services-psychk-feature-copy > p:not(:first-child) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 247, 0.9);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
}

.services-psychk-feature a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 10px 0 30px;
  border-radius: 999px;
  background: #fffaf7;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
}

.services-psychk-feature a:hover {
  filter: saturate(1.04);
  transform: translateY(-2px);
}

.services-psychk-feature a span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fffaf7;
  font-size: 22px;
}

.services-psychk-feature-logo {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 320px);
  max-height: 230px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.services-closing-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  margin-top: 28px;
  min-height: 116px;
  padding: 28px 22px 22px;
  border: 1px solid rgba(225, 212, 199, 0.95);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.9), rgba(255, 250, 247, 0.72)),
    url("assets/images/vaso.png") center / cover no-repeat;
  text-align: center;
  box-shadow: 0 16px 38px rgba(71, 45, 25, 0.06);
  opacity: 0;
  transform: translateY(20px);
}

.services-closing-strip::after {
  content: none;
}

.services-closing-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-red);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.2;
}

.services-closing-strip .services-heading-star {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  margin-bottom: 0;
}

.services-redesign-heading.is-visible,
.services-approaches-heading.is-visible {
  animation: services-heading-bloom 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-closing-strip.is-visible {
  animation: services-closing-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-redesign-heading.is-visible .services-heading-star,
.services-approaches-heading.is-visible .services-heading-star,
.services-closing-strip.is-visible .services-heading-star {
  animation: services-star-draw 720ms ease both;
  transform-origin: center;
}

.services-section.is-visible .service-area-card {
  animation: services-card-cascade 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.services-section.is-visible .service-area-image img {
  animation: services-image-settle 960ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.service-approach-grid.is-visible .service-approach-card {
  animation: services-approach-left 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-approach-grid.is-visible .service-approach-card:nth-child(2) {
  animation-name: services-approach-right;
  animation-delay: 120ms;
}

.service-approach-grid.is-visible .service-approach-icon {
  animation: services-card-cascade 620ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-psychk-feature.is-visible {
  animation: services-feature-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-psychk-feature.is-visible .services-psychk-feature-logo {
  animation: services-logo-drift-in 760ms 140ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.services-section.is-visible .service-area-card:nth-child(2) {
  animation-delay: 90ms;
}

.services-section.is-visible .service-area-card:nth-child(2) .service-area-image img {
  animation-delay: 90ms;
}

.services-section.is-visible .service-area-card:nth-child(3) {
  animation-delay: 180ms;
}

.services-section.is-visible .service-area-card:nth-child(3) .service-area-image img {
  animation-delay: 180ms;
}

.services-section.is-visible .service-area-card:nth-child(4) {
  animation-delay: 270ms;
}

.services-section.is-visible .service-area-card:nth-child(4) .service-area-image img {
  animation-delay: 270ms;
}

.services-section.is-visible .service-area-card:nth-child(5) {
  animation-delay: 360ms;
}

.services-section.is-visible .service-area-card:nth-child(5) .service-area-image img {
  animation-delay: 360ms;
}

.services-section.is-visible .service-area-card:nth-child(6) {
  animation-delay: 450ms;
}

.services-section.is-visible .service-area-card:nth-child(6) .service-area-image img {
  animation-delay: 450ms;
}

.service-approach-grid.is-visible .service-approach-card:nth-child(2) .service-approach-icon {
  animation-delay: 280ms;
}

.faq-pill.is-visible,
.faq-heading.is-visible,
.faq-contact.is-visible {
  animation: faq-item-rise 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-list.is-visible .faq-card {
  animation: faq-item-rise 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq-list.is-visible .faq-card:nth-child(2) { animation-delay: 70ms; }
.faq-list.is-visible .faq-card:nth-child(3) { animation-delay: 140ms; }
.faq-list.is-visible .faq-card:nth-child(4) { animation-delay: 210ms; }
.faq-list.is-visible .faq-card:nth-child(5) { animation-delay: 280ms; }
.faq-list.is-visible .faq-card:nth-child(6) { animation-delay: 350ms; }
.faq-list.is-visible .faq-card:nth-child(7) { animation-delay: 420ms; }
.faq-list.is-visible .faq-card:nth-child(8) { animation-delay: 490ms; }
.faq-list.is-visible .faq-card:nth-child(9) { animation-delay: 560ms; }
.faq-list.is-visible .faq-card:nth-child(10) { animation-delay: 630ms; }

.faq-heading.is-visible .faq-heading-divider {
  animation: services-star-draw 720ms 120ms ease both;
}

@media (max-width: 1180px) {
  .services-redesign {
    width: min(100%, 960px);
  }

  .service-area-grid {
    gap: 24px;
  }

  .service-area-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-area-title h3 {
    font-size: 24px;
  }

  .service-approach-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
  }

  .service-approach-icon {
    width: 92px;
    height: 92px;
  }

  .service-approach-logo {
    width: 68px;
    height: 68px;
  }

  .service-approach-icon .service-approach-brain {
    width: 90px;
    height: 90px;
  }

  .services-psychk-feature {
    grid-template-columns: minmax(0, 1fr) 260px;
    padding: 40px 38px;
  }

  .services-psychk-feature-logo {
    width: 220px;
  }
}

@media (max-width: 980px) {
  .services-section {
    margin: 60px 0 52px;
  }

  .services-redesign-heading h2 {
    font-size: clamp(38px, 6vw, 50px);
  }

  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-approach-grid {
    grid-template-columns: 1fr;
  }

  .service-approach-card + .service-approach-card {
    border-top: 1px solid rgba(225, 212, 199, 0.95);
    border-left: 0;
  }

  .services-psychk-feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-psychk-feature-logo {
    justify-self: center;
    order: -1;
    width: 220px;
    max-height: 180px;
  }
}

@media (max-width: 680px) {
  .services-section {
    margin: 46px 0;
  }

  .services-redesign-heading {
    margin-top: 52px;
  }

  .services-redesign-heading h2 {
    font-size: 36px;
    line-height: 1;
  }

  .services-redesign-heading > p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  .services-kicker {
    font-size: 10px;
    letter-spacing: 0.34em;
  }

  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .service-area-card {
    min-height: 0;
    padding: 20px 22px 26px;
  }

  .service-area-image {
    width: min(100%, 210px);
    margin-bottom: 22px;
  }

  .service-area-title h3 {
    font-size: 24px;
  }

  .service-area-card > p {
    font-size: 14px;
  }

  .services-approaches-heading {
    margin-top: 34px;
  }

  .services-approaches-heading h3 {
    font-size: 26px;
  }

  .service-approach-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 22px;
    text-align: center;
  }

  .service-approach-icon {
    margin: 0 auto;
  }

  .service-approach-copy .service-area-divider {
    margin-right: auto;
    margin-left: auto;
  }

  .service-approach-copy h4 {
    font-size: 27px;
  }

  .service-approach-copy p {
    font-size: 13px;
  }

  .service-approach-cta {
    width: 100%;
    min-height: 58px;
    padding-right: 20px;
    padding-left: 22px;
    font-size: 14px;
  }

  .services-psychk-feature {
    margin-top: 22px;
    padding: 28px 20px;
    text-align: center;
  }

  .services-psychk-feature-copy {
    max-width: none;
  }

  .services-psychk-feature-copy > p:first-child {
    font-size: 11px;
  }

  .services-psychk-feature h3 {
    font-size: 30px;
  }

  .services-psychk-feature-copy > span {
    margin-right: auto;
    margin-left: auto;
  }

  .services-psychk-feature-copy > p:not(:first-child) {
    font-size: 14px;
  }

  .services-psychk-feature a {
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
  }

  .services-psychk-feature-logo {
    width: 150px;
  }

  .services-closing-strip {
    min-height: 104px;
  }

  .services-closing-strip::after {
    display: none;
  }

  .services-closing-strip p {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .banner-section,
  .banner-section::before,
  .banner-inner,
  .banner-eyebrow,
  .banner-section h1,
  .banner-highlight,
  .banner-description,
  .banner-actions,
  .floating-whatsapp,
  .about-section,
  .about-section::before,
  .about-photo-card,
  .about-copy,
  .about-section .section-label,
  .about-section h2,
  .about-title-line,
  .about-text-stack p,
  .about-button,
  .services-redesign-heading,
  .services-heading-star,
  .service-area-card,
  .service-area-image img,
  .services-approaches-heading,
  .service-approach-card,
  .service-approach-icon,
  .services-psychk-feature,
  .services-psychk-feature-logo,
  .services-closing-strip,
  .faq-pill,
  .faq-heading,
  .faq-heading-divider,
  .faq-card,
  .faq-contact,
  .services-hero-copy,
  .services-hero-copy h2,
  .services-visual,
  .services-list,
  .services-psychk,
  .articles-heading,
  .article-card,
  .articles-cta,
  .instagram-heading,
  .instagram-post-card,
  .contact-section::before,
  .contact-info-card,
  .contact-form-card,
  .contact-care-info,
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea,
  .contact-form-card button,
  .contact-security,
  .psychk-hero-copy,
  .psychk-hero h1 span,
  .psychk-hero-divider,
  .psychk-hero p,
  .psychk-hero .psychk-button,
  .psychk-hero-brand,
  .psychk-blocks h2,
  .psychk-block-grid,
  .psychk-block-list div,
  .psychk-percent-card,
  .psychk-block-note,
  .psychk-about-method > div:first-child,
  .psychk-method-mark,
  .psychk-process h2,
  .psychk-process-step,
  .psychk-benefits > div,
  .psychk-benefits ul,
  .psychk-benefits li,
  .psychk-final-cta > div,
  .psychk-final-cta .psychk-button,
  .psychk-hero-brand::before,
  .psychk-hero-brand::after,
  .psychk-method-mark .psychk-logo-mask,
  .psychk-percent-icon,
  .psychk-process-icon-frame img,
  .psychk-process-step::after {
    animation: none;
    transition: none;
  }

  .banner-section::before {
    transform: none;
  }

  .about-section::before {
    opacity: 1;
    transform: none;
  }

  .about-section,
  .about-photo-card,
  .about-copy,
  .about-section .section-label,
  .about-section h2,
  .about-title-line,
  .about-text-stack p,
  .about-button,
  .services-redesign-heading,
  .services-heading-star,
  .service-area-card,
  .service-area-image img,
  .services-approaches-heading,
  .service-approach-card,
  .service-approach-icon,
  .services-psychk-feature,
  .services-psychk-feature-logo,
  .services-closing-strip,
  .faq-pill,
  .faq-heading,
  .faq-heading-divider,
  .faq-card,
  .faq-contact,
  .services-hero-copy,
  .services-hero-copy h2,
  .services-visual,
  .services-list,
  .services-psychk,
  .articles-heading,
  .article-card,
  .articles-cta,
  .instagram-heading,
  .instagram-post-card,
  .contact-info-card,
  .contact-form-card,
  .contact-care-info,
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea,
  .contact-form-card button,
  .contact-security,
  .psychk-hero-copy,
  .psychk-hero h1 span,
  .psychk-hero p,
  .psychk-hero .psychk-button,
  .psychk-hero-brand,
  .psychk-blocks h2,
  .psychk-block-grid,
  .psychk-block-list div,
  .psychk-percent-card,
  .psychk-block-note,
  .psychk-about-method > div:first-child,
  .psychk-method-mark,
  .psychk-process h2,
  .psychk-process-step,
  .psychk-benefits > div,
  .psychk-benefits ul,
  .psychk-benefits li,
  .psychk-final-cta > div,
  .psychk-final-cta .psychk-button {
    opacity: 1;
    clip-path: none;
    filter: none;
    scale: 1;
    transform: none;
    translate: 0 0;
  }

  .psychk-hero-divider,
  .psychk-hero-brand::before,
  .psychk-hero-brand::after {
    opacity: 1;
  }

  .psychk-hero-divider,
  .psychk-process-step::after {
    transform: scaleX(1);
  }

  .psychk-method-mark .psychk-logo-mask {
    opacity: 1;
    transform: translateY(-10px);
  }

  .psychk-percent-icon,
  .psychk-process-icon-frame img {
    opacity: 1;
    transform: none;
  }
}
.contact-form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form-status {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-status-success {
  background: rgba(35, 112, 73, 0.1);
  color: #1d6843;
}

.contact-form-status-error {
  background: rgba(131, 12, 14, 0.09);
  color: var(--color-red);
}
