/* WorthHerWhile.com homepage
   Asset assumptions:
   - CSS path: /public/css/worthherwhile-home.css
   - Images path: /public/images/
*/

:root {
  --whw-max: 1360px;
  --whw-header-max: 1540px;

  --whw-bg: #fff8f2;
  --whw-bg-soft: #fffaf6;
  --whw-panel: #fffdf9;
  --whw-panel-warm: #fff7f0;

  --whw-ink: #12110f;
  --whw-ink-soft: #2b241d;
  --whw-muted: #6f6252;
  --whw-soft-muted: #9b8b77;

  --whw-gold: #c89655;
  --whw-gold-deep: #a87335;
  --whw-gold-soft: #d8b37d;

  --whw-border: rgba(200, 150, 85, 0.24);
  --whw-border-soft: rgba(200, 150, 85, 0.13);
  --whw-border-strong: rgba(200, 150, 85, 0.48);
  --whw-line: rgba(200, 150, 85, 0.25);

  --whw-shadow: 0 18px 45px rgba(80, 55, 30, 0.055);
  --whw-shadow-soft: 0 22px 70px rgba(80, 55, 30, 0.07);

  --whw-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --whw-sans: "Montserrat", "Inter", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 150, 85, 0.045), transparent 34rem),
    linear-gradient(180deg, var(--whw-bg) 0%, #fff5ec 100%);
  color: var(--whw-ink);
  font-family: var(--whw-sans);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input {
  font: inherit;
}

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

.whw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Header */

.whw-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 248, 242, 0.96);
  border-bottom: 1px solid rgba(200, 150, 85, 0.18);
}

.whw-header .whw-shell {
  width: min(calc(100% - 56px), var(--whw-header-max));
}

.whw-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.whw-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.whw-logo {
  width: 230px;
  height: auto;
}

.whw-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 36px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.whw-nav a {
  transition: color 160ms ease, opacity 160ms ease;
}

.whw-nav a:hover,
.whw-footer__column a:hover {
  color: var(--whw-gold-deep);
}

.whw-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  background: var(--whw-gold);
  border: 1px solid var(--whw-gold);
  color: #fff;
  box-shadow: 0 14px 26px rgba(200, 150, 85, 0.14);
}

.whw-nav__button:hover {
  background: var(--whw-white-deep);
  border-color: var(--whw-gold-deep);
  color: #fff;
  opacity: 0.92;
}

.whw-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}

.whw-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--whw-ink);
}

/* Hero */

.whw-hero {
  position: relative;
  width: min(calc(100% - 56px), var(--whw-header-max));
  min-height: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-inline: 1px solid rgba(200, 150, 85, 0.12);
  border-bottom: 1px solid rgba(200, 150, 85, 0.16);
  box-shadow: 0 24px 76px rgba(80, 55, 30, 0.06);
}

.whw-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--whw-bg) 0%,
      rgba(255, 248, 242, 1) 18%,
      rgba(255, 248, 242, 0.88) 35%,
      rgba(255, 248, 242, 0.56) 48%,
      rgba(255, 248, 242, 0.16) 63%,
      rgba(255, 248, 242, 0.02) 76%),
    url("/images/worthherwhile-hero.webp") center right / cover no-repeat;
}

.whw-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: 68px 0 68px clamp(70px, 6vw, 120px);
}

.whw-eyebrow,
.whw-hero__note,
.whw-trust-item h3,
.whw-footer h3 {
  color: var(--whw-gold-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.whw-eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
}

.whw-hero h1 {
  margin: 0;
  max-width: 520px;
  font-family: var(--whw-serif);
  font-size: clamp(76px, 7.1vw, 112px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.067em;
}

.whw-hero h1 em {
  color: #bc7f41;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.whw-small-rule {
  width: 56px;
  height: 2px;
  margin: 30px 0 22px;
  background: var(--whw-gold);
}

.whw-hero__text {
  max-width: 390px;
  margin: 0 0 36px;
  color: var(--whw-ink-soft);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.66;
}

.whw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 257px;
  min-height: 53px;
  padding: 0 26px;
  background: var(--whw-gold);
  border: 1px solid var(--whw-gold);
  color: #fff;
  box-shadow: 0 14px 26px rgba(200, 150, 85, 0.14);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, opacity 170ms ease;
}

.whw-button:hover {
  transform: translateY(-1px);
  background: var(--whw-gold-deep);
  border-color: var(--whw-gold-deep);
  opacity: 0.96;
}

.whw-button--small {
  min-height: 45px;
  padding-inline: 24px;
  font-size: 12px;
}

.whw-hero__note {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 1.5;
}

/* Shared section title */

.whw-section {
  padding: 48px 0;
}

.whw-section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 31px;
}

.whw-section-title span {
  height: 1px;
  background: var(--whw-gold);
  opacity: 0.48;
}

.whw-section-title h2 {
  margin: 0;
  color: var(--whw-ink);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.31em;
}

.whw-section-title--compact {
  margin-bottom: 25px;
  gap: 18px;
}

.whw-section-title--compact h2 {
  font-size: 18px;
  letter-spacing: 0.23em;
}

/* Signature sections */

.whw-signature {
  padding-top: 47px;
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.98) 0%, rgba(255, 250, 246, 0.95) 100%);
}

.whw-signature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.whw-signature-card {
  text-align: center;
}

.whw-signature-card img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
  border: 1px solid rgba(200, 150, 85, 0.18);
  border-radius: 10px;
  transition: transform 170ms ease, opacity 170ms ease, border-color 170ms ease;
}

.whw-signature-card:hover img {
  transform: translateY(-2px);
  border-color: rgba(200, 150, 85, 0.42);
  opacity: 0.92;
}

.whw-signature-card h3,
.whw-rotating-card h3 {
  margin: 15px 0 5px;
  color: var(--whw-ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.whw-signature-card p {
  max-width: 168px;
  margin: 0 auto;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.42;
}

/* Standard + rotating panel */

.whw-standard-area {
  padding-top: 26px;
  padding-bottom: 47px;
}

.whw-standard-area > .whw-shell {
  width: min(calc(100% - 56px), var(--whw-header-max));
}

.whw-feature-panel {
  display: grid;
  grid-template-columns:
    minmax(360px, 0.92fr)
    minmax(455px, 0.98fr)
    minmax(520px, 1.18fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(200, 150, 85, 0.20);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 22px 58px rgba(80, 55, 30, 0.055);
}

.whw-standard-image {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(200, 150, 85, 0.13);
  background: transparent;
  box-shadow: none;
}

.whw-standard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.whw-standard-card {
  min-width: 0;
  min-height: 520px;
  padding: clamp(42px, 3.6vw, 58px) clamp(26px, 2.15vw, 38px) clamp(42px, 3.6vw, 58px) clamp(30px, 2.3vw, 42px);
  border: 0;
  border-right: 1px solid rgba(200, 150, 85, 0.13);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: none;
  overflow: hidden;
}

.whw-standard-card h2 {
  max-width: 100%;
  margin: 0 0 10px;
  font-family: var(--whw-serif);
  font-size: clamp(40px, 2.55vw, 52px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.002em;
}

.whw-standard-card h2 span {
  display: inline;
  color: #bc7f41;
  white-space: nowrap;
}

.whw-standard-card h2 small {
  color: var(--whw-ink);
  font-size: 0.5em;
  letter-spacing: -0.00em;
  margin-left: -0.06em;
}

.whw-standard-card h3 {
  margin: 0 0 23px;
  font-family: var(--whw-serif);
  font-size: clamp(29px, 2.28vw, 37px);
  font-weight: 600;
  line-height: 1.20;
  letter-spacing: -0.035em;
}

.whw-standard-card > p {
  max-width: 430px;
  margin: 0 0 28px;
  color: var(--whw-ink-soft);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
}

.whw-standard-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 17px;
}

.whw-standard-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 15px;
  align-items: start;
}

.whw-standard-list span {
  color: var(--whw-gold-deep);
  font-size: 22px;
  line-height: 1;
}

.whw-standard-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--whw-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.whw-standard-list p {
  margin: 0;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.35;
}

.whw-rotating {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px clamp(34px, 2.7vw, 48px);
  border-left: 0;
  background: rgba(255, 250, 246, 0.72);
}

.whw-rotating-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(138px, 1fr));
  gap: 13px 24px;
  align-items: stretch;
}

.whw-rotating-card {
  min-width: 0;
  min-height: 140px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(200, 150, 85, 0.16);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.whw-rotating-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 150, 85, 0.42);
  background: rgba(255, 253, 249, 0.98);
}

.whw-rotating-card img {
  width: 108px;
  height: 100%;
  min-height: 140px;
  aspect-ratio: auto;
  object-fit: cover;
}

.whw-rotating-card div {
  min-width: 0;
  padding: 18px 16px;
}

.whw-rotating-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.28;
  letter-spacing: 0.108em;
}

.whw-rotating-card p {
  max-width: 195px;
  margin: 0;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.38;
}

/* Trust row */

.whw-trust-row {
  padding: 37px 0 49px;
}

.whw-trust-row__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid transparent;
}

.whw-trust-item {
  position: relative;
  text-align: center;
  padding: 0 31px;
}

.whw-trust-item + .whw-trust-item {
  border-left: 1px solid var(--whw-line);
}

.whw-trust-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.whw-trust-item h3 {
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.25;
}

.whw-trust-item p {
  max-width: 225px;
  margin: 0 auto;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.45;
}

/* Footer */

.whw-footer {
  padding: 0 0 32px;
}

.whw-footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.55fr 0.8fr 0.62fr 1fr;
  gap: clamp(30px, 4vw, 70px);
  padding: 48px 52px 50px;
  border: 1px solid rgba(200, 150, 85, 0.18);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--whw-shadow-soft);
}

.whw-footer__brand {
  text-align: center;
  padding-right: 22px;
}

.whw-footer__crest {
  width: 85px;
  margin: 0 auto 8px;
}

.whw-footer__logo {
  width: 220px;
  margin: 0 auto 18px;
}

.whw-footer__brand p,
.whw-footer__subscribe p {
  margin: 0;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 13px;
  line-height: 1.5;
}

.whw-footer h3 {
  margin: 0 0 16px;
  font-size: 11px;
}

.whw-footer__column,
.whw-footer__subscribe {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whw-footer__column a {
  margin-bottom: 9px;
  color: #2d2b28;
  font-size: 13px;
}

.whw-footer__subscribe form {
  width: 100%;
  margin-top: 19px;
}

.whw-footer__subscribe input {
  width: 100%;
  height: 48px;
  padding: 0 17px;
  border: 1px solid var(--whw-border);
  background: rgba(255, 250, 246, 0.9);
  color: var(--whw-ink);
  outline: none;
}

.whw-footer__subscribe input:focus {
  border-color: var(--whw-gold);
}

.whw-footer__subscribe button {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 0;
  background: var(--whw-gold);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(200, 150, 85, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.whw-footer__subscribe button:hover {
  background: var(--whw-gold-deep);
}

.whw-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: var(--whw-gold-deep);
  font-size: 22px;
}

.whw-copyright {
  padding-top: 26px;
  color: var(--whw-soft-muted);
  text-align: center;
  font-size: 12px;
}

/* Responsive */

@media (max-width: 1180px) {
  .whw-signature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .whw-standard-area > .whw-shell {
    width: min(calc(100% - 56px), var(--whw-max));
  }

  .whw-feature-panel {
    grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1fr);
  }

  .whw-standard-image {
    border-right: 1px solid rgba(200, 150, 85, 0.13);
  }

  .whw-standard-card {
    border-right: 0;
  }

  .whw-rotating {
    grid-column: 1 / -1;
    padding: 36px;
    border-top: 1px solid rgba(200, 150, 85, 0.13);
  }

  .whw-footer__inner {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .whw-footer__subscribe {
    grid-column: 2 / 4;
  }
}

@media (max-width: 900px) {
  .whw-shell,
  .whw-header .whw-shell,
  .whw-hero {
    width: min(calc(100% - 36px), var(--whw-header-max));
  }

  .whw-header__inner {
    min-height: 76px;
  }

  .whw-logo {
    width: 220px;
  }

  .whw-menu-toggle {
    display: block;
  }

  .whw-nav {
    display: none;
  }

  .whw-hero,
  .whw-hero__content {
    min-height: 610px;
  }

  .whw-hero__content {
    padding-left: 38px;
    padding-right: 38px;
  }

  .whw-hero__image {
    background:
      linear-gradient(90deg,
        var(--whw-bg) 0%,
        rgba(255, 248, 242, 0.96) 45%,
        rgba(255, 248, 242, 0.32) 100%),
      url("/images/worthherwhile-hero.webp") 70% center / cover no-repeat;
  }

  .whw-feature-panel {
    grid-template-columns: 1fr;
  }

  .whw-standard-image {
    min-height: 470px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 150, 85, 0.13);
  }

  .whw-standard-card {
    min-height: 0;
    border-bottom: 1px solid rgba(200, 150, 85, 0.13);
  }

  .whw-rotating {
    padding: 34px 28px;
    border-top: 0;
  }

  .whw-trust-row__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .whw-trust-item:nth-child(3) {
    border-left: 0;
  }

  .whw-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 38px 30px;
  }

  .whw-footer__brand,
  .whw-footer__subscribe {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .whw-shell,
  .whw-header .whw-shell,
  .whw-standard-area > .whw-shell {
    width: min(calc(100% - 28px), var(--whw-max));
  }

  .whw-logo {
    width: 190px;
  }

  .whw-hero {
    width: 100%;
    min-height: 585px;
    border-inline: 0;
  }

  .whw-hero__content {
    min-height: 585px;
    width: min(100%, 420px);
    padding: 54px 24px;
  }

  .whw-hero__image {
    background:
      linear-gradient(90deg,
        var(--whw-bg) 0%,
        rgba(255, 248, 242, 0.98) 56%,
        rgba(255, 248, 242, 0.38) 100%),
      url("/images/worthherwhile-hero.webp") 72% center / cover no-repeat;
  }

  .whw-hero h1 {
    font-size: clamp(58px, 17vw, 78px);
  }

  .whw-hero__text {
    max-width: 335px;
    font-size: 16px;
  }

  .whw-button {
    min-width: 190px;
  }

  .whw-section-title {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .whw-section-title span {
    width: min(240px, 85%);
    margin-inline: auto;
  }

  .whw-section-title h2 {
    font-size: 15px;
    letter-spacing: 0.24em;
  }

  .whw-signature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
  }

  .whw-signature-card h3 {
    font-size: 10px;
    letter-spacing: 0.105em;
  }

  .whw-signature-card p {
    max-width: 150px;
    font-size: 12px;
  }

  .whw-standard-card {
    padding: 34px 24px;
  }

  .whw-standard-card h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .whw-standard-card h2 span {
    white-space: normal;
  }

  .whw-standard-image {
    min-height: 390px;
  }

  .whw-rotating {
    padding: 32px 22px;
  }

  .whw-rotating-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .whw-rotating-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 130px;
  }

  .whw-rotating-card img {
    width: 104px;
    min-height: 130px;
  }

  .whw-rotating-card h3 {
    font-size: 10px;
  }

  .whw-rotating-card p {
    font-size: 12px;
  }

  .whw-trust-row__inner {
    grid-template-columns: 1fr;
  }

  .whw-trust-item,
  .whw-trust-item + .whw-trust-item,
  .whw-trust-item:nth-child(3) {
    border-left: 0;
  }

  .whw-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 22px;
  }

  .whw-footer__subscribe {
    grid-column: auto;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com rotating image left-corner radius
   Rounds only the image/card left edge in the Rotating Sections cards.
-------------------------------------------------------------------------- */

.whw-rotating-card {
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}

.whw-rotating-card img {
  border-radius: 10px 0 0 10px;
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com final panel/hero/footer rounding
   - Hero gets the rounded mockup-style border.
   - Standard image rounds top-left and bottom-left only.
   - Standard white copy panel gets all corners rounded plus a subtle shadow.
   - Rotating section rounds top-right and bottom-right.
   - Footer/bottom section gets rounded corners.
-------------------------------------------------------------------------- */

.whw-hero {
  border: 1px solid rgba(200, 150, 85, 0.16);
  border-radius: 18px;
  overflow: hidden;
}

.whw-feature-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.whw-standard-image {
  border: 1px solid rgba(200, 150, 85, 0.13);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  overflow: hidden;
}

.whw-standard-image img {
  border-radius: 18px 0 0 18px;
}

.whw-standard-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(200, 150, 85, 0.14);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 44px rgba(80, 55, 30, 0.10);
}

.whw-rotating {
  border: 1px solid rgba(200, 150, 85, 0.14);
  border-left: 0;
  border-radius: 0 18px 18px 0;
  background: rgba(255, 250, 246, 0.78);
}

.whw-rotating-card {
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}

.whw-rotating-card img {
  border-radius: 10px 0 0 10px;
}

.whw-footer__inner {
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .whw-feature-panel {
    border: 1px solid rgba(200, 150, 85, 0.16);
    border-radius: 18px;
    overflow: hidden;
  }

  .whw-standard-image,
  .whw-standard-image img {
    border-radius: 18px 18px 0 0;
  }

  .whw-standard-card {
    border-radius: 0;
    box-shadow: none;
  }

  .whw-rotating {
    border-left: 1px solid rgba(200, 150, 85, 0.14);
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 640px) {
  .whw-hero,
  .whw-feature-panel,
  .whw-footer__inner {
    border-radius: 14px;
  }

  .whw-standard-image,
  .whw-standard-image img {
    border-radius: 14px 14px 0 0;
  }

  .whw-rotating {
    border-radius: 0 0 14px 14px;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com standard panel refinement pass 2
   - Keep the white card nearly the full height of the image.
   - Overlap horizontally so the image edge is hidden.
   - Add stronger right/bottom shadow like the mockup.
-------------------------------------------------------------------------- */

.whw-standard-image {
  position: relative;
  z-index: 1;
}

.whw-standard-card {
  position: relative;
  z-index: 3;
  align-self: stretch;
  margin: 0 -16px 0 -15px;
  min-height: 100%;
}

.whw-rotating {
  position: relative;
  z-index: 1;
  padding-left: clamp(40px, 2.7vw, 52px);
}

@media (max-width: 1180px) {
  .whw-standard-card {
    margin: 0 -12px 0 -22px;
  }

  .whw-rotating {
    padding-left: 34px;
  }
}

@media (max-width: 900px) {
  .whw-standard-card {
    margin: 0;
    min-height: auto;
    box-shadow: none;
  }

  .whw-rotating {
    padding-left: 28px;
  }
}

@media (max-width: 640px) {
  .whw-standard-card {
    margin: 0;
  }

  .whw-rotating {
    padding-left: 22px;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com rotating card right-corner polish
   Rounds the outer right corners of the Rotating Sections cards only.
-------------------------------------------------------------------------- */

.whw-rotating-card {
  border-radius: 10px;
  overflow: hidden;
}

.whw-rotating-card img {
  border-radius: 10px 0 0 10px;
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com mobile polish pass
   Hero intentionally untouched.
   Refines mobile rhythm for Signature, Standard, Rotating, Trust, and Footer.
-------------------------------------------------------------------------- */

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .whw-section {
    padding: 36px 0;
  }

  .whw-section-title {
    margin-bottom: 22px;
  }

  .whw-section-title h2 {
    font-size: 13px;
    letter-spacing: 0.22em;
  }

  /* Signature sections */
  .whw-signature {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .whw-signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .whw-signature-card img {
    border-radius: 12px;
  }

  .whw-signature-card h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.22;
    letter-spacing: 0.105em;
  }

  .whw-signature-card p {
    max-width: 150px;
    font-size: 12px;
    line-height: 1.35;
  }

  /* Standard block */
  .whw-standard-area {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .whw-feature-panel {
    border-radius: 16px;
    overflow: hidden;
  }

  .whw-standard-image {
    min-height: 430px;
    border-radius: 16px 16px 0 0;
  }

  .whw-standard-image img {
    border-radius: 16px 16px 0 0;
  }

  .whw-standard-card {
    padding: 32px 24px 34px;
    border-radius: 0;
  }

  .whw-standard-card h2 {
    margin-bottom: 9px;
    font-size: clamp(36px, 11vw, 47px);
    line-height: 0.96;
  }

  .whw-standard-card h2 span {
    white-space: normal;
  }

  .whw-standard-card h2 small {
    font-size: 0.42em;
  }

  .whw-standard-card h3 {
    margin-bottom: 18px;
    font-size: clamp(27px, 8.4vw, 34px);
    line-height: 1.05;
  }

  .whw-standard-card > p {
    margin-bottom: 23px;
    font-size: 14px;
    line-height: 1.55;
  }

  .whw-standard-list {
    gap: 15px;
    margin-bottom: 26px;
  }

  .whw-standard-list li {
    grid-template-columns: 24px 1fr;
    gap: 13px;
  }

  .whw-standard-list span {
    font-size: 19px;
  }

  .whw-standard-list strong {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .whw-standard-list p {
    font-size: 12px;
  }

  .whw-standard-card .whw-button,
  .whw-standard-card .whw-button--small {
    width: 100%;
    max-width: 245px;
    min-height: 48px;
  }

  /* Rotating sections */
  .whw-rotating {
    padding: 30px 18px 24px;
    border-radius: 0 0 16px 16px;
  }

  .whw-section-title--compact {
    margin-bottom: 20px;
  }

  .whw-rotating-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 13px;
  }

  .whw-rotating-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 112px;
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.92);
  }

  .whw-rotating-card img {
    width: 96px;
    min-height: 112px;
    border-radius: 12px 0 0 12px;
  }

  .whw-rotating-card div {
    padding: 15px 15px 14px;
  }

  .whw-rotating-card h3 {
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.22;
    letter-spacing: 0.11em;
  }

  .whw-rotating-card p {
    max-width: none;
    font-size: 12px;
    line-height: 1.35;
  }

  /* Trust row */
  .whw-trust-row {
    padding: 32px 0 36px;
  }

  .whw-trust-row__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .whw-trust-item,
  .whw-trust-item + .whw-trust-item,
  .whw-trust-item:nth-child(3) {
    border-left: 0;
  }

  .whw-trust-item {
    padding: 0 16px;
  }

  .whw-trust-item img {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .whw-trust-item h3 {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .whw-trust-item p {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.4;
  }

  /* Footer */
  .whw-footer {
    padding-bottom: 24px;
  }

  .whw-footer__inner {
    gap: 24px;
    padding: 30px 22px;
    border-radius: 16px;
  }

  .whw-footer__crest {
    width: 78px;
    margin-bottom: 8px;
  }

  .whw-footer__logo {
    width: 190px;
    margin-bottom: 13px;
  }

  .whw-footer__brand {
    padding-right: 0;
  }

  .whw-footer__brand p,
  .whw-footer__subscribe p {
    font-size: 12px;
    line-height: 1.45;
  }

  .whw-footer h3 {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .whw-footer__column a {
    margin-bottom: 7px;
    font-size: 12px;
  }

  .whw-footer__subscribe form {
    margin-top: 14px;
  }

  .whw-footer__subscribe input,
  .whw-footer__subscribe button {
    height: 44px;
  }

  .whw-socials {
    margin-top: 15px;
    gap: 16px;
    font-size: 24px;
  }

  .whw-copyright {
    padding-top: 20px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .whw-signature-grid {
    gap: 22px 14px;
  }

  .whw-signature-card h3,
  .whw-rotating-card h3 {
    font-size: 9px;
  }

  .whw-rotating-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .whw-rotating-card img {
    width: 88px;
  }

  .whw-rotating-card div {
    padding: 13px 12px;
  }

  .whw-trust-row__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   Subscribe modal
   Light champagne/gold popup using the current WorthHerWhile.com palette.
-------------------------------------------------------------------------- */

body.modal-open {
  overflow: hidden;
}

.whw-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.whw-subscribe-modal.is-open {
  display: flex;
}

.whw-subscribe-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(200, 150, 85, 0.18), transparent 30rem),
    rgba(18, 17, 15, 0.48);
  backdrop-filter: blur(8px);
}

.whw-subscribe-modal__panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid rgba(200, 150, 85, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 179, 125, 0.16), transparent 18rem),
    rgba(255, 253, 249, 0.98);
  box-shadow:
    0 28px 80px rgba(18, 17, 15, 0.30),
    0 18px 44px rgba(80, 55, 30, 0.18);
  color: var(--whw-ink);
  text-align: center;
}

.whw-subscribe-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 150, 85, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.9);
  color: var(--whw-muted);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.whw-subscribe-modal__close:hover {
  transform: translateY(-1px);
  background: var(--whw-gold);
  color: #fff;
}

.whw-subscribe-modal__crest {
  width: 92px;
  height: auto;
  margin: 0 auto 12px;
}

.whw-subscribe-modal__eyebrow {
  margin: 0 0 12px;
  color: var(--whw-gold-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.whw-subscribe-modal h2 {
  margin: 0 0 12px;
  font-family: var(--whw-serif);
  font-size: clamp(44px, 7vw, 44px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.whw-subscribe-modal__text {
  max-width: 390px;
  margin: 0 auto 26px;
  color: var(--whw-muted);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
}

.whw-subscribe-modal__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 390px;
  margin: 0 auto;
}

.whw-subscribe-modal__form input {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid rgba(200, 150, 85, 0.28);
  border-radius: 0;
  background: rgba(255, 250, 246, 0.95);
  color: var(--whw-ink);
  outline: none;
}

.whw-subscribe-modal__form input:focus {
  border-color: var(--whw-gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 85, 0.13);
}

.whw-subscribe-modal__form button {
  min-height: 52px;
  border: 1px solid var(--whw-gold);
  background: var(--whw-gold);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(200, 150, 85, 0.16);
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.whw-subscribe-modal__form button:hover {
  transform: translateY(-1px);
  background: var(--whw-gold-deep);
  border-color: var(--whw-gold-deep);
}

.whw-subscribe-modal__fineprint {
  max-width: 360px;
  margin: 16px auto 0;
  color: var(--whw-soft-muted);
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .whw-subscribe-modal {
    padding: 18px;
  }

  .whw-subscribe-modal__panel {
    padding: 36px 22px 28px;
    border-radius: 18px;
  }

  .whw-subscribe-modal__crest {
    width: 78px;
  }

  .whw-subscribe-modal h2 {
    font-size: clamp(38px, 13vw, 30px);
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com standard-card image icon replacements
   Uses WebP icons in the Standard card instead of text glyphs.
-------------------------------------------------------------------------- */

.whw-standard-icon {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .whw-standard-icon {
    width: 20px;
    height: 20px;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com mobile navigation menu
   Enables the hamburger menu without changing the desktop navigation.
-------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .whw-header {
    position: relative;
    z-index: 100;
  }

  .whw-header__inner {
    position: relative;
  }

  .whw-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    cursor: pointer;
    border-radius: 999px;
    transition: background 160ms ease, border-color 160ms ease;
  }

  .whw-menu-toggle:hover,
  .whw-menu-toggle.is-open {
    background: rgba(255, 253, 249, 0.78);
  }

  .whw-menu-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .whw-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .whw-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .whw-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .whw-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(200, 150, 85, 0.20);
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 0%, rgba(216, 179, 125, 0.12), transparent 16rem),
      rgba(255, 253, 249, 0.98);
    box-shadow:
      0 18px 46px rgba(80, 55, 30, 0.14),
      0 10px 24px rgba(80, 55, 30, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 170ms ease,
      visibility 170ms ease,
      transform 170ms ease;
  }

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

  .whw-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(200, 150, 85, 0.11);
  }

  .whw-nav a:last-child {
    border-bottom: 0;
  }

  .whw-nav__button {
    width: 100%;
    margin-top: 8px;
    border-bottom: 1px solid var(--whw-gold);
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com darker champagne button gradient
   Matches the deeper gold button treatment from the approved mockup.
-------------------------------------------------------------------------- */

.whw-nav__button,
.whw-button,
.whw-footer__subscribe button,
.whw-subscribe-modal__form button {
  background:
    linear-gradient(180deg, #d2a15f 0%, #bd8543 48%, #a87335 100%);
  border-color: #a87335;
  color: #fff;
  box-shadow:
    0 14px 26px rgba(168, 115, 53, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.whw-nav__button:hover,
.whw-button:hover,
.whw-footer__subscribe button:hover,
.whw-subscribe-modal__form button:hover {
  background:
    linear-gradient(180deg, #c59251 0%, #aa7033 52%, #8f5b29 100%);
  border-color: #8f5b29;
  color: #fff;
  opacity: 0.98;
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com hero overlay tone/width refinement
   Reduces how far the light overlay reaches into the image and makes it
   warm ivory/taupe instead of flat white.
-------------------------------------------------------------------------- */

.whw-hero__image {
  background:
    linear-gradient(90deg,
      rgba(255, 248, 242, 0.94) 0%,
      rgba(252, 241, 230, 0.91) 18%,
      rgba(248, 234, 218, 0.74) 31%,
      rgba(238, 219, 199, 0.45) 42%,
      rgba(222, 194, 166, 0.18) 52%,
      rgba(222, 194, 166, 0.04) 61%,
      rgba(222, 194, 166, 0) 68%),
    url("/images/worthherwhile-hero.webp") center right / cover no-repeat;
}

@media (max-width: 900px) {
  .whw-hero__image {
    background:
      linear-gradient(90deg,
        rgba(255, 248, 242, 0.95) 0%,
        rgba(252, 241, 230, 0.91) 32%,
        rgba(244, 228, 210, 0.66) 48%,
        rgba(225, 198, 170, 0.28) 66%,
        rgba(225, 198, 170, 0.06) 82%),
      url("/images/worthherwhile-hero.webp") 70% center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .whw-hero__image {
    background:
      linear-gradient(90deg,
        rgba(255, 248, 242, 0.96) 0%,
        rgba(252, 241, 230, 0.93) 46%,
        rgba(244, 228, 210, 0.68) 62%,
        rgba(225, 198, 170, 0.25) 82%),
      url("/images/worthherwhile-hero.webp") 72% center / cover no-repeat;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com mockup color/font sync
   Muted ivory/champagne palette, deeper left-to-right button gradient,
   softer panels/footers, and section-title color tuning.
   Hero "well." italic styling is intentionally left unchanged.
-------------------------------------------------------------------------- */

:root {
  --whw-bg: #f7eee5;
  --whw-bg-soft: #fbf5ee;
  --whw-panel: #fffaf3;
  --whw-panel-warm: #f8efe6;

  --whw-ink: #12110f;
  --whw-ink-soft: #2b241d;
  --whw-muted: #6d604f;
  --whw-soft-muted: #917f6b;

  --whw-gold: #c7924f;
  --whw-gold-deep: #9d6632;
  --whw-gold-soft: #d2ae78;

  --whw-border: rgba(158, 103, 50, 0.22);
  --whw-border-soft: rgba(158, 103, 50, 0.12);
  --whw-border-strong: rgba(158, 103, 50, 0.42);
  --whw-line: rgba(158, 103, 50, 0.25);

  --whw-shadow: 0 18px 45px rgba(74, 49, 27, 0.055);
  --whw-shadow-soft: 0 22px 70px rgba(74, 49, 27, 0.075);

  --whw-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --whw-sans: "Montserrat", "Inter", "Helvetica Neue", Arial, sans-serif;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 103, 50, 0.045), transparent 34rem),
    linear-gradient(180deg, #fbf6ef 0%, #f7eee5 46%, #fbf1e8 100%);
  color: var(--whw-ink);
}

.whw-header {
  background: rgba(251, 246, 239, 0.96);
  border-bottom-color: rgba(158, 103, 50, 0.16);
}

.whw-eyebrow,
.whw-hero__note,
.whw-footer h3,
.whw-policy-item h3,
.whw-policy-updated,
.whw-contact-card__eyebrow,
.whw-contact-method h3,
.whw-contact-lower h3,
.whw-subscribe-modal__eyebrow {
  color: var(--whw-gold-deep);
}

.whw-section-title h2,
.whw-section-title--compact h2 {
  color: var(--whw-gold-deep);
  font-weight: 900;
}

.whw-section-title span {
  background: var(--whw-gold-deep);
  opacity: 0.35;
}

.whw-small-rule {
  background: var(--whw-gold);
}

.whw-nav__button,
.whw-button,
.whw-footer__subscribe button,
.whw-subscribe-modal__form button {
  background:
    linear-gradient(90deg, #9a622f 0%, #b87a3a 48%, #d09a55 100%);
  border-color: #9a622f;
  color: #fff;
  box-shadow:
    0 14px 26px rgba(113, 72, 34, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.whw-nav__button:hover,
.whw-button:hover,
.whw-footer__subscribe button:hover,
.whw-subscribe-modal__form button:hover {
  background:
    linear-gradient(90deg, #805020 0%, #9f642c 50%, #bd7c37 100%);
  border-color: #805020;
  color: #fff;
  opacity: 0.98;
}

.whw-footer__inner {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 174, 120, 0.10), transparent 22rem),
    rgba(255, 250, 243, 0.86);
  border-color: rgba(158, 103, 50, 0.16);
  box-shadow: var(--whw-shadow-soft);
}

.whw-footer__brand p,
.whw-footer__subscribe p,
.whw-footer__column a {
  color: var(--whw-muted);
}

.whw-footer__subscribe input,
.whw-subscribe-modal__form input {
  background: rgba(255, 250, 243, 0.94);
  border-color: rgba(158, 103, 50, 0.22);
  font-size:12px;
}

.whw-subscribe-modal__panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 174, 120, 0.16), transparent 18rem),
    rgba(255, 250, 243, 0.98);
  border-color: rgba(158, 103, 50, 0.24);
}

/* Homepage-specific mockup color tuning */

.whw-signature {
  background:
    linear-gradient(180deg, rgba(251, 246, 239, 0.96) 0%, rgba(248, 239, 230, 0.94) 100%);
}

.whw-standard-area {
  background: linear-gradient(180deg, #f8efe6 0%, #fbf1e8 100%);
}

.whw-standard-card {
  background:
    radial-gradient(circle at 72% 0%, rgba(210, 174, 120, 0.08), transparent 18rem),
    rgba(255, 250, 243, 0.98);
  border-color: rgba(158, 103, 50, 0.13);
}

.whw-standard-card h2 span {
  color: #bc7f41;
}

/* Keep the hero italic word's font/style intact; only root color controls its tone. */

.whw-rotating {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 174, 120, 0.10), transparent 20rem),
    rgba(248, 239, 230, 0.82);
  border-color: rgba(158, 103, 50, 0.13);
}

.whw-rotating-card {
  background: rgba(255, 250, 243, 0.90);
  border-color: rgba(158, 103, 50, 0.13);
}

.whw-rotating-card:hover {
  border-color: rgba(158, 103, 50, 0.34);
  background: rgba(255, 250, 243, 0.98);
}

.whw-trust-row {
  background: linear-gradient(180deg, #fbf1e8 0%, #f8efe6 100%);
}

.whw-trust-item h3 {
  color: var(--whw-gold-deep);
}

.whw-trust-item p,
.whw-signature-card p,
.whw-rotating-card p,
.whw-standard-list p,
.whw-standard-card > p {
  color: var(--whw-muted);
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com force mockup background match
   Strong final overrides for the homepage only.
   This intentionally pushes the Standard panel, Rotating panel, page background,
   footer panel, section-title colors, and button gradient closer to the mockup.
   Hero "well." typography is not changed.
-------------------------------------------------------------------------- */

:root {
  --whw-bg: #f4eadf;
  --whw-bg-soft: #f9f2ea;
  --whw-panel: #fbf4ec;
  --whw-panel-warm: #f1e4d8;

  --whw-gold: #c6904f;
  --whw-gold-deep: #9b622e;
  --whw-gold-soft: #d0aa75;

  --whw-muted: #6b5f51;
  --whw-soft-muted: #8d7c68;

  --whw-border: rgba(155, 98, 46, 0.22);
  --whw-border-soft: rgba(155, 98, 46, 0.13);
  --whw-line: rgba(155, 98, 46, 0.25);

  --whw-shadow: 0 18px 45px rgba(72, 48, 28, 0.065);
  --whw-shadow-soft: 0 24px 74px rgba(72, 48, 28, 0.09);
}

html,
body {
  background-color: #f4eadf !important;
}

body {
  background:
    radial-gradient(circle at 50% -4%, rgba(196, 145, 87, 0.07), transparent 34rem),
    linear-gradient(180deg, #fbf7f1 0%, #f7eee5 24%, #f1e4d8 67%, #f6ede4 100%) !important;
}

/* Header remains light, but warmer than white */
.whw-header {
  background: rgba(250, 244, 236, 0.97) !important;
  border-bottom-color: rgba(155, 98, 46, 0.15) !important;
}

/* Main section bands */
.whw-signature {
  background: linear-gradient(180deg, #fbf7f1 0%, #f7eee5 100%) !important;
}

.whw-standard-area {
  background: linear-gradient(180deg, #f1e4d8 0%, #f4eadf 58%, #f1e4d8 100%) !important;
}

.whw-trust-row {
  background: linear-gradient(180deg, #f1e4d8 0%, #f4eadf 100%) !important;
}

/* Section headings/rules */
.whw-section-title h2,
.whw-section-title--compact h2 {
  color: #9b622e !important;
  font-weight: 800 !important;
}

.whw-section-title span {
  background: #b9834a !important;
  opacity: 0.42 !important;
}

/* Feature panel should not add a white wash */
.whw-feature-panel {
  background: transparent !important;
  box-shadow: none !important;
}

/* The WorthHerWhile.com Standard card: force it off stark white */
.whw-standard-card {
  background:
    radial-gradient(circle at 78% 0%, rgba(208, 170, 117, 0.16), transparent 18rem),
    linear-gradient(180deg, #fbf3ea 0%, #f7ede3 58%, #f4e8dc 100%) !important;
  border-color: rgba(155, 98, 46, 0.16) !important;
}

.whw-standard-card h2 span {
  color: #bc7f41 !important;
}

/* Rotating section background/card tone */
.whw-rotating {
  background:
    radial-gradient(circle at 52% 0%, rgba(208, 170, 117, 0.14), transparent 18rem),
    linear-gradient(180deg, #f2e5d9 0%, #eee0d2 100%) !important;
  border-color: rgba(155, 98, 46, 0.15) !important;
}

.whw-rotating-card {
  background: #fbf3ea !important;
  border-color: rgba(155, 98, 46, 0.14) !important;
}

.whw-rotating-card:hover {
  background: #fff8f1 !important;
  border-color: rgba(155, 98, 46, 0.34) !important;
}

/* Footer section and footer card */
.whw-footer {
  background: linear-gradient(180deg, #f4eadf 0%, #f1e4d8 100%) !important;
}

.whw-footer__inner {
  background:
    radial-gradient(circle at 16% 0%, rgba(208, 170, 117, 0.13), transparent 20rem),
    linear-gradient(180deg, #fbf3ea 0%, #f7ede3 100%) !important;
  border-color: rgba(155, 98, 46, 0.16) !important;
  box-shadow:
    0 24px 74px rgba(72, 48, 28, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

/* Text color harmonization */
.whw-eyebrow,
.whw-hero__note,
.whw-trust-item h3,
.whw-footer h3 {
  color: #9b622e !important;
}

.whw-standard-card > p,
.whw-standard-list p,
.whw-signature-card p,
.whw-rotating-card p,
.whw-trust-item p,
.whw-footer__brand p,
.whw-footer__subscribe p,
.whw-footer__column a,
.whw-copyright {
  color: #6b5f51 !important;
}

/* Buttons: darker left-to-right gradient like the mockup */
.whw-nav__button,
.whw-button,
.whw-footer__subscribe button,
.whw-subscribe-modal__form button {
  background:
    linear-gradient(90deg, #8c5425 0%, #aa6930 47%, #cb9250 100%) !important;
  border-color: #8c5425 !important;
  color: #ffffff !important;
  box-shadow:
    0 14px 26px rgba(102, 63, 30, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.whw-nav__button:hover,
.whw-button:hover,
.whw-footer__subscribe button:hover,
.whw-subscribe-modal__form button:hover {
  background:
    linear-gradient(90deg, #744118 0%, #925421 48%, #b97434 100%) !important;
  border-color: #744118 !important;
  color: #ffffff !important;
  opacity: 0.98 !important;
}

/* Inputs/modal */
.whw-footer__subscribe input,
.whw-subscribe-modal__form input {
  background: #fff8f1 !important;
  border-color: rgba(155, 98, 46, 0.22) !important;
}

.whw-subscribe-modal__panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(208, 170, 117, 0.16), transparent 18rem),
    #fbf3ea !important;
  border-color: rgba(155, 98, 46, 0.24) !important;
}

@media (max-width: 900px) {
  .whw-standard-card {
    box-shadow: none !important;
    background:
      linear-gradient(180deg, #fbf3ea 0%, #f7ede3 100%) !important;
  }

  .whw-rotating {
    background:
      radial-gradient(circle at 50% 0%, rgba(208, 170, 117, 0.13), transparent 18rem),
      linear-gradient(180deg, #f2e5d9 0%, #eee0d2 100%) !important;
  }
}

@media (max-width: 640px) {
  html,
  body {
    background-color: #f4eadf !important;
  }

  body {
    background:
      radial-gradient(circle at 50% -5%, rgba(196, 145, 87, 0.06), transparent 24rem),
      linear-gradient(180deg, #fbf7f1 0%, #f4eadf 42%, #f1e4d8 100%) !important;
  }

  .whw-standard-card {
    background:
      linear-gradient(180deg, #fbf3ea 0%, #f7ede3 100%) !important;
  }
}

/* --------------------------------------------------------------------------
   WorthHerWhile.com hero overlay shorter fade pass
   Pulls the light overlay back to the left so the flowers, dresser, and
   right-side closet image read more clearly like the mockup.
-------------------------------------------------------------------------- */

.whw-hero__image {
  background:
    linear-gradient(90deg,
      rgba(255, 248, 242, 0.96) 0%,
      rgba(252, 241, 230, 0.92) 18%,
      rgba(248, 234, 218, 0.70) 28%,
      rgba(238, 219, 199, 0.40) 36%,
      rgba(222, 194, 166, 0.14) 44%,
      rgba(222, 194, 166, 0.03) 49%,
      rgba(222, 194, 166, 0) 53%),
    url("/images/worthherwhile-hero.webp") center right / cover no-repeat !important;
}

@media (max-width: 900px) {
  .whw-hero__image {
    background:
      linear-gradient(90deg,
        rgba(255, 248, 242, 0.96) 0%,
        rgba(252, 241, 230, 0.91) 36%,
        rgba(244, 228, 210, 0.60) 52%,
        rgba(225, 198, 170, 0.24) 68%,
        rgba(225, 198, 170, 0.05) 82%,
        rgba(225, 198, 170, 0) 92%),
      url("/images/worthherwhile-hero.webp") 70% center / cover no-repeat !important;
  }
}

@media (max-width: 640px) {
  .whw-hero__image {
    background:
      linear-gradient(90deg,
        rgba(255, 248, 242, 0.97) 0%,
        rgba(252, 241, 230, 0.93) 46%,
        rgba(244, 228, 210, 0.62) 62%,
        rgba(225, 198, 170, 0.24) 78%,
        rgba(225, 198, 170, 0.05) 90%),
      url("/images/worthherwhile-hero.webp") 72% center / cover no-repeat !important;
  }
}
