@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --bg: #fcf8f8;
  --surface: #ffffff;
  --surface-soft: #fffdfd;
  --text: #241722;
  --muted: #6c5466;
  --accent: #7a1f44;
  --accent-2: #b38a5a;
  --accent-soft: #fbeaf1;
  --border: #f0dde5;
  --shadow: 0 14px 35px rgba(94, 22, 53, 0.14);
  --max: 1120px;
  --topbar-height: 38px;
  --header-height: 106px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(122, 31, 68, 0.15), transparent 33%),
    radial-gradient(circle at 95% 12%, rgba(179, 138, 90, 0.13), transparent 29%),
    linear-gradient(180deg, #fffafb 0%, #fff7f8 50%, #fefaf8 100%);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

a:hover {
  color: #5a1431;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
  background: linear-gradient(110deg, #7a1f44 0%, #8f2e57 46%, #7a1f44 100%);
  background-size: 180% 100%;
  border-bottom: 1px solid rgba(123, 33, 70, 0.75);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 236, 245, 0.18) inset, 0 5px 12px rgba(66, 9, 32, 0.22);
}

.topbar::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -26%;
  width: 22px;
  height: 260%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  animation: topbarShine 4.8s linear infinite;
  pointer-events: none;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  font-size: .9rem;
}

.topbar-inner a {
  color: #ffffff;
  font-weight: 600;
}

.topbar-mail {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 225, 238, 0.45);
  background: rgba(255, 240, 248, 0.14);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
}

.topbar-mail::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 7 9-7'/%3E%3C/svg%3E");
}

.topbar-mail:hover {
  background: rgba(255, 240, 248, 0.26);
  text-decoration: none;
}

.topbar-inner a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes topbarShine {
  0% {
    left: -28%;
    opacity: 0;
  }
  14% {
    opacity: .5;
  }
  32% {
    left: 125%;
    opacity: 0;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 30;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(204, 173, 189, 0.38);
  box-shadow: 0 8px 24px rgba(76, 22, 43, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  color: #3b2430;
  letter-spacing: 0.15px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 86px;
  width: auto;
  border-radius: 10px;
  border: 1px solid rgba(187, 153, 123, 0.35);
  box-shadow: 0 10px 24px rgba(90, 26, 50, 0.2);
}

.nav-links {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(220, 188, 168, 0.64);
  background: #fff7f4;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #6a2a43;
}

.nav-links a {
  font-weight: 600;
  font-size: .93rem;
  color: #5e2943;
  padding: .48rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 188, 168, 0.58);
  background: #fff7f4;
  transition: background .22s ease, border-color .22s ease, transform .18s ease, box-shadow .22s ease, color .2s ease;
}

.nav-links a:hover {
  background: #fff0e7;
  border-color: rgba(191, 124, 81, 0.56);
  color: #5a1431;
  text-decoration: none;
}

.nav-links a.active {
  background: linear-gradient(110deg, #e2dce2 0%, #d6ced6 46%, #e2dce2 100%);
  background-size: 180% 100%;
  border-color: rgba(138, 118, 132, 0.9);
  color: #5a1431;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.36) inset, 0 6px 14px rgba(70, 56, 64, 0.22);
  position: relative;
  overflow: hidden;
  animation: activePulse 6.2s ease-in-out infinite;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -45%;
  width: 16px;
  height: 280%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  animation: navShine 6.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes navShine {
  0% {
    left: -48%;
    opacity: 0;
  }
  15% {
    opacity: .55;
  }
  40% {
    left: 145%;
    opacity: 0;
  }
  100% {
    left: 145%;
    opacity: 0;
  }
}

@keyframes activePulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links a,
  .hero .card img,
  .card {
    transition: none;
  }

  .nav-links a.active::after {
    animation: none;
    display: none;
  }

  .nav-links a.active {
    animation: none;
    background: #ddd5dc;
    border-color: rgba(138, 118, 132, 0.9);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38) inset, 0 4px 10px rgba(70, 56, 64, 0.16);
  }

  .topbar::after {
    animation: none;
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(49, 7, 24, 0.24);
  }

  .nav-links a.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(49, 7, 24, 0.28);
  }
}

.hero {
  padding: 4.1rem 0 2.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 2.1rem;
  align-items: center;
}

.kicker {
  display: inline-block;
  background: linear-gradient(90deg, #fae8f1 0%, #f8edd9 100%);
  color: #6b173b;
  padding: .42rem .8rem;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
  border: 1px solid #f0cad8;
}

h1,
h2,
h3 {
  line-height: 1.24;
  margin-top: 0;
  letter-spacing: -.2px;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: .85rem 0 1rem;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  margin-bottom: .75rem;
  position: relative;
  padding-bottom: .35rem;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a1f44 0%, #b38a5a 100%);
}

h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.lead {
  font-size: 1.07rem;
  color: var(--muted);
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(105, 28, 59, 0.2);
  border-color: #e8c3d2;
}

.hero .card {
  padding: .6rem;
  background: linear-gradient(180deg, #fff8fb 0%, #fff3f8 100%);
  border-color: #edc8d8;
  box-shadow: 0 16px 36px rgba(101, 20, 52, 0.18);
}

.hero .card img {
  transition: transform .35s ease;
}

.hero .card:hover img {
  transform: scale(1.02);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.services {
  padding: 1.3rem 0 0;
}

.services .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services .card p a,
.blog-preview .card h3 a,
.blog-preview .card h2 a {
  font-weight: 700;
}

.services .card p:last-child {
  margin-bottom: 0;
}

.benefits,
.blog-preview,
.faq {
  padding: 2.6rem 0 .6rem;
}

.benefits .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-preview .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta {
  margin: 2.9rem auto 3.1rem;
  text-align: center;
  background: linear-gradient(135deg, #6e173b 0%, #8d2d54 52%, #b38a5a 100%);
  color: #f8faff;
  border: 1px solid rgba(255, 225, 236, 0.4);
}

.cta h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta a {
  color: #fff8dc;
  text-decoration: underline;
  font-weight: 700;
}

.cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 220, 0.65);
  background: rgba(255, 255, 255, 0.14);
  color: #fff8dc;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .22s ease, box-shadow .22s ease;
}

.cta .cta-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(40, 7, 20, 0.24);
}

ul {
  padding-left: 1.15rem;
}

li {
  margin-bottom: .45rem;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 1.6rem 0 2.3rem;
  color: var(--muted);
  font-size: .95rem;
}

.article-hero {
  padding: 2.8rem 0 1.25rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.35rem;
}

.blog-list .blog-preview .card {
  display: grid;
  grid-template-columns: minmax(220px, 40%) 1fr;
  align-items: stretch;
  gap: 1rem;
  padding: .8rem;
}

.blog-list .blog-preview .card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.blog-list .blog-preview .article-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: .4rem .2rem .4rem 0;
}

.blog-list .blog-preview .article-copy h2 {
  margin-bottom: .55rem;
}

.blog-list .blog-preview .article-copy p {
  margin: 0 0 .75rem;
}

.blog-list .blog-preview .article-copy p:last-child {
  margin-bottom: 0;
}

.read-more {
  font-weight: 700;
}

article {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

article p,
article li {
  color: #4a3240;
}

aside {
  align-self: start;
}

.meta {
  color: #866176;
  font-size: .9rem;
  font-weight: 600;
}

.promo-banner {
  padding: .9rem 0 0;
}

.promo-link {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e8c3d2;
  box-shadow: 0 16px 32px rgba(89, 18, 45, 0.2);
  background: #f7eef2;
}

.promo-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(41, 8, 22, 0.1) 12%, rgba(41, 8, 22, 0.75) 100%);
  color: #fff8fc;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(8, 106, 57, 0.45);
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 94, 52, 0.35);
  text-decoration: none;
}

.wa-float:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px) scale(1.03);
  background: #20c45c;
}

.wa-float span:last-child {
  display: none;
}

.wa-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  font-size: 0;
}

.wa-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.11 17.21c-.27-.13-1.59-.78-1.84-.87-.25-.1-.43-.13-.61.13-.18.27-.7.87-.86 1.05-.16.18-.31.2-.58.07-.27-.13-1.12-.41-2.14-1.3-.79-.71-1.33-1.58-1.48-1.85-.16-.27-.02-.42.11-.55.12-.12.27-.31.41-.47.13-.16.18-.27.27-.45.09-.18.04-.34-.02-.47-.07-.13-.61-1.48-.84-2.02-.22-.53-.45-.45-.61-.46h-.52c-.18 0-.47.07-.72.34-.25.27-.95.93-.95 2.26s.97 2.62 1.11 2.8c.13.18 1.91 2.91 4.62 4.08.65.28 1.16.44 1.56.56.66.21 1.26.18 1.73.11.53-.08 1.59-.65 1.82-1.29.22-.63.22-1.17.15-1.29-.07-.12-.24-.19-.51-.32Z'/%3E%3Cpath fill='%23fff' d='M16.02 3.2c-6.98 0-12.65 5.67-12.65 12.65 0 2.21.57 4.38 1.65 6.3L3.2 28.8l6.81-1.79a12.6 12.6 0 0 0 6 1.53h.01c6.98 0 12.66-5.67 12.66-12.65S23 3.2 16.02 3.2Zm0 23.2h-.01a10.5 10.5 0 0 1-5.34-1.46l-.38-.22-4.04 1.06 1.08-3.94-.24-.4a10.54 10.54 0 0 1-1.62-5.56c0-5.81 4.73-10.54 10.56-10.54s10.56 4.73 10.56 10.54c0 5.82-4.74 10.56-10.57 10.56Z'/%3E%3C/svg%3E");
}

strong {
  color: #6e173b;
}

@media (max-width: 960px) {
  :root {
    --topbar-height: 36px;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .benefits .grid,
  .services .grid,
  .blog-preview .grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-content: center;
    gap: .75rem;
    min-height: 36px;
    flex-wrap: wrap;
    padding: .2rem 0;
  }

  .nav {
    align-items: center;
    padding: .72rem 0;
    flex-wrap: wrap;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: .65rem;
    padding: .65rem;
    border-radius: 14px;
    border: 1px solid rgba(220, 188, 168, 0.58);
    background: #fffdfc;
    box-shadow: 0 10px 24px rgba(88, 23, 45, 0.1);
    gap: .45rem;
    max-width: 100%;
  }

  .nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
    padding: .42rem .7rem;
    font-size: .84rem;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .blog-list .blog-preview .card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .promo-link img {
    width: 100%;
    height: auto;
  }

  .blog-list .blog-preview .card img,
  .blog-list .blog-preview .article-copy {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --topbar-height: 34px;
    --header-height: 90px;
  }

  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .card,
  article {
    border-radius: 14px;
    padding: 1.02rem;
  }

  .lead {
    font-size: .99rem;
  }

  .topbar-inner {
    justify-content: center;
    gap: .55rem;
    font-size: .8rem;
    min-height: 34px;
  }

  .brand-logo img {
    height: 68px;
  }

  .nav {
    gap: .45rem;
  }

  .nav-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: rgba(255, 234, 243, 0.35);
  }

  .promo-link img {
    width: 100%;
    height: auto;
  }

  .nav-links a:active {
    transform: scale(0.98);
    background: rgba(255, 245, 251, 0.35);
    border-color: rgba(255, 226, 236, 0.92);
    box-shadow: 0 0 0 2px rgba(255, 236, 245, 0.2) inset;
  }

  .kicker {
    font-size: .77rem;
  }

  .wa-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}
