:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d644ffa *//* ================================================================
   WILLY D — OUR STORY · HERO (mobile-first fixes)
   ================================================================ */

.wdc-about-hero {
  position: relative;
  overflow: hidden;
  background: var(--wdc-sand-50, #FBF6EC);
  color: var(--wdc-ink, #16302E);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-block: clamp(4rem, 9vw, 6.5rem) clamp(5rem, 11vw, 7.5rem);
}

.wdc-about-hero * { box-sizing: border-box; }

/* Warm ambient glows */
.wdc-about-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 166, 62, 0.14), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(236, 106, 94, 0.10), transparent 45%),
    radial-gradient(circle at 50% 0%, rgba(22, 128, 138, 0.04), transparent 60%);
}

/* Androsia conch motif */
.wdc-about-hero__motif {
  position: absolute;
  top: -8%;
  right: -6%;
  z-index: 0;
  width: clamp(200px, 30vw, 420px);
  height: auto;
  color: var(--wdc-teal-300, #7FB6BB);
  opacity: 0.07;
  transform: rotate(6deg);
  pointer-events: none;
}

/* Inner grid — MOBILE: image first, single column */
.wdc-about-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 4rem)));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

/* MOBILE: image comes first */
.wdc-about-hero__media {
  order: -1;
}

/* Eyebrow */
.wdc-about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--wdc-gold-600, #C9851F);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wdc-about-hero__leaf {
  display: inline-flex;
  width: 44px;
  flex: 0 0 auto;
  color: var(--wdc-gold-500, #EFA63E);
}

.wdc-about-hero__leaf svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Title */
.wdc-about-hero__title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--wdc-ink, #16302E);
  text-wrap: balance;
  overflow-wrap: break-word;
}

.wdc-about-hero__title-accent {
  color: var(--wdc-coral-500, #EC6A5E);
  font-style: italic;
}

/* Lead */
.wdc-about-hero__lead {
  margin: 20px 0 0;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  color: var(--wdc-ink-soft, #46615E);
}

/* Founder sign-off */
.wdc-about-hero__sign {
  margin: 18px 0 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--wdc-teal-700, #115E63);
}

/* Meta pills */
.wdc-about-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--wdc-ink-soft, #46615E);
}

.wdc-about-hero__meta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wdc-gold-500, #EFA63E);
  flex: 0 0 auto;
}

/* Actions — MOBILE: side by side, never stacked */
.wdc-about-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 32px;
}

.wdc-about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
  touch-action: manipulation;
  flex: 1 1 auto;
}

.wdc-about-hero__btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

/* Gold CTA */
.wdc-about-hero__btn--gold {
  color: var(--wdc-ink, #16302E);
  background: var(--wdc-gold-500, #EFA63E);
  border-color: rgba(201, 133, 31, 0.35);
}

.wdc-about-hero__btn--gold:hover,
.wdc-about-hero__btn--gold:focus-visible {
  transform: translateY(-2px);
  background: var(--wdc-gold-600, #C9851F);
  color: #fff;
  border-color: var(--wdc-gold-600, #C9851F);
  box-shadow: 0 10px 30px -12px rgba(12, 59, 62, 0.18);
  outline: none;
}

.wdc-about-hero__btn--gold:hover svg,
.wdc-about-hero__btn--gold:focus-visible svg {
  transform: translateX(3px);
}

/* Ghost */
.wdc-about-hero__btn--ghost {
  color: var(--wdc-teal-700, #115E63);
  background: transparent;
  border-color: var(--wdc-teal-300, #7FB6BB);
}

.wdc-about-hero__btn--ghost:hover,
.wdc-about-hero__btn--ghost:focus-visible {
  transform: translateY(-2px);
  background: rgba(22, 128, 138, 0.07);
  border-color: var(--wdc-teal-500, #16808A);
  color: var(--wdc-teal-900, #0C3B3E);
  box-shadow: 0 10px 30px -12px rgba(12, 59, 62, 0.18);
  outline: none;
}

/* Media column */
.wdc-about-hero__media {
  position: relative;
}

/* Sunset glow behind image */
.wdc-about-hero__sun {
  position: absolute;
  z-index: 0;
  right: -10%;
  top: -12%;
  width: min(340px, 72%);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(239, 166, 62, 0.38) 0%, rgba(239, 166, 62, 0.14) 45%, rgba(239, 166, 62, 0) 72%);
}

/* Image card */
.wdc-about-hero__card {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px -28px rgba(12, 59, 62, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.wdc-about-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Caption overlay */
.wdc-about-hero__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(16px, 2.5vw, 22px);
  color: var(--wdc-cream, #FFFDF8);
  background: linear-gradient(180deg, rgba(12, 59, 62, 0) 0%, rgba(12, 59, 62, 0.88) 100%);
}

.wdc-about-hero__caption strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.2;
}

.wdc-about-hero__caption span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.4;
}

/* Bottom wave transition */
.wdc-about-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.wdc-about-hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* TABLET + DESKTOP: content left, image right, buttons natural size */
@media (min-width: 900px) {
  .wdc-about-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  /* Reset order — content first on desktop */
  .wdc-about-hero__media {
    order: 0;
  }

  .wdc-about-hero__img {
    aspect-ratio: 5 / 6;
  }

  .wdc-about-hero__actions {
    gap: 12px;
  }

  .wdc-about-hero__btn {
    flex: 0 0 auto;
    padding: 0 26px;
    font-size: 0.96rem;
    min-height: 52px;
  }

  .wdc-about-hero__btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Tablet image aspect ratio */
@media (min-width: 601px) and (max-width: 899px) {
  .wdc-about-hero__img {
    aspect-ratio: 16 / 10;
  }
}

/* Entrance animations */
@media (prefers-reduced-motion: no-preference) {
  .wdc-about-hero__content > *,
  .wdc-about-hero__media {
    opacity: 0;
    transform: translateY(22px);
    animation: wdc-about-up 0.75s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
  }

  .wdc-about-hero__eyebrow { animation-delay: 0.06s; }
  .wdc-about-hero__title   { animation-delay: 0.14s; }
  .wdc-about-hero__lead    { animation-delay: 0.22s; }
  .wdc-about-hero__sign    { animation-delay: 0.30s; }
  .wdc-about-hero__meta    { animation-delay: 0.38s; }
  .wdc-about-hero__actions { animation-delay: 0.46s; }
  .wdc-about-hero__media   { animation-delay: 0.18s; }

  @keyframes wdc-about-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .wdc-about-hero__content > *,
  .wdc-about-hero__media {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a9fa8b0 *//* ====================================================================
   WILLY D — OUR STORY · THE CRAFT (Media Collage + Steps)
   ==================================================================== */
.wdc-craft {
  position: relative;
  background-color: var(--wdc-sand-100); /* Deeper sand for alternation */
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

/* Top wave divider to smoothly transition from the Sand-50 hero */
.wdc-craft__wave {
  position: absolute;
  top: -1px; /* Fix sub-pixel gap */
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}
.wdc-craft__wave svg {
  width: 100%;
  height: 100%;
  fill: var(--wdc-sand-50); /* Matches the hero background above it */
}

.wdc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  position: relative;
  z-index: 3;
}

.wdc-craft__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .wdc-craft__grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

/* --- Media Collage --- */
.wdc-craft__media {
  position: relative;
  min-height: 400px;
}

.wdc-craft__img-frame {
  padding: 8px;
  background: var(--wdc-cream);
  border: 1px solid var(--wdc-gold-100);
  border-radius: calc(var(--wdc-r-lg) - 4px);
  box-shadow: var(--wdc-shadow);
}

.wdc-craft__media-main, 
.wdc-craft__media-inset {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--wdc-r-lg) - 8px);
}

.wdc-craft__media-main {
  width: 85%;
  aspect-ratio: 4/5;
  z-index: 1;
}

.wdc-craft__media-main img,
.wdc-craft__media-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wdc-craft__media-inset {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  z-index: 2;
  border: 4px solid var(--wdc-sand-100); /* Mask out background */
}

/* Floating Badge */
.wdc-craft__badge {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--wdc-gold-500);
  color: var(--wdc-ink);
  border-radius: 50%;
  font-family: var(--wdc-font-head);
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 20px -5px rgba(201,133,31,.4);
  z-index: 3;
  animation: wdc-spin-slow 20s linear infinite;
}
.wdc-craft__badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--wdc-ink);
  opacity: 0.6;
}

@keyframes wdc-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- Content & Steps --- */
.wdc-eyebrow--dark {
  color: var(--wdc-teal-700);
}

.wdc-craft__title {
  font-family: var(--wdc-font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
  color: var(--wdc-ink);
}

.wdc-text-coral {
  color: var(--wdc-coral-500);
  font-style: italic;
}

.wdc-craft__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--wdc-ink-soft);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

.wdc-craft__steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.wdc-craft__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.wdc-craft__step-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wdc-teal-100);
  color: var(--wdc-teal-700);
}

.wdc-craft__step-icon svg {
  width: 24px;
  height: 24px;
}

.wdc-craft__step-title {
  font-family: var(--wdc-font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--wdc-ink);
  margin: 0 0 0.35rem;
}

.wdc-craft__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wdc-ink-soft);
  margin: 0;
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .wdc-craft__media, .wdc-craft__content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: wdc-craft-up 0.7s cubic-bezier(.16,.84,.44,1) forwards;
  }
  .wdc-craft__media { animation-delay: 0.1s; }
  .wdc-craft__content > *:nth-child(1) { animation-delay: 0.15s; }
  .wdc-craft__content > *:nth-child(2) { animation-delay: 0.25s; }
  .wdc-craft__content > *:nth-child(3) { animation-delay: 0.35s; }
  .wdc-craft__content > *:nth-child(4) { animation-delay: 0.45s; }

  @keyframes wdc-craft-up {
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .wdc-craft__media, .wdc-craft__content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .wdc-craft__badge { animation: none !important; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-293bd5e *//* ================================================================
   WILLY D — OUR STORY · HERITAGE / CRAFT SECTION
   ================================================================ */

.wdc-section--heritage {
  position: relative;
  overflow: hidden;
  background: var(--wdc-sand-100, #F5EEDD);
  color: var(--wdc-ink, #16302E);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.wdc-section--heritage * { box-sizing: border-box; }

/* Ambient glow — shifted to opposite corners from hero */
.wdc-heritage__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 10%, rgba(236, 106, 94, 0.10), transparent 40%),
    radial-gradient(circle at 8% 90%, rgba(239, 166, 62, 0.12), transparent 45%);
}

/* Androsia coral fan motif */
.wdc-heritage__motif {
  position: absolute;
  bottom: -10%;
  left: -8%;
  z-index: 0;
  width: clamp(240px, 34vw, 480px);
  height: auto;
  color: var(--wdc-teal-300, #7FB6BB);
  opacity: 0.06;
  transform: rotate(-12deg);
  pointer-events: none;
}

/* Inner grid — MOBILE: image first */
.wdc-heritage__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 4rem)));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

/* Media column */
.wdc-heritage__media {
  position: relative;
  order: -1;
}

.wdc-heritage__sun {
  position: absolute;
  z-index: 0;
  left: -12%;
  top: -10%;
  width: min(320px, 70%);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(236, 106, 94, 0.22) 0%, rgba(236, 106, 94, 0.08) 48%, rgba(236, 106, 94, 0) 75%);
}

.wdc-heritage__card {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px -24px rgba(12, 59, 62, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.wdc-heritage__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Floating badge */
.wdc-heritage__badge {
  position: absolute;
  z-index: 2;
  right: -6px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wdc-cream, #FFFDF8);
  color: var(--wdc-teal-900, #0C3B3E);
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px -8px rgba(12, 59, 62, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.wdc-heritage__badge-icon {
  display: inline-flex;
  color: var(--wdc-gold-500, #EFA63E);
}

.wdc-heritage__badge-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Content column */
.wdc-heritage__content {
  position: relative;
  z-index: 2;
  max-width: 54ch;
}

.wdc-heritage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--wdc-gold-600, #C9851F);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wdc-heritage__leaf {
  display: inline-flex;
  width: 44px;
  flex: 0 0 auto;
  color: var(--wdc-gold-500, #EFA63E);
}

.wdc-heritage__leaf svg {
  width: 100%;
  height: auto;
  display: block;
}

.wdc-heritage__title {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--wdc-ink, #16302E);
  text-wrap: balance;
}

.wdc-heritage__body {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.7;
  color: var(--wdc-ink-soft, #46615E);
}

.wdc-heritage__body + .wdc-heritage__body {
  margin-top: 14px;
}

/* Decorative divider */
.wdc-heritage__divider {
  margin: 28px 0;
  width: 80px;
}

.wdc-heritage__divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Quote */
.wdc-heritage__quote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--wdc-teal-700, #115E63);
  border-left: 3px solid var(--wdc-coral-500, #EC6A5E);
  padding-left: 20px;
}

.wdc-heritage__quote cite {
  display: block;
  margin-top: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--wdc-ink-soft, #46615E);
  text-transform: uppercase;
}

/* Desktop: image left, text right */
@media (min-width: 900px) {
  .wdc-heritage__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
  }

  .wdc-heritage__media {
    order: 0;
  }

  .wdc-heritage__img {
    aspect-ratio: 5 / 6;
  }

  .wdc-heritage__badge {
    right: -14px;
    bottom: 32px;
    padding: 12px 20px;
    font-size: 0.86rem;
  }

  .wdc-heritage__badge-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Tablet image */
@media (min-width: 601px) and (max-width: 899px) {
  .wdc-heritage__img {
    aspect-ratio: 16 / 10;
  }
}

/* Entrance animations */
@media (prefers-reduced-motion: no-preference) {
  .wdc-heritage__media,
  .wdc-heritage__content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: wdc-heritage-up 0.75s cubic-bezier(0.16, 0.84, 0.44, 1) forwards;
  }

  .wdc-heritage__media        { animation-delay: 0.08s; }
  .wdc-heritage__eyebrow      { animation-delay: 0.14s; }
  .wdc-heritage__title        { animation-delay: 0.22s; }
  .wdc-heritage__body         { animation-delay: 0.30s; }
  .wdc-heritage__body + .wdc-heritage__body { animation-delay: 0.36s; }
  .wdc-heritage__divider      { animation-delay: 0.42s; }
  .wdc-heritage__quote        { animation-delay: 0.50s; }

  @keyframes wdc-heritage-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .wdc-heritage__media,
  .wdc-heritage__content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0e01a3a *//* ====================================================================
   WILLY D — ABOUT PAGE · STORY BLOCK
   Section after hero
   ==================================================================== */

.wdc-story-block {
  position: relative;
  overflow: hidden;
  background: var(--wdc-cream, #FFFDF8);
  color: var(--wdc-ink, #16302E);
  font-family: var(--wdc-font-body, "Plus Jakarta Sans", system-ui, sans-serif);
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.wdc-story-block * {
  box-sizing: border-box;
}

.wdc-story-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 16%, rgba(22, 128, 138, .08), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(239, 166, 62, .14), transparent 36%);
}

.wdc-story-block__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 4rem)));
  margin-inline: auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

/* Media */
.wdc-story-block__media {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.wdc-story-block__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--wdc-r-lg, 22px);
  background: var(--wdc-sand-100, #F5EEDD);
  box-shadow: 0 26px 58px -32px rgba(12, 59, 62, .5);
}

.wdc-story-block__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(12, 59, 62, .08);
}

.wdc-story-block__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center;
}

.wdc-story-block__stamp {
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  background: var(--wdc-gold-500, #EFA63E);
  color: var(--wdc-ink, #16302E);
  box-shadow: 0 20px 44px -24px rgba(201, 133, 31, .85);
  transform: rotate(7deg);
}

.wdc-story-block__stamp span {
  display: block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.wdc-story-block__stamp strong {
  display: block;
  margin-block: -2px;
  font-family: var(--wdc-font-head, "Fraunces", Georgia, serif);
  font-size: 1.75rem;
  line-height: .9;
  letter-spacing: -.04em;
}

/* Content */
.wdc-story-block__content {
  max-width: 640px;
}

.wdc-story-block__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--wdc-gold-600, #C9851F);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.wdc-story-block__leaf {
  display: inline-flex;
  width: 42px;
  flex: 0 0 auto;
  color: var(--wdc-gold-500, #EFA63E);
}

.wdc-story-block__leaf svg {
  width: 100%;
  height: auto;
  display: block;
}

.wdc-story-block__title {
  margin: 0;
  max-width: 11.5ch;
  font-family: var(--wdc-font-head, "Fraunces", Georgia, serif);
  font-weight: 650;
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--wdc-teal-900, #0C3B3E);
  text-wrap: balance;
}

.wdc-story-block__text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
  color: var(--wdc-ink-soft, #46615E);
}

.wdc-story-block__quote {
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 5px solid var(--wdc-coral-500, #EC6A5E);
  border-radius: 0 var(--wdc-r-md, 14px) var(--wdc-r-md, 14px) 0;
  background: var(--wdc-sand-50, #FBF6EC);
}

.wdc-story-block__quote p {
  margin: 0;
  font-family: var(--wdc-font-head, "Fraunces", Georgia, serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  font-style: italic;
  color: var(--wdc-teal-700, #115E63);
}

/* Cards */
.wdc-story-block__cards {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 4rem)));
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  display: grid;
  gap: 16px;
}

.wdc-story-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(12, 59, 62, .1);
  border-radius: var(--wdc-r-lg, 22px);
  background: var(--wdc-sand-50, #FBF6EC);
  box-shadow: var(--wdc-shadow, 0 10px 30px -12px rgba(12, 59, 62, .18));
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.wdc-story-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(239, 166, 62, .15);
  pointer-events: none;
}

.wdc-story-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 128, 138, .24);
  box-shadow: 0 18px 44px -24px rgba(12, 59, 62, .38);
}

.wdc-story-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--wdc-teal-100, #DCEBEC);
  color: var(--wdc-teal-700, #115E63);
}

.wdc-story-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.wdc-story-card h3 {
  margin: 0;
  font-family: var(--wdc-font-head, "Fraunces", Georgia, serif);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.1;
  color: var(--wdc-teal-900, #0C3B3E);
}

.wdc-story-card p {
  margin: 10px 0 0;
  max-width: 34ch;
  font-size: .96rem;
  line-height: 1.65;
  color: var(--wdc-ink-soft, #46615E);
}

/* Desktop */
@media (min-width: 900px) {
  .wdc-story-block__inner {
    grid-template-columns: .9fr 1.1fr;
  }

  .wdc-story-block__media {
    justify-self: start;
  }

  .wdc-story-block__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet */
@media (max-width: 899px) {
  .wdc-story-block__content {
    max-width: 720px;
  }

  .wdc-story-block__title {
    max-width: 13ch;
  }

  .wdc-story-block__cards {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .wdc-story-block {
    padding-block: 3.5rem;
  }

  .wdc-story-block__inner,
  .wdc-story-block__cards {
    width: min(100% - 2rem, 1180px);
  }

  .wdc-story-block__figure img {
    aspect-ratio: 4 / 5;
  }

  .wdc-story-block__stamp {
    right: 12px;
    bottom: 12px;
    width: 96px;
    height: 96px;
  }

  .wdc-story-block__stamp strong {
    font-size: 1.45rem;
  }

  .wdc-story-block__title {
    max-width: 100%;
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .wdc-story-block__quote {
    padding: 18px 20px;
  }

  .wdc-story-card {
    padding: 1.25rem;
  }
}

/* Entrance */
@media (prefers-reduced-motion: no-preference) {
  .wdc-story-block__media,
  .wdc-story-block__content > *,
  .wdc-story-card {
    opacity: 0;
    transform: translateY(18px);
    animation: wdc-story-block-up .72s cubic-bezier(.16, .84, .44, 1) forwards;
  }

  .wdc-story-block__media {
    animation-delay: .06s;
  }

  .wdc-story-block__eyebrow {
    animation-delay: .1s;
  }

  .wdc-story-block__title {
    animation-delay: .18s;
  }

  .wdc-story-block__text:nth-of-type(1) {
    animation-delay: .26s;
  }

  .wdc-story-block__text:nth-of-type(2) {
    animation-delay: .34s;
  }

  .wdc-story-block__quote {
    animation-delay: .42s;
  }

  .wdc-story-card:nth-child(1) {
    animation-delay: .12s;
  }

  .wdc-story-card:nth-child(2) {
    animation-delay: .2s;
  }

  .wdc-story-card:nth-child(3) {
    animation-delay: .28s;
  }

  @keyframes wdc-story-block-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .wdc-story-block__media,
  .wdc-story-block__content > *,
  .wdc-story-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}/* End custom CSS */