/* CSS file for Designero Homepage Adjustments matching the Figma Mockup 100% */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap");

:root {
  --black: #11120D;
  --text-dark: #565449;
  --bone: #D8CFBC;
  --canvas: #FFFBF4;
  --accent: #565449;
  --white: #FFFBF4;
  --form-bg: #1e201b;
}

/* Final homepage spacing override */
.stats-bar-custom {
  padding: 8px 0 !important;
}

.staff-section-custom {
  padding-bottom: 56px !important;
}

.staff-slider-container {
  padding-top: 60px !important;
  padding-bottom: 56px !important;
}

.slider-dots {
  margin-top: 48px !important;
}

.featured-custom {
  padding-bottom: 8px !important;
  min-height: 450px !important;
}

.featured-custom h2 {
  margin-bottom: 20px !important;
}

.testimonials-section {
  padding: 60px 0 72px !important;
}

.testimonial-dots {
  padding: 24px 20px 0 !important;
}

.partners-custom {
  padding-bottom: 56px !important;
}

main > section.partners-custom.full-width-section {
  padding: 64px 0 !important;
}

.partners-custom h2 {
  margin-bottom: 48px !important;
}

.mid-banner-sec {
  height: 420px !important;
}

.activities-section {
  padding-bottom: 68px !important;
}

main > section.activities-section.full-width-section {
  padding-top: 50px !important;
}

.coverflow-container {
  margin-top: -50px !important;
  height: 500px !important;
}

.contact-band {
  padding-top: 56px !important;
}

main > section.contact-band.full-width-section {
  padding: 56px 0 24px !important;
}

/* Compact spacing pass for the live homepage */
.stats-bar-custom {
  padding: 8px 0;
}

.staff-section-custom {
  padding-bottom: 56px;
}

.staff-slider-container {
  padding-top: 60px;
  padding-bottom: 56px;
}

.slider-dots {
  margin-top: 48px;
}

.featured-custom {
  padding-bottom: 8px;
  min-height: 450px;
}

.featured-custom h2 {
  margin-bottom: 20px;
}

.testimonials-section {
  padding: 60px 0 72px;
}

.testimonial-dots {
  padding: 24px 20px 0;
}

.partners-custom {
  padding-bottom: 56px;
}

main > section.partners-custom.full-width-section {
  padding: 64px 0;
}

.partners-custom h2 {
  margin-bottom: 48px;
}

.mid-banner-sec {
  height: 420px;
}

.activities-section {
  padding-bottom: 68px;
}

main > section.activities-section.full-width-section {
  padding-top: 50px;
}

.coverflow-container {
  margin-top: -50px;
  height: 500px;
}

.contact-band {
  padding-top: 56px;
}

main > section.contact-band.full-width-section {
  padding: 56px 0 24px !important;
}

/* Core Values Section Adjustments */
.core {
  background: #11120D;
  color: var(--text-dark) !important;
  position: relative;
  padding: 100px 0 !important;
  margin-top: -1px;
  overflow: visible;
}

.core-watermark {
  position: absolute;
  top: 10%;
  left: -100px;
  width: 500px;
  height: auto;
  opacity: 0.08;
  filter: brightness(0) saturate(100%) invert(32%) sepia(10%) saturate(583%) hue-rotate(24deg) brightness(96%) contrast(87%); /* Matches --text-dark #565449 */
  pointer-events: none;
  z-index: 1;
}

.core .container {
  position: relative;
  z-index: 2;
  width: min(1360px, 92%);
  margin: 0 auto;
}

.core h2 {
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 15px;
}

.core-subtitle {
  font-size: 16px !important;
  font-style: italic;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.core-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.core-card-custom {
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.core-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.core-card-custom.dark-card {
  background: #22241F;
  color: var(--white);
}

.core-card-custom.light-card {
  background: #FFFBF4;
  color: var(--text-dark);
  border: 1px solid rgba(86, 84, 73, 0.15);
}

.core-card-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.core-card-body {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.core-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.core-card-header img,
.core-card-header i {
  width: 32px;
  height: 32px;
  font-size: 32px;
  color: inherit;
}

.core-card-header h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.core-card-list {
  list-style: none;
  padding: 9px 10px 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.core-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.core-card-list li i {
  margin-top: 3px;
  font-size: 16px;
  flex-shrink: 0;
}

.core-conclusion {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* Construction Tree Flowchart Section */
.construction-tree-sec {
  background: #11120D;
  color: var(--bone);
  padding: 0px 10px 0px;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
  max-height: 0;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  visibility: hidden;
  transition:
    max-height 0.75s ease,
    opacity 0.45s ease,
    transform 0.75s ease,
    visibility 0s linear 0.75s,
    padding 0.75s ease;
  will-change: max-height, opacity, transform;
}

.construction-tree-sec.is-open {
  max-height: 2600px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  padding: 24px 0 80px;
  transition:
    max-height 0.9s ease,
    opacity 0.45s ease 0.05s,
    transform 0.9s ease,
    visibility 0s linear 0s,
    padding 0.75s ease;
}

.construction-tree-sec.is-open .btn-scroll-tree-link {
  margin-top: 60px;
}

.construction-tree-sec h2 {
  color: var(--bone);
  text-align: center;
  margin-bottom: 12px;
}

.construction-tree-subtitle {
  text-align: center;
  color: rgba(216, 207, 188, 0.7);
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 14px;
}

/* Tree Chart Layout Redesign */
.tree-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  width: min(1360px, 92%);
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  --tree-line: rgba(216, 207, 188, 0.96);
}

.tree-connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.tree-level-top {
  display: flex;
  justify-content: center;
  width: 100%;
}

.tree-level-cnda {
  position: relative;
}

.tree-node-wrapper-top {
  display: grid;
  grid-template-columns: auto minmax(54px, 1fr) auto;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 460px;
}

.tree-connector-h-top {
  width: 100%;
  height: 2px;
  background: transparent;
}

.tree-connector-v {
  width: 2px;
  height: 34px;
  background: transparent;
  margin: -1px auto 0;
  position: relative;
  z-index: 1;
}

.tree-connector-v-short {
  width: 2px;
  height: 22px;
  background: transparent;
  margin: -1px auto 0;
  position: relative;
  z-index: 1;
}

.tree-middle-wrap {
  width: 100%;
  position: relative;
}

.tree-middle-nodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

/* Middle Horizontal Line connecting the 3 columns */
.tree-middle-nodes::before {
  display: none;
}

.tree-middle-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tree-bottom-wrap {
  width: 100%;
  position: relative;
}

.tree-bottom-nodes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
  width: 100%;
}

/* Bottom Horizontal Line connecting the 6 columns */
.tree-bottom-nodes::before {
  display: none;
}

.tree-bottom-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.tree-node {
  border: 1.5px solid var(--tree-line);
  background: var(--black); /* Opaque background to hide connector line */
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--bone);
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.tree-node:hover {
  background: rgba(216, 207, 188, 0.2);
  transform: scale(1.05);
}

.tree-node.primary-node {
  font-size: 16px;
  padding: 15px 30px;
  border-width: 2px;
  background: var(--black); /* Opaque background to hide connector line */
}

.tree-node.bottom-node {
  $114px;
  padding: 10px 12px;
  width: 100%;
  white-space: normal; /* allow wrapping on narrow screens */
}

/* Staff Slider Section (image3.png) */
/* Staff Slider Section (image3.png) */
.staff-section-custom {
  background: #11120D !important;
  background-image: none !important;
  color: #ffffff;
  padding: 2px 0 76px;
  margin-top: 0;
  position: relative;
  overflow: visible;
}

main > section.staff-section-custom {
  margin-top: -4px !important;
}

.staff-section-custom .container {
  width: min(1360px, 92%);
  margin: 0 auto;
}

.staff-section-custom h2 {
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.staff-sub-subtitle {
  text-align: center;
  $114px;
  font-weight: 300;
  letter-spacing: 8px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 0px;
  text-transform: uppercase;
}

.staff-slider-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-top: 85px;
  padding-bottom: 80px;
}

.staff-slider-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s ease-in-out;
  align-items: flex-start;
}

.staff-card-custom {
  flex: 0 0 calc(20% - 12px);
  background: #dfdbd4;
  border-radius: 12px;
  padding: 15px 10px 14px;
  display: grid;
  grid-template-rows: 194px auto auto auto;
  align-content: start;
  justify-items: center;
  text-align: center;
  color: #11120D;
  transition: transform 0.3s ease;
  min-height: 290px;
  position: relative;
  overflow: visible;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.staff-card-custom:hover {
  transform: translateY(-8px);
}

.staff-photo-wrap-custom {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: visible;
  margin-bottom: 8px;
  z-index: 4;
}

.staff-photo-wrap-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 4px solid rgba(152, 166, 172, 0.9);
  background:
    linear-gradient(180deg, rgba(47, 49, 54, 0.98), rgba(33, 35, 39, 0.95)),
    url("../images/staff-bg-gold.png") center/cover no-repeat;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  z-index: 0;
}

.staff-photo-wrap-custom::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -8px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.28), transparent 72%);
  z-index: 1;
}

.staff-photo-wrap-custom img {
  position: absolute;
  left: 50%;
  bottom: -165px;
  transform: translateX(-50%) translateY(-48%);
  width: 120%;
  max-width: none;
  height: 270px;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  z-index: 8;
}

.staff-photo-wrap-custom.watermark-placeholder::before {
  background:
    linear-gradient(180deg, rgba(43, 44, 40, 0.98), rgba(43, 44, 40, 0.90)),
    url("../images/staff-bg-gold.png") center/122% no-repeat;
}

.staff-photo-wrap-custom.watermark-placeholder img {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72%;
  height: auto;
  max-width: none;
  bottom: auto;
  top: 50%;
  opacity: 0.26;
  filter: brightness(1.1) contrast(1.08);
}

.staff-card-custom strong {
  font-size: 14px;
  font-weight: 800;
  color: #11120D;
  margin-top: -15px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.staff-card-custom small {
  $114px;
  color: #565449;
  margin-bottom: 1px;
}

.staff-card-custom em {
  $114px;
  font-style: normal;
  font-weight: 700;
  color: #8a8880;
  text-transform: uppercase;
  margin-top: 2px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 80px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #565449;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--bone);
}

/* View More Section style */
.staff-view-more {
  text-align: center;
  margin-top: 0px;
  position: relative;
  /* Add beautiful linear gradient background to transition from #11120D to #000000 */
  background: linear-gradient(to bottom, #11120D 0%, #000000 100%);
  padding: 60px 0 100px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: 5;
}

.btn-scroll-tree-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  color: #FFFBF4;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-scroll-tree-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #FFFBF4;
  text-transform: uppercase;
  margin-bottom: 2px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-scroll-tree-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 12px 0 18px;
}

.btn-scroll-tree-subtitle {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(86, 84, 73, 0.22); /* muted brand color #565449 with low opacity */
  text-transform: uppercase;
  margin: 0;
  padding: 9px 10px 8px;
  line-height: 1;
  user-select: none;
  transition: color 0.3s ease;
}

.btn-scroll-tree-icon {
  position: absolute;
  font-size: 20px;
  color: #FFFBF4;
  z-index: 2;
  animation: bounceArrow 2s infinite ease-in-out;
  transition: color 0.3s ease;
}

.btn-scroll-tree-link {
  display: inline-block;
  font-family: var(--font-main);
  $114px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-scroll-tree-text:hover .btn-scroll-tree-title {
  color: var(--bone);
  transform: translateY(-2px);
}

.btn-scroll-tree-text:hover .btn-scroll-tree-subtitle {
  color: rgba(216, 207, 188, 0.35); /* highlight gold accent on hover */
}

.btn-scroll-tree-text:hover .btn-scroll-tree-icon {
  color: var(--bone);
}

.btn-scroll-tree-text:hover .btn-scroll-tree-link {
  color: var(--bone);
  transform: translateY(2px);
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.btn-scroll-tree-text em {
  font-style: italic;
  text-transform: none;
}

/* Featured Projects Slider (image4.png) */
.featured-custom {
  background: #11120D;
  color: #ffffff;
  padding: 0px 0 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  overflow: visible;
  position: relative;
  isolation: isolate;
  min-height: 500px;
}

main > section.featured-custom.full-width-section {
  margin-top: 0 !important;
  width: 100vw;
  background: #11120D !important;
  display: block;
}

.featured-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #11120D url("../../assets/images/logo-white.png") center 44px / 800px auto no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.featured-custom .container {
  position: relative;
  z-index: 1;
}

.featured-custom h2 {
  text-align: center;
  margin: 0 0 30px;
}

.project-filters {
  position: relative;
  width: min(342px, 67vw);
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 12px;
  padding: 9px 10px 8px;
  isolation: isolate;
  overflow: visible;
}

.project-filters-bg {
  display: none;
}

.project-filters button {
  position: relative;
  z-index: 1;
  min-width: 120px;
  width: 120px;
  height: 32px;
  padding: 0 16px;
    font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0.6;
}

.project-filters button.filter-arch {
  background-image: none;
  background-color: #D8CFBC;
  color: #565449;
  border-radius: 0 16px 0 16px;
}

.project-filters button.filter-decor {
  background-image: none;
  background-color: #D45937;
  color: #FFFBF4;
  border-radius: 16px 0 16px 0;
}

.project-filters button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.project-filters button.is-active {
  opacity: 1;
  transform: translateY(-1px) scale(1.015);
}

.projects-slider-wrap {
  width: min(1360px, 92%);
  margin: 0 auto;
  overflow: visible;
  position: relative;
  padding-bottom: 2px;
}

.projects-slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s ease-in-out;
}

.project-card-custom {
  flex: 0 0 calc(20% - 10px); /* 5 cards visible */
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  overflow: visible;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.project-card-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-custom:hover img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.project-card-overlay h4 {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

/* Testimonials custom (image4.png right side styling) */
.testimonials-section {
  background: #11120D !important;
  background-image: none !important;
  padding: 80px 0 100px;
  color: #ffffff;
  position: relative;
  overflow: visible;
}

.brand-story-section {
  background: #050505;
  color: #fff;
  padding: 92px 0 0;
  position: relative;
  overflow: visible;
}

.brand-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 32%),
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.76) 52%, rgba(0,0,0,0.38) 100%);
  pointer-events: none;
}

.brand-story-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.brand-story-copy {
  position: relative;
  padding-right: 24px;
}

.brand-story-kicker {
  color: var(--bone);
  $114px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-story-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 60px);
  line-height: 1.3;
  letter-spacing: 1.5px;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 620px;
}

.brand-story-desc {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.75;
}

.brand-story-media {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.brand-story-image-shell {
  position: relative;
  width: min(100%, 720px);
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.brand-story-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.brand-story-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.brand-story-ornament {
  position: absolute;
  top: -8px;
  left: 12px;
  width: 64px;
  height: 156px;
  z-index: 2;
  pointer-events: none;
}

.brand-story-ornament span {
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--bone);
  border-top: 2px solid var(--bone);
  border-radius: 100% 0 100% 0;
  transform: rotate(25deg);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.brand-story-timeline {
  position: absolute;
  right: -2px;
  top: 84px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.brand-year {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.64);
  cursor: pointer;
  padding: 9px 10px 8px;
  text-align: right;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease, filter 180ms ease;
  opacity: 0.72;
}

.brand-year strong {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
}

.brand-year-prefix,
.brand-year-suffix {
  display: inline-block;
}

.brand-year-suffix {
  color: var(--bone);
}

.brand-year-label {
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(216, 207, 188, 0.72);
}

.brand-year.is-active {
  color: #fff;
  opacity: 1;
  margin-bottom: 10px;
  transform: translateX(-6px);
  filter: drop-shadow(0 10px 18px rgba(17, 18, 13, 0.22));
}

.brand-year.is-active strong {
  font-size: 66px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-year.is-active .brand-year-label {
  color: var(--bone);
}

.brand-year::after {
  content: "";
 display: block;
 width: 58px;
 height: 2px;
 margin-top: 4px;
 background: transparent;
}

.brand-year.is-active::after {
 width: 72px;
 background: var(--bone);
}
.core.brand-core-section {
  padding: 40px 0 !important;
  margin-top: 0 !important;
  border-radius: 0;
  border: 0;
  text-align: left;
  overflow: visible;
}

.core.brand-core-section::before {
  display: none;
}

.core-brand-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5px;
  align-items: stretch;
  min-height: 440px;
  overflow: visible;
  background: #565449;
  width: 100%;
}

.core.brand-core-section .core-brand-grid {
  margin-top: 0;
  width: min(1360px, 92%);
  margin-left: auto;
  margin-right: auto;
  min-height: 360px;
}

.core-brand-media {
  min-height: 360px;
}

.core-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-brand-content {
  padding: 24px 42px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.core-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.core-tab {
  border: 0;
  background: #d8cfbc;
  color: #11120D;
  padding: 9px 22px;
    $114px;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.core-tab.is-active {
  background: #11120D;
  color: #fff;
}

.core-copy {
  color: #FFFBF4;
  $114px;
  line-height: 1.55;
  max-width: 90%;
}

.core-copy p {
  margin: 0 0 8px;
}

.core-copy strong {
  color: #fff;
}

.core-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .core-brand-grid {
    grid-template-columns: 1fr;
  }

  .core-brand-media {
    min-height: 320px;
  }

  .core-brand-content {
    padding: 26px 22px 24px;
  }
}

.core.brand-core-section + .testimonials-section {
  margin-top: 0;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,18,13,0.84) 0%, rgba(17,18,13,0.30) 40%, rgba(17,18,13,0.82) 100%),
    radial-gradient(circle at center, rgba(216, 207, 188, 0.08), transparent 42%);
  pointer-events: none;
}

.about-fields,
.workflow-section,
.service-showcase,
.workshop-section {
  position: relative;
  background: #11120D;
  color: #FFFBF4;
  margin-top: -1px;
  overflow: visible;
}

.about-fields-shell,
.workflow-shell,
.service-showcase-shell,
.workshop-shell {
  width: min(1360px, 92%);
  margin: 0 auto;
}

.about-fields {
  padding: 34px 0 26px;
  background-image: linear-gradient(180deg, rgba(17,18,13,0.96), rgba(17,18,13,0.96)), url('../images/team-banner.png');
  background-size: cover;
  background-position: center;
}

.about-fields-shell {
  text-align: center;
}

.about-fields-kicker,
.workflow-title,
.service-showcase-title,
.workshop-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.about-fields-kicker {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  margin-bottom: 6px;
}

.about-fields-title {
  margin-bottom: 18px;
}

.workflow-title,
.service-showcase-title,
.workshop-title {
  line-height: 1.05;
  color: #FFFBF4;
}

.about-fields-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.2fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: center;
}

.about-fields-card {
  text-align: right;
}

.about-fields-card.right {
  text-align: left;
}

.about-fields-card.right .about-fields-copy {
  margin-left: auto;
}

.about-fields-copy h3,
.workflow-step h3,
.service-tile h3 {
  margin: 0 0 8px;
  color: #FFFBF4;
}

.about-fields-copy h3 span {
  display: block;
  color: #D8CFBC;
}

.about-fields-copy p,
.workflow-step p,
.workshop-copy p,
.service-tile p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.75;
}

.about-fields-copy p {
  max-width: 410px;
}

.about-fields-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.about-fields-center-art {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  overflow: visible;
  border: 3px solid rgba(216, 207, 188, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  background: #11120D;
}

.about-fields-center-art img,
.workflow-step > img,
.service-tile img,
.workshop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-fields-divider {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0px solid #FFFBF4;
  color: #FFFBF4;
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: 800;
}

.workflow-section {
  padding: 28px 0 30px;
  background: #565449;
}

.workflow-title,
.service-showcase-title,
.workshop-title {
  text-align: center;
  margin-bottom: 22px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.workflow-step {
  position: relative;
  min-height: 258px;
  border-radius: 14px;
  overflow: visible;
  background: #1a1a16;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  cursor: pointer;
}

.workflow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 18, 13, 0.16), rgba(17, 18, 13, 0.76));
  z-index: 1;
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background: linear-gradient(120deg, transparent 42%, rgba(255, 251, 244, 0.18) 50%, transparent 58%);
  transform: translateX(-80%) rotate(4deg);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.workflow-step-content,
.service-tile-content,
.workshop-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.workflow-step-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px 12px;
}

.workflow-step-top,
.service-tile-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.workflow-step .workflow-icon,
.service-tile .service-tile-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(402%) hue-rotate(359deg) brightness(92%) contrast(84%);
  opacity: 0.98;
}

.workflow-step h3 {
  max-width: 150px;
  margin-bottom: 0;
  color: #FFFBF4;
  $114px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.workflow-step .workflow-step-top {
  position: relative;
  z-index: 2;
}

.workflow-step p {
  line-height: 1.35;
  max-width: 250px;
  $114px;
  color: rgba(255, 251, 244, 0.84);
  align-self: flex-start;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFBF4;
  font-size: 56px;
  font-weight: 700;
  user-select: none;
  opacity: 0.96;
  transform: translateY(-2px);
}

.workflow-step:hover::after {
  opacity: 1;
  animation: workflowShine 900ms ease forwards;
}

@keyframes workflowShine {
  from { transform: translateX(-85%) rotate(4deg); }
  to { transform: translateX(85%) rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-step,
  .workflow-step-content,
  .workflow-step .workflow-icon,
  .workflow-arrow,
  .workflow-step::after {
    transition: none;
    animation: none;
  }
}

:where(a, button, [role="button"], .workflow-step, .service-tile, .workshop-card, .project-card-custom, .btn-banner-more, .btn-form-submit, .btn-footer-hotline, .nav-arrow-btn) {
  cursor: pointer;
}

.service-showcase {
  padding: 34px 0 30px;
  background: #11120D;
}

.service-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 12px;
  flex-wrap: wrap;
  position: relative;
  width: min(342px, 67vw);
  padding: 9px 10px 8px;
  isolation: isolate;
  overflow: visible;
}

.service-showcase-bg {
  display: none;
}

.service-showcase-tab {
  position: relative;
  z-index: 1;
  min-width: 120px;
      width: 120px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  $114px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  opacity: 0.6;
}

.service-showcase-tab[data-service-tab="architecture"] {
  background-image: none;
  background-color: #D8CFBC;
  color: #565449;
  border-radius: 0 16px 0 16px;
}

.service-showcase-tab[data-service-tab="decor"] {
  background-image: none;
  background-color: #D45937;
  color: #FFFBF4;
  border-radius: 16px 0 16px 0;
}

.service-showcase-tab:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.service-showcase-tab.is-active {
  opacity: 1;
  transform: translateY(-1px) scale(1.015);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin: 8px auto 20px;
  width: 100%;
  max-width: 1360px;
  border-radius: 0;
  overflow: visible;
}

.showcase-tab {
  border: 0;
  padding: 14px 10px;
  background: #565449;
  color: #d8cfbc;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, font-family 0.25s ease;
}

.showcase-tab.active {
  background: #d8cfbc;
  color: #11120d;
  transform: translateY(-1px) scale(1.05);
  font-family: "Baloo 2", sans-serif !important;
  font-weight: 800;
}

.showcase-subtabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 12px;
    position: relative;
  width: min(342px, 67vw);
  padding: 9px 10px 8px;
  isolation: isolate;
  overflow: visible;
}

.showcase-subtab {
  position: relative;
  z-index: 1;
  min-width: 120px;
      width: 120px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  opacity: 0.6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: "UTM Avo", sans-serif;
}

.showcase-subtab:nth-child(1) {
  background: #565449;
  color: #fffbf4;
  border-radius: 0 16px 0 16px;
}

.showcase-subtab:nth-child(2) {
  background: #d8cfbc;
  color: #565449;
  border-radius: 0;
}

.showcase-subtab:nth-child(3) {
  background: #d8cfbc;
  color: #565449;
  border-radius: 16px 0 16px 0;
}

.showcase-subtab.active {
  opacity: 1;
  transform: translateY(-1px) scale(1.015);
  background: #d8cfbc;
  color: #11120d;
  font-family: "Baloo 2", sans-serif !important;
  font-weight: 800;
}

.service-showcase-panel {
  display: none;
}

.service-showcase-panel.is-active {
  display: block;
}

.service-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-tile,
.workshop-card {
  position: relative;
  min-height: 220px;
  border-radius: 16px;
  overflow: visible;
  background: #565449;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
}

.service-tile::before,
.workshop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.08), rgba(9, 9, 9, 0.66));
  z-index: 1;
}

.service-tile-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #FFFBF4;
}

.service-tile h3 {
  color: #FFFBF4;
}

.service-tile p {
  max-width: 210px;
}

.workshop-section {
  padding: 40px 0 0;
  background: #11120D;
}

.workshop-top {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.workshop-title {
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}

.workshop-copy p {
  margin-bottom: 12px;
}

.workshop-more {
  color: #D8CFBC;
  text-decoration: none;
  font-weight: 800;
}

.workshop-gallery-wrap {
  width: min(1360px, 92%);
  margin: 24px auto 0;
  overflow: visible;
  position: relative;
}

.workshop-gallery {
  display: flex;
    gap: 14px;
  overflow: visible;
  padding-bottom: 2px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
  transform: translateX(0);
  transition: transform 360ms ease;
}

.workshop-card {
  min-height: 220px;
  flex: 0 0 280px;
  width: 280px;
}

.workshop-card-content {
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #FFFBF4;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.workshop-dots {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .about-fields-row,
  .workshop-top {
    grid-template-columns: 1fr;
  }

  .about-fields-card.right,
  .workshop-title {
    text-align: left;
  }

  .about-fields-visual {
    order: -1;
    margin: 10px 0;
    flex-wrap: wrap;
  }

  .workflow-grid,
  .service-grid-5,
  .workshop-gallery {
    display: flex;
  }

  .workshop-card {
    flex-basis: 80vw;
    width: 80vw;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    font-size: 30px;
    padding: 4px 0;
  }
}

.testimonials-custom-row {
  position: relative;
  z-index: 1;
}

.testimonials-custom-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.58fr);
  gap: 36px;
  align-items: center;
  width: min(1360px, 92%);
  margin: 0 auto;
}

.testimonials-left-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  justify-content: center; 
  padding-top: 10px;
}

.testimonials-title-wrap h2 {
  line-height: 1.95;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
}

.testimonial-authors-list {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  width: min(100%, 600px);
  padding-left: 0;
}

.author-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: #ffffff;
  opacity: 0.78;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  padding: 9px 10px 8px;
  min-width: 148px;
}

.author-btn.active {
  opacity: 1;
  transform: translateY(-4px);
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bone);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-info strong {
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.6px;
}

.author-info span {
  $114px;
  opacity: 0.8;
}

.testimonial-right-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 0;
  align-items: center;
}

.testimonial-bubble {
  background: #FFFBF4;
  color: #11120D;
  border-radius: 22px;
  padding: 30px 32px 24px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  width: min(100%, 600px);
  margin-left: 0;
  margin-right: 0;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -12px;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: #FFFBF4;
}

.testimonial-bubble i.quote-icon {
  font-size: 26px;
  color: var(--bone);
  margin-bottom: 14px;
  display: block;
}

.testimonial-bubble p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #11120D;
  font-weight: 500;
}

.testimonial-bubble-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(86, 84, 73, 0.1);
  padding-top: 15px;
  margin-top: 15px;
}

.testimonial-author-name {
  $114px;
  font-weight: 700;
  color: #565449;
}

.testimonial-bubble .view-more-testimonial {
  font-weight: 700;
  color: #565449;
  $114px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.testimonial-bubble .view-more-testimonial:hover {
  color: #11120D;
}

.testimonial-dots {
  margin-top: 0;
  justify-content: flex-start;
  width: min(100%, 600px);
  padding: 50px 20px 5px;
}

/* Partners Slider (image5.png) */
.partners-custom {
  background: var(--black);
  padding: 0 0 80px;
  color: #ffffff;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  overflow: visible;
}

main > section.partners-custom.full-width-section {
  margin-top: 0 !important;
  width: 100vw;
  background: #11120D !important;
  display: block;
  padding: 80px 0;
}

.partners-custom h2 {
  text-align: center;
  margin: 0 0 70px;
  letter-spacing: 1.5px;
  color: var(--bone);
}

.partners-grid-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1360px, 92%);
  margin: 0 auto;
  gap: 30px;
}

.partner-logo-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo-item:hover {
  opacity: 1;
}

.partner-logo-image {
  width: min(100%, 150px);
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.12) opacity(0.72);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo-item:hover .partner-logo-image {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1) opacity(1);
}

/* Mouse Scroll Indicator CSS */
.mouse-scroll-indicator {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
  margin: 15px auto 0;
}

.mouse-scroll-indicator::before {
  content: "";
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% { top: 6px; opacity: 1; }
  50% { top: 14px; opacity: 0.2; }
  100% { top: 6px; opacity: 1; }
}

/* Mid Group Photo Banner (image6.png) */
.mid-banner-sec {
  position: relative;
  height: 480px;
  background: url('../images/team-banner.png') no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
}

main > section.mid-banner-sec.full-width-section {
  margin-top: 0 !important;
  width: 100vw;
  background-color: #11120D;
  display: flex;
}

.mid-banner-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 13, 0.4); /* darker, warm overlay to match branding */
  z-index: 1;
}

.mid-banner-container {
  position: relative;
  z-index: 2;
  width: min(1360px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr;
  align-items: center;
  color: #ffffff;
  gap: 30px;
}

.mid-banner-left h2 {
  margin: 0;
  line-height: 1.9;
  letter-spacing: 1.5px;
  color: var(--bone);
}

.mid-banner-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse-scroll-indicator.double-arrow {
  border-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  $114px;
  width: 24px;
  height: 32px;
}

.mouse-scroll-indicator.double-arrow i {
  animation: double-arrow-bounce 1.5s infinite;
}

@keyframes double-arrow-bounce {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(2px); }
}

.mid-banner-right {
  max-width: 500px;
  text-align: left;
  justify-self: end;
}

.mid-banner-right p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.btn-banner-more {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  $114px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-banner-more:hover {
  background: #ffffff;
  color: #000000;
}

/* Flat Cover Flow Activities Gallery (image7.png) */
.activities-section {
  background: var(--black);
  color: #ffffff;
  padding: 0 0 92px;
  overflow: visible;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  position: relative;
}

main > section.activities-section.full-width-section {
  margin-top: 0 !important;
	padding-top:70px;
  width: 100vw;
  background: #11120D !important;
  display: block;
}

.activities-section h2 {
  text-align: center;
  margin: 0;
  color: var(--bone);
}

.coverflow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  position: relative;
  overflow: visible;
  width: 100%;
  perspective: 1200px;
  margin-top: -70px;
}

.coverflow-card {
  width: 210px;
  height: 300px;
  border-radius: 0px;
  overflow: visible;
  position: absolute;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.1);
  transform: scale(0.8);
  opacity: 0.4;
  backface-visibility: hidden;
  transform-origin: center center;
}

.coverflow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Flat positions (without skewed 3D rotation) */
.coverflow-card.far-left {
  transform: translateX(-470px) rotateY(28deg) scale(0.72);
  z-index: 1;
  opacity: 0.2;
}

.coverflow-card.left {
  transform: translateX(-250px) rotateY(18deg) scale(0.9);
  z-index: 2;
  opacity: 0.6;
}

.coverflow-card.center {
  transform: translateX(0) rotateY(0deg) scale(1.05);
  z-index: 3;
  opacity: 1;
  border-color: var(--bone);
  box-shadow: 0 20px 40px rgba(216, 207, 188, 0.2);
}

.coverflow-card.right {
  transform: translateX(250px) rotateY(-18deg) scale(0.9);
  z-index: 2;
  opacity: 0.6;
}

.coverflow-card.far-right {
  transform: translateX(470px) rotateY(-28deg) scale(0.72);
  z-index: 1;
  opacity: 0.2;
}

.activities-controls {
  display: none;
}

.activities-instruction {
  $114px;
  color: #ff3b30;
  font-style: italic;
}

.activities-nav-btns {
  display: flex;
  gap: 100px;
  position: relative;
  z-index: 12;
}

.activities-nav-btns-overlay {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 20;
}

.nav-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #D8CFBC;
  color: #11120D;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  position: relative;
  z-index: 21;
}

.nav-arrow-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  color: #11120D;
}

.nav-arrow-btn i {
  font-size: 18px;
}

/* Redesigned Form (image8.png) */
section {
  scroll-margin-top: 88px; /* Solves sticky header overlap on section scrolls! */
}

/* Header Backdrop Filter & Blur Fix */
.topbar {
  background: rgba(17, 18, 13, 0.7) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding-left: clamp(24px, 4vw, 56px) !important;
  padding-right: clamp(24px, 4vw, 56px) !important;
}

.logo-box {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-name {
  line-height: 1.4;
}

.main-nav button {
  line-height: 1.25;
}

.hotline {
  padding: 8px 10px;
  line-height: 1.2;
}

.contact-band {
  background: var(--black) !important;
  padding: 0 !important;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
}

main > section.contact-band.full-width-section {
  margin-top: 0 !important;
  width: 100vw;
  background: #11120D !important;
  display: block;
}

.contact-container-custom {
  width: min(1360px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 5px;
  align-items: stretch;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  min-height: 520px;
}

.contact-left-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-side {
  background: #d8cfbc;
  border: 2px solid rgba(216, 207, 188, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 251, 244, 0.06);
  padding: 10px 30px 24px;
  color: #ffffff;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:#565449;border-radius:10px;
  padding: 24px;
}

.quote-row {
  display: grid;
  gap: 20px;
}

.quote-row-top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.quote-row-middle {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.quote-row-bottom {
  grid-template-columns: 1fr;
}

.quote-col {
  min-width: 0;
}

.quote-col-contact h3,
.quote-col-need h3 {
  color: var(--bone);
  margin: 0 0 12px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.quote-input-grid {
  display: grid;
  gap: 14px 18px;
}

.quote-input-grid-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.quote-input-grid-need {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.quote-input-grid .span-full {
  grid-column: 1 / -1;
}

.need-choices-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 8px;
}

.contact-form-side input[type="text"],
.contact-form-side input[type="tel"],
.contact-form-side input[type="email"],
.contact-form-side select,
.contact-form-side textarea {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: var(--bone) !important;
  background-color: var(--bone) !important;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.5;
  min-height: 44px;
}

.contact-form-side select {
  padding-right: 36px;
}

.contact-form-side textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form-side input::placeholder,
.contact-form-side textarea::placeholder {
  color: rgba(17, 18, 13, 0.6);
}

.form-section-title {
  letter-spacing: 0.03em;
  color: var(--bone);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.choice-label {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  cursor: pointer;
  color: var(--bone);
  line-height: 1.45;
  white-space: nowrap;
}

.choice-label input[type="checkbox"],
.choice-label input[type="radio"] {
  accent-color: var(--bone);
  width: 12px;
  height: 12px;
}

.row-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0px;
  margin-bottom:10px;
}

.form-submit-wrap {
  text-align: right;
  margin-top: 2px;
}

.btn-form-submit {
 position: relative;
 isolation: isolate;
 overflow: visible;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 48px;
 padding: 14px 36px;
  border: 1px solid rgba(212, 207, 188, 0.22);
 background: linear-gradient(135deg, #3d3a35, #292724);
 color: #ffffff;
 font-family: 'UTM Avo', Arial, sans-serif;
 font-size: 16px;
 font-weight: 600;
 letter-spacing: 0.5px;
 cursor: pointer;
 box-shadow: 0 10px 24px rgba(17, 18, 13, 0.26), 0 0 0 1px rgba(255, 251, 244, 0.06) inset, 0 0 15px rgba(212, 163, 89, 0.12);
 transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.btn-form-submit::before {
 content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%);
  pointer-events: none;
}

.btn-form-submit::after {
  content: "";
 position: absolute;
 inset: auto -35% -65% 18%;
 width: 58%;
 height: 160%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
 transform: rotate(24deg) translateX(-120%);
 transition: transform 540ms ease;
 pointer-events: none;
}

.btn-form-submit:hover {
 border-color: rgba(212, 163, 89, 0.72);
 box-shadow: 0 14px 32px rgba(17, 18, 13, 0.3), 0 0 28px rgba(212, 163, 89, 0.34), 0 0 0 1px rgba(255, 251, 244, 0.1) inset;
 transform: translateY(-2px);
 filter: saturate(1.05);
}

.btn-form-submit:hover::after {
 transform: rotate(24deg) translateX(220%);
}

.btn-form-submit:focus-visible {
 outline: 2px solid rgba(212, 207, 188, 0.85);
 outline-offset: 3px;
}

.page-shell .quote-form button,
.page-shell .btn-form-submit {
  font-size: 16px !important;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .contact-container-custom {
    width: min(1360px, 92%);
    grid-template-columns: 1fr;
  }
  .contact-left-img {
    height: 320px;
    min-height: 320px;
  }
}

/* Redesigned Footer (image9.png) */
.site-footer {
  background: var(--black) !important;
  color: #ffffff !important;
  padding: 88px 0 32px !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.footer-top {
  display: grid !important;
  grid-template-columns: 3fr 2fr 2fr 2fr !important; /* 30% / 20% / 20% / 20% */
  gap: 40px !important;
  width: min(1360px, 92%);
  margin: 0 auto 50px;
}

.footer-col h3 {
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 1px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--bone);
}

.footer-col p, .footer-col ul li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 9px 10px 8px;
  margin: 0;
}

.footer-col ul li a {
  transition: color 0.3s ease;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--bone);
}

/* Column 3 details */
.btn-footer-hotline {
  display: block;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-align: left;
  padding: 12px 5px 10px 6px;
  width: 75%;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.btn-footer-hotline:hover {
  background: #ffffff;
  color: #11120D;
  border-color: #ffffff;
}

.footer-social-wrap {
  margin-top: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social-icons a {
  width: 36px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
}

.footer-social-icons a:hover {
  background: var(--bone);
  color: #11120D;
  border-color: var(--bone);
}

/* Column 4 Map Frame */
.footer-map-wrap {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: visible;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-address {
  $114px !important;
  line-height: 1.7;
}

/* Copyright footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  $114px;
}

/* Custom Menu Dropdown Styling */
.mega-panel {
  background: rgba(86, 84, 73, 0.5) !important;
  backdrop-filter: blur(12px);
  border: 0 !important;
  border-radius: 16px !important;
  padding: 8px !important;
  box-shadow: none !important;
}

/* Side navigation in mega panel (e.g. for KIẾN TRÚC, DECOR) */
.side-nav {
  background: rgba(86, 84, 73, 0.5) !important;
  backdrop-filter: blur(12px);
  border: 0 !important;
  border-radius: 16px !important;
  padding: 8px !important;
  box-shadow: none !important;
}

/* Sub-panel in mega panel (e.g. for sub-menus) */
.sub-panel {
  background: rgba(86, 84, 73, 0.7) !important;
  backdrop-filter: blur(12px);
  border: 0 !important;
  border-radius: 16px !important;
  padding: 8px !important;
  box-shadow: none !important;
}

.mega-panel a,
.side-nav button,
.sub-panel a {
  justify-content: flex-start !important;
  text-align: left !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  margin: 2px 0 !important;
  box-sizing: border-box !important;
}

/* Make dot bullets inherit text color so they color-match on hover */
.mega-panel a::before,
.side-nav button::before,
.sub-panel a::before {
  background: currentColor !important;
}

/* Hover & Active Styles */
.mega-panel:not(.has-sub) a:hover,
.side-nav button:hover,
.side-nav button.is-active,
.sub-panel a:hover {
  background: #D8CFBC !important;
  color: #11120D !important;
}

/* Stats Bar Section (#11120D, 80px high, 4 columns) */
.stats-bar-custom {
  background-color: #11120D;
  min-height: 80px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  z-index: 10;
  position: relative;
}

.stats-bar-custom .container {
  width: min(1360px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.stats-bar-custom .stat-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stats-bar-custom .stat-num {
  font-size: 46px;
  font-weight: 800;
  font-family: var(--font-bold);
  color: #D8CFBC;
  line-height: 1;
}

.stats-bar-custom .stat-text {
  font-size: 14px;
  color: #D8CFBC;
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .stats-bar-custom .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .stats-bar-custom {
    padding: 24px 0;
  }
  .core-cards-wrap {
    grid-template-columns: 1fr;
  }
  .tree-middle-nodes {
    gap: 14px;
  }
  .tree-bottom-nodes {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .tree-bottom-col, .tree-middle-col {
    width: auto;
    max-width: none;
  }
  .staff-card-custom {
    flex: 0 0 calc(50% - 10px);
    min-height: 290px;
  }
  .staff-photo-wrap-custom {
    height: 184px;
  }
  .staff-photo-wrap-custom img {
    bottom: -170px;
    height: 300px;
  }
  .staff-card-custom strong {
    margin-top: -15px;
  }
  .project-card-custom {
    flex: 0 0 calc(33.333% - 14px);
  }
  .testimonials-custom-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial-bubble::after {
    display: none;
  }
  .contact-container-custom {
    grid-template-columns: 1fr;
  }
  .contact-left-img {
    height: 300px;
    min-height: 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .stats-bar-custom .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .construction-tree-sec {
    padding: 0px 10px 0px;
  }
  .construction-tree-sec.is-open {
    padding: 20px 0 72px;
  }
  .construction-tree-sec.is-open .btn-scroll-tree-link {
    margin-top: 60px;
  }
  .construction-tree-sec h2 {
    margin-bottom: 10px;
  }
  .construction-tree-subtitle {
    max-width: 92%;
    margin-bottom: 26px;
    $114px;
  }
  .tree-container {
    max-width: 100%;
    padding-inline: 12px;
  }
  .tree-node-wrapper-top {
    grid-template-columns: auto minmax(36px, 1fr) auto;
  }
  .tree-node,
  .tree-node.primary-node {
    white-space: normal;
  }
  .tree-node {
    $114px;
    padding: 9px 8px;
  }
  .tree-node.primary-node {
    $114px;
    padding: 12px 14px;
  }
  .tree-connector-v {
    height: 28px;
  }
  .tree-connector-v-short {
    height: 18px;
  }
  .tree-middle-nodes {
    gap: 10px;
  }
  .tree-bottom-nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .staff-card-custom {
    flex: 0 0 100%;
    min-height: 290px;
  }
  .staff-photo-wrap-custom {
    height: 176px;
  }
  .staff-photo-wrap-custom img {
    bottom: -156px;
    height: 272px;
  }
  .staff-card-custom strong {
    margin-top: 26px;
  }
  .project-card-custom {
    flex: 0 0 calc(50% - 10px);
  }
  .mid-banner-container {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
  }
  .mid-banner-center {
    display: none; /* Hide scroll icon on mobile banner */
  }
  .mid-banner-right {
    text-align: left;
    justify-self: start;
  }
  .form-top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
  }
}

/* Final homepage spacing override */
.stats-bar-custom {
  padding: 8px 0 !important;
}

.staff-section-custom {
  padding-bottom: 56px !important;
}

.staff-slider-container {
  padding-top: 60px !important;
  padding-bottom: 56px !important;
}

.staff-section-custom .container {
  width: min(1360px, 92%) !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.staff-slider-container {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
}

.slider-dots {
  margin-top: 48px !important;
}

.featured-custom {
  padding-bottom: 8px !important;
  min-height: 450px !important;
}

.featured-custom h2 {
  margin-bottom: 20px !important;
}

.testimonials-section {
  padding: 60px 0 72px !important;
}

.testimonial-dots {
  padding: 24px 20px 0 !important;
}

.partners-custom {
  padding-bottom: 56px !important;
}

main > section.partners-custom.full-width-section {
  padding: 64px 0 !important;
}

.partners-custom h2 {
  margin-bottom: 48px !important;
}

.mid-banner-sec {
  height: 420px !important;
}

.activities-section {
  padding-bottom: 68px !important;
}

main > section.activities-section.full-width-section {
  padding-top: 50px !important;
}

.coverflow-container {
  margin-top: -50px !important;
  height: 500px !important;
}

.contact-band {
  padding-top: 56px !important;
}

main > section.contact-band.full-width-section {
  padding: 56px 0 24px !important;
}

.featured-custom h2 {
  padding-top: 10px !important;
}

.staff-view-more {
  padding: 10px 0 20px !important;
}

.project-card-overlay {
  padding: 0 !important;
}

.project-card-overlay h4 {
  padding: 9px 0 10px 7px !important;
}

/* Partners slider mobile styling */
@media (max-width: 768px) {
  .partner-logo-item {
    flex: 0 0 140px !important;
    width: 140px !important;
  }
}

/* DESIGNERO workshop banner + trust layout tuning */
h2 {
  margin: 0;
  font-family: var(--font-bold);
  font-size: var(--heading-size);
  line-height: 1.1;
  font-weight: 800;
}

h2.trust-heading {
  font-size: 22px;
  line-height: 1.25;
}

.workshop-top {
  display: block;
}

.workshop-top > .workshop-title,
.workshop-top > .workshop-copy {
  display: none;
}

.workshop-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  min-height: 520px;
  margin-bottom: 24px;
}

.workshop-banner-visual {
  position: relative;
  overflow: visible;
  min-height: 520px;
  background: #11120D;
}

.workshop-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-banner-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(97, 91, 77, 0.12) 0%, rgba(97, 91, 77, 0.72) 100%);
  pointer-events: none;
}

.workshop-banner-copy {
  position: relative;
  min-height: 520px;
  padding: 54px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #11120D;
  overflow: visible;
}

.workshop-banner-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/wp-content/themes/vaway_Designero/assets/images/logo-white.png') no-repeat right 28px center / min(440px, 72%) auto;
  opacity: 0.06;
  pointer-events: none;
}

.workshop-banner-copy > * {
  position: relative;
  z-index: 1;
}

.workshop-banner-watermark {
  display: none;
}

.workshop-banner-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.workshop-heading {
  max-width: 520px;
  color: var(--bone);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.92;
}

.workshop-area {
  flex: 0 0 auto;
  color: var(--white);
  font-family: var(--font-bold);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-bottom: 10px;
}

.workshop-banner-title {
  margin: 0 0 12px;
  color: var(--bone);
  font-family: var(--font-bold);
  font-size: 22px;
  line-height: 1.25;
}

.workshop-banner-desc {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 251, 244, 0.82);
  font-size: 14px;
  line-height: 1.8;
}

.workshop-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(216, 207, 188, 0.36);
    color: var(--bone);
  background: rgba(17, 18, 13, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.workshop-more:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 207, 188, 0.72);
  background: rgba(255, 251, 244, 0.06);
}

.trust-layout {
  position: relative;
  background: #11120D;
  color: var(--white);
}

.trust-layout-image {
  position: relative;
  overflow: visible;
}

.trust-layout-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(97, 91, 77, 0.05) 0%, rgba(97, 91, 77, 0.74) 100%);
  pointer-events: none;
}

.trust-layout-number,
.trust-layout-number * {
  font-family: var(--font-bold);
  font-weight: 800;
}

.trust-layout-number {
  font-size: 36px;
  line-height: 1;
}

.trust-layout-item.is-active .trust-layout-number,
.trust-layout-item.active .trust-layout-number {
  font-size: 50px;
}

.trust-layout-item .trust-heading {
  font-size: 22px;
}

@media (max-width: 1100px) {
  .workshop-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .workshop-banner-visual,
  .workshop-banner-copy {
    min-height: 320px;
  }

  .workshop-banner-copy {
    padding: 32px 24px 28px;
  }

  .workshop-banner-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .workshop-heading {
    font-size: clamp(38px, 10vw, 56px);
    max-width: none;
  }
}

/* Testimonials drag carousel */
.testimonials-section {
  background: var(--black);
  padding: 48px 0 56px;
  color: var(--white);
}

.testimonials-shell {
  width: min(1360px, 92%);
  margin: 0 auto;
}

.testimonial-bubble {
  width: min(100%, 720px);
  margin: 0 auto 20px;
}

.testimonials-track-viewport {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonials-track-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-track-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  padding: 2px 0 10px;
  width: 100%;
}

.testimonial-thumb {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 207, 188, 0.18);
  border-radius: 18px;
  background: rgba(17, 18, 13, 0.8);
  color: var(--white);
  opacity: 0.72;
  transform: scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.testimonial-thumb.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(216, 207, 188, 0.42);
  background: rgba(86, 84, 73, 0.26);
}

.testimonial-thumb .client-avatar {
  width: 56px;
  height: 56px;
}

.testimonial-thumb .author-info strong {
  font-size: 14px;
}

.testimonial-thumb .author-info span {
  font-size: 13px;
  color: rgba(255, 251, 244, 0.72);
}

.testimonial-dots {
  justify-content: center;
  gap: 8px;
  padding: 16px 0 0;
  margin-top: 0;
}

.testimonial-dots .dot {
  width: 9px;
  height: 9px;
  border: 0;
    background: rgba(86, 84, 73, 0.9);
  padding: 9px 10px 8px;
  transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.testimonial-dots .dot.active {
  width: 24px;
  background: var(--bone);
}

@media (max-width: 768px) {
  .testimonials-shell {
    width: min(100%, calc(100% - 24px));
  }

  .testimonial-bubble,
  .testimonials-track-viewport {
    width: 100%;
  }

  .testimonial-thumb {
    width: 190px;
  }
}

.footer-inner {
  max-width: 1360px !important;
  width: min(1360px, 92%);
}
