/* SUGARMUTE — sugarmuutte.com — unique prefix: sgmt */
:root {
  --sgmt-crimson-950: #3d0a0f;
  --sgmt-crimson-900: #8a1620;
  --sgmt-crimson-700: #a8202b;
  --sgmt-crimson-500: #c22a35;
  --sgmt-gold-500: #d4a24a;
  --sgmt-ink-900: #241a1b;
  --sgmt-ink-700: #584849;
  --sgmt-ink-500: #867576;
  --sgmt-ink-300: #bcadae;
  --sgmt-bg: #fbf8f8;
  --sgmt-bg-tint: #f5e9ea;
  --sgmt-white: #ffffff;
  --sgmt-radius-sm: 10px;
  --sgmt-radius-md: 16px;
  --sgmt-radius-lg: 24px;
  --sgmt-shadow-sm: 0 2px 10px rgba(61, 10, 15, .08);
  --sgmt-shadow-md: 0 10px 30px rgba(61, 10, 15, .14);
  --sgmt-shadow-lg: 0 24px 60px rgba(61, 10, 15, .20);
  --sgmt-font-head: 'Poppins', sans-serif;
  --sgmt-font-body: 'Source Sans 3', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sgmt-font-body);
  color: var(--sgmt-ink-900);
  background: var(--sgmt-bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sgmt-font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--sgmt-crimson-900);
  overflow-wrap: break-word;
  word-break: break-word;
}

p {
  margin: 0 0 14px;
  color: var(--sgmt-ink-700);
}

a {
  color: var(--sgmt-crimson-500);
}

img {
  max-width: 100%;
  height: auto !important;
  display: block;
  height: auto!important;
}

.sgmt-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.sgmt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.sgmt-btn--primary {
  background: linear-gradient(135deg, var(--sgmt-crimson-500), var(--sgmt-crimson-700));
  color: #fff;
  box-shadow: var(--sgmt-shadow-md);
}

.sgmt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sgmt-shadow-lg);
}

.sgmt-btn--dark {
  background: var(--sgmt-crimson-900);
  color: #fff;
}

.sgmt-btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.sgmt-btn--lg {
  padding: 17px 32px;
  font-size: 16.5px;
}

.sgmt-btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.sgmt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 248, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ecdcde;
}

.sgmt-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.sgmt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sgmt-font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--sgmt-crimson-900);
  text-decoration: none;
}

.sgmt-logo strong {
  color: var(--sgmt-crimson-500);
}

.sgmt-logo-mark {
  display: inline-flex;
  color: var(--sgmt-crimson-500);
}

.sgmt-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sgmt-nav a {
  color: var(--sgmt-ink-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
}

.sgmt-nav a:hover {
  color: var(--sgmt-crimson-900);
}

.sgmt-nav-cta {
  display: none;
}

.sgmt-navtoggle {
  display: none;
  background: none;
  border: none;
  color: var(--sgmt-crimson-900);
  cursor: pointer;
}

@media (max-width:1080px) {
  .sgmt-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 24px;
    gap: 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .sgmt-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sgmt-navtoggle {
    display: block;
  }

  .sgmt-header-cta {
    display: none;
  }

  .sgmt-nav-cta {
    display: inline-flex;
    margin-top: 10px;
  }
}

.sgmt-header-cta {
  flex-shrink: 0;
}

/* ---------- Sticky CTA ---------- */
.sgmt-stickycta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 60;
  background: var(--sgmt-crimson-950);
  color: #fff;
  transition: bottom .3s ease;
}

.sgmt-stickycta.is-visible {
  bottom: 0;
}

.sgmt-stickycta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
  font-size: 13.5px;
}

.sgmt-stickycta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sgmt-stickyclose {
  background: none;
  border: none;
  color: #fff;
  opacity: .7;
  cursor: pointer;
}

@media (max-width:640px) {
  .sgmt-stickycta-row span {
    display: none;
  }
}

/* ---------- Hero ---------- */
.sgmt-hero {
  position: relative;
  background: var(--sgmt-white);
  overflow: hidden;
  padding: 48px 0 64px;
  border-bottom: 1px solid #ecdcde;
}

.sgmt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: start;
}

.sgmt-hero-grid>div {
  min-width: 0;
}

.sgmt-hero h1 {
  font-size: clamp(24px, 3.1vw, 37px);
  margin: 14px 0 16px;
}

.sgmt-hero-desc {
  font-size: 16px;
  color: var(--sgmt-ink-700);
  max-width: 540px;
  margin-bottom: 20px;
}

.sgmt-eyebrow {
  display: inline-block;
  background: rgba(194, 42, 53, .08);
  color: var(--sgmt-crimson-700);
  border: 1px solid rgba(194, 42, 53, .26);
  border-radius: 99px;
  padding: 6px 16px;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.sgmt-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 0 26px;
}

.sgmt-check-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--sgmt-ink-900);
}

.sgmt-check-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sgmt-crimson-500);
}

.sgmt-hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sgmt-hero-price {
  font-family: var(--sgmt-font-head);
  color: var(--sgmt-ink-700);
}

.sgmt-hero-price b {
  color: var(--sgmt-crimson-500);
  font-size: 19px;
}

.sgmt-compliance-note {
  margin-top: 20px;
  font-size: 11.5px;
  color: var(--sgmt-ink-500);
  max-width: 520px;
}

.sgmt-hero-media-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sgmt-hero-media {
  display: flex;
  justify-content: center;
  background: var(--sgmt-bg-tint);
  border-radius: var(--sgmt-radius-lg);
  padding: 20px;
}

.sgmt-hero-media img {
  max-width: 220px;
}

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

  .sgmt-check-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Steady-release hero diagram (product-specific, small) ---------- */
.sgmt-release-card {
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-lg);
  padding: 16px 16px 12px;
  box-shadow: var(--sgmt-shadow-sm);
}

.sgmt-release-title {
  text-align: center;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--sgmt-crimson-900);
  margin-bottom: 4px;
}

.sgmt-release-svg {
  width: 100%;
  max-width: 180px;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.sgmt-release-capsule {
  fill: var(--sgmt-white);
  stroke: var(--sgmt-crimson-500);
  stroke-width: 2.5;
}

.sgmt-release-divider {
  stroke: var(--sgmt-crimson-500);
  stroke-width: 2;
}

.sgmt-release-dot {
  fill: var(--sgmt-gold-500);
  opacity: 0;
  animation: sgmt-dot-disperse 2.6s ease-out infinite;
  animation-delay: var(--dd);
  transform-box: fill-box;
}

@keyframes sgmt-dot-disperse {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  20% {
    opacity: .9;
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy));
  }
}

@media (prefers-reduced-motion:reduce) {
  .sgmt-release-dot {
    animation: none;
    opacity: .4;
  }
}

.sgmt-release-caption {
  text-align: center;
  font-size: 11px;
  color: var(--sgmt-ink-500);
  margin: 6px 0 0;
}

/* ---------- Badge bar ---------- */
.sgmt-badgebar {
  background: var(--sgmt-bg-tint);
  border-bottom: 1px solid #ecdcde;
  padding: 16px 0;
}

.sgmt-badgebar-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.sgmt-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--sgmt-crimson-900);
}

.sgmt-badge-item svg {
  color: var(--sgmt-crimson-500);
}

.sgmt-badge-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.sgmt-section {
  padding: 64px 0;
}

.sgmt-section--white {
  background: var(--sgmt-white);
}

.sgmt-section--tint {
  background: var(--sgmt-bg-tint);
}

.sgmt-section--cta {
  background: linear-gradient(135deg, var(--sgmt-crimson-950), var(--sgmt-crimson-700));
}

.sgmt-kicker {
  max-width: 700px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 0 24px;
}

.sgmt-kicker h1,
.sgmt-kicker h2 {
  font-size: clamp(21px, 2.6vw, 30px);
}

/* ---------- Split ---------- */
.sgmt-split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.sgmt-split>div {
  min-width: 0;
}

.sgmt-split-media img {
  border-radius: var(--sgmt-radius-lg);
  box-shadow: var(--sgmt-shadow-md);
}

@media (max-width:900px) {
  .sgmt-split {
    grid-template-columns: 1fr;
  }
}

/* ---------- Legal callout ---------- */
.sgmt-legal-callout {
  max-width: 820px;
  margin: 24px auto 0;
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-left: 4px solid var(--sgmt-crimson-500);
  border-radius: var(--sgmt-radius-md);
  padding: 26px 28px;
}

.sgmt-legal-callout h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.sgmt-legal-callout p {
  font-size: 14px;
  margin: 0 0 10px;
}

.sgmt-legal-callout p:last-child {
  margin-bottom: 0;
}

.sgmt-section--tint .sgmt-legal-callout {
  background: var(--sgmt-white);
}

.sgmt-section--white .sgmt-legal-callout {
  background: var(--sgmt-bg-tint);
}

/* ---------- Stock photo grid ---------- */
.sgmt-stockphoto-note {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--sgmt-ink-500);
}

.sgmt-stockphoto-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.sgmt-stockphoto-card {
  position: relative;
  border-radius: var(--sgmt-radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
}

.sgmt-stockphoto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sgmt-stockphoto-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 12, 13, .62);
  color: var(--sgmt-white);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  padding: 4px 4px;
}

@media (max-width:960px) {
  .sgmt-stockphoto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:640px) {
  .sgmt-stockphoto-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Ingredient grid ---------- */
.sgmt-ing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.sgmt-ing-grid>div {
  min-width: 0;
}

.sgmt-ing-card {
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-md);
  padding: 14px;
  text-align: center;
}

.sgmt-ing-card img {
  margin: 0 auto 10px;
  border-radius: 12px;
  object-fit: cover;
  height: 70px;
  width: 70px;
}

.sgmt-ing-card h3 {
  font-size: 12.5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.sgmt-ing-card p {
  font-size: 11px;
  margin: 0;
}

@media (max-width:960px) {
  .sgmt-ing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:640px) {
  .sgmt-ing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Benefits grid ---------- */
.sgmt-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.sgmt-benefit-grid>div {
  min-width: 0;
}

.sgmt-benefit-card {
  background: var(--sgmt-bg-tint);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-md);
  padding: 20px;
}

.sgmt-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sgmt-crimson-900);
  color: var(--sgmt-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sgmt-benefit-card h3 {
  font-size: 14.5px;
  margin-bottom: 6px;
}

.sgmt-benefit-card p {
  font-size: 12.5px;
  margin: 0;
}

.sgmt-benefit-media {
  text-align: center;
}

.sgmt-benefit-media img {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--sgmt-radius-lg);
  box-shadow: var(--sgmt-shadow-md);
}

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

@media (max-width:560px) {
  .sgmt-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bonus grid ---------- */
.sgmt-bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.sgmt-bonus-grid>div {
  min-width: 0;
}

.sgmt-bonus-card {
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-md);
  padding: 22px;
  text-align: center;
}

.sgmt-bonus-card img {
  margin: 0 auto 14px;
  border-radius: 10px;
  max-width: 150px;
}

.sgmt-bonus-card h3 {
  font-size: 16px;
}

.sgmt-bonus-card p {
  font-size: 13px;
  margin: 0;
}

@media (max-width:640px) {
  .sgmt-bonus-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing ---------- */
.sgmt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.sgmt-price-grid>div {
  min-width: 0;
}

.sgmt-price-card {
  position: relative;
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--sgmt-shadow-sm);
  display: flex;
  flex-direction: column;
}

.sgmt-price-card.is-best {
  border-color: var(--sgmt-crimson-500);
  box-shadow: var(--sgmt-shadow-lg);
  transform: scale(1.03);
}

.sgmt-price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sgmt-crimson-500), var(--sgmt-crimson-700));
  color: #fff;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.sgmt-price-media img {
  margin: 14px auto 8px;
  max-width: 140px;
}

.sgmt-price-name {
  font-family: var(--sgmt-font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--sgmt-crimson-900);
}

.sgmt-price-sub-name {
  color: var(--sgmt-ink-500);
  font-size: 13.5px;
  margin-bottom: 14px;
}

.sgmt-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: var(--sgmt-font-head);
  margin-bottom: 4px;
}

.sgmt-price-row b {
  font-size: 30px;
  color: var(--sgmt-crimson-900);
}

.sgmt-price-row span {
  color: var(--sgmt-ink-500);
  font-size: 13.5px;
}

.sgmt-price-sub {
  color: var(--sgmt-ink-500);
  font-size: 13px;
  margin-bottom: 18px;
}

.sgmt-price-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
  flex-grow: 1;
}

.sgmt-price-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--sgmt-ink-700);
  margin-bottom: 8px;
}

.sgmt-price-includes svg {
  color: var(--sgmt-crimson-500);
  flex-shrink: 0;
}

@media (max-width:900px) {
  .sgmt-price-grid {
    grid-template-columns: 1fr;
  }

  .sgmt-price-card.is-best {
    transform: none;
  }
}

/* ---------- Guarantee ---------- */
.sgmt-guarantee-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

.sgmt-guarantee-grid>div {
  min-width: 0;
}

.sgmt-guarantee-media {
  display: flex;
  justify-content: center;
}

@media (max-width:900px) {
  .sgmt-guarantee-grid {
    grid-template-columns: 1fr;
  }

  .sgmt-guarantee-media {
    order: -1;
  }
}

/* ---------- FAQ ---------- */
.sgmt-faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.sgmt-faq-item {
  border-bottom: 1px solid #ecdcde;
  padding: 16px 0;
}

.sgmt-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sgmt-font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--sgmt-crimson-900);
  gap: 16px;
}

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

.sgmt-faq-item .sgmt-plus {
  color: var(--sgmt-crimson-500);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.sgmt-faq-item[open] .sgmt-plus {
  transform: rotate(45deg);
}

.sgmt-faq-item p {
  margin-top: 10px;
  font-size: 14px;
}

/* ---------- Blog teaser (homepage) + blog page ---------- */
.sgmt-blogteaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sgmt-blogteaser-grid>* {
  min-width: 0;
}

.sgmt-blogteaser-card,
.sgmt-blog-card {
  background: var(--sgmt-white);
  border: 1px solid #ecdcde;
  border-radius: var(--sgmt-radius-md);
  text-decoration: none;
  display: block;
  padding: 20px;
}

.sgmt-blogteaser-body h3,
.sgmt-blog-card h3 {
  font-size: 15px;
  margin: 8px 0 6px;
  color: var(--sgmt-crimson-900);
}

.sgmt-blogteaser-body p,
.sgmt-blog-card p {
  font-size: 12.5px;
  margin: 0;
}

.sgmt-blog-tag {
  color: var(--sgmt-crimson-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width:900px) {
  .sgmt-blogteaser-grid {
    grid-template-columns: 1fr;
  }
}

.sgmt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sgmt-blog-grid>* {
  min-width: 0;
}

@media (max-width:900px) {
  .sgmt-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .sgmt-blog-grid {
    grid-template-columns: 1fr;
  }
}

.sgmt-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.sgmt-post h1 {
  font-size: clamp(24px, 3.2vw, 34px);
}

.sgmt-post-meta {
  color: var(--sgmt-ink-500);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.sgmt-post p {
  font-size: 16px;
}

.sgmt-post h2 {
  margin-top: 32px;
  font-size: 21px;
}

/* ---------- CTA band ---------- */
.sgmt-cta-band {
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.sgmt-cta-band h2 {
  color: #fff;
}

.sgmt-cta-band p {
  color: #f5e9ea;
  margin-bottom: 24px;
}

.sgmt-cta-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.sgmt-cta-media {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sgmt-cta-media img {
  width: 150px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .28));
}

.sgmt-cta-price {
  font-family: var(--sgmt-font-head);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.sgmt-cta-price span {
  font-family: var(--sgmt-font-body);
  font-weight: 400;
  font-size: 12.5px;
  color: #f5e9ea;
}

.sgmt-cta-text {
  max-width: 460px;
}

.sgmt-cta-text h2,
.sgmt-cta-text p {
  text-align: left;
}

@media (max-width:720px) {
  .sgmt-cta-grid {
    flex-direction: column;
    text-align: center;
  }

  .sgmt-cta-text h2,
  .sgmt-cta-text p {
    text-align: center;
  }
}

/* ---------- Popup ---------- */
.sgmt-popup {
  position: fixed;
  inset: 0;
  background: rgba(61, 10, 15, .72);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.sgmt-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sgmt-popup-inner {
  background: #fff;
  border-radius: var(--sgmt-radius-lg);
  padding: 34px 30px;
  max-width: 440px;
  position: relative;
  text-align: center;
}

.sgmt-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: var(--sgmt-ink-500);
  cursor: pointer;
}

.sgmt-popup-inner h3 {
  font-size: 20px;
}

.sgmt-popup-inner p {
  font-size: 14px;
}

/* ---------- Footer ---------- */
.sgmt-footer {
  background: var(--sgmt-crimson-950);
  color: #c9b3b6;
  padding: 56px 0 26px;
}

.sgmt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 36px;
}

.sgmt-footer h4 {
  color: #fff;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.sgmt-footer a {
  display: block;
  color: #a1888a;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 9px;
}

.sgmt-footer a:hover {
  color: var(--sgmt-gold-500);
}

.sgmt-footer-desc {
  font-size: 12.5px;
  color: #8f7678;
}

.sgmt-logo--footer {
  margin-bottom: 14px;
  color: #fff;
}

.sgmt-logo--footer strong {
  color: var(--sgmt-gold-500);
}

.sgmt-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  font-size: 12px;
  color: #7a6264;
}

@media (max-width:900px) {
  .sgmt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .sgmt-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Breadcrumb ---------- */
.sgmt-breadcrumb {
  font-size: 13px;
  color: var(--sgmt-ink-500);
  margin: 24px auto 0;
  max-width: 1160px;
  padding: 0 24px;
}

.sgmt-breadcrumb a {
  color: var(--sgmt-crimson-500);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Legal ---------- */
.sgmt-legal {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 24px;
}

.sgmt-legal h1 {
  font-size: 28px;
}

.sgmt-legal h2 {
  margin-top: 30px;
  font-size: 19px;
}

.sgmt-legal p,
.sgmt-legal li {
  color: var(--sgmt-ink-700);
  font-size: 15px;
}

.sgmt-legal ul {
  padding-left: 20px;
}

.sgmt-legal .sgmt-meta {
  color: var(--sgmt-ink-500);
  font-size: 13px;
}

/* ---------- 404 ---------- */
.sgmt-404 {
  text-align: center;
  padding: 110px 24px;
}

.sgmt-404 h1 {
  font-size: clamp(60px, 11vw, 130px);
  color: var(--sgmt-crimson-500);
  margin-bottom: 0;
}

.sgmt-center {
  text-align: center;
}