@import url('https://db.onlinewebfonts.com/c/5b5fcc354ed196046001a2db207984fa?family=UTM+Avo');

:root {
  --canvas: #FFFBF4;
  --block: #D8CFBC;
  --block-dark: #565449;
  --text: #565449;
  --muted: #565449;
  --black: #11120D;
  --accent: #565449;
  --white: #FFFBF4;
  --line: rgba(17, 18, 13, 0.18);
  --wrap: 100vw;
  --section-pad: clamp(18px, 5vw, 90px);
  --heading-size: 40px;
  --subheading-size: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: 'UTM Avo', sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.figma-page {
  position: relative;
  width: var(--wrap);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--canvas);
}

main > section:not(.hero-panel):not(.full-width-section) {
  width: min(1360px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
  margin-top:90px;
}

.topbar {
  position: fixed;
  width: 100%;

  top: 0;
  z-index: 50;
  height: 88px;
  display: grid;
  grid-template-columns: 150px 1fr 118px 42px 0;
  align-items: center;
  gap: 18px;
  background: rgba(28, 35, 51, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 10% !important;  /* Äáº©y ná»™i dung tá»« bÃªn trÃ¡i vÃ o */
  padding-right: 10% !important; /* Äáº©y ná»™i dung tá»« bÃªn pháº£i vÃ o */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  display: grid;
  width: 120px;
  height: 80px;
  place-items: center;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 26px;
}

.logo-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fff;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.main-nav button {
  position: relative;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 0;
  transition: color 140ms ease, background-color 140ms ease;
}

.main-nav button::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(-1px);
  opacity: 1;
}

.main-nav button:hover,
.main-nav button:focus-visible {
  color: #cbcfd0;
  background: transparent;
  outline: none;
}

.main-nav button.is-active {
  color: #cbcfd0;
  background: transparent;
}

.hotline {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.search-toggle {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}

.search-panel {
  position: sticky;
  top: 88px;
  z-index: 48;
  max-height: 0;
  overflow: hidden;
  background: rgba(16, 24, 28, 0.5);
  transition: max-height 220ms ease;
  backdrop-filter: blur(10px);
}

.search-panel.is-open {
  max-height: 84px;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(960px, calc(100% - 36px));
  margin: 12px auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.search-form input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.96);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 7px auto;
  background: var(--text);
}

.mega {
  position: absolute;
  top: calc(100% + 2px);
  left: 0; /* Default, will be adjusted by JS if needed */
  width: max-content;
  min-height: 0;
  padding: 12px;
  transform: translateY(-10px);
  display: none !important;
  opacity: 0;
  background: #060724;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1), transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.mega.is-open {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

.mega-panel {
  display: none;
  min-width: 240px;
  background: #060724;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.mega-panel.is-visible {
  display: block;
}

.mega-panel.has-sub {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.mega-panel.has-sub.is-visible {
  display: flex;
  gap: 0;
  align-items: start;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 240px;
  flex-shrink: 0;
  background: #060724;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.side-nav button {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 180ms ease;
}

.side-nav button:last-child {
  border-bottom: 0;
}

.side-nav button::before,
.mega-panel a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.side-nav button:hover,
.side-nav button.is-active {
  background: #8a1a00;
  color: #fff;
  border-bottom-color: transparent;
  border-radius: 0;
}

.side-content {
  flex: 1;
  background: transparent;
}

.sub-panel {
  display: none;
  flex-direction: column;
  min-width: 300px;
  background: #8a1a00;
  border-radius: 16px;
  padding: 0;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sub-panel.is-visible {
  display: flex;
}

.mega-panel a {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: all 180ms ease;
  line-height: 1.2;
}

.sub-panel a {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.sub-panel a:last-child {
  border-bottom: 0;
}

.mega-panel:not(.has-sub) a:hover {
  background: #8a1a00;
}

.sub-panel a:hover {
  background: rgba(255, 255, 255, 0.1);
}


.mobile-drawer {
  position: fixed;
  inset: 88px 0 0 auto;
  z-index: 45;
  width: min(360px, 86vw);
  padding: 24px;
  transform: translateX(105%);
  background: var(--canvas);
  border-left: 1px solid var(--line);
  transition: transform 180ms ease;
}

.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.hero-panel {
  height: 900px;
  padding-top: 0;
  position: relative;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 26, 0.36), rgba(18, 24, 26, 0.46));
}

.brand-statement {
  height: 244px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: var(--canvas);
  text-align: center;
}

.center-logo {
  display: grid;
  justify-items: center;
  margin-bottom: 18px;
}

.center-logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 0;
  font-family: 'UTM Avo', sans-serif;
  font-size: var(--heading-size);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-family: 'UTM Avo', sans-serif;
  font-size: var(--heading-size);
  line-height: 1.1;
  font-weight: 800;
}

h3 {
  font-family: 'UTM Avo', sans-serif;
  font-size: var(--subheading-size);
  line-height: 1.2;
  font-weight: 700;
}


.services-luxury {
  background: #565449;
  color: #FFFBF4;
  padding: 120px 0;
  width: 100%;
}

.services-luxury .container {
  width: min(1360px, 92%);
  margin: 0 auto;
}

.services-luxury .center-logo {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
}

.services-luxury .center-logo img {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.services-luxury .section-title {
  font-family: 'UTM Avo', sans-serif;
  font-size: 46px;
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-align: center;
  color: #FFFBF4;
  font-weight: 800;
}

.services-luxury .section-sub {
  color: rgba(255, 251, 244, 0.68);
  max-width: 820px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto 70px;
}

.services-luxury .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.services-luxury .service-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(216, 207, 188, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  height: 600px;
}

.services-luxury .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.services-luxury .service-card:hover img {
  transform: scale(1.05);
}

.services-luxury .service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 18, 13, 0.95), rgba(17, 18, 13, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  text-align: left;
}

.services-luxury .service-overlay h3 {
  font-family: 'UTM Avo', sans-serif;
  font-size: 34px;
  margin-bottom: 14px;
  color: #FFFBF4;
  font-weight: 700;
}

.services-luxury .service-overlay p {
  color: rgba(255, 251, 244, 0.74);
  line-height: 1.8;
  margin: 0;
}

@media(max-width: 1024px) {
  .services-luxury .service-grid {
    grid-template-columns: 1fr;
  }
  .services-luxury .service-card {
    height: 500px;
  }
}

.team-section {
  position: relative;
  padding: 26px clamp(18px, 2.6vw, 42px) 64px;
  background: #eef1f2;
  text-align: center;
  overflow: hidden;
  border-radius: 12px;
}

.team-section::before,
.team-section::after {
  content: "";
  position: absolute;
  right: -120px;
  border-radius: 50%;
  border: 34px solid rgba(87, 102, 108, 0.08);
  width: 360px;
  height: 360px;
  pointer-events: none;
}

.team-section::before {
  top: -100px;
}

.team-section::after {
  bottom: -120px;
}

.team-section h2 {
  margin: 40px 0 22px;
  color: #5b6e75;
  letter-spacing: 0.4px;
}

.team-section h3 {
  margin: 0 0 95px;
  color: #667980;
  font-size: 32px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 26px clamp(12px, 1.6vw, 20px);
  margin-bottom: 0;
}

.staff-card {
  min-height: 348px;
  display: grid;
  grid-template-rows: 188px auto auto auto;
  align-content: start;
  justify-items: center;
  background: #d3d7d9;
  border: 1px solid rgba(38, 51, 56, 0.1);
  border-radius: 10px;
  overflow: visible;
  padding: 25px 10px 10px; margin-bottom: 50px;
}

.staff-photo-wrap {
  position: relative;
  width: 100%;
  height: 194px;
  border-radius: 10px;
  overflow: visible;
  z-index: 4;
}

.staff-photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid rgba(152, 166, 172, 0.9);
  background: #0b0d11;
  background-image: url("../images/staff-bg-gold.png");
  background-size: cover;
  background-position: center;
}

.staff-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04) brightness(0.94);
}

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

.staff-photo-shadow {
  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: 3;
}

.staff-card strong {
  font-size: 14px;
  margin-top: 34px;
  color: #3f5660;
  text-align: center;
}

.staff-card small {
  color: #6f7f85;
  font-size: 12px;
  text-align: center;
  padding: 4px;
  margin-top: 4px;
}

.staff-card em {
  color: #9aa7ab;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  margin-top: 2px;
}

.core {
  position: relative;
  padding: 80px clamp(20px, 4vw, 60px) 70px;
  background: #F5F1E6;
  text-align: center;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(86, 84, 73, 0.1);
}

.core::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -58px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 40px solid rgba(86, 84, 73, 0.04);
  pointer-events: none;
}

.core h2 {
  margin: 0 0 10px;
  font-family: 'UTM Avo', sans-serif;
  font-size: var(--heading-size);
  color: #4A473C;
  font-weight: 800;
  letter-spacing: 1px;
}

.core-quote {
  margin: 10px auto 45px;
  color: #565449;
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  max-width: 680px;
}

.core-grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.core-card {
  flex: 1 1 0;
  padding: 45px 35px 35px;
  border-radius: 20px;
  background: #FAF7EF;
  border: 1px solid rgba(86, 84, 73, 0.15);
  box-shadow: 0 10px 30px rgba(86, 84, 73, 0.05);
  text-align: left;
  min-height: 480px;
  color: #4A473C;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(86, 84, 73, 0.12);
}

.core-card.is-primary {
  background: #4A473C;
  color: #FFFDF8;
  border: none;
  box-shadow: 0 15px 35px rgba(74, 71, 60, 0.25);
}

.core-card.is-primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(74, 71, 60, 0.35);
}

.core-card h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 35px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: inherit;
  text-align: center;
  font-weight: 800;
}

.core-head-icon {
  display: block;
  margin: 0 auto;
  width: 140px;
  height: 70px;
  object-fit: contain;
  opacity: 0.95;
}

.core-card.is-primary .core-head-icon {
  filter: brightness(0) invert(1);
}

.core-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.core-card li {
  display: grid !important;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.core-card li i {
  font-size: 20px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  color: #cfa660;
}

.core-card.is-primary li i {
  color: #FFFDF8;
}

.core-separator {
  display: none;
}

.core-end {
  margin: 45px 0 0;
  color: #4A473C;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  font-style: italic;
  line-height: 1.6;
}

.partners {
  padding: 80px clamp(18px, 2.4vw, 44px) 86px;
  text-align: center;
  border-radius: 12px;
}

.partners h2,
.featured h2 {
  margin: 0 0 56px;
  font-size: var(--heading-size);
  line-height: 1.1;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 46px;
  align-items: center;
}

.partner-grid img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: all 0.3s ease;
}

.partner-grid img:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.05);
}

.featured {
  padding: 0 clamp(18px, 2.4vw, 44px) 76px;
  text-align: center;
  border-radius: 12px;
}

.figma-filters {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-bottom: 40px;
}

.figma-filters button {
  width: 96px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #eff2f2;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
}

.figma-filters button.is-active,
.figma-filters button:hover {
  background: var(--block-dark);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 32px clamp(16px, 2.4vw, 42px);
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.project-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  z-index: 5;
}

.project-card:hover img {
  transform: scale(1.06);
  opacity: 0.6;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.project-card:hover span {
  background: rgba(0, 0, 0, 0.7);
}

.diary {
  padding: 80px clamp(18px, 2.4vw, 44px);
  background: #fff;
}

.diary-header {
  margin-bottom: 40px;
}

.diary-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #000;
  text-align: left;
}

.diary-header p {
  color: #666;
  font-size: 16px;
  text-align: left;
}

.diary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  cursor: pointer;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-overlay i {
  color: #fff;
  font-size: 48px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-caption {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  text-align: left;
}

.contact-band {
  padding: 80px clamp(18px, 2.4vw, 44px);
  background: #fdf2f2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.quote-box {
  background: #fff;
  padding: 40px;
  border: 2px solid #565449;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.form-title {
  color: #666;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #565449;
}

/* Ensure datetime-local looks consistent */
.quote-form input[type="datetime-local"] {
  height: 50px; /* Matching the approximate height of other inputs */
  font-family: inherit;
}


.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffb900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.budget-section {
  margin: 25px 0;
}

.budget-title {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #333;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.radio-group label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #444;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  width: auto;
  accent-color: #565449;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.checkbox-group label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #444;
}

.form-label {
  display: block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
  margin-top: 15px;
  text-transform: uppercase;
  color: #333;
}



.form-action {
  text-align: center;
  margin-top: 30px;
}

.quote-form button {
  background: #565449;
  color: #fff;
  border: 0;
  padding: 14px 60px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 185, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.quote-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 185, 0, 0.4);
}

.advisor-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advisor-graphic img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .contact-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .advisor-wrap {
    order: -1;
  }
}

.site-footer {
  background: #565449;
  color: #fff;
  padding-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-section h3 {
  color: #565449;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #565449;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.mt-40 {
  margin-top: 50px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  font-size: 20px;
  color: #fff;
  opacity: 0.7;
}

.social-links a:hover {
  opacity: 1;
  color: #565449;
}

.social-floating {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-floating a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(15, 15, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.social-floating a:hover,
.social-floating a:focus-visible {
  color: #565449;
  border-color: #565449;
  background: rgba(0, 0, 0, 0.85);
  transform: translateX(-2px);
}

.footer-map {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map img {
  width: 100%;
  display: block;
}

.footer-map iframe {
  width: 100%;
  height: 260px;
  display: block;
}

.branch-list p {
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr 36px 46px;
    padding: 0 20px;
  }

  .main-nav,
  .hotline,
  .search-toggle {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mega {
    display: none;
  }

  .hero-panel {
    height: 58vw;
    min-height: 360px;
  }

  .service-duo,
  .contact-band,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .staff-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    justify-content: center;
    gap: 22px;
  }

  .partner-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .core-card {
    max-width: none;
    min-height: 0;
  }

  .core-separator {
    display: none;
  }

  .social-floating {
    display: none;
  }
}

@media (max-width: 640px) {
  :root { --wrap: 100vw; }

  .topbar { height: 72px; }
  .mobile-drawer { top: 72px; }
  .logo-name { display: none; }
  h1, h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  .brand-statement { height: 220px; padding: 0 18px; }
  h1 { font-size: 30px; }

  .service-tile { height: 360px; }
  .team-section, .partners, .featured, .contact-band, .footer { padding-left: 18px; padding-right: 18px; }
  .staff-grid, .partner-grid, .project-grid { grid-template-columns: 1fr; justify-content: stretch; }
  .core, .diary { height: 360px; }

  .figma-filters {
    gap: 10px;
  }

  .footer-top { grid-template-columns: 1fr; padding-bottom: 40px; }
  .footer-bottom { padding-bottom: 40px; }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background: #565449;
  color: #FFFBF4;
  padding: 120px 0;
  width: 100%;
}

.testimonials-section .container {
  width: min(1360px, 92%);
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-family: 'UTM Avo', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #cfa660;
  margin: 0 0 15px;
  text-align: center;
  letter-spacing: 1px;
}

.testimonials-title span {
  color: #FFFBF4;
}

.testimonials-underline {
  width: 80px;
  height: 2px;
  background: #cfa660;
  margin: 0 auto 70px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.testimonial-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.testimonial-card {
  position: relative;
  background: #FFFFFF;
  color: #11120D;
  border-radius: 12px;
  padding: 38px 38px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: -15px;
  width: 0;
  height: 0;
  border-width: 15px 15px 0 0;
  border-style: solid;
  border-color: #cfa660 transparent transparent transparent;
}

.testimonial-card .quote-mark {
  font-size: 24px;
  color: #cfa660;
  margin-bottom: 15px;
  display: block;
}

.testimonial-text {
  font-family: 'UTM Avo', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-card .read-more {
  align-self: flex-end;
  font-family: 'UTM Avo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #cfa660;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.testimonial-card .read-more:hover {
  color: #b88e4c;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cfa660;
}

.author-info h4 {
  font-family: 'UTM Avo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #cfa660;
  margin: 0 0 2px;
}

.author-info p {
  font-family: 'UTM Avo', sans-serif;
  font-size: 13px;
  color: rgba(255, 251, 244, 0.75);
  margin: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3b35;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
  background: #cfa660;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonial-card {
    min-height: auto;
  }
}

/* --- DESIGNERO typography normalization (max 3 sizes) --- */
:root {
  --fz-sm: 14px;
  --fz-md: 16px;
  --fz-lg: 24px;
  --lh-base: 1.6;
}

body,
p,
a,
li,
input,
select,
textarea,
button {
  font-size: var(--fz-md);
  line-height: var(--lh-base);
}

.main-nav button,
.mega-panel a,
.side-nav button,
.search-form input,
.hotline,
.footer-section p,
.footer-section a,
.footer-section li,
.branch-list p,
.footer-bottom p {
  font-size: var(--fz-sm);
}

h1,
h2,
h3,
.section-title,
.section-heading,
.page-title,
.footer-section h3 {
  font-size: var(--fz-lg);
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #FFFBF4;
}

.footer-section p,
.footer-section a,
.footer-section li {
  font-size: var(--fz-sm);
  font-weight: 400;
  color: #FFFBF4;
}

@media (max-width: 767px) {
  :root { --fz-lg: 20px; }
}