* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-size: 80px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 48px;
}

h4 {
  font-size: 32px;
}

p {
  margin: 0;
}

body {
  margin: 0;
}
body.admin-bar main {
  padding-top: 57px;
}
@media (max-width: 1200px) {
  body.admin-bar main {
    padding-top: 47px;
  }
}

main {
  padding-top: 90px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  main {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 80px;
  }
}

.container {
  width: 90vw;
  max-width: 1728px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.site-header {
  background-color: #fffcf2;
  border-bottom: 1px solid #909296;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 90px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .site-header {
    height: 80px;
    padding: 0;
  }
}
.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-wrapper {
  position: relative;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header-wrapper {
    max-width: 100%;
    padding: 0 5vw;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header-wrapper {
    padding: 0 16px;
  }
}

.logo-container {
  flex-shrink: 0;
  height: 48px;
  width: auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .logo-container {
    position: static;
  }
}
.logo-container .logo-link {
  display: block;
  height: 100%;
  width: auto;
}
.logo-container .logo-img {
  height: 100%;
  width: auto;
  display: block;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
}

.nav-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: #252422;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .nav-item {
    padding: 12px 16px;
    font-size: 22px;
  }
}
.nav-item:hover {
  background-color: #ffffff;
  border-color: #e8e8e8;
}
.nav-item.active {
  background-color: #252422;
  color: #fffcf2;
}

.btn-primary-header {
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px !important;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}
@media (max-width: 1200px) {
  .btn-primary-header {
    display: none !important;
  }
}
.btn-primary-header:hover {
  background-color: #7a2f24;
}

.burger-menu {
  display: none;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 2px solid #252422;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1200px) {
  .burger-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .burger-menu {
    right: 16px;
  }
}
.burger-menu span {
  position: absolute;
  left: 19.51%;
  right: 17.07%;
  height: 2px;
  background: #252422;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.burger-menu span:nth-child(1) {
  top: 10.9998px;
}
.burger-menu span:nth-child(2) {
  top: 20.0004px;
}
.burger-menu span:nth-child(3) {
  top: 29.001px;
}
.burger-menu.active {
  visibility: visible;
  border-color: #252422;
}
.burger-menu.active span {
  left: 50%;
  right: auto;
  width: 20px;
  margin-left: -10px;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -1px;
}

.mobile-menu-overlay {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: -1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow-y: auto;
  transition: transform 0.3s ease-in-out;
  visibility: hidden;
}
@media (max-width: 768px) {
  .mobile-menu-overlay {
    top: 80px;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
  }
}
.mobile-menu-overlay.active {
  visibility: visible;
}

.mobile-logo-container {
  height: 48px;
  width: 34px;
}
.mobile-logo-container .mobile-logo-link {
  display: block;
  height: 100%;
  width: 100%;
}
.mobile-logo-container .mobile-logo-img {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-close-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mobile-close-btn svg {
  width: 100%;
  height: 100%;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  justify-content: flex-start;
}
.mobile-nav .mobile-nav-item {
  display: block;
  background-color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: #252422;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}
.mobile-nav .mobile-nav-item:hover {
  background-color: #c0bfbf;
}
.mobile-nav .mobile-nav-item.active {
  background-color: #252422;
  color: #fffcf2;
}
.mobile-nav .btn-primary-mobile {
  margin-top: auto;
}

.btn {
  display: inline-block;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #953a2c;
  color: #fffcf2;
  border: 1px solid #953a2c;
}
.btn-primary:hover:not(:disabled) {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-secondary {
  background-color: transparent;
  color: #252422;
  border: 1px solid #252422;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-tertiary {
  background-color: #fffcf2;
  color: #252422;
  border: 1px solid #252422;
}
.btn-tertiary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-white {
  background-color: #ffffff;
  color: #252422;
  border: 1px solid #ffffff;
}
.btn-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover:not(:disabled) {
  background-color: #ffffff;
  color: #252422;
}

.btn-sm {
  padding: 8px 41px;
  font-size: 20px;
}

.btn-md {
  padding: 12px 32px;
  font-size: 20px;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .btn-lg {
    padding: 12px 32px;
    font-size: 20px;
  }
}

.btn-full {
  width: 100%;
}

.btn-spectral {
  font-family: "Spectral", serif;
  font-weight: 400;
}

.btn-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.btn-primary-mobile {
  width: 100%;
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  border: 1px solid #953a2c;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary-mobile:hover {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-footer {
  background-color: transparent;
  color: #fffcf2;
  border: 1px solid #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-footer:hover {
  background-color: #fffcf2;
  color: #252422;
}
@media (max-width: 1200px) {
  .btn-footer {
    width: 100%;
    text-align: center;
  }
}

/*
Standard button:
<a href="#" class="btn btn-primary">Click Me</a>

Large primary button:
<a href="#" class="btn btn-primary btn-lg">Get Started</a>

Secondary button with Spectral font:
<a href="#" class="btn btn-secondary btn-spectral">Learn More</a>

Medium button (hero/CTA style):
<a href="#" class="btn btn-primary btn-md btn-spectral">Contact Us</a>

Full width mobile button:
<a href="#" class="btn btn-primary btn-full">Submit</a>
*/
.btn {
  display: inline-block;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: #953a2c;
  color: #fffcf2;
  border: 1px solid #953a2c;
}
.btn-primary:hover:not(:disabled) {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-secondary {
  background-color: transparent;
  color: #252422;
  border: 1px solid #252422;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-tertiary {
  background-color: #fffcf2;
  color: #252422;
  border: 1px solid #252422;
}
.btn-tertiary:hover:not(:disabled) {
  background-color: #252422;
  color: #fffcf2;
}

.btn-white {
  background-color: #ffffff;
  color: #252422;
  border: 1px solid #ffffff;
}
.btn-white:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-white-outline:hover:not(:disabled) {
  background-color: #ffffff;
  color: #252422;
}

.btn-sm {
  padding: 8px 41px;
  font-size: 20px;
}

.btn-md {
  padding: 12px 32px;
  font-size: 20px;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 28px;
}
@media (max-width: 768px) {
  .btn-lg {
    padding: 12px 32px;
    font-size: 20px;
  }
}

.btn-full {
  width: 100%;
}

.btn-spectral {
  font-family: "Spectral", serif;
  font-weight: 400;
}

.btn-cormorant {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.btn-primary-mobile {
  width: 100%;
  background-color: #953a2c;
  color: #fffcf2;
  padding: 12px 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  border: 1px solid #953a2c;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary-mobile:hover {
  background-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
  border-color: rgb(109.6269430052, 42.6735751295, 32.3730569948);
}

.btn-footer {
  background-color: transparent;
  color: #fffcf2;
  border: 1px solid #fffcf2;
  padding: 12px 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-footer:hover {
  background-color: #fffcf2;
  color: #252422;
}
@media (max-width: 1200px) {
  .btn-footer {
    width: 100%;
    text-align: center;
  }
}

/*
Standard button:
<a href="#" class="btn btn-primary">Click Me</a>

Large primary button:
<a href="#" class="btn btn-primary btn-lg">Get Started</a>

Secondary button with Spectral font:
<a href="#" class="btn btn-secondary btn-spectral">Learn More</a>

Medium button (hero/CTA style):
<a href="#" class="btn btn-primary btn-md btn-spectral">Contact Us</a>

Full width mobile button:
<a href="#" class="btn btn-primary btn-full">Submit</a>
*/
.site-footer {
  background-color: #252422;
  padding: 120px 0;
  color: #fffcf2;
}
.site-footer .footer-content {
  display: flex;
  gap: 40px;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 1201px) {
  .site-footer .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.site-footer .footer-main {
  display: flex;
  flex-direction: column;
  gap: 105px;
  flex: 1 1 auto;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-main {
    flex: 1 1 auto;
    gap: 68px;
  }
}
.site-footer .footer-cta {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-cta {
    gap: 48px;
    align-items: stretch;
  }
}
.site-footer .footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.4;
  color: #fffcf2;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-title {
    font-size: 48px;
  }
}
.site-footer .footer-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  color: #fffcf2;
  max-width: 717px;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-text {
    font-size: 21px;
    max-width: 100%;
  }
}
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #fffcf2;
}
.site-footer .footer-nav a {
  color: #fffcf2;
  text-decoration: none;
  transition: 0.3s ease;
}
.site-footer .footer-nav a:hover {
  opacity: 0.8;
}
.site-footer .footer-logo {
  flex: 1 1 auto;
  width: 100%;
  height: 793px;
  align-self: flex-start;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer .footer-logo {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 779.48/1095.05;
    margin-top: 48px;
  }
}
.site-footer .footer-logo .footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .site-footer {
    padding: 80px 16px;
    padding-bottom: 79px;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 16px;
    padding-bottom: 79px;
  }
  .site-footer .footer-content {
    flex-direction: column;
    gap: 80px;
  }
  .site-footer .footer-main {
    flex: 1 1 auto;
    gap: 68px;
  }
  .site-footer .footer-title {
    font-size: 48px;
  }
  .site-footer .footer-text {
    font-size: 21px;
    max-width: 100%;
  }
  .site-footer .footer-logo {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 779.48/1095.05;
    margin-top: 48px;
  }
}

.form-group {
  position: relative;
}
.form-group label {
  position: absolute;
  left: 21px;
  top: 1.25em;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #252422;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #fffcf2;
  padding: 0 4px;
  line-height: 1;
  z-index: 9;
  transform-origin: left top;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label, .form-group input[value]:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group textarea[value]:not([value=""]) + label {
  transform: translateY(-30px) scale(0.875);
  color: #953a2c;
}
.form-group input:focus:placeholder-shown::placeholder,
.form-group textarea:focus:placeholder-shown::placeholder {
  opacity: 1;
  color: #909296;
  transition-delay: 0.1s;
}
.form-group:has(input:focus) label, .form-group:has(input:not(:placeholder-shown)) label, .form-group:has(textarea:focus) label, .form-group:has(textarea:not(:placeholder-shown)) label {
  transform: translateY(-30px) scale(0.875);
  color: #953a2c;
}
.form-group.is-focused label, .form-group.has-value label {
  transform: translateY(-30px) scale(0.875);
  color: #953a2c;
}
.form-group textarea + label {
  top: 24px;
}
.form-group:has(textarea) label {
  top: 24px;
}
.form-group input,
.form-group textarea {
  position: relative;
  z-index: 2;
}
.form-group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

.container-wide {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container-wide {
    padding: 0 16px;
  }
}

.our-story-hero {
  background-color: #fffcf2;
  padding-top: 58px;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}
.our-story-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2vw, 45px);
  position: relative;
  z-index: 2;
}
.our-story-hero .hero-content {
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 40px);
  margin-bottom: clamp(40px, 5vw, 70px);
}
.our-story-hero .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5vw + 1rem, 84px);
  font-weight: 700;
  line-height: 1.1;
  color: #252422;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 20px);
  align-items: center;
}
.our-story-hero .hero-title .hero-title-line {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.5vw, 20px);
  white-space: nowrap;
  flex-wrap: wrap;
  justify-content: center;
}
.our-story-hero .hero-title .hero-title-accent {
  color: #953a2c;
}
.our-story-hero .hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.5vw + 0.5rem, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #777a7e;
  margin: 0 auto;
  text-align: center;
  max-width: 688px;
}
.our-story-hero .hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: clamp(-150px, -20vw, -317px);
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .our-story-hero .hero-image-wrapper {
    margin-bottom: clamp(-50px, -20vw, -150px);
    padding: 0 16px;
  }
}
.our-story-hero .hero-image-wrapper .hero-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.our-story-hero .hero-image-wrapper .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-mission-section {
  background-color: #252422;
  padding-top: clamp(100px, 30vw, 280px);
  padding-bottom: clamp(100px, 10vw, 150px);
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .about-mission-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.about-mission-section .about-mission-content {
  max-width: 1224px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .about-mission-section .about-mission-content {
    gap: clamp(40px, 7.5vw, 100px);
  }
}
.about-mission-section .mission-paragraph {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.5;
  color: #fffcf2;
  margin: 0;
  padding-bottom: clamp(40px, 4vw, 60px);
  border-bottom: 1px solid rgba(64, 62, 59, 0.5);
}
.about-mission-section .mission-paragraph:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-mission-section .mission-paragraph .mission-accent {
  font-weight: 700;
  color: #953a2c;
  font-size: clamp(32px, 3.5vw, 64px);
}

.integrity-section {
  width: 100%;
  position: relative;
  background: #807acb;
  padding: clamp(58px, 10vw, 120px) 20px;
}
.integrity-section .container {
  display: flex;
}
@media (max-width: 768px) {
  .integrity-section .container {
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .container {
    flex-direction: column;
  }
}
.integrity-section .integrity-left {
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 5vw, 50px) clamp(53px, 1vw, 100px);
  width: 50%;
}
@media (max-width: 768px) {
  .integrity-section .integrity-left {
    width: 100%;
    padding: clamp(120px, 7.5vw, 100px) 16px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .integrity-left {
    width: 100%;
    padding: clamp(120px, 7.5vw, 100px) clamp(60px, 8vw, 120px);
  }
}
.integrity-section .integrity-left .integrity-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.integrity-section .integrity-left .integrity-decoration::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(37, 36, 34, 0.8) 60%, transparent 60%);
  background-size: 20px 100%;
  background-repeat: repeat-x;
}
@media (max-width: 768px) {
  .integrity-section .integrity-left .integrity-decoration::before {
    top: 20%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .integrity-left .integrity-decoration::before {
    top: 20%;
  }
}
.integrity-section .integrity-left .integrity-decoration::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, rgba(37, 36, 34, 0.8) 60%, transparent 60%);
  background-size: 20px 100%;
  background-repeat: repeat-x;
}
@media (max-width: 768px) {
  .integrity-section .integrity-left .integrity-decoration::after {
    bottom: 20%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .integrity-left .integrity-decoration::after {
    bottom: 20%;
  }
}
.integrity-section .integrity-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.2;
  color: #252422;
  position: relative;
  z-index: 2;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .integrity-section .integrity-title {
    font-size: clamp(32px, 6vw, 64px);
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .integrity-title {
    font-size: clamp(32px, 6vw, 64px);
  }
}
.integrity-section .integrity-title .integrity-accent {
  font-style: italic;
  color: #953a2c;
}
.integrity-section .integrity-right {
  background-color: #252422;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vw, 80px) clamp(60px, 8vw, 120px);
  color: #fffcf2;
  width: 50%;
}
@media (max-width: 768px) {
  .integrity-section .integrity-right {
    padding: clamp(60px, 8vw, 80px) 32px;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section .integrity-right {
    padding: clamp(60px, 8vw, 80px) 32px;
    width: 100%;
  }
}
.integrity-section .integrity-card {
  background-color: transparent;
  padding: 0;
  width: 100%;
  max-width: 600px;
}
.integrity-section .integrity-card .integrity-text-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.integrity-section .integrity-paragraph {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.6;
  color: #fffcf2;
  margin: 0;
}
.integrity-section .integrity-divider {
  display: none;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .integrity-section {
    padding: clamp(60px, 8vw, 80px) 60px;
  }
  .integrity-section .container {
    flex-direction: column;
  }
  .integrity-section .integrity-left,
  .integrity-section .integrity-right {
    width: 100%;
  }
}

.numbered-section {
  background-color: #fffcf2;
  padding: clamp(100px, 10vw, 120px) 16px;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 60px);
}
@media (max-width: 768px) {
  .numbered-section {
    padding: 48px 16px;
  }
}
.numbered-section .container {
  max-width: 1432px;
  border: 1px solid #909296;
  border-radius: 8px;
  padding: clamp(60px, 5vw, 100px);
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .numbered-section .container {
    padding: 48px 32px;
  }
}
.numbered-section .numbered-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid #909296;
}
.numbered-section .numbered-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .numbered-section .numbered-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.numbered-section .numbered-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(60px, 5vw, 90px);
  font-weight: 400;
  font-style: italic;
  color: #252422;
  line-height: 1;
}
.numbered-section .numbered-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.numbered-section .numbered-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: #252422;
  margin: 0;
}
.numbered-section .numbered-title .numbered-accent {
  font-style: italic;
  color: #953a2c;
  display: block;
}
.numbered-section .numbered-body p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  color: #252422;
  margin-bottom: 24px;
}
.numbered-section .numbered-body p:last-child {
  margin-bottom: 0;
}
