/*
Theme Name: Gilded - Child
Version: 1
Description: A child theme of DMM by Almina
Template: mts_schema
Text Domain: schema
*/
@import url("../mts_schema/style.css");
:root {
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  background: #f1eadd;
  color: var(--sColor);
  
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
}

section#reviews .slick-dots {
    position: relative;
}

body.mds-body body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body.mds-body a {
  color: #ffffff;
  text-decoration: none;
}
body.mds-body img {
  display: block;
  max-width: 100%;
  height: 100% !important;
  object-fit: cover;
}
::selection {
  background: var(--pColor);
  color: #fffdf7;
}
body.mds-body .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
body.mds-body .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #fff;
}
body.mds-body .eyebrow.no-rule::before {
  display: none;
}
body.mds-body .display,
body.mds-body h1,
body.mds-body h2,
body.mds-body h3,
body.mds-body h4 {
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.04;
  text-wrap: balance;
}
body.mds-body h1 {
  font-size: clamp(48px, 6vw, 96px);
}
body.mds-body h2 {
  font-size: clamp(40px, 4.8vw, 60px);
  letter-spacing: -0.024em;
}
body.mds-body h3 {
  font-size: clamp(28px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0px;
}
body.mds-body h4 {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.mds-body .italic {
  font-style: italic;
  font-weight: 300;
}
body.mds-body h2 p {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  color: #5c5246;
  max-width: 60ch;
  font-weight: 400;
}
body.mds-body p {
}
body.mds-body .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 15px);
}
body.mds-body section {
  position: relative;
}
body.mds-body .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 280ms var(--ease);
  white-space: nowrap;
}
body.mds-body .btn-primary {
  background: var(--sColor);
  color: #fffdf7;
}
body.mds-body .btn-primary:hover {
  background: var(--sColor);
  transform: translateY(-1px);
}
body.mds-body .btn-gold {
  background: var(--sColor);
  color: #fff;
}
body.mds-body .btn-gold:hover {
  background: var(--aColor);
  color: #fffdf7;
}
body.mds-body .btn-ghost {
  border-color: rgba(28, 24, 19, 0.22);
  color: var(--sColor);
  background: transparent;
}
body.mds-body .btn-ghost:hover {
  background: var(--sColor);
  color: #fffdf7;
  border-color: var(--sColor);
}
body.mds-body .btn-ghost-light {
  border-color: rgba(250, 246, 236, 0.4);
  color: #fffdf7;
  background: transparent;
}
body.mds-body .btn-ghost-light:hover {
  background: #fffdf7;
  color: var(--sColor);
}
body.mds-body .btn-arrow {
  transition: transform 280ms var(--ease);
}
body.mds-body .btn:hover .btn-arrow {
  transform: translateX(4px);
}
body.mds-body .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sColor);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 200ms;
}
body.mds-body .text-link:hover {
  color: var(--aColor);
}
body.mds-body .utility-bar {
  background: var(--aColor);
  color: #c9c0b0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 10px 0;
  position: relative;
  z-index: 50;
}
body.mds-body .utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
body.mds-body .utility-bar .util-group {
  display: flex;
  gap: 28px;
  align-items: center;
}
body.mds-body .utility-bar a:hover {
  color: #fffdf7;
}
body.mds-body .util-divider {
  width: 1px;
  height: 12px;
  background: rgba(250, 246, 236, 0.2);
}
body.mds-body .util-stars {
  color: var(--pColor);
  letter-spacing: 0.1em;
}
body.mds-body .nav {
  position: relative;
  top: 0;
  z-index: 40;
  background: transparent;
  backdrop-filter: saturate(140%) blur(5px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(28, 24, 19, 0.06);
  padding: 10px 0px;
  width: 100%;
}
body.mds-body .nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
body.mds-body .nav-logo {
  display: inline-flex;
  align-items: center;
}
body.mds-body .nav-logo img {
  max-height: 120px;
  width: auto;
  height: auto;
}
body.mds-body .nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
body.mds-body .nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 6px 0;
}
body.mds-body .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pColor);
  transition: all 220ms var(--ease);
  transform: translateX(-50%);
}
body.mds-body .nav-links a:hover {
  color: var(--sColor);
}
body.mds-body .nav-links a:hover::after {
  width: 100%;
}
body.mds-body .nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
body.mds-body .hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
}
body.mds-body .hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
body.mds-body .hero-media .placeholder-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
body.mds-body .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 19, 0.25),
    rgba(28, 24, 19, 0.45) 60%,
    rgba(28, 24, 19, 0.7)
  );
  pointer-events: none;
}
body.mds-body .hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 320ms var(--ease);
}
body.mds-body .hero-play:hover {
  background: rgba(184, 153, 104, 0.85);
  border-color: transparent;
  transform: translate(-50%, -50%) scale(1.06);
}
body.mds-body .hero-play svg {
  width: 24px;
  height: 24px;
  fill: #fffdf7;
  margin-left: 4px;
}
body.mds-body .hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 64px 0 96px;
}
body.mds-body .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
body.mds-body .hero-eyebrow {
  color: #fff;
}
body.mds-body .hero-eyebrow::before {
  background: #ffffff;
}
body.mds-body .hero .hero-title {
  color: #fffdf7;
}
body.mds-body .hero .hero-title em {
  color: var(--pColor);
  font-style: italic;
  font-weight: 300;
}
body.mds-body .hero-title p {
  color: rgb(255 255 255 / 91%);
  max-width: 52ch;
  font-family: 'Roboto';
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 28px;
}
body.mds-body .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
body.mds-body .hero-meta {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  right: clamp(20px, 4vw, 64px);
  bottom: 40px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  color: #fffdf7;
  max-width: 1320px;
  margin: 0px auto;
}
body.mds-body .hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.mds-body .hero-meta-item .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.55);
}
body.mds-body .hero-meta-item .value {
  
  font-size: 18px;
}
body.mds-body .hero[data-layout="centered"] .hero-grid {
  text-align: center;
  place-items: center;
}
body.mds-body .hero[data-layout="centered"] .hero-lead {
  margin: 0 auto;
}
body.mds-body .hero[data-layout="centered"] .hero-cta {
  justify-content: center;
}
body.mds-body .hero[data-layout="centered"] .hero-eyebrow {
  justify-content: center;
}
body.mds-body .hero[data-layout="centered"] .hero-eyebrow::before {
  display: none;
}
body.mds-body .hero[data-layout="centered"] .hero-title {
  max-width: 18ch;
}
body.mds-body .hero[data-layout="bottom-left"] {
  align-items: flex-end;
}
body.mds-body .hero[data-layout="bottom-left"] .hero-inner {
  padding-bottom: 120px;
}
body.mds-body .hero[data-layout="bottom-left"] .hero-grid {
  max-width: 720px;
}
body.mds-body .hero[data-layout="bottom-left"] .hero-title {
  font-size: clamp(56px, 8vw, 120px);
}
body.mds-body .hero[data-layout="split"] {
  background: #f1eadd;
  color: var(--sColor);
  align-items: stretch;
  min-height: 90vh;
}
body.mds-body .hero[data-layout="split"] .hero-media {
  position: relative;
}
body.mds-body .hero[data-layout="split"] .hero-media::after {
  display: none;
}
body.mds-body .hero[data-layout="split"] .hero-inner {
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 0;
}
body.mds-body .hero[data-layout="split"] .hero-text {
  padding: 0 clamp(20px, 4vw, 64px);
}
body.mds-body .hero[data-layout="split"] .hero-title {
  color: var(--sColor);
  font-size: clamp(48px, 5vw, 80px);
}
body.mds-body .hero[data-layout="split"] .hero-title em {
  color: var(--aColor);
}
body.mds-body .hero[data-layout="split"] .hero-lead {
  color: #5c5246;
}
body.mds-body .hero[data-layout="split"] .hero-image-wrap {
  position: relative;
  height: 90vh;
}
body.mds-body .hero[data-layout="split"] .hero-meta {
  color: var(--sColor);
}
body.mds-body .hero[data-layout="split"] .hero-meta-item .label {
  color: #8c8174;
}
body.mds-body .hero[data-layout="split"] .hero-eyebrow {
  color: var(--aColor);
}
body.mds-body .hero[data-layout="split"] .hero-eyebrow::before {
  background: var(--aColor);
}
body.mds-body .hero[data-layout="split"] .hero-play {
  background: rgba(28, 24, 19, 0.85);
  border-color: transparent;
}
body.mds-body .hero[data-layout="split"] .btn-ghost-light {
  border-color: rgba(28, 24, 19, 0.22);
  color: var(--sColor);
}
body.mds-body .hero[data-layout="split"] .btn-ghost-light:hover {
  background: var(--sColor);
  color: #fffdf7;
}
body.mds-body .hero[data-layout="type-led"] {
  background: #f1eadd;
  color: var(--sColor);
  min-height: auto;
}
body.mds-body .hero[data-layout="type-led"] .hero-media {
  position: relative;
  height: 0;
}
body.mds-body .hero[data-layout="type-led"] .hero-media::after {
  display: none;
}
body.mds-body .hero[data-layout="type-led"] .hero-play {
  display: none;
}
body.mds-body .hero[data-layout="type-led"] .hero-inner {
  padding: 80px 0 0;
}
body.mds-body .hero[data-layout="type-led"] .hero-title {
  color: var(--sColor);
  font-size: clamp(72px, 12vw, 200px);
  letter-spacing: -0.04em;
  line-height: 0.92;
}
body.mds-body .hero[data-layout="type-led"] .hero-title em {
  color: var(--aColor);
}
body.mds-body .hero[data-layout="type-led"] .hero-lead {
  color: #5c5246;
}
body.mds-body .hero[data-layout="type-led"] .hero-eyebrow {
  color: var(--aColor);
}
body.mds-body .hero[data-layout="type-led"] .hero-eyebrow::before {
  background: var(--aColor);
}
body.mds-body .hero[data-layout="type-led"] .typeled-image {
  position: relative;
  margin-top: 56px;
  height: 60vh;
  border-radius: 24px;
  overflow: hidden;
}
body.mds-body .hero[data-layout="type-led"] .typeled-image .placeholder-img {
  position: absolute;
  inset: 0;
}
body.mds-body .hero[data-layout="type-led"] .typeled-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-top: 40px;
}
body.mds-body .hero[data-layout="type-led"] .btn-ghost-light {
  border-color: rgba(28, 24, 19, 0.22);
  color: var(--sColor);
}
body.mds-body .hero[data-layout="type-led"] .btn-ghost-light:hover {
  background: var(--sColor);
  color: #fffdf7;
}
body.mds-body .hero[data-layout="type-led"] .hero-meta {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--sColor);
  padding: 32px 0 64px;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
  margin-top: 40px;
}
body.mds-body .hero[data-layout="type-led"] .hero-meta-item .label {
  color: #8c8174;
}
body.mds-body .placeholder-img {
  position: relative;
  background: #e8dfce;
  overflow: hidden;
  border-radius: inherit;
}
body.mds-body .placeholder-img.dark {
  background: #2a2520;
}
body.mds-body .placeholder-img.warm {
  background: #c4a98a;
}
body.mds-body .placeholder-img.deep {
  background: #000000;
}
body.mds-body .placeholder-img.sage {
  background: #a6a695;
}
body.mds-body .placeholder-img.bone {
  background: #e8dfce;
}
body.mds-body .placeholder-img.cream {
  background: #e8dcc4;
}
body.mds-body .placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 253, 247, 0.18),
      transparent 60%
    ),
    radial-gradient(ellipse at 70% 80%, rgba(0, 0, 0, 0.18), transparent 60%); */
}
body.mds-body .placeholder-img::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); */
  mix-blend-mode: overlay;
}
body.mds-body .placeholder-img .caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(28, 24, 19, 0.55);
  color: rgba(250, 246, 236, 0.85);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  font-weight: 500;
}
body.mds-body .placeholder-img .caption::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--pColor);
  border-radius: 999px;
}
body.mds-body .placeholder-img.no-grain::after {
  display: none;
}
body.mds-body .marquee {
  background: var(--aColor);
  color: #f1eadd;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
body.mds-body .marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: #fffdf7;
}
body.mds-body .marquee-track span {
  display: flex;
  align-items: center;
  gap: 64px;
  font-family: 'Playfair Display';
}
body.mds-body .marquee-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
body.mds-body .intro {
  padding: 10vh 0px 5vh;
  background: #ffff;
}
body.mds-body .intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
body.mds-body .intro-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.mds-body .intro-card .img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
body.mds-body .intro-card .body {
  padding: 8px 4px;
}
body.mds-body .intro-card h3 {
  margin-bottom: 12px;
}
body.mds-body .intro-card p {
  font-size: 15px;
}
body.mds-body .intro-card .meta {
  margin-top: 12px;
  
  font-style: italic;
  color: var(--aColor);
}
body.mds-body .intro-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
body.mds-body .intro-head .right {
  color: #5c5246;
  padding-bottom: 8px;
  margin: 0px;
  font-size: 17px;
}
body.mds-body .services {
  padding: 5vh 0px 10vh;
  border-top: 1px solid rgba(28, 24, 19, 0.06);
  border-bottom: 1px solid rgba(28, 24, 19, 0.06);
}
body.mds-body .services-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
body.mds-body .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
body.mds-body .service-card {
  background: whitesmoke;
  padding: 22px;
  border: 1px solid rgba(28, 24, 19, 0.06);
  transition: all 320ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 440px;
}
body.mds-body .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 147, 150, 0.4);
}
body.mds-body .service-card .service-num {
  
  font-style: italic;
  font-size: 13px;
  color: var(--aColor);
  letter-spacing: 0.04em;
}
body.mds-body .service-card h3 {
  letter-spacing: -0.022em;
}
body.mds-body .service-card p {
  font-size: 15px;
}
body.mds-body .service-card .service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.mds-body .service-card .service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
  padding-top: 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
body.mds-body .service-card .service-footer .right {
  color: #8c8174;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  
  font-size: 14px;
}
body.mds-body .service-card .service-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
body.mds-body .cases {
  padding: clamp(80px, 10vw, 160px) 0;
  background: whitesmoke;
  overflow: hidden;
}
body.mds-body .cases-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
body.mds-body .ba-stage {
  position: relative;
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16/9;
  background: whitesmoke;
  box-shadow: 0 30px 80px rgba(28, 24, 19, 0.18);
}
body.mds-body .ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
body.mds-body .ba-after {
  z-index: 1;
}
body.mds-body .ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
body.mds-body .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fffdf7;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.3);
}
body.mds-body .ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fffdf7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: ew-resize;
  box-shadow: 0 8px 24px rgba(28, 24, 19, 0.35);
  color: var(--sColor);
  
  font-size: 14px;
}
body.mds-body .ba-handle svg {
  width: 20px;
  height: 20px;
}
body.mds-body .ba-label {
  position: absolute;
  top: 24px;
  z-index: 3;
  padding: 6px 14px;
  background: rgba(28, 24, 19, 0.65);
  color: #fffdf7;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
body.mds-body .ba-label.before {
  left: 24px;
}
body.mds-body .ba-label.after {
  right: 24px;
  background: var(--pColor);
  color: #fff;
}
body.mds-body .cases-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-top: 40px;
}
body.mds-body .cases-thumbs {
  display: flex;
  gap: 12px;
  align-items: center;
}
body.mds-body .case-thumb {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(28, 24, 19, 0.06);
  transition: all 280ms var(--ease);
  position: relative;
}
body.mds-body .case-thumb.active {
  outline: 2px solid var(--pColor);
  outline-offset: 3px;
}
body.mds-body .case-thumb:hover {
  transform: translateY(-2px);
}
body.mds-body .case-meta {
  
  font-size: 18px;
  color: var(--sColor);
  font-style: italic;
}
body.mds-body .case-meta .num {
  font-style: normal;
  color: var(--aColor);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  
  font-weight: 500;
}
body.mds-body .about {
  padding: clamp(80px, 10vw, 160px) 0;
  border-top: 1px solid rgba(28, 24, 19, 0.06);
}
body.mds-body .about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
body.mds-body .about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
body.mds-body .about-image-wrap .signature {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  
  font-style: italic;
  font-size: 28px;
  color: #fffdf7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
body.mds-body .about-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
body.mds-body .about-body p {
  font-size: 17px;
  max-width: 56ch;
}
body.mds-body .creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
}
body.mds-body .cred {
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid rgba(28, 24, 19, 0.1);
}
body.mds-body .cred:nth-child(odd) {
  border-right: 1px solid rgba(28, 24, 19, 0.1);
  padding-right: 24px;
}
body.mds-body .cred:nth-child(even) {
  padding-left: 24px;
  padding-right: 0;
}
body.mds-body .cred .label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--aColor);
  margin-bottom: 6px;
  font-weight: 500;
}
body.mds-body .cred .value {
  
  font-size: 18px;
  color: var(--sColor);
  line-height: 1.3;
}
body.mds-body .values {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--sColor);
  color: #fffdf7;
}
body.mds-body .values h2 {
  color: #fffdf7;
  max-width: 18ch;
}
body.mds-body .values .eyebrow {
  /* color: var(--pColor); */
}
body.mds-body .values .eyebrow::before {
  background: #ffffff;
}
body.mds-body .values-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
body.mds-body .values-head p {
}
body.mds-body .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 246, 236, 0.12);
}
body.mds-body .value-card {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(250, 246, 236, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.mds-body .value-card:last-child {
  border-right: none;
  padding-right: 0;
}
body.mds-body .value-card:not(:first-child) {
  padding-left: 32px;
}
body.mds-body .value-card .num {
  font-style: italic;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.04em;
}
body.mds-body .value-card h4 {
  color: #fffdf7;
}
body.mds-body .value-card p {
  font-size: 14px;
}
body.mds-body .testimonials {
  padding: clamp(80px, 10vw, 160px) 0;
}
body.mds-body .testimonials-head {
  margin-bottom: 64px;
  max-width: 1100px;
}
body.mds-body .testimonials-head h2 {
  font-size: clamp(48px, 5vw, 80px);
}
body.mds-body .testimonials-head h2 em {
  color: var(--aColor);
  font-style: italic;
}
body.mds-body .tlist {
  columns: 3;
  column-gap: 24px;
}
body.mds-body .tcard {
  break-inside: avoid;
  margin-bottom: 24px;
  background: #fffdf7;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(28, 24, 19, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.mds-body .tcard.dark {
  background: var(--sColor);
  color: #fffdf7;
}
body.mds-body .tcard.dark .tquote {
  color: #fffdf7;
}
body.mds-body .tcard.dark .tname {
  color: #fffdf7;
}
body.mds-body .tcard.dark .tmeta {
  color: rgba(250, 246, 236, 0.5);
}
body.mds-body .tcard.dark .tstars {
  color: var(--pColor);
}
body.mds-body .tcard.featured-quote {
  background: #e8dfce;
}
body.mds-body .tquote {
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.012em;
}
body.mds-body .tquote-lg {
  font-size: 28px;
  line-height: 1.3;
}
body.mds-body .tstars {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
}
body.mds-body .tperson {
  display: flex;
  gap: 14px;
  align-items: center;
}
body.mds-body .tavatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #e8dfce;
  overflow: hidden;
  flex-shrink: 0;
}
body.mds-body .tinfo {
  display: flex;
  flex-direction: column;
}
body.mds-body .tname {
  font-size: 16px;
  color: #fff;
  font-style: italic;
  font-family: 'Playfair Display';
  font-size: 28px;
}
body.mds-body .tmeta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c8174;
  margin-top: 2px;
}
body.mds-body .tstats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  padding: 48px 0 0;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
}
body.mds-body .t-slider {
  margin-top: 8px;
}
body.mds-body .t-slider-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  min-height: 480px;
}
body.mds-body .t-slider-card {
  background: var(--pColor);
  padding: 56px 56px 48px;
  border: 1px solid rgba(28, 24, 19, 0.06);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  animation: tFade 420ms var(--ease);
}
@keyframes tFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.mds-body .t-slider-card .tquote-lg {
  font-size: 17px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.7;
}
body.mds-body .t-slider-person {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 45%);
  padding-top: 28px;
}
body.mds-body .t-slider-aside {
  overflow: hidden;
  position: relative;
  animation: tFade 420ms var(--ease);
  display: none;
}
body.mds-body .t-slider-aside .placeholder-img {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
body.mds-body .t-slider-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(28, 24, 19, 0.1);
}
body.mds-body .t-slider-count {
  
  font-size: 22px;
  font-style: italic;
  color: var(--sColor);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
body.mds-body .t-slider-count .num {
  color: var(--sColor);
}
body.mds-body .t-slider-count .sep {
  color: #c9c0b0;
  font-size: 18px;
}
body.mds-body .t-slider-count .total {
  color: #8c8174;
  font-size: 16px;
}
body.mds-body .t-slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
body.mds-body .t-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(28, 24, 19, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 220ms var(--ease);
}
body.mds-body .t-dot:hover {
  background: rgba(28, 24, 19, 0.4);
}
body.mds-body .t-dot.active {
  background: var(--pColor);
  width: 28px;
}
body.mds-body .t-slider-arrows {
  display: flex;
  gap: 12px;
}
body.mds-body .t-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(28, 24, 19, 0.2);
  background: transparent;
  color: var(--sColor);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 240ms var(--ease);
}
body.mds-body .t-arrow:hover {
  background: var(--sColor);
  color: #fffdf7;
  border-color: var(--sColor);
}
@media (max-width: 900px) {
  body.mds-body .t-slider-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  body.mds-body .t-slider-aside {
    aspect-ratio: 16/10;
  }
  body.mds-body .t-slider-card {
    padding: 32px;
  }
  body.mds-body .t-slider-controls {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }
}
body.mds-body .tstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.mds-body .tstat .num {
  
  font-size: clamp(40px, 4vw, 64px);
  color: var(--sColor);
  font-weight: 300;
  letter-spacing: -0.02em;
}
body.mds-body .tstat .num em {
  color: var(--aColor);
  font-style: italic;
}
body.mds-body .tstat .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c8174;
  font-weight: 500;
}
body.mds-body .faq {
  padding: clamp(80px, 10vw, 160px) 0;
  background: whitesmoke;
  border-top: 1px solid rgba(28, 24, 19, 0.06);
}
body.mds-body .faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}
body.mds-body .faq-list {
  display: flex;
  flex-direction: column;
}
body.mds-body .faq-item {
  border-bottom: 1px solid rgba(28, 24, 19, 0.1);
  padding: 28px 0;
}
body.mds-body .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--sColor);
  letter-spacing: -0.012em;
  list-style: none;
  font-weight: 400;
}
body.mds-body .faq-item summary::-webkit-details-marker {
  display: none;
}
body.mds-body .faq-item summary .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(28, 24, 19, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 280ms var(--ease);
  
  font-size: 18px;
  color: var(--sColor);
}
body.mds-body .faq-item[open] summary .icon {
  background: var(--sColor);
  color: #fffdf7;
  border-color: var(--sColor);
  transform: rotate(45deg);
}
body.mds-body .faq-item summary:hover .icon {
  background: var(--pColor);
  border-color: var(--pColor);
  color: var(--sColor);
}
body.mds-body .faq-answer {
  padding-top: 16px;
  padding-right: 60px;
}
body.mds-body .faq-answer p {
  font-size: 15px;
}
body.mds-body .contact {
  padding: clamp(80px, 10vw, 160px) 0;
}
body.mds-body .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.mds-body .contact-card {
  background: var(--sColor);
  color: #fffdf7;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 540px;
}
body.mds-body .contact-card h2 {
  color: #fffdf7;
  font-size: clamp(36px, 3.6vw, 52px);
}
body.mds-body .contact-card h2 em {
  font-style: italic;
}
body.mds-body .contact-card .lead {
  color: rgb(255 255 255 / 82%);
  font-size: 16px;
}
body.mds-body .contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
body.mds-body .contact-info .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
body.mds-body .contact-info .row .label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}
body.mds-body .contact-info .row .value {
  
  font-size: 19px;
  color: #fffdf7;
  line-height: 1.3;
}
body.mds-body .contact-info .row .value a:hover {
  color: var(--pColor);
}
body.mds-body .contact-info .row .icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffff;
}
body.mds-body .map-card {
  overflow: hidden;
  position: relative;
  min-height: 540px;
}
body.mds-body .map-card .map-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  background: #fffdf7;
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  border: 1px solid rgba(28, 24, 19, 0.06);
}
body.mds-body .map-card .map-overlay .title {
  
  font-size: 20px;
  color: var(--sColor);
  margin-bottom: 6px;
}
body.mds-body .map-card .map-overlay .addr {
  font-size: 13px;
  color: #5c5246;
  margin-bottom: 16px;
}
body.mds-body .map-card .map-overlay .text-link {
  font-size: 11px;
}
body.mds-body .map-stylized {
  position: absolute;
  inset: 0;
  background: #dcd3c0;
}
body.mds-body .map-stylized svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
body.mds-body .map-pin {
  position: absolute;
  top: 38%;
  left: 52%;
  width: 32px;
  height: 32px;
  background: var(--pColor);
  border-radius: 999px 999px 0 999px;
  transform: rotate(45deg);
  box-shadow: 0 8px 24px rgba(28, 24, 19, 0.3);
}
body.mds-body .map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: #fffdf7;
}
body.mds-body .footer {
  background: #606060;
  color: #fff;
  padding: 80px 0 32px;
  font-size: initial;
}
body.mds-body .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
}
body.mds-body .footer-logo {
  display: block;
  margin-bottom: 24px;
  filter: brightness(1.4) contrast(1.05);
}
body.mds-body .footer-logo img {
  height: 100%;
  width: auto;
}
body.mds-body .footer-tagline {
  
  font-size: 18px;
  color: rgba(250, 246, 236, 0.8);
  font-style: italic;
  max-width: 32ch;
  line-height: 1.4;
}
body.mds-body .footer-col h5 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}
body.mds-body .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  padding: 0px;
}
body.mds-body .footer-col li a {
  color: rgba(250, 246, 236, 0.65);
}
body.mds-body .footer-col li a:hover {
  color: #fffdf7;
}
body.mds-body .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
body.mds-body .footer-bottom .links {
  display: flex;
  gap: 32px;
}
body.mds-body .footer-huge {
  
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: rgba(184, 153, 104, 0.18);
  text-align: center;
  padding: 32px 0 0;
  user-select: none;
}
body.mds-body .theme-sharp .nav,
body.mds-body .theme-sharp .btn,
body.mds-body .theme-sharp .hero-play,
body.mds-body .theme-sharp .util-stars + span,
body.mds-body .theme-sharp .placeholder-img .caption,
body.mds-body .theme-sharp .marquee-dot,
body.mds-body .theme-sharp .ba-handle,
body.mds-body .theme-sharp .ba-label,
body.mds-body .theme-sharp .case-thumb,
body.mds-body .theme-sharp .modal-close,
body.mds-body .theme-sharp .modal-aside .icon,
body.mds-body .theme-sharp .contact-info .row .icon,
body.mds-body .theme-sharp .faq-item summary .icon,
body.mds-body .theme-sharp .t-arrow,
body.mds-body .theme-sharp .t-dot,
body.mds-body .theme-sharp .util-divider,
body.mds-body .theme-sharp .map-pin {
}
body.mds-body .theme-sharp .intro-card .img,
body.mds-body .theme-sharp .service-card,
body.mds-body .theme-sharp .service-card .service-image,
body.mds-body .theme-sharp .ba-stage,
body.mds-body .theme-sharp .case-thumb,
body.mds-body .theme-sharp .about-image-wrap,
body.mds-body .theme-sharp .tcard,
body.mds-body .theme-sharp .contact-card,
body.mds-body .theme-sharp .map-card,
body.mds-body .theme-sharp .modal,
body.mds-body .theme-sharp .t-slider-card,
body.mds-body .theme-sharp .t-slider-aside,
body.mds-body .theme-sharp .map-card .map-overlay,
body.mds-body .theme-sharp .hero[data-layout="type-led"] .typeled-image {
  border-radius: 4px;
}
body.mds-body .theme-sharp .tavatar {
  border-radius: 0;
}
body.mds-body .theme-sharp .btn {
  border-radius: 2px;
  padding: 16px 30px;
}
body.mds-body .theme-sharp .hero-play,
body.mds-body .theme-sharp .modal-close,
body.mds-body .theme-sharp .contact-info .row .icon,
body.mds-body .theme-sharp .faq-item summary .icon,
body.mds-body .theme-sharp .t-arrow {
  border-radius: 999px;
}
body.mds-body .theme-sharp .form-row input,
body.mds-body .theme-sharp .form-row select,
body.mds-body .theme-sharp .form-row textarea {
  border-radius: 0;
}
body.mds-body .theme-sharp .t-dot {
  border-radius: 2px;
  height: 4px;
  width: 18px;
}
body.mds-body .theme-sharp .t-dot.active {
  width: 48px;
}
body.mds-body .theme-sharp .marquee-dot {
  border-radius: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  body.mds-body .nav-links {
    display: none;
  }
  body.mds-body .hero-grid {
    grid-template-columns: 1fr;
  }
  body.mds-body .intro-grid,
  body.mds-body .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.mds-body .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.mds-body .tlist {
    columns: 2;
  }
  body.mds-body .about-grid,
  body.mds-body .contact-grid,
  body.mds-body .faq-grid,
  body.mds-body .intro-head,
  body.mds-body .services-head,
  body.mds-body .cases-head,
  body.mds-body .values-head,
  body.mds-body .cases-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.mds-body .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.mds-body .tstats {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  body.mds-body .creds {
    grid-template-columns: 1fr;
  }
  body.mds-body .cred:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  body.mds-body .cred:nth-child(even) {
    padding-left: 0;
  }
  body.mds-body .hero[data-layout="split"] .hero-inner {
    grid-template-columns: 1fr;
  }
  body.mds-body .hero[data-layout="split"] .hero-image-wrap {
    height: 50vh;
  }
}
@media (max-width: 720px) {
  body.mds-body .intro-grid,
  body.mds-body .values-grid,
  body.mds-body .tlist {
    columns: auto;
    grid-template-columns: 1fr;
  }
  body.mds-body .tlist {
    display: flex;
    flex-direction: column;
  }
  body.mds-body .footer-grid,
  body.mds-body .tstats {
    grid-template-columns: 1fr;
  }
  body.mds-body .utility-bar {
    display: none;
  }
}
body.mds-body .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 24, 19, 0.55);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 200ms var(--ease);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.mds-body .modal {
  background: #fffdf7;
  border-radius: 24px;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  animation: slideUp 320ms var(--ease);
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body.mds-body .modal-aside {
  background: var(--sColor);
  color: #fffdf7;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
body.mds-body .modal-aside h3 {
  color: #fffdf7;
  font-size: 32px;
}
body.mds-body .modal-aside h3 em {
  color: var(--pColor);
  font-style: italic;
}
body.mds-body .modal-aside p {
  color: rgba(250, 246, 236, 0.7);
  font-size: 14px;
}
body.mds-body .modal-aside .modal-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
}
body.mds-body .modal-aside > * {
  position: relative;
  z-index: 1;
}
body.mds-body .modal-body {
  padding: 48px 40px;
  overflow-y: auto;
}
body.mds-body .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(250, 246, 236, 0.1);
  border: 1px solid rgba(250, 246, 236, 0.2);
  color: #fffdf7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
body.mds-body .modal-close:hover {
  background: var(--pColor);
  border-color: var(--pColor);
  color: var(--sColor);
}
body.mds-body .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
body.mds-body .form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
body.mds-body .form-row label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c8174;
  font-weight: 500;
}
body.mds-body .form-row input,
body.mds-body .form-row select,
body.mds-body .form-row textarea {
  
  font-size: 15px;
  color: var(--sColor);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(28, 24, 19, 0.2);
  padding: 10px 0;
  outline: none;
  transition: border-color 200ms;
}
body.mds-body .form-row input:focus,
body.mds-body .form-row select:focus,
body.mds-body .form-row textarea:focus {
  border-bottom-color: var(--aColor);
}
body.mds-body .modal-body h4 {
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  body.mds-body .modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  body.mds-body .modal-aside {
    padding: 32px 24px;
  }
  body.mds-body .modal-body {
    padding: 32px 24px;
  }
}

body.mds-body .nav-links ul.menu {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
  margin: 0;
  padding: 0;
}
body.mds-body .nav-links ul.menu li {
  position: relative;
  list-style: none;
}
body.mds-body .nav-links ul.menu li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  display: inline-block;
}
body.mds-body .nav-links ul.menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--pColor);
  transition: width 240ms ease;
  transform: translateX(-50%);
}
body.mds-body .nav-links ul.menu li a:hover,
body.mds-body .nav-links ul.menu li.current-menu-item > a {
  color: #fff;
}
body.mds-body .nav-links ul.menu li a:hover::after,
body.mds-body .nav-links ul.menu li.current-menu-item > a::after {
  width: 100%;
}
body.mds-body .nav-links ul.menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 100%;
  min-width: 220px;
  background: #fffdf7;
  border: 1px solid rgba(28, 24, 19, 0.08);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 220ms ease;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
body.mds-body .nav-links ul.menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.mds-body .nav-links ul.menu li ul.sub-menu li {
  display: block;
}
body.mds-body .nav-links ul.menu li ul.sub-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
}
body.mds-body .nav-links ul.menu li ul.sub-menu li a::after {
  display: none;
}
body.mds-body .nav-links ul.menu li ul.sub-menu li:hover > a {
  background: #f1eadd;
  color: var(--sColor);
}
body.mds-body .footer-logo img {
  max-height: 150px;
  width: auto;
  height: auto;
}
body.mds-body .footer-tagline {
  max-width: 320px;
}
@media (max-width: 1024px) {
  body.mds-body .nav-links {
    display: none;
  }
}

body.mds-body .hero .hero-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0px;
}
body.mds-body .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.mds-body .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media img {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
}

.utility-bar * {
    color: #fff !important;
}

header#site-header {
    position: relative;
    z-index: 999;
    width: 100%;
    height: 182px;
}

body.mds-body .footer-col ul a {
    color: #fff;
}

.bottom-footer {
    text-align: center;
    display: flex;
    justify-content: flex-start;
    padding-top: 37px;
    flex-wrap: wrap;
}

.bottom-footer p {
    flex: 1 1 50%;
    text-align: left;
}

.bottom-footer p:nth-child(3) {
    flex: 1 1 100%;
    text-align: right;
}

.bottom-footer p:nth-child(2) {
    text-align: right;
}

.map-stylized iframe {
    height: 100%;
}

body.mds-body .faq * {
    color: #000;
}

body.mds-body .faq a.btn {
    color: #fff;
}

section#faq .eyebrow:before {
    background: #000;
}

.testimonials-head span {
    color: #000;
}

.testimonials-head .eyebrow {
    color: var(--aColor) !important;
}

.testimonials-head .eyebrow:before {
    background: var(--aColor) !important;
}

.cases-head .eyebrow {
    color: var(--aColor) !important;
}

.cases-head .eyebrow:before {
    background: var(--aColor) !important;
}

.about-body .eyebrow {
    color: #000 !important;
}

.about-body .eyebrow:before {
    background: #000 !important;
}

body.mds-body .faq-item summary span {
    font-family: 'Playfair Display';
}


.intro-head span {
    color: var(--aColor) !important;
}

.intro-head span:before {
    background: var(--aColor) !important;
}


.service-image img {
    width: 100%;
}

.services-head .eyebrow {
    color: var(--aColor) !important;
}

.services-head .eyebrow:before {
    background: var(--aColor) !important;
}

header .dm-rate-us span {
    font-size: 18px;
}

.bottom-footer p {
    margin: 0px;
}

.bottom-footer p a {
    font-weight: bold;
}

.cases-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}

.ba-card {
    flex: 1 1 32.33%;
}
.t-slide-inner {
    background: var(--pColor);
    padding: 20px;
    color: #fff;
}

.t-slide {
    margin: 0px 10px;
}

.tavatar {
    display: none;
}

.ba-card img {
    width: 100%;
}

.ba-card-meta {
    text-align: center;
}

.ba-card-meta span {
    padding-top: 5px;
    display: inline-block;
}

.t-slider-slick .slick-dots button {
    background: #000000a3 !important;
}

.about-body p {
    margin-bottom: 0px;
}

.mds-mobile-toggle { display: none; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.mds-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--sColor, #2A241D); transition: transform 240ms ease, opacity 200ms ease; }
.mds-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mds-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mds-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mds-mobile-overlay { position: fixed; inset: 0; background: rgba(28,24,19,0.55); z-index: 998; opacity: 0; transition: opacity 280ms ease; }
.mds-mobile-overlay.is-open { opacity: 1; }
.mds-mobile-overlay[hidden] { display: none; }

.mds-mobile-drawer { position: fixed; top: 0; right: 0; width: min(360px, 88vw); height: 100vh; background: #FFFDF7; z-index: 999; transform: translateX(100%); transition: transform 320ms cubic-bezier(.22,.61,.36,1); display: flex; flex-direction: column; gap: 24px; padding: 24px 28px 32px; overflow-y: auto; box-shadow: -12px 0 40px rgba(0,0,0,0.15); }
.mds-mobile-drawer.is-open { transform: translateX(0); }
.mds-mobile-head { display: flex; align-items: center; justify-content: space-between; }
.mds-mobile-logo img { max-height: 48px; width: auto; display: block; }
.mds-mobile-close { background: transparent; border: 0; padding: 6px; cursor: pointer; color: var(--sColor, #2A241D); }

.mds-mobile-nav .mds-mobile-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mds-mobile-nav .mds-mobile-menu li { list-style: none; }
.mds-mobile-nav .mds-mobile-menu li a { display: block; padding: 14px 0; font-family: 'Fraunces', serif; font-size: 22px; color: var(--sColor, #2A241D); border-bottom: 1px solid rgba(28,24,19,0.08); text-decoration: none; }
.mds-mobile-nav .mds-mobile-menu li.current-menu-item > a { color: var(--pColor, #3F9396); }
.mds-mobile-nav .mds-mobile-menu li ul.sub-menu { list-style: none; margin: 0; padding: 6px 0 10px 16px; }
.mds-mobile-nav .mds-mobile-menu li ul.sub-menu li a { font-family: 'Inter', sans-serif; font-size: 14px; padding: 8px 0; border: 0; color: #5C5246; }

.mds-mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.mds-mobile-cta .btn { width: 100%; justify-content: center; text-align: center; }

.mds-mobile-info { font-size: 13px; color: #5C5246; display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(28,24,19,0.08); }
.mds-mobile-info p { color: inherit; margin: 0; }
.mds-mobile-hours { font-size: 13px; }
.mds-mobile-social { display: flex; gap: 14px; align-items: center; }
.mds-mobile-social a { color: var(--sColor, #2A241D); }

body.mds-menu-open { overflow: hidden; }

@media (max-width: 1024px) {
	
	.nav-cta > a {
		display: none !important;
	}
	.mds-mobile-toggle { display: inline-flex; }
	body.mds-body .nav-links { display: none !important; }
	body.mds-body .nav-cta .btn-ghost { display: none; }
	header#site-header {
		overflow: hidden;
		height: auto;
	}
}

@media (max-width: 880px) {
	.contact-grid {
		width: 100%;
		display: block !important;
	}

}
nav.nav.header_fixed {
    background: #ffffffbd;
}

nav {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
	.hero-meta {
		display: none !important;
	}

	div#page {
		padding: 0px !important;
	}

	body.mds-body .hero-inner {
		padding: 20px;
	}

	body.mds-body .hero-media img {
		object-position: 74% 50%;
	}

	body.mds-body .services-grid {
		grid-template-columns: 1fr;
	}

	body.mds-body .nav-logo img {
		max-height: initial;
		max-width: 100px;
	}

	.ba-card {
		flex-basis: 250px;
		margin-bottom: 20px;
	}

	body.mds-body .contact-card {
		padding: 30px;
	}

	.value a {
		word-wrap: break-word;
		display: blck;
	}

	.bottom-footer {
		display: block;
	}

	.bottom-footer * {
		text-align: left !important;
	}
}

@media (min-width: 1025px) {
	aside#mdsMobileDrawer {
		display: none;
	}
}

div#page {
    padding: 0px;
}

ul#menu-main-menu li a {
    color: #000;
}

nav.nav.header_fixed {
    position: fixed;
}

.footer-socials a {
    width: 50px;
    line-height: 50px;
    background: var(--aColor);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
}

section#reviews .slick-dots {
    position: relative;
}

.dm-service-section a {color: #000 !important;}
.dm-service-section  h2, h3 {padding-bottom: 10px !important;}



body.mds-body h1 {
    font-size: clamp(35px, 4vw, 90px);
}

body:not(.home) .service-style-image {height: 250px !important;}

ul.sub-menu.wda-long-menu.moveLeft {top: 0 !important;}

.sub-menu .sub-menu {
padding: 0px !important;
transform: none !important;
top: 0px !important;
}

.utility-bar * {font-size: 18px;}

body.mds-body h1 {
    font-size: clamp(32px, 3vw, 90px);
}

.dm-service-section a.btn {color: white !important;}

body.mds-body h2 {
	font-size: clamp(40px, 2.8vw, 60px);}

.page-id-11 article ul li a {
	color: black !important;}

body.mds-body .intro-card .img {
    aspect-ratio: 5 / 5;
    overflow: hidden;
}