:root {
  --swago-bg: #f8f5f2;
  --swago-white: #ffffff;
  --swago-ivory: #fffdfb;
  --swago-cipria: #d7c1bb;
  --swago-cipria-soft: #eadfda;
  --swago-cipria-deep: #c9aea6;
  --swago-taupe: #b9a49d;
  --swago-text: #2f2624;
  --swago-text-soft: #6d615d;
  --swago-line: rgba(69, 53, 49, 0.12);
  --swago-black: #161313;
  --swago-charcoal: #221d1b;
  --swago-sage: #92a482;
  --swago-sage-soft: #b8c3aa;
  --swago-max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.swago-page {
  margin: 0;
  color: var(--swago-text);
  background:
    radial-gradient(circle at 18% 0, rgba(215, 193, 187, .18), transparent 32%),
    linear-gradient(180deg, #fffdfb 0%, #f8f5f2 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.swago-page a { color: inherit; text-decoration: none; }
.swago-page img { display: block; max-width: 100%; }
.swago-page button,
.swago-page input { font: inherit; }

.swago-shell {
  width: min(100%, 1440px);
  margin-inline: auto;
  background: var(--swago-ivory);
}

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

.swago-topbar {
  min-height: 18px;
  display: grid;
  place-items: center;
  padding: 3px 14px;
  background: var(--swago-cipria-soft);
  color: var(--swago-text-soft);
  text-align: center;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.swago-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--swago-line);
  backdrop-filter: blur(14px);
}

.swago-header-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 26px;
}

.swago-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 148px;
  color: var(--swago-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: .02em;
}

.swago-logo img {
  width: 172px;
  max-height: 50px;
  object-fit: contain;
}

.swago-logo-fallback { display: none; }
.swago-logo.is-missing img { display: none; }
.swago-logo.is-missing .swago-logo-fallback { display: inline; }

.swago-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  color: var(--swago-text);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.swago-nav a {
  padding: 10px 0;
  opacity: .9;
}

.swago-nav a:hover { color: var(--swago-cipria-deep); }

.swago-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.swago-icon {
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
}

.swago-icon::before,
.swago-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

.swago-icon-search::before {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--swago-text);
  border-radius: 50%;
}
.swago-icon-search::after {
  width: 7px;
  height: 1.5px;
  background: var(--swago-text);
  transform: translate(7px, 7px) rotate(45deg);
}
.swago-icon-user::before {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--swago-text);
  border-radius: 50%;
  transform: translateY(-5px);
}
.swago-icon-user::after {
  width: 15px;
  height: 8px;
  border: 1.5px solid var(--swago-text);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  transform: translateY(8px);
}
.swago-icon-heart::before {
  width: 14px;
  height: 14px;
  background: var(--swago-text);
  transform: rotate(45deg) scale(.72);
  clip-path: polygon(50% 100%, 0 45%, 0 15%, 28% 0, 50% 18%, 72% 0, 100% 15%, 100% 45%);
}
.swago-icon-bag::before {
  width: 13px;
  height: 13px;
  border: 1.5px solid var(--swago-text);
  border-radius: 2px;
  transform: translateY(4px);
}
.swago-icon-bag::after {
  width: 9px;
  height: 6px;
  border: 1.5px solid var(--swago-text);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateY(-5px);
}

.swago-hero {
  position: relative;
  min-height: 304px;
  background:
    linear-gradient(90deg, rgba(255,253,251,.98) 0%, rgba(255,253,251,.92) 34%, rgba(255,253,251,.36) 56%, rgba(234,223,218,.76) 100%),
    radial-gradient(circle at 88% 38%, rgba(215,193,187,.6), transparent 36%);
  overflow: hidden;
}

.swago-hero-inner {
  min-height: 304px;
  display: grid;
  grid-template-columns: minmax(0, .43fr) minmax(0, .57fr);
  align-items: center;
  gap: 12px;
}

.swago-hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 26px 118px;
}

.swago-hero h1 {
  margin: 0;
  max-width: 500px;
  color: var(--swago-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 500;
}

.swago-hero-copy > p {
  max-width: 365px;
  margin: 10px 0 0;
  color: var(--swago-text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.swago-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 17px;
}

.swago-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.swago-btn-dark {
  color: var(--swago-white);
  background: var(--swago-black);
  border-color: var(--swago-black);
}

.swago-btn-light {
  color: var(--swago-black);
  background: rgba(255,255,255,.7);
  border-color: rgba(22,19,19,.45);
}

.swago-btn:hover {
  background: var(--swago-cipria-deep);
  border-color: var(--swago-cipria-deep);
  color: var(--swago-black);
}

.swago-rating {
  margin-top: 12px;
  color: var(--swago-text);
  font-size: 11px;
  letter-spacing: .06em;
}

.swago-rating strong { font-weight: 900; }

.swago-hero-media {
  position: relative;
  align-self: stretch;
  min-height: 304px;
  overflow: hidden;
}

.swago-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 304px;
  object-fit: cover;
  object-position: center right;
}

.swago-hero-placeholder,
.swago-image-placeholder,
.swago-video-placeholder,
.swago-product-placeholder { display: none; }

.swago-hero-media.is-missing img,
.swago-moissanite-media.is-missing img,
.swago-story-media.is-missing img,
.swago-video-card.is-missing img,
.swago-product-media.is-missing img { display: none; }

.swago-hero-media.is-missing .swago-hero-placeholder,
.swago-moissanite-media.is-missing .swago-image-placeholder,
.swago-story-media.is-missing .swago-image-placeholder,
.swago-video-card.is-missing .swago-video-placeholder,
.swago-product-media.is-missing .swago-product-placeholder {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  color: var(--swago-text-soft);
  background:
    radial-gradient(circle at 76% 20%, rgba(215,193,187,.38), transparent 34%),
    linear-gradient(135deg, #fff, var(--swago-cipria-soft));
}

.swago-values {
  background: var(--swago-white);
  border-block: 1px solid var(--swago-line);
}

.swago-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swago-value-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 24px;
  border-right: 1px solid var(--swago-line);
}
.swago-value-card:last-child { border-right: 0; }
.swago-value-card h2 {
  margin: 0 0 3px;
  color: var(--swago-text);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.swago-value-card p {
  margin: 0;
  color: var(--swago-text-soft);
  line-height: 1.25;
  font-size: 10px;
}

.swago-value-icon {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
  color: var(--swago-cipria-deep);
}
.swago-icon-diamond::before,
.swago-icon-facet::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.swago-icon-leaf { color: var(--swago-sage); }
.swago-icon-leaf::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 15px;
  left: 6px;
  top: 11px;
  border-radius: 100% 0 100% 0;
  border: 1.5px solid currentColor;
  transform: rotate(-28deg);
}
.swago-value-card .swago-icon-heart::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 7px;
  top: 7px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  clip-path: none;
  transform: none;
}

.swago-moissanite {
  background: var(--swago-ivory);
  border-bottom: 1px solid var(--swago-line);
}

.swago-moissanite-inner {
  min-height: 178px;
  display: grid;
  grid-template-columns: .47fr .53fr;
  align-items: stretch;
}

.swago-moissanite-copy {
  padding: 24px 54px 22px 118px;
}

.swago-kicker {
  margin: 0 0 5px;
  color: var(--swago-taupe);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.swago-moissanite-copy h2,
.swago-row-head h2,
.swago-story-copy h2,
.swago-guide-panel h2 {
  margin: 0;
  color: var(--swago-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.swago-moissanite-copy p,
.swago-story-copy p,
.swago-guide-panel p {
  margin: 10px 0 8px;
  color: var(--swago-text-soft);
  line-height: 1.48;
  font-size: 11px;
}

.swago-text-link {
  color: var(--swago-black);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.swago-moissanite-media,
.swago-story-media {
  position: relative;
  overflow: hidden;
}

.swago-moissanite-media img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
}

.swago-videos,
.swago-products,
.swago-story,
.swago-guide,
.swago-reviews {
  padding: 14px 0;
  border-bottom: 1px solid var(--swago-line);
}

.swago-row-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 8px;
  padding-inline: 118px;
}

.swago-row-head a {
  color: var(--swago-text);
  font-size: 9px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.swago-video-grid,
.swago-products-grid,
.swago-review-grid {
  display: grid;
  gap: 8px;
  padding-inline: 118px;
}

.swago-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swago-video-card {
  position: relative;
  min-height: 88px;
  overflow: hidden;
  background: var(--swago-cipria-soft);
}
.swago-video-card img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
}
.swago-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(22,19,19,.55));
}
.swago-video-card h3 {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  margin: 0;
  color: var(--swago-white);
  font-size: 10px;
}
.swago-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  transform: translate(-50%, -50%);
}
.swago-play::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  border-left: 10px solid var(--swago-black);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.swago-products-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.swago-product-card {
  overflow: hidden;
  background: var(--swago-white);
  border: 1px solid var(--swago-line);
}

.swago-product-media {
  display: block;
  position: relative;
  aspect-ratio: 1.22 / .82;
  overflow: hidden;
  background: var(--swago-cipria-soft);
}
.swago-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}
.swago-product-card:hover .swago-product-media img { transform: scale(1.035); }
.swago-product-body {
  padding: 7px 9px 8px;
}
.swago-product-body h3 {
  margin: 0;
  color: var(--swago-black);
  font-size: 10px;
  line-height: 1.25;
}
.swago-product-body p {
  display: none;
}
.swago-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 3px;
}
.swago-price {
  color: var(--swago-black);
  font-size: 11px;
  font-weight: 900;
}
.swago-compare {
  color: #9d928e;
  text-decoration: line-through;
  font-size: 10px;
  font-weight: 700;
}
.swago-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 6px;
}
.swago-card-actions .swago-btn {
  min-height: 24px;
  padding: 0 6px;
  font-size: 7px;
  letter-spacing: .08em;
}

.swago-story {
  background: linear-gradient(180deg, var(--swago-ivory), #f5eee9);
}

.swago-story-panel {
  display: grid;
  grid-template-columns: .42fr .58fr;
  align-items: center;
  gap: 22px;
  padding-inline: 118px;
}

.swago-story-media img {
  width: 100%;
  min-height: 126px;
  max-height: 160px;
  object-fit: cover;
}

.swago-check-list {
  list-style: none;
  padding: 0;
  margin: 9px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.swago-check-list li {
  color: var(--swago-text);
  font-size: 10px;
  font-weight: 850;
}
.swago-check-list li::before {
  content: "✓";
  color: var(--swago-sage);
  margin-right: 5px;
  font-weight: 1000;
}

.swago-guide-panel {
  padding: 16px 118px;
  background: var(--swago-white);
}

.swago-guide-panel p {
  max-width: 760px;
}

.swago-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.swago-review-grid article {
  min-height: 92px;
  padding: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--swago-line);
}
.swago-review-grid p {
  margin: 0 0 10px;
  color: var(--swago-text-soft);
  line-height: 1.45;
  font-size: 11px;
}
.swago-review-grid strong {
  color: var(--swago-text);
  font-size: 10px;
}

.swago-footer {
  padding: 22px 0 14px;
  background: #efebe5;
  color: var(--swago-text);
}

.swago-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr 1fr;
  gap: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--swago-line);
}

.swago-footer p {
  max-width: 260px;
  color: var(--swago-text-soft);
  line-height: 1.45;
  font-size: 11px;
}
.swago-footer h3,
.swago-newsletter label {
  display: block;
  margin: 0 0 8px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.swago-footer a {
  display: block;
  margin: 5px 0;
  color: var(--swago-text-soft);
  font-size: 11px;
}
.swago-newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}
.swago-newsletter input {
  min-height: 32px;
  border: 1px solid var(--swago-line);
  background: var(--swago-white);
  padding: 0 10px;
}
.swago-newsletter button {
  min-height: 32px;
  border: 0;
  padding: 0 14px;
  background: var(--swago-black);
  color: var(--swago-white);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.swago-footer-bottom {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--swago-text-soft);
  font-size: 10px;
}

@media (max-width: 1180px) {
  .swago-header-inner { grid-template-columns: auto 1fr auto; }
  .swago-nav { gap: 18px; }
  .swago-hero-copy,
  .swago-moissanite-copy,
  .swago-row-head,
  .swago-video-grid,
  .swago-products-grid,
  .swago-story-panel,
  .swago-guide-panel,
  .swago-review-grid { padding-inline: 42px; }
  .swago-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .swago-container { width: min(100% - 28px, var(--swago-max)); }
  .swago-header-inner {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }
  .swago-nav { display: none; }
  .swago-logo img { width: 138px; }
  .swago-hero,
  .swago-hero-inner { min-height: auto; }
  .swago-hero-inner,
  .swago-moissanite-inner,
  .swago-story-panel { grid-template-columns: 1fr; }
  .swago-hero-copy,
  .swago-moissanite-copy,
  .swago-row-head,
  .swago-video-grid,
  .swago-products-grid,
  .swago-story-panel,
  .swago-guide-panel,
  .swago-review-grid { padding-inline: 0; }
  .swago-hero-copy { padding-block: 34px 20px; }
  .swago-hero-media img { min-height: 260px; }
  .swago-values-grid,
  .swago-video-grid,
  .swago-products-grid,
  .swago-review-grid,
  .swago-footer-grid,
  .swago-check-list { grid-template-columns: 1fr; }
  .swago-value-card {
    border-right: 0;
    border-bottom: 1px solid var(--swago-line);
  }
  .swago-row-head,
  .swago-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 821px) {
  .swago-shell {
    width: min(100%, 1560px);
    box-shadow: 0 30px 90px rgba(47, 38, 36, .08);
  }

  .swago-container {
    width: min(1440px, calc(100% - 64px));
  }

  .swago-topbar {
    min-height: 24px;
    font-size: 9px;
    letter-spacing: .3em;
  }

  .swago-header-inner {
    min-height: 74px;
    grid-template-columns: 240px 1fr auto;
  }

  .swago-logo img {
    width: 198px;
    max-height: 58px;
  }

  .swago-logo {
    font-size: 38px;
  }

  .swago-nav {
    gap: clamp(26px, 3.2vw, 56px);
    font-size: 10px;
  }

  .swago-actions {
    gap: 18px;
  }

  .swago-icon {
    width: 24px;
    height: 24px;
  }

  .swago-hero,
  .swago-hero-inner {
    min-height: 470px;
  }

  .swago-hero {
    background:
      linear-gradient(90deg, rgba(255,253,251,.99) 0%, rgba(255,253,251,.96) 32%, rgba(255,253,251,.45) 58%, rgba(234,223,218,.86) 100%),
      radial-gradient(circle at 82% 22%, rgba(255,255,255,.9), transparent 18%),
      radial-gradient(circle at 92% 44%, rgba(215,193,187,.62), transparent 38%),
      linear-gradient(135deg, var(--swago-ivory), var(--swago-cipria-soft));
  }

  .swago-hero-inner {
    grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
    gap: 28px;
  }

  .swago-hero-copy {
    padding: 72px 0 64px 92px;
  }

  .swago-hero h1 {
    max-width: 680px;
    font-size: clamp(70px, 5.6vw, 104px);
    line-height: .91;
    letter-spacing: -.055em;
  }

  .swago-hero-copy > p {
    max-width: 490px;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }

  .swago-hero-actions {
    margin-top: 28px;
    gap: 14px;
  }

  .swago-btn {
    min-height: 44px;
    padding: 0 26px;
    font-size: 10px;
  }

  .swago-rating {
    margin-top: 18px;
    font-size: 13px;
  }

  .swago-hero-media,
  .swago-hero-media img {
    min-height: 470px;
  }

  .swago-hero-media.is-missing .swago-hero-placeholder {
    min-height: 470px;
    position: relative;
    overflow: hidden;
    color: transparent;
    background:
      radial-gradient(circle at 46% 38%, rgba(255,255,255,.95), transparent 14%),
      radial-gradient(circle at 58% 42%, rgba(255,255,255,.78), transparent 10%),
      radial-gradient(circle at 74% 14%, rgba(215,193,187,.32), transparent 22%),
      linear-gradient(135deg, rgba(255,255,255,.92), rgba(234,223,218,.72));
  }

  .swago-hero-media.is-missing .swago-hero-placeholder::before {
    content: "Swa-Go";
    position: absolute;
    right: 12%;
    bottom: 16%;
    color: rgba(47, 38, 36, .22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 5vw, 96px);
    letter-spacing: .08em;
  }

  .swago-hero-media.is-missing .swago-hero-placeholder::after {
    content: "";
    position: absolute;
    right: 20%;
    top: 18%;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(47, 38, 36, .12);
    border-radius: 50%;
    box-shadow:
      90px 58px 0 -72px rgba(255,255,255,.85),
      118px 72px 0 -80px rgba(201,174,166,.55),
      -42px 84px 0 -92px rgba(146,164,130,.28);
  }

  .swago-values-grid {
    min-height: 108px;
  }

  .swago-value-card {
    min-height: 108px;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px 34px;
  }

  .swago-value-icon {
    width: 52px;
    height: 52px;
  }

  .swago-value-card h2 {
    font-size: 12px;
  }

  .swago-value-card p {
    font-size: 12px;
    line-height: 1.42;
  }

  .swago-moissanite-inner {
    min-height: 330px;
    grid-template-columns: .46fr .54fr;
  }

  .swago-moissanite-copy {
    padding: 62px 72px 54px 92px;
  }

  .swago-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .swago-moissanite-copy h2,
  .swago-row-head h2,
  .swago-story-copy h2,
  .swago-guide-panel h2 {
    font-size: clamp(42px, 3.8vw, 64px);
    line-height: .98;
  }

  .swago-moissanite-copy p,
  .swago-story-copy p,
  .swago-guide-panel p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.68;
  }

  .swago-text-link,
  .swago-row-head a {
    font-size: 10px;
  }

  .swago-moissanite-media img {
    min-height: 330px;
  }

  .swago-videos,
  .swago-products,
  .swago-story,
  .swago-guide,
  .swago-reviews {
    padding: 54px 0;
  }

  .swago-row-head {
    margin-bottom: 24px;
    padding-inline: 92px;
  }

  .swago-video-grid,
  .swago-products-grid,
  .swago-review-grid {
    gap: 18px;
    padding-inline: 92px;
  }

  .swago-video-card {
    min-height: 205px;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(47, 38, 36, .08);
  }

  .swago-video-card img {
    min-height: 205px;
  }

  .swago-video-card h3 {
    left: 16px;
    right: 16px;
    bottom: 14px;
    font-size: 14px;
  }

  .swago-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .swago-product-card {
    border-radius: 18px;
    box-shadow: 0 20px 52px rgba(47, 38, 36, .08);
  }

  .swago-product-media {
    aspect-ratio: 1.18 / .86;
  }

  .swago-product-body {
    padding: 18px 18px 20px;
  }

  .swago-product-body h3 {
    font-size: 18px;
  }

  .swago-product-body p {
    display: block;
    min-height: 42px;
    margin: 8px 0 14px;
    color: var(--swago-text-soft);
    font-size: 14px;
    line-height: 1.5;
  }

  .swago-price-row {
    margin-top: 0;
    margin-bottom: 16px;
  }

  .swago-price {
    font-size: 20px;
  }

  .swago-compare {
    font-size: 14px;
  }

  .swago-card-actions {
    gap: 10px;
    margin-top: 0;
  }

  .swago-card-actions .swago-btn {
    min-height: 38px;
    padding: 0 12px;
    font-size: 9px;
  }

  .swago-story-panel {
    grid-template-columns: .48fr .52fr;
    gap: 36px;
    padding-inline: 92px;
  }

  .swago-story-media img {
    min-height: 260px;
    max-height: 320px;
  }

  .swago-check-list {
    margin-top: 22px;
    gap: 14px;
  }

  .swago-check-list li {
    font-size: 13px;
  }

  .swago-guide-panel {
    padding: 40px 92px;
  }

  .swago-review-grid article {
    min-height: 150px;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(47, 38, 36, .06);
  }

  .swago-review-grid p {
    font-size: 15px;
  }

  .swago-review-grid strong {
    font-size: 13px;
  }

  .swago-footer {
    padding: 42px 0 22px;
  }

  .swago-footer-grid {
    gap: 42px;
  }

  .swago-footer p,
  .swago-footer a {
    font-size: 13px;
  }
}

/* Swa-Go luxury direction: continuous eco-luxury surface, gold/silver/sage accents */
:root {
  --swago-bg: #fbf8f4;
  --swago-white: #ffffff;
  --swago-ivory: #fffdf9;
  --swago-cream: #f5efe8;
  --swago-cipria: #d8c1ba;
  --swago-cipria-soft: #eee3df;
  --swago-cipria-deep: #bfa49d;
  --swago-taupe: #b49e96;
  --swago-gold: #c9a86a;
  --swago-gold-soft: #e7d6b4;
  --swago-silver: #d8d8d5;
  --swago-silver-soft: #f1f1ee;
  --swago-sage: #879978;
  --swago-sage-soft: #dfe7d8;
  --swago-text: #221b19;
  --swago-text-soft: #746865;
  --swago-line: rgba(34, 27, 25, .10);
  --swago-black: #161313;
  --swago-charcoal: #221d1b;
}

body.swago-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(201, 168, 106, .16), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(216, 216, 213, .22), transparent 30%),
    radial-gradient(circle at 84% 68%, rgba(135, 153, 120, .13), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #fbf8f4 38%, #f3ece7 72%, #f9f5ee 100%);
}

.swago-shell {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255,253,249,.92) 0%, rgba(251,248,244,.72) 44%, rgba(255,253,249,.88) 100%);
  box-shadow: none;
}

.swago-topbar {
  background:
    linear-gradient(90deg, rgba(231,214,180,.58), rgba(238,227,223,.86), rgba(216,216,213,.42));
  color: rgba(34, 27, 25, .74);
}

.swago-header {
  background: rgba(255, 253, 249, .84);
  box-shadow: 0 16px 44px rgba(34, 27, 25, .045);
}

.swago-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.35), rgba(216,216,213,.55), transparent);
}

.swago-hero {
  background:
    linear-gradient(90deg, rgba(255,253,249,.99) 0%, rgba(255,253,249,.93) 34%, rgba(255,253,249,.56) 60%, rgba(238,227,223,.78) 100%),
    radial-gradient(circle at 72% 26%, rgba(255,255,255,.92), transparent 16%),
    radial-gradient(circle at 84% 34%, rgba(201,168,106,.18), transparent 24%),
    radial-gradient(circle at 96% 52%, rgba(216,216,213,.32), transparent 28%),
    linear-gradient(135deg, #fffdf9, #f3ece7 62%, #fbf8f4);
}

.swago-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), transparent 24%, rgba(255,255,255,.22) 100%),
    radial-gradient(circle at 36% 94%, rgba(135,153,120,.08), transparent 22%);
}

.swago-hero h1 {
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}

.swago-hero h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--swago-gold), var(--swago-silver), var(--swago-sage));
}

.swago-btn-dark {
  background: linear-gradient(135deg, #171313, #2a221f);
  border-color: rgba(34, 27, 25, .82);
  box-shadow: 0 14px 32px rgba(34, 27, 25, .12);
}

.swago-btn-light {
  background: rgba(255,255,255,.72);
  border-color: rgba(201,168,106,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72);
}

.swago-btn:hover {
  background: linear-gradient(135deg, var(--swago-gold-soft), var(--swago-cipria));
  border-color: rgba(201,168,106,.65);
  color: var(--swago-black);
}

.swago-values {
  background:
    linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,253,249,.92), rgba(255,255,255,.74));
}

.swago-value-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,253,249,.56));
}

.swago-value-card:nth-child(1) .swago-value-icon,
.swago-value-card:nth-child(4) .swago-value-icon {
  color: var(--swago-gold);
}

.swago-value-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(223,231,216,.32));
}

.swago-value-card:nth-child(2) .swago-value-icon {
  color: var(--swago-sage);
}

.swago-value-card:nth-child(3) .swago-value-icon {
  color: var(--swago-silver);
}

.swago-moissanite,
.swago-videos,
.swago-products,
.swago-story,
.swago-guide,
.swago-reviews {
  background:
    radial-gradient(circle at 84% 20%, rgba(231,214,180,.13), transparent 26%),
    linear-gradient(135deg, rgba(255,253,249,.94), rgba(251,248,244,.78) 48%, rgba(245,239,232,.82));
}

.swago-moissanite {
  background:
    radial-gradient(circle at 80% 24%, rgba(216,216,213,.24), transparent 28%),
    linear-gradient(135deg, rgba(255,253,249,.98), rgba(251,248,244,.88) 54%, rgba(238,227,223,.62));
}

.swago-moissanite-media,
.swago-story-media,
.swago-video-card,
.swago-product-card,
.swago-review-grid article {
  border: 1px solid rgba(34, 27, 25, .09);
  box-shadow: 0 24px 70px rgba(34, 27, 25, .075);
}

.swago-moissanite-media.is-missing .swago-image-placeholder,
.swago-story-media.is-missing .swago-image-placeholder,
.swago-video-card.is-missing .swago-video-placeholder,
.swago-product-media.is-missing .swago-product-placeholder {
  background:
    radial-gradient(circle at 74% 20%, rgba(255,255,255,.9), transparent 18%),
    radial-gradient(circle at 34% 62%, rgba(201,168,106,.13), transparent 26%),
    linear-gradient(135deg, rgba(255,253,249,.96), rgba(238,227,223,.76));
}

.swago-kicker {
  color: var(--swago-taupe);
}

.swago-row-head h2,
.swago-moissanite-copy h2,
.swago-story-copy h2,
.swago-guide-panel h2 {
  text-shadow: 0 1px 0 rgba(255,255,255,.64);
}

.swago-product-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,253,249,.78));
}

.swago-product-media {
  background:
    radial-gradient(circle at 68% 20%, rgba(255,255,255,.9), transparent 20%),
    linear-gradient(135deg, rgba(238,227,223,.72), rgba(245,239,232,.92));
}

.swago-price {
  color: var(--swago-black);
}

.swago-story {
  background:
    radial-gradient(circle at 14% 18%, rgba(135,153,120,.12), transparent 24%),
    linear-gradient(135deg, rgba(255,253,249,.98), rgba(245,239,232,.82) 48%, rgba(238,227,223,.58));
}

.swago-guide-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,253,249,.56)),
    radial-gradient(circle at 92% 30%, rgba(201,168,106,.16), transparent 26%);
  border-block: 1px solid rgba(201,168,106,.18);
}

.swago-footer {
  background:
    radial-gradient(circle at 14% 0, rgba(201,168,106,.13), transparent 26%),
    linear-gradient(135deg, #211b19, #151211 58%, #221d1b);
  color: rgba(255,253,249,.92);
}

.swago-footer h3,
.swago-newsletter label,
.swago-footer-bottom {
  color: rgba(255,253,249,.62);
}

.swago-footer p,
.swago-footer a {
  color: rgba(255,253,249,.7);
}

.swago-footer a:hover {
  color: var(--swago-gold-soft);
}

.swago-footer .swago-logo {
  color: var(--swago-ivory);
}

.swago-newsletter input {
  background: rgba(255,253,249,.92);
}

.swago-newsletter button {
  background: linear-gradient(135deg, var(--swago-gold-soft), var(--swago-gold));
  color: var(--swago-black);
}

.swago-hero .swago-btn-dark {
  color: var(--swago-black);
  background:
    linear-gradient(135deg, rgba(231,214,180,.98), rgba(201,168,106,.94) 48%, rgba(216,216,213,.88));
  border-color: rgba(201,168,106,.58);
  box-shadow:
    0 16px 34px rgba(201,168,106,.22),
    inset 0 1px 0 rgba(255,255,255,.74);
}

.swago-hero .swago-btn-dark:hover {
  color: var(--swago-black);
  background:
    linear-gradient(135deg, rgba(255,253,249,.98), rgba(231,214,180,.96) 46%, rgba(135,153,120,.18));
  border-color: rgba(135,153,120,.34);
}

/* Header refinement */
.swago-topbar {
  min-height: 30px;
  padding: 7px 16px;
  background:
    linear-gradient(90deg, rgba(231,214,180,.62), rgba(238,227,223,.94), rgba(245,239,232,.78));
  color: rgba(34, 27, 25, .82);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .24em;
}

.swago-header {
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(34, 27, 25, .045);
}

.swago-header-inner {
  min-height: 78px;
}

.swago-logo {
  min-width: 230px;
}

.swago-logo img {
  width: 214px;
  max-height: 64px;
}

.swago-logo-fallback {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  letter-spacing: .02em;
}

@media (max-width: 820px) {
  .swago-topbar {
    min-height: 28px;
    font-size: 9px;
    letter-spacing: .16em;
  }

  .swago-header-inner {
    min-height: 72px;
  }

  .swago-logo {
    min-width: 150px;
  }

  .swago-logo img {
    width: 150px;
    max-height: 54px;
  }

  .swago-logo-fallback {
    font-size: 30px;
  }
}
