.hero-section {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: arboria, sans-serif;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo img {
  max-height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.hero-h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.hero-h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: arboria, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c1c1c;
  background-color: #efe6dd;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.hero-cta:hover {
  background-color: #c9beab;
}
.hero-cta:active {
  background-color: #a39a91;
}
.intro-section {
  padding: 5rem 0;
  background-color: #ffffff;
  font-family: arboria, sans-serif;
}
.intro-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
}
.intro-video-col {
  position: relative;
  min-height: 800px;
}
.intro-video-wrap {
  position: absolute;
  inset: 0;
  background: #1c1c1c;
  overflow: hidden;
  cursor: pointer;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.intro-video-wrap:hover .intro-video {
  transform: scale(1.03);
}
.intro-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.intro-play-btn svg {
  width: 60px;
  height: 60px;
  color: #ffffff;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.intro-play-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}
.intro-play-btn:hover svg {
  transform: scale(1.1);
}
.intro-video-wrap.is-playing .intro-play-btn {
  background: transparent;
}
.intro-video-wrap.is-playing .intro-play-btn svg {
  opacity: 0;
}
.intro-video-wrap.is-playing .intro-play-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}
.intro-video-wrap.is-playing .intro-play-btn:hover svg {
  opacity: 1;
}
.intro-text-col {
  background-color: #efe6dd;
}
.intro-text {
  padding: 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a39a91;
  margin-bottom: 1rem;
}
.intro-h2 {
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 300;
  color: #1c1c1c;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.intro-divider {
  width: 36px;
  height: 1px;
  background-color: #a39a91;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.intro-p {
  font-size: 0.92rem;
  font-weight: 300;
  color: #645c56;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.intro-p:last-of-type {
  margin-bottom: 2rem;
}
.intro-cta {
  align-self: flex-start;
  padding: 0.8rem 2rem;
  font-family: arboria, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #1c1c1c;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.intro-cta:hover {
  background-color: #3c3c3c;
}
.modal-content {
  border-radius: 30px;
  border: none;
  overflow: hidden;
  font-family: arboria, sans-serif;
}
.modal-header {
  background-color: #efe6dd;
  border-bottom: none;
  padding: 1.25rem 1.75rem;
}
.modal-title {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1c1c1c;
}
.modal-header .btn-close {
  opacity: 0.5;
}
.modal-header .btn-close:hover {
  opacity: 1;
}
.modal-body {
  padding: 2rem 1.75rem;
  background-color: #efe6dd;
}
.modal-body .wpcf7-form input[type="text"],
.modal-body .wpcf7-form input[type="email"],
.modal-body .wpcf7-form input[type="tel"],
.modal-body .wpcf7-form input[type="number"],
.modal-body .wpcf7-form input[type="date"],
.modal-body .wpcf7-form select,
.modal-body .wpcf7-form textarea {
  width: 100%;
  padding: 1.25em;
  border: none;
  border-radius: 10px;
  font-family: arboria, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #1c1c1c;
  background-color: #ffffff;
  outline: none;
  appearance: none;
  box-shadow: none;
}
.modal-body .wpcf7-form input:focus,
.modal-body .wpcf7-form select:focus,
.modal-body .wpcf7-form textarea:focus {
  outline: none;
  box-shadow: none;
}
.modal-body .wpcf7-form input::placeholder,
.modal-body .wpcf7-form textarea::placeholder {
  color: #a39a91;
}
.modal-body .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.about-section {
  position: relative;
  padding: 8rem 0;
  background-color: #1c1c1c;
  font-family: arboria, sans-serif;
  overflow: hidden;
}
.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.about-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a39a91;
  margin-bottom: 1.5rem;
}
.about-quote {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}
.about-divider {
  width: 36px;
  height: 1px;
  background-color: #a39a91;
  margin: 0 auto 2rem;
  opacity: 0.6;
}
.about-p {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 3rem;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.about-stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  color: #efe6dd;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a39a91;
}
.about-cta {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: arboria, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c1c1c;
  background-color: #efe6dd;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.about-cta:hover {
  background-color: #c9beab;
}
