* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --wb-primary: #FBDC30;
  --wb-primary-deep: #fbea81;
  --wb-accent: #6b7280;
  --wb-accent-soft: #ebe4d6;
  --wb-text: #6f7277;
  --wb-text-strong: #2f3133;
  --wb-border: rgba(221, 213, 198, 0.72);
  --wb-card: rgba(255, 255, 255, 0.82);
  --wb-card-strong: rgba(255, 255, 255, 0.94);
  --wb-shadow: 0 26px 60px rgba(47, 49, 51, 0.12);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--wb-text);
  background: #fff;
  overflow-x: hidden;
}

.wb-sub-page {
  position: relative;
  z-index: 1;
}

main.wb-sub-page {
  position: relative;
  isolation: isolate;
  padding-bottom: 10px;
}

main.wb-sub-page::before,
main.wb-sub-page::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  pointer-events: none;
  z-index: -1;
}

main.wb-sub-page::before {
  top: 420px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 68%);
}

main.wb-sub-page::after {
  bottom: 140px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 225, 214, 0.72) 0%, rgba(230, 225, 214, 0) 68%);
}

.wb-sub-page section {
  position: relative;
}

.wb-shell {
  /* height: 70vh; */
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
}

.wb-reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: wbFadeUp 0.85s ease forwards;
}

.wb-sub-hero,
.wb-sub-section,
.wb-sub-cta {
  animation-delay: 0.08s;
  margin-top: 0;
}

.wb-sub-section:nth-of-type(2) {
  animation-delay: 0.2s;
}

.wb-sub-section:nth-of-type(3) {
  animation-delay: 0.32s;
}

.wb-sub-section:nth-of-type(4) {
  animation-delay: 0.44s;
}

.wb-sub-hero {
  padding-top: 10px;
  overflow: hidden;
}

.wb-sub-hero .wb-shell {
  width: 100%;
  max-width: none;
}

.wb-sub-hero-card {
  position: relative;
  display: flex;
  align-items: center;
	justify-content:flex-start;
  aspect-ratio: auto;     /* remove fixed height */
 
  height:70vh;
  min-height: 0;
  padding: 42px 54px 28px;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.55), rgba(230, 225, 214, 0.16));
  box-shadow: 0 12px 28px rgba(47, 49, 51, 0.12);
  overflow: hidden;
}

.wb-sub-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Gray → Transparent Gradient */
  background: linear-gradient(
      90deg,
      rgba(44, 41, 36, 0.95) 0%,
      rgba(44, 41, 36, 0.86) 35%,
      rgba(44, 41, 36, 0) 70%
    );

  z-index: 1;
  pointer-events: none;
}




.wb-sub-copy,
.wb-sub-visual {
  position: relative;
  z-index: 2;
}

.wb-sub-copy {
  max-width: min(35%, 540px);
  width: 100%;
  padding-bottom: 0;
  align-self: start;
  z-index: 3;
}

.wb-sub-copy > * {
  position: relative;
  z-index: 2;
}

.wb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--wb-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px rgba(47, 49, 51, 0.08);
}

.wb-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wb-primary);
  box-shadow: 0 0 0 7px rgba(212, 160, 23, 0.14);
}

.wb-sub-copy h1{
   letter-spacing: -0.03em;
  font-family: "Cormorant Garamond", serif;
  color:#fff;
}

.wb-section-title h2,
.wb-sub-cta h2 {
  font-family: "Cormorant Garamond", serif;
  color: #000;
  letter-spacing: -0.03em;
}

.wb-sub-copy h1 {
  margin-top: 42px;
  font-size: clamp(2.7rem, 4vw, 4.1rem);
  line-height: 0.9;
}

.wb-sub-copy h1 span {
  display: block;
  font-style: italic;
  font-weight: 500;
 color: var(--wb-primary) ;
}

.wb-sub-copy p {
  margin-top: 14px;
  max-width: 520px;
  font-size: 0.94rem;
  line-height: 1.48;
  color: white;
}

.wb-sub-actions {
  margin-top: 20px;
  z-index: 4;
}

.wb-btn-primary1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 24px;
  border-radius: 12px;
  background-color: transparent !important;
  border:var(--wb-primary) 3px solid !important;
  /* color:#fff !important; */
color: #FBDC30 !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(184, 134, 11, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}


.wb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 24px;
  border-radius: 12px;
  background-color: transparent;
  border:#000 3px solid;
  color:#000;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(184, 134, 11, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}


.wb-btn-primary1:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 24px;
  border-radius: 12px;
  background-color: #FBDC30 !important;
  border:var(--wb-primary) 3px solid !important;
  color:#fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(184, 134, 11, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.wb-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(184, 134, 11, 0.3);
  color: #373028;
  background: var(--wb-primary);
  
  filter: saturate(1.05);
}

.wb-sub-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wb-sub-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0) 0 56%, rgba(255, 255, 255, 0.96) 57% 70%, rgba(242, 237, 228, 0.84) 71% 77%, rgba(255, 255, 255, 0) 78%);
  pointer-events: none;
}


.wb-sub-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

.wb-sub-section {
  padding: 10px 0;
}

.wb-sub-hero + .wb-sub-section {
  padding-top: 40px;
}

.wb-glass {
  border: 1px solid var(--wb-border);
  border-radius: 30px;
  background: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #FFFFFF 50%,
  #FBDC30 120%
);
  box-shadow: var(--wb-shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}


.wb-section-grid {
  background:linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #FFFFFF 50%,
  #FBDC30 120%
);
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.78fr);
  gap: 12px;
  align-items: start;
  min-height: 0;
  padding: 12px 14px;
}

.wb-section-grid > div:first-child {
  align-self: start;
}

.wb-section-title h2 {
  font-size: clamp(1.6rem, 2.05vw, 2rem);
  line-height: 1.02;
}

.wb-section-title p {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wb-section-divider {
  width: 100%;
  max-width: 220px;
  height: 1px;
  margin: 6px 0 10px;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.46), rgba(212, 160, 23, 0.04));
}

.wb-rich-text ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.wb-rich-text li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #000;
}

.wb-rich-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}

.wb-media-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: none;
  align-self: start;
  border: 1px solid transparent;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 231, 221, 0.72));
  box-shadow: 0 20px 44px rgba(47, 49, 51, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wb-media-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -16% 12%;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(10px);
}

.wb-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wb-media-card:hover img {
  transform: scale(1.04);
}

.wb-media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(47, 49, 51, 0.16);
  border-color: #d4a017;
}

.wb-steps-shell {
  padding: 18px 20px;
 background: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #FFFFFF 50%,
  #FBDC30 120%
);
}

.wb-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.wb-step-card {
  min-height: 250px;
  padding: 14px;
  border: 2px solid #000;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(47, 49, 51, 0.11);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wb-step-card:hover,
.wb-reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 42px rgba(47, 49, 51, 0.16);
}

.wb-step-top {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--wb-primary);
}

.wb-step-number {
  color:#000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.wb-step-title {
  color:#000;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.35;
}

.wb-step-card p {
  margin-top: 6px;
  font-size: 0.84rem;
  line-height: 1.4;
  color: #000;
}

.wb-step-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 128px;
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(228, 222, 209, 0.72));
}

.wb-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-reasons-shell {
  padding: 22px 24px 24px;
}

.wb-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.wb-reason-card {
  background: #fff;
  padding: 14px 12px;
  text-align: center;
  border: 2px solid #000;
  border-radius: 22px;
 
  box-shadow: 0 14px 28px rgba(47, 49, 51, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wb-reason-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 2px solid var(--wb-primary);
  background: transparent;
  color: var(--wb-accent);
  font-size: 1.25rem;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.wb-reason-card:hover .wb-reason-icon {
  background:#fff;
  color: #000;
}

.wb-reason-card h3 {
  font-size: 0.9rem;
  color: black;
  font-weight: 500;
}

.wb-reason-card p {
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #000;
}

.wb-sub-cta {
  padding: 10px 0 0;
}

.wb-cta-shell {
  padding: 24px 24px;
  text-align: center;
}

.wb-sub-cta h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.wb-sub-cta p {
  max-width: 660px;
  margin: 8px auto 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #000;
}

.wb-sub-cta .wb-btn-primary {
  margin-top: 14px;
}

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

@keyframes wbFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .wb-section-grid {
    grid-template-columns: 1fr;
  }

  .wb-sub-hero-card {
    height: 40vh;
    aspect-ratio: 1600 / 620;
    padding: 45px 24px 52px;
  }

  .wb-sub-copy {
    max-width: min(46%, 520px);
    padding-bottom: 0;
  }

  .wb-sub-copy p {
    max-width: none;
  }

  .wb-sub-visual img {
    min-height: 100%;
  }

  .wb-media-card {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .wb-steps-grid {
    grid-template-columns: 1fr;
  }

  .wb-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  main.wb-sub-page {
    padding-bottom: 10px;
  }

  .wb-sub-copy {
    max-width: min(52%, 480px);
  }

  .wb-sub-copy h1 {
    font-size: clamp(2.3rem, 5vw, 3.4rem);
  }

  .wb-sub-copy p {
    max-width: 420px;
    font-size: 0.9rem;
  }

  .wb-btn-primary {
    min-width: 184px;
    padding: 12px 20px;
  }

  .wb-step-card {
    min-height: 220px;
  }

  .wb-step-visual {
    height: 112px;
  }

  .wb-reason-card {
    padding: 12px 10px;
  }
}

@media (max-width: 720px) {
  .wb-shell {
    width: min(100%, calc(100% - 16px));
  }

  .wb-sub-hero .wb-shell {
    width: 100%;
  }

  .wb-sub-hero {
    padding-top: 30px;
  }

  .wb-sub-hero-card,
  .wb-section-grid,
  .wb-steps-shell,
  .wb-reasons-shell,
  .wb-cta-shell {
    padding: 14px 12px;
  }

  .wb-section-grid {
    gap: 10px;
  }
  .wb-sub-hero-card {
  display: block;
  aspect-ratio: auto !important;   /* remove fixed height */
  min-height: 380px;               /* allow full content */
   height: 40vh;
  padding: 20px 16px 50px;
}
.wb-sub-copy {
  max-width: 100%;
  z-index: 3;
}

.wb-sub-copy h1 {
  line-height: 1.1; /* prevents cutting */
}
/* 
  .wb-sub-hero-card {
    display: block;
    aspect-ratio: auto;
    min-height: 195px;
    padding: 16px 14px 38px;
  }

  .wb-sub-hero-card::after {
    left: -16%;
    right: -16%;
    bottom: -66px;
    height: 96px;
  }

  .wb-sub-hero-card .wb-sub-copy::after {
    left: -12%;
    width: 180%;
    bottom: -52px;
    height: 64px;
  } */

  .wb-sub-copy h1 {
    margin-top: 40px;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .wb-sub-copy {
    max-width: 100%;
  }

  .wb-sub-copy p {
    margin-top: 12px;
    max-width: 100%;
    font-size: 0.9rem;
  }

  .wb-sub-actions {
    margin-top: 18px;
  }

  .wb-sub-copy p,
  .wb-rich-text li,
  .wb-step-card p,
  .wb-reason-card p,
  .wb-sub-cta p {
    font-size: 0.92rem;
  }

  .wb-sub-visual img {
    min-height: 100%;
    border-radius: 0;
    object-position: 62% center;
  }

  .wb-media-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .wb-reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .wb-reason-card {
    padding: 16px 14px;
  }

  main.wb-sub-page::before {
    top: 260px;
  }
}
@media (max-width: 640px) {

.wb-sub-hero {
    padding-top: 98px;
  }

      .wb-sub-copy h1 {
        margin-top: 44px;
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

}
@media (max-width: 560px) {
  main.wb-sub-page {
    padding-bottom: 10px;
  }

  .wb-sub-hero-card {
    height: 40vh;
    padding: 14px 12px 36px;
  }
.wb-sub-hero {
    padding-top: 90px;
  }

  .wb-sub-copy h1 {
    margin-top: 48px;
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }

  .wb-sub-copy p {
    max-width: 100%;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .wb-kicker {
    gap: 8px;
    padding: 7px 12px;
    font-size: 0.68rem;
  }

  .wb-btn-primary {
    min-width: 168px;
    padding: 11px 18px;
    font-size: 0.88rem;
  }

  .wb-section-title h2 {
    font-size: clamp(1.38rem, 7vw, 1.7rem);
  }

  .wb-section-title p {
    font-size: 0.68rem;
  }

  .wb-rich-text li {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .wb-steps-shell,
  .wb-reasons-shell,
  .wb-cta-shell {
    padding: 12px 10px;
  }

  .wb-step-card {
    min-height: 204px;
    padding: 12px;
  }

  .wb-step-title {
    font-size: 0.88rem;
  }

  .wb-step-visual {
    height: 104px;
  }

  .wb-reasons-grid {
    gap: 18px;
  }

  .wb-reason-icon {
    width: 44px;
    height: 44px;
    font-size: 1.12rem;
  }

  .wb-reason-card h3 {
    font-size: 0.86rem;
  }

  .wb-reason-card p {
    font-size: 0.76rem;
  }

  .wb-sub-cta h2 {
    font-size: clamp(1.48rem, 8vw, 1.9rem);
  }
}

@media (max-width: 380px) {
  .wb-sub-hero-card {
     height: 40vh;
    padding: 12px 10px 30px;
  }

  .wb-sub-hero-card::after {
    bottom: -58px;
 height: 70vh;
  }

  .wb-sub-hero-card .wb-sub-copy::after {
    bottom: -46px;
     height: 70vh;
  }

  .wb-sub-copy h1 {
    margin-top: 89px;
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .wb-sub-copy p {
    font-size: 0.82rem;
  }

  .wb-btn-primary {
    min-width: 154px;
    padding: 10px 16px;
    font-size: 0.84rem;
  }

  .wb-media-card {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .wb-step-card {
    min-height: 192px;
  }

  .wb-step-visual {
    height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 75px; /* adjust based on navbar height */
  }
}

@media (min-width: 720px) and (max-width: 1080px) {
  .wb-sub-hero-card {
    height: 65vh; /* ✅ perfect balance */
  }

  .wb-sub-copy {
    max-width: 45%;
  }

  .wb-sub-visual img {
    object-position: 78% center; /* 🔥 fine tuning */
  }
}
