.tw-home-shell {
  background: linear-gradient(180deg, #f8f6f2 0%, #f6f1ea 100%);
}

.tw-site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 10px 28px -24px rgba(44, 36, 29, 0.55);
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

.tw-serif {
  font-family: "Cormorant Garamond", serif;
}

.tw-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(31, 22, 15, 0.34) 0%,
    rgba(43, 31, 22, 0.48) 55%,
    rgba(58, 43, 31, 0.38) 100%
  );
}

.tw-hero-text {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.tw-nav-link {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid transparent;
  color: #3f3328;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.tw-nav-link:hover,
.tw-nav-link:focus-visible {
  border-color: #d9d0c2;
  background-color: #ffffff;
  color: #2c241d;
  text-decoration: none;
}

.tw-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #6f5a45;
  border: 1px solid #6f5a45;
  color: #fff;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.tw-main-btn:hover,
.tw-main-btn:focus-visible {
  background-color: #5a4737;
  border-color: #5a4737;
  color: #fff;
  text-decoration: none;
}

.tw-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #c2b29b;
  color: #3f3328;
  background-color: transparent;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.tw-outline-btn:hover,
.tw-outline-btn:focus-visible {
  border-color: #6f5a45;
  color: #2c241d;
  background-color: #fff;
  text-decoration: none;
}

.tw-hero-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #fff;
  background-color: #fff;
  color: #2c241d;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: all 200ms ease;
}

.tw-hero-light-btn:hover,
.tw-hero-light-btn:focus-visible {
  background-color: #f8f6f2;
  border-color: #f8f6f2;
  color: #1f1914;
  text-decoration: none;
}

.tw-sub-link {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #d9d0c2;
  background: #fff;
  color: #5a4737;
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  transition: all 200ms ease;
}

.tw-sub-link:hover,
.tw-sub-link:focus-visible {
  border-color: #c2b29b;
  color: #2c241d;
  text-decoration: none;
}

.tw-feature-card {
  display: block;
  border: 1px solid #e8e0d3;
  border-radius: 1rem;
  background: #fff;
  padding: 1.35rem;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.tw-feature-card:hover,
.tw-feature-card:focus-visible {
  transform: translateY(-2px);
  border-color: #d9d0c2;
  box-shadow: 0 16px 40px -28px rgba(44, 36, 29, 0.5);
  text-decoration: none;
}

.tw-feature-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6f5a45;
}

.tw-feature-title {
  margin-top: 0.55rem;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1.1;
  color: #2c241d;
}

.tw-feature-text {
  margin-top: 0.6rem;
  margin-bottom: 0;
  color: #5a4737;
}

.tw-obituary-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e8e0d3;
  background: #fff;
  box-shadow: 0 16px 45px -24px rgba(44, 36, 29, 0.45);
}

.tw-obituary-card a,
.tw-obituary-card a:hover,
.tw-obituary-card a:focus-visible {
  text-decoration: none;
}

.tw-overlijden-card .tw-overlijden-image {
  position: relative;
  overflow: hidden;
}

.tw-overlijden-card .tw-overlijden-image::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -85%;
  width: 55%;
  height: 170%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.26) 42%,
    rgba(255, 255, 255, 0.52) 50%,
    rgba(255, 255, 255, 0.26) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg) translateX(0);
  opacity: 0.28;
  pointer-events: none;
  transition:
    transform 1.65s ease,
    opacity 0.95s ease;
  will-change: transform, opacity;
}

.tw-overlijden-card:hover .tw-overlijden-image::after,
.tw-overlijden-card:focus-within .tw-overlijden-image::after {
  opacity: 0.9;
  transform: skewX(-20deg) translateX(430%);
}

.tw-footer-link {
  color: #4a3a2b;
  text-decoration: none;
}

.tw-footer-link:hover,
.tw-footer-link:focus-visible {
  color: #2c241d;
  text-decoration: none;
}

.tw-site-footer {
  border-top: 1px solid #d9d0c2;
}

.tw-footer-subline {
  border-top: 1px solid #d9d0c2;
  color: #5a4737;
}

.tw-footer-heading {
  color: #2c241d;
}

.tw-footer-body {
  color: #5a4737;
}

.tw-footer-muted {
  color: #6f5a45;
}

.tw-devspot-link {
  color: #2c241d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tw-devspot-link:hover,
.tw-devspot-link:focus-visible {
  color: #6f5a45;
}

.tw-back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #6f5a45;
  background: #6f5a45;
  color: #fff;
  border-radius: 9999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  line-height: 1;
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.tw-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tw-back-to-top:hover,
.tw-back-to-top:focus-visible {
  background: #5a4737;
  border-color: #5a4737;
}

.tw-styled-bullets {
  list-style: none;
  margin-top: 0.75rem;
  padding-left: 0;
}

.tw-styled-bullets li {
  position: relative;
  margin-top: 0.35rem;
  padding-left: 1.1rem;
  font-weight: 600;
  color: black;
  line-height: 1.7;
}

.tw-styled-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.tw-terra-bullets {
  list-style: none;
  margin-top: 0.75rem;
  padding-left: 0;
}

.tw-terra-bullets li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  color: #3e4659;
  line-height: 1.7;
}

.tw-terra-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 9999px;
  background: #7f6650;
  transform: translateY(-50%);
}

.tw-terra-label {
  font-weight: 700;
  color: #2c241d;
}

/* Accessibility: keep regular text at least 18px for readability. */
.text-xs,
.text-sm,
.text-base,
.tw-feature-label,
.tw-footer-subline,
.tw-back-to-top {
  font-size: 18px !important;
}

.tw-brand-subtitle {
  font-size: 16px !important;
}

@media (max-width: 1023px) {
  #tw-main-navigation[data-open="true"] {
    display: block;
  }
}
