@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

body {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 300;
  line-height: 1.5;
  color: #111111;
  background-color: #f9f2e9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: #111111;
}

h1 {
  font-size: clamp(1.5rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.25rem, 3.5vw + 1rem, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 2rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  line-height: 1.75;
  color: #333333;
}

a {
  color: #111111;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #FF5A00;
}
a:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
  border-radius: 0px;
}

.header {
  --scroll-progress: 0;
  --header-overhang: 0px;
}
body:not(.home) .header {
  --scroll-progress: 1;
}
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  padding: 1rem 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0 0 calc(-150px - var(--header-overhang)) 0;
  background-image: linear-gradient(to bottom, rgba(249, 242, 233, calc(1 * var(--scroll-progress))) 20%, rgba(249, 242, 233, 0) 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.header--no-shadow::before {
  opacity: 0 !important;
}
.header--hidden {
  transform: translateY(-110%);
  pointer-events: none;
}
.header--solid {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  .header.scrolled {
    background-color: #f9f2e9;
    border: none;
    box-shadow: none;
  }
  .header.scrolled::before {
    opacity: 1;
  }
}
.header__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .header__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .header__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .header__container {
    max-width: 1440px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 301;
  padding: 0;
}
@media (max-width: 767px) {
  .header__menu-toggle {
    display: flex;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header__menu-toggle-line {
  width: 100%;
  height: 2px;
  background-color: #111111;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .header__menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background-color: #f9f2e9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(76px, 12vh, 96px) 24px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease 0.18s, visibility 0.35s ease 0.18s;
    z-index: 300;
    overflow-y: auto;
  }
}
.header__nav-inner {
  display: contents;
}
@media (max-width: 767px) {
  .header__nav-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}
.header__menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1rem, 2.5vh, 1.5rem);
    margin-top: 1rem;
    width: 100%;
  }
}
.header__menu > li {
  position: relative;
}
@media (max-width: 767px) {
  .header__menu > li {
    width: 100%;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc((7 - var(--item-index, 1)) * 25ms);
  }
}
.header__menu a {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 300;
  color: #111111;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .header__menu a {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: inline-block;
  }
}
.header__menu a:hover {
  color: #FF5A00;
}
.header__menu-link-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
@media (max-width: 767px) {
  .header__menu-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.header__menu-arrow {
  stroke: currentColor;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .header__menu-arrow {
    display: none !important;
  }
}
.header__submenu-toggle {
  display: none;
}
@media (max-width: 767px) {
  .header__submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #111111;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__submenu-toggle:hover {
    color: #FF5A00;
  }
}
.header__submenu-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: #111111;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__submenu-toggle-icon::before {
  content: "+";
}
.is-open .header__submenu-toggle-icon {
  color: #111111;
}
.is-open .header__submenu-toggle-icon::before {
  content: "−";
}
.header__menu-item--has-children {
  position: relative;
}
@media (min-width: 768px) {
  .header__menu-item--has-children {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
    margin: -0.5rem 0;
  }
  .header__menu-item--has-children:hover .header__menu-arrow {
    transform: rotate(180deg);
  }
  .header__menu-item--has-children:hover .header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.header__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .header__submenu {
    position: absolute;
    top: 100%;
    left: -1.25rem;
    min-width: 230px;
    background-color: #f9f2e9;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 0px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
    padding: 0.6rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    z-index: 100;
  }
  .header__submenu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
  }
  .header__submenu li {
    padding: 0;
    margin: 0;
  }
  .header__submenu a {
    display: block;
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem !important;
    font-weight: 300;
    color: #333333;
    padding: 0.6rem 1.35rem;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: normal;
    line-height: 1.4;
  }
  .header__submenu a:hover {
    color: #FF5A00;
    background-color: rgba(255, 90, 0, 0.05);
    padding-left: 1.55rem;
  }
}
@media (max-width: 767px) {
  .header__submenu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: clamp(1.25rem, 5vw, 1.75rem);
    border: none;
    border-left: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
  }
  .header__submenu li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .header__submenu a {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    color: rgba(17, 17, 17, 0.7);
    line-height: 1.25;
    letter-spacing: -0.015em;
    display: block;
    transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__submenu a:hover {
    color: #FF5A00;
    transform: translateX(4px);
  }
  .header__menu-item--has-children.is-open .header__submenu {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    pointer-events: auto;
  }
}
.header__mobile-bottom-group {
  display: contents;
}
@media (max-width: 767px) {
  .header__mobile-bottom-group {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 1.5rem;
    gap: 1.25rem;
    width: 100%;
  }
}
.header__nav-cta {
  display: contents;
}
@media (max-width: 767px) {
  .header__nav-cta {
    display: block;
    margin: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc((7 - var(--item-index, 1)) * 25ms);
  }
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  min-height: 44px;
}
.header__cta:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.header__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.header__cta {
  background-color: #FF5A00;
  border-color: #FF5A00;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
}
.header__cta:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header__cta:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.header__cta {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 300;
  padding: 0.65rem 1.4rem;
  white-space: nowrap;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .header__cta {
    margin-left: 0;
    font-size: 1rem;
    padding: 0.85rem 1.85rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }
}
.header__mobile-footer {
  display: none !important;
}
@media (max-width: 767px) {
  .header__mobile-footer {
    display: flex !important;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.25rem;
    margin-top: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc((7 - var(--item-index, 1)) * 25ms);
  }
}
.header__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.header__mobile-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  color: #333333;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-contact-item span {
  line-height: 1.35;
}
.header__mobile-contact-item:hover {
  color: #FF5A00;
}
.header__mobile-contact-item:hover .header__mobile-contact-icon {
  stroke: #FF5A00;
}
.header__mobile-contact-icon {
  flex-shrink: 0;
  stroke: rgba(17, 17, 17, 0.45);
  transition: stroke 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header__mobile-socials a {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.6);
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__mobile-socials a:hover {
  color: #FF5A00;
}
.header__mobile-social-sep {
  font-size: 0.75rem;
  color: rgba(17, 17, 17, 0.2);
}
@media (max-width: 767px) {
  body.nav-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  }
}
@media (max-width: 767px) {
  body.nav-open .header__menu li, body.nav-open .header__nav-cta, body.nav-open .header__mobile-footer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.48s cubic-bezier(0.16, 1, 0.3, 1), transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--item-index, 1) * 55ms + 60ms);
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform-origin: left center;
  will-change: opacity, transform;
}
.js:not(.is-ready) .header__logo {
  opacity: 0;
}
@media (min-width: 768px) {
  body:not(.home) .header__logo {
    transform: scale(0.65);
  }
}
.header__logo-icon {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header__logo-icon {
    width: 280px;
    height: auto;
  }
}
.header__logo-text {
  width: 240px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo-text {
    width: 300px;
  }
}

.hero {
  position: relative;
  background-color: #f9f2e9;
  padding: clamp(250px, 15vh, 160px) 0 clamp(40px, 5vh, 60px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 150px 0 40px;
  }
}
.hero__editorial-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
  position: relative;
  z-index: 2;
}
.hero__editorial-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2rem, 3.5vh, 3rem);
}
@media (max-width: 767px) {
  .hero__editorial-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.hero__intro-tag {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(clamp(1rem, 1.5vw + 0.25rem, 1.125rem), 1.25vw, clamp(1.25rem, 3.5vw + 1rem, 3rem));
  font-weight: 300;
  color: #333333;
  margin: 0 0 clamp(0.5rem, 1.5vh, 1.5rem) 0;
  letter-spacing: -0.01em;
}
.hero__intro-tag .hero__intro-brand {
  font-weight: 600;
  color: #111111;
}
.hero__editorial-title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(clamp(1.25rem, 3.5vw + 1rem, 3rem), 5.5vw, clamp(1.5rem, 5vw + 1rem, 4.5rem));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #111111;
  margin: 0;
}
@media (max-width: 767px) {
  .hero__editorial-title {
    font-size: clamp(1.9rem, 7.8vw, 2.85rem);
    line-height: 1.15;
  }
}
.hero__editorial-title .hero__title-accent {
  color: #FF5A00;
  font-weight: 700;
  display: inline-block;
}
.hero__editorial-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 767px) {
  .hero__editorial-aside {
    justify-self: start;
    max-width: 100%;
    gap: 1rem;
  }
}
.hero__editorial-desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.15rem, 1.1vw, 1.35rem);
  line-height: 1.35;
  color: #333333;
  margin: 0;
  font-weight: 250;
}
.hero__editorial-aside-widget {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .hero__editorial-aside-widget {
    display: none !important;
  }
}
.hero__editorial-thumb {
  width: clamp(190px, 22vw, 220px);
  height: clamp(120px, 12vh, 140px);
  border-radius: 0px;
  overflow: hidden;
  background-color: #EAE5DC;
  flex-shrink: 0;
}
.hero__editorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__editorial-thumb:hover img {
  transform: scale(1.08);
}
.hero__editorial-btn-icon-wrap {
  margin: 0 !important;
}
.hero__editorial-btn-icon {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
}
.hero__editorial-btn-icon .wp-block-button__link,
.hero__editorial-btn-icon a {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5A00;
  border: 1px solid #FF5A00;
  color: #FFFFFF !important;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__editorial-btn-icon .wp-block-button__link svg,
.hero__editorial-btn-icon a svg {
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__editorial-btn-icon .wp-block-button__link:focus-visible,
.hero__editorial-btn-icon a:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.hero__editorial-btn-icon .wp-block-button__link:hover:not(:disabled),
.hero__editorial-btn-icon a:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.hero__editorial-btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.hero__editorial-btn-icon a:hover:not(:disabled) svg {
  transform: translate(2px, -2px);
}
.hero__editorial-btn-icon .wp-block-button__link:active:not(:disabled),
.hero__editorial-btn-icon a:active:not(:disabled) {
  transform: translate(0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.hero__editorial-btn-icon .wp-block-button__link:active:not(:disabled) svg,
.hero__editorial-btn-icon a:active:not(:disabled) svg {
  transform: translate(0, 0);
}
.hero__editorial-btn-icon .wp-block-button__link,
.hero__editorial-btn-icon a {
  font-size: 1.25rem;
  line-height: 1;
  padding: 0 !important;
  margin: 0 !important;
}
.hero__editorial-cta-wrap,
.hero .hero__mobile-only {
  display: none !important;
}
@media (max-width: 767px) {
  .hero__editorial-cta-wrap,
  .hero .hero__mobile-only {
    display: flex !important;
    margin-top: 1rem;
  }
}
.hero__editorial-cta-wrap .wp-block-button__link,
.hero__editorial-cta-wrap .btn,
.hero__editorial-cta-wrap a,
.hero .hero__mobile-only .wp-block-button__link,
.hero .hero__mobile-only .btn,
.hero .hero__mobile-only a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  min-height: 44px;
}
.hero__editorial-cta-wrap .wp-block-button__link:focus-visible,
.hero__editorial-cta-wrap .btn:focus-visible,
.hero__editorial-cta-wrap a:focus-visible,
.hero .hero__mobile-only .wp-block-button__link:focus-visible,
.hero .hero__mobile-only .btn:focus-visible,
.hero .hero__mobile-only a:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.hero__editorial-cta-wrap .wp-block-button__link:disabled,
.hero__editorial-cta-wrap .btn:disabled,
.hero__editorial-cta-wrap a:disabled,
.hero .hero__mobile-only .wp-block-button__link:disabled,
.hero .hero__mobile-only .btn:disabled,
.hero .hero__mobile-only a:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.hero__editorial-cta-wrap .wp-block-button__link,
.hero__editorial-cta-wrap .btn,
.hero__editorial-cta-wrap a,
.hero .hero__mobile-only .wp-block-button__link,
.hero .hero__mobile-only .btn,
.hero .hero__mobile-only a {
  background-color: #FF5A00;
  border-color: #FF5A00;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
}
.hero__editorial-cta-wrap .wp-block-button__link:hover:not(:disabled),
.hero__editorial-cta-wrap .btn:hover:not(:disabled),
.hero__editorial-cta-wrap a:hover:not(:disabled),
.hero .hero__mobile-only .wp-block-button__link:hover:not(:disabled),
.hero .hero__mobile-only .btn:hover:not(:disabled),
.hero .hero__mobile-only a:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.hero__editorial-cta-wrap .wp-block-button__link:active:not(:disabled),
.hero__editorial-cta-wrap .btn:active:not(:disabled),
.hero__editorial-cta-wrap a:active:not(:disabled),
.hero .hero__mobile-only .wp-block-button__link:active:not(:disabled),
.hero .hero__mobile-only .btn:active:not(:disabled),
.hero .hero__mobile-only a:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.hero__editorial-cta-wrap .wp-block-button__link,
.hero__editorial-cta-wrap .btn,
.hero__editorial-cta-wrap a,
.hero .hero__mobile-only .wp-block-button__link,
.hero .hero__mobile-only .btn,
.hero .hero__mobile-only a {
  font-size: 1rem !important;
  padding: 0.85rem 1.85rem !important;
  border-radius: 0px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem;
  text-decoration: none !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  min-height: 48px;
  width: 100%;
}
.hero__editorial-showcase {
  position: relative;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  background-color: #EAE5DC;
}
.hero__editorial-image-frame {
  position: relative;
  width: 100%;
  height: clamp(380px, 62vh, 760px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__editorial-image-frame {
    height: 280px;
  }
}
.hero__editorial-image-frame img,
.hero__editorial-image-frame .hero__editorial-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__editorial-image-frame img:hover,
.hero__editorial-image-frame .hero__editorial-image:hover {
  transform: scale(1.02);
}
.hero__grid-container {
  display: none;
}

.js .hero--editorial .hero__intro-tag,
.js .hero--editorial .hero__editorial-title,
.js .hero--editorial .hero__editorial-aside,
.js .hero--editorial .hero__editorial-showcase {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  will-change: transform, opacity;
}

.section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}
.section__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .section__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .section__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .section__container {
    max-width: 1440px;
  }
}
.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 6rem;
  }
}
.section__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.25rem, 3.5vw + 1rem, 3rem);
  margin-bottom: 1.5rem;
}
.section__title em {
  font-style: normal;
  color: #FF5A00;
}
.section__subtitle {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  color: #333333;
  line-height: 1.75;
}
.section--gray {
  background-color: #F5F1EA;
}
.section--dark {
  background-color: #111111;
  color: white;
}
.section--dark .section__title,
.section--dark .section__subtitle {
  color: white;
}

.js [data-reveal-item] {
  will-change: transform, opacity;
}

.about,
.about--editorial {
  position: relative;
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.55) 22%, #F5F1EA 50%, rgba(245, 241, 234, 0.55) 78%, #f9f2e9 100%);
  padding: clamp(80px, 10vh, 120px) 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about,
  .about--editorial {
    padding: 60px 0;
  }
}
.about .about__container, .about__container,
.about--editorial .about__container,
.about--editorial__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
}
.about .about__editorial-top, .about__editorial-top,
.about--editorial .about__editorial-top,
.about--editorial__editorial-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(4rem, 3vw, 5rem);
  margin-bottom: clamp(4rem, 10vh, 8rem);
}
@media (max-width: 767px) {
  .about .about__editorial-top, .about__editorial-top,
  .about--editorial .about__editorial-top,
  .about--editorial__editorial-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
.about .about__editorial-label, .about__editorial-label,
.about--editorial .about__editorial-label,
.about--editorial__editorial-label {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  padding-top: 0.35rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .about .about__editorial-label, .about__editorial-label,
  .about--editorial .about__editorial-label,
  .about--editorial__editorial-label {
    padding-top: 0;
  }
}
.about .about__editorial-title, .about__editorial-title,
.about--editorial .about__editorial-title,
.about--editorial__editorial-title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #111111;
  margin: 0;
}
.about .about__editorial-action, .about__editorial-action,
.about--editorial .about__editorial-action,
.about--editorial__editorial-action {
  padding-top: 0.25rem;
}
.about .about__editorial-action .wp-block-button,
.about .about__editorial-action .about__editorial-btn-icon,
.about .about__editorial-action .selected-work__btn-icon, .about__editorial-action .wp-block-button,
.about__editorial-action .about__editorial-btn-icon,
.about__editorial-action .selected-work__btn-icon,
.about--editorial .about__editorial-action .wp-block-button,
.about--editorial .about__editorial-action .about__editorial-btn-icon,
.about--editorial .about__editorial-action .selected-work__btn-icon,
.about--editorial__editorial-action .wp-block-button,
.about--editorial__editorial-action .about__editorial-btn-icon,
.about--editorial__editorial-action .selected-work__btn-icon {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  min-height: auto !important;
}
.about .about__editorial-action .wp-block-button .wp-block-button__link,
.about .about__editorial-action .wp-block-button a,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about .about__editorial-action .about__editorial-btn-icon a,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about .about__editorial-action .selected-work__btn-icon a, .about__editorial-action .wp-block-button .wp-block-button__link,
.about__editorial-action .wp-block-button a,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about__editorial-action .about__editorial-btn-icon a,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about__editorial-action .selected-work__btn-icon a,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link,
.about--editorial .about__editorial-action .wp-block-button a,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about--editorial .about__editorial-action .about__editorial-btn-icon a,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about--editorial .about__editorial-action .selected-work__btn-icon a,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link,
.about--editorial__editorial-action .wp-block-button a,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about--editorial__editorial-action .about__editorial-btn-icon a,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about--editorial__editorial-action .selected-work__btn-icon a {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5A00;
  border: 1px solid #FF5A00;
  color: #FFFFFF !important;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link svg,
.about .about__editorial-action .wp-block-button a svg,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link svg,
.about .about__editorial-action .about__editorial-btn-icon a svg,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link svg,
.about .about__editorial-action .selected-work__btn-icon a svg, .about__editorial-action .wp-block-button .wp-block-button__link svg,
.about__editorial-action .wp-block-button a svg,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link svg,
.about__editorial-action .about__editorial-btn-icon a svg,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link svg,
.about__editorial-action .selected-work__btn-icon a svg,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link svg,
.about--editorial .about__editorial-action .wp-block-button a svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon a svg,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link svg,
.about--editorial .about__editorial-action .selected-work__btn-icon a svg,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link svg,
.about--editorial__editorial-action .wp-block-button a svg,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link svg,
.about--editorial__editorial-action .about__editorial-btn-icon a svg,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link svg,
.about--editorial__editorial-action .selected-work__btn-icon a svg {
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link:focus-visible,
.about .about__editorial-action .wp-block-button a:focus-visible,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:focus-visible,
.about .about__editorial-action .about__editorial-btn-icon a:focus-visible,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link:focus-visible,
.about .about__editorial-action .selected-work__btn-icon a:focus-visible, .about__editorial-action .wp-block-button .wp-block-button__link:focus-visible,
.about__editorial-action .wp-block-button a:focus-visible,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link:focus-visible,
.about__editorial-action .about__editorial-btn-icon a:focus-visible,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link:focus-visible,
.about__editorial-action .selected-work__btn-icon a:focus-visible,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link:focus-visible,
.about--editorial .about__editorial-action .wp-block-button a:focus-visible,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:focus-visible,
.about--editorial .about__editorial-action .about__editorial-btn-icon a:focus-visible,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link:focus-visible,
.about--editorial .about__editorial-action .selected-work__btn-icon a:focus-visible,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link:focus-visible,
.about--editorial__editorial-action .wp-block-button a:focus-visible,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link:focus-visible,
.about--editorial__editorial-action .about__editorial-btn-icon a:focus-visible,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link:focus-visible,
.about--editorial__editorial-action .selected-work__btn-icon a:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.about .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled),
.about .about__editorial-action .wp-block-button a:hover:not(:disabled),
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled),
.about .about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled),
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled),
.about .about__editorial-action .selected-work__btn-icon a:hover:not(:disabled), .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled),
.about__editorial-action .wp-block-button a:hover:not(:disabled),
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled),
.about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled),
.about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled),
.about__editorial-action .selected-work__btn-icon a:hover:not(:disabled),
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled),
.about--editorial .about__editorial-action .wp-block-button a:hover:not(:disabled),
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled),
.about--editorial .about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled),
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled),
.about--editorial .about__editorial-action .selected-work__btn-icon a:hover:not(:disabled),
.about--editorial__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled),
.about--editorial__editorial-action .wp-block-button a:hover:not(:disabled),
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled),
.about--editorial__editorial-action .about__editorial-btn-icon a:hover:not(:disabled),
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled),
.about--editorial__editorial-action .selected-work__btn-icon a:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled) svg,
.about .about__editorial-action .wp-block-button a:hover:not(:disabled) svg,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about .about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled) svg,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about .about__editorial-action .selected-work__btn-icon a:hover:not(:disabled) svg, .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled) svg,
.about__editorial-action .wp-block-button a:hover:not(:disabled) svg,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled) svg,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about__editorial-action .selected-work__btn-icon a:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .wp-block-button a:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon a:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial .about__editorial-action .selected-work__btn-icon a:hover:not(:disabled) svg,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial__editorial-action .wp-block-button a:hover:not(:disabled) svg,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial__editorial-action .about__editorial-btn-icon a:hover:not(:disabled) svg,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link:hover:not(:disabled) svg,
.about--editorial__editorial-action .selected-work__btn-icon a:hover:not(:disabled) svg {
  transform: translate(2px, -2px);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled),
.about .about__editorial-action .wp-block-button a:active:not(:disabled),
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled),
.about .about__editorial-action .about__editorial-btn-icon a:active:not(:disabled),
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled),
.about .about__editorial-action .selected-work__btn-icon a:active:not(:disabled), .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled),
.about__editorial-action .wp-block-button a:active:not(:disabled),
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled),
.about__editorial-action .about__editorial-btn-icon a:active:not(:disabled),
.about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled),
.about__editorial-action .selected-work__btn-icon a:active:not(:disabled),
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled),
.about--editorial .about__editorial-action .wp-block-button a:active:not(:disabled),
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled),
.about--editorial .about__editorial-action .about__editorial-btn-icon a:active:not(:disabled),
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled),
.about--editorial .about__editorial-action .selected-work__btn-icon a:active:not(:disabled),
.about--editorial__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled),
.about--editorial__editorial-action .wp-block-button a:active:not(:disabled),
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled),
.about--editorial__editorial-action .about__editorial-btn-icon a:active:not(:disabled),
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled),
.about--editorial__editorial-action .selected-work__btn-icon a:active:not(:disabled) {
  transform: translate(0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled) svg,
.about .about__editorial-action .wp-block-button a:active:not(:disabled) svg,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about .about__editorial-action .about__editorial-btn-icon a:active:not(:disabled) svg,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about .about__editorial-action .selected-work__btn-icon a:active:not(:disabled) svg, .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled) svg,
.about__editorial-action .wp-block-button a:active:not(:disabled) svg,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about__editorial-action .about__editorial-btn-icon a:active:not(:disabled) svg,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about__editorial-action .selected-work__btn-icon a:active:not(:disabled) svg,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled) svg,
.about--editorial .about__editorial-action .wp-block-button a:active:not(:disabled) svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about--editorial .about__editorial-action .about__editorial-btn-icon a:active:not(:disabled) svg,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about--editorial .about__editorial-action .selected-work__btn-icon a:active:not(:disabled) svg,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link:active:not(:disabled) svg,
.about--editorial__editorial-action .wp-block-button a:active:not(:disabled) svg,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about--editorial__editorial-action .about__editorial-btn-icon a:active:not(:disabled) svg,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link:active:not(:disabled) svg,
.about--editorial__editorial-action .selected-work__btn-icon a:active:not(:disabled) svg {
  transform: translate(0, 0);
}
.about .about__editorial-action .wp-block-button .wp-block-button__link,
.about .about__editorial-action .wp-block-button a,
.about .about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about .about__editorial-action .about__editorial-btn-icon a,
.about .about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about .about__editorial-action .selected-work__btn-icon a, .about__editorial-action .wp-block-button .wp-block-button__link,
.about__editorial-action .wp-block-button a,
.about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about__editorial-action .about__editorial-btn-icon a,
.about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about__editorial-action .selected-work__btn-icon a,
.about--editorial .about__editorial-action .wp-block-button .wp-block-button__link,
.about--editorial .about__editorial-action .wp-block-button a,
.about--editorial .about__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about--editorial .about__editorial-action .about__editorial-btn-icon a,
.about--editorial .about__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about--editorial .about__editorial-action .selected-work__btn-icon a,
.about--editorial__editorial-action .wp-block-button .wp-block-button__link,
.about--editorial__editorial-action .wp-block-button a,
.about--editorial__editorial-action .about__editorial-btn-icon .wp-block-button__link,
.about--editorial__editorial-action .about__editorial-btn-icon a,
.about--editorial__editorial-action .selected-work__btn-icon .wp-block-button__link,
.about--editorial__editorial-action .selected-work__btn-icon a {
  font-size: 1.25rem;
  line-height: 1;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .about .about__editorial-action, .about__editorial-action,
  .about--editorial .about__editorial-action,
  .about--editorial__editorial-action {
    display: none;
  }
}
.about .about__editorial-bottom, .about__editorial-bottom,
.about--editorial .about__editorial-bottom,
.about--editorial__editorial-bottom {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: flex-end;
  margin: 2rem 0 !important;
}
@media (max-width: 767px) {
  .about .about__editorial-bottom, .about__editorial-bottom,
  .about--editorial .about__editorial-bottom,
  .about--editorial__editorial-bottom {
    margin: 0 !important;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about .about__editorial-narrative, .about__editorial-narrative,
.about--editorial .about__editorial-narrative,
.about--editorial__editorial-narrative {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vh, 3rem);
  max-width: 520px;
}
@media (max-width: 767px) {
  .about .about__editorial-narrative, .about__editorial-narrative,
  .about--editorial .about__editorial-narrative,
  .about--editorial__editorial-narrative {
    max-width: 100%;
  }
}
.about .about__editorial-desc, .about__editorial-desc,
.about--editorial .about__editorial-desc,
.about--editorial__editorial-desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.15vw, 1.4rem);
  line-height: 1.3;
  color: #333333;
  margin: 0;
  font-weight: 250;
}
.about .about__editorial-link-wrap, .about__editorial-link-wrap,
.about--editorial .about__editorial-link-wrap,
.about--editorial__editorial-link-wrap {
  margin-top: 1rem;
}
.about .about__editorial-link, .about__editorial-link,
.about--editorial .about__editorial-link,
.about--editorial__editorial-link {
  display: inline-block;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  transition: color 350ms cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about .about__editorial-link:hover, .about__editorial-link:hover,
.about--editorial .about__editorial-link:hover,
.about--editorial__editorial-link:hover {
  color: #FF5A00;
  text-decoration-color: #FF5A00;
}
.about .about__editorial-showcase, .about__editorial-showcase,
.about--editorial .about__editorial-showcase,
.about--editorial__editorial-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #EAE5DC;
}
.about .about__editorial-image-frame, .about__editorial-image-frame,
.about--editorial .about__editorial-image-frame,
.about--editorial__editorial-image-frame {
  position: relative;
  width: 100%;
  height: clamp(280px, 44vh, 460px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .about .about__editorial-image-frame, .about__editorial-image-frame,
  .about--editorial .about__editorial-image-frame,
  .about--editorial__editorial-image-frame {
    height: 240px;
  }
}
.about .about__editorial-image-frame img,
.about .about__editorial-image-frame .about__editorial-image, .about__editorial-image-frame img,
.about__editorial-image-frame .about__editorial-image,
.about--editorial .about__editorial-image-frame img,
.about--editorial .about__editorial-image-frame .about__editorial-image,
.about--editorial__editorial-image-frame img,
.about--editorial__editorial-image-frame .about__editorial-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.about .about__editorial-image-frame img:hover,
.about .about__editorial-image-frame .about__editorial-image:hover, .about__editorial-image-frame img:hover,
.about__editorial-image-frame .about__editorial-image:hover,
.about--editorial .about__editorial-image-frame img:hover,
.about--editorial .about__editorial-image-frame .about__editorial-image:hover,
.about--editorial__editorial-image-frame img:hover,
.about--editorial__editorial-image-frame .about__editorial-image:hover {
  transform: scale(1.03);
}

.js .about--editorial .about__editorial-label,
.js .about--editorial .about__editorial-title,
.js .about--editorial .about__editorial-action,
.js .about--editorial .about__editorial-narrative,
.js .about--editorial .about__editorial-showcase {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  will-change: transform, opacity;
}

.selected-work {
  padding: 80px 0 20px;
  background-color: #f9f2e9;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .selected-work {
    padding: clamp(90px, 11vh, 130px) 0;
  }
}
.selected-work__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .selected-work__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .selected-work__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .selected-work__container {
    max-width: 1440px;
  }
}
.selected-work__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
@media (min-width: 1024px) {
  .selected-work__header {
    grid-template-columns: 240px 1fr auto;
    gap: clamp(3rem, 4vw, 5rem);
  }
}
.selected-work__editorial-label {
  padding-top: 0.35rem;
}
@media (max-width: 767px) {
  .selected-work__editorial-label {
    padding-top: 0;
  }
}
.selected-work__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 0;
}
.selected-work__editorial-headline-wrap {
  max-width: 88%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 767px) {
  .selected-work__editorial-headline-wrap {
    margin-left: 0;
    max-width: 100%;
  }
}
.selected-work__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 300;
  line-height: 1.35;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 767px) {
  .selected-work__heading {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.25;
  }
}
.selected-work__editorial-action {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 0.25rem;
}
@media (max-width: 767px) {
  .selected-work__editorial-action {
    display: none;
  }
}
.selected-work__btn-icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5A00;
  border: 1px solid #FF5A00;
  color: #FFFFFF !important;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.selected-work__btn-icon svg {
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.selected-work__btn-icon:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.selected-work__btn-icon:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.selected-work__btn-icon:hover:not(:disabled) svg {
  transform: translate(2px, -2px);
}
.selected-work__btn-icon:active:not(:disabled) {
  transform: translate(0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.selected-work__btn-icon:active:not(:disabled) svg {
  transform: translate(0, 0);
}
.selected-work__btn-icon {
  background-color: #FF5A00 !important;
  color: #FFFFFF !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}
.selected-work__btn-icon:hover {
  background-color: #111111 !important;
  border-color: #111111 !important;
  color: #FFFFFF !important;
}
.selected-work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 2.5vw, 3rem);
  margin: 2rem 0 !important;
}
@media (min-width: 768px) {
  .selected-work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  position: relative;
  border-radius: 0px;
  overflow: hidden;
  background-color: #111111;
  aspect-ratio: 4/3.8;
  min-height: 380px;
}
@media (max-width: 767px) {
  .work-card {
    aspect-ratio: 4/3.6;
    min-height: 340px;
  }
}
.work-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: #ffffff;
}
.work-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  will-change: transform, opacity;
}
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.88) 100%);
  transition: background 0.4s ease;
}
.work-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.5rem, 2.5vw, 3rem);
}
.work-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.work-card__square-btn {
  width: 38px;
  height: 38px;
  border-radius: 0px;
  background-color: #FF5A00;
  color: #FFFFFF !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.work-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.work-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.work-card__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 0.9vw, 1.25rem);
  color: white;
  line-height: 1.4;
  margin: 0;
  font-weight: 250;
}
.work-card:hover .work-card__image {
  transform: scale(1.06);
  opacity: 0.95;
}
.work-card:hover .work-card__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.65) 75%, rgba(0, 0, 0, 0.92) 100%);
}
.work-card:hover .work-card__square-btn {
  opacity: 1;
  transform: translate(0, 0);
}
.work-card:hover .work-card__square-btn svg {
  transform: translate(1px, -1px);
}
.work-card:hover .work-card__title {
  color: #FF5A00;
}

.js .selected-work .work-card {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  will-change: transform, opacity;
}

.trusted-by {
  padding: clamp(60px, 8vh, 90px) 0;
  background-color: #F5F1EA;
  position: relative;
}
.trusted-by::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, #f9f2e9, transparent);
  pointer-events: none;
  z-index: 1;
}
.trusted-by::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, #F5F1EA, #f9f2e9);
  pointer-events: none;
  z-index: 1;
}
.trusted-by__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .trusted-by__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .trusted-by__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .trusted-by__container {
    max-width: 1440px;
  }
}
.trusted-by__container {
  margin-bottom: 3rem;
}
.trusted-by__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  color: #111111;
}
.trusted-by__marquee {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.trusted-by__marquee:hover .trusted-by__track {
  animation-play-state: paused;
}
.trusted-by__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  min-width: 50%;
  padding-right: 2rem;
  animation: trustedMarquee 30s linear infinite;
  will-change: transform;
}
.trusted-by__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  flex-shrink: 0;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.trusted-by__logo-img:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

@keyframes trustedMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.contact-cta {
  padding: 40px 0 80px;
  background-color: #f9f2e9;
  position: relative;
}
@media (min-width: 1024px) {
  .contact-cta {
    padding: clamp(80px, 10vh, 120px) 0;
  }
}
.contact-cta__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .contact-cta__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-cta__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .contact-cta__container {
    max-width: 1440px;
  }
}
.contact-cta__banner {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 55vh, 520px);
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #111111;
}
.contact-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.contact-cta__banner:hover .contact-cta__image {
  transform: scale(1.04);
}
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.contact-cta__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(3rem, 5vw, 5rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-cta__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-transform: uppercase;
  margin: 0 0 clamp(3rem, 5vh, 4rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.contact-cta__action-wrap {
  display: flex;
  justify-content: center;
}
.contact-cta__btn-split {
  display: inline-flex;
  align-items: stretch;
  background-color: #f9f2e9;
  color: #111111;
  text-decoration: none;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.35s ease;
}
.contact-cta__btn-split:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.contact-cta__btn-split:hover .contact-cta__btn-icon-box {
  background-color: #FF5A00;
}
.contact-cta__btn-split:hover .contact-cta__btn-icon-box svg {
  transform: translate(1px, -1px);
}
.contact-cta__btn-split:active {
  transform: translateY(0);
}
.contact-cta__btn-text {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.75rem;
  display: flex;
  align-items: center;
  color: #111111;
}
.contact-cta__btn-icon-box {
  background-color: #111111;
  color: #ffffff;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}
.contact-cta__btn-icon-box svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer {
  background-color: #f9f2e9;
  padding: 5rem 0 3rem;
}
.footer,
.footer p {
  color: #333333;
}
.footer__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .footer__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .footer__container {
    max-width: 1440px;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 2rem;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__logo:hover {
  opacity: 0.85;
}
.footer__logo-img {
  height: 68px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.05vw, 1.4rem);
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.35;
  margin: 0 0 2rem;
  font-weight: 250;
  padding-right: 1rem;
}
.footer__contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.05vw, 1.4rem);
  color: rgba(17, 17, 17, 0.8);
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 250;
}
.footer__contact-item[href]:hover {
  color: #FF5A00;
}
.footer__contact-icon {
  flex-shrink: 0;
  color: #FF5A00;
  opacity: 0.85;
}
.footer__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
}
.footer__socials a {
  color: #111111;
  font-weight: 500;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__socials a:hover {
  color: #FF5A00;
}
.footer__social-sep {
  color: rgba(17, 17, 17, 0.25);
  font-weight: 300;
}
.footer__links h4 {
  color: #111111;
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__links a {
  color: rgba(17, 17, 17, 0.65);
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__links a:hover {
  color: #FF5A00;
}
.footer__bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  text-align: center;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: rgba(17, 17, 17, 0.45);
}

.craft-list {
  position: relative;
  padding: clamp(80px, 10vh, 120px) 0;
  background-color: #f9f2e9;
}
@media (max-width: 767px) {
  .craft-list {
    padding: 60px 0;
  }
}
.craft-list__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .craft-list__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .craft-list__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .craft-list__container {
    max-width: 1440px;
  }
}
.craft-list__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .craft-list__container {
    gap: 5rem;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(4rem, 6vw, 8rem);
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .craft-list__header {
    position: sticky;
    top: 120px;
    max-width: 480px;
  }
}
.craft-list__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
}
.craft-list__heading {
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}
@media (min-width: 1024px) {
  .craft-list__heading {
    font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(2.75rem, 2.4vw, 3rem);
    font-weight: 300;
    line-height: 1.35;
    color: #111111;
    letter-spacing: -0.02em;
  }
}
.craft-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.craft-list__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  cursor: default;
  position: relative;
}
.craft-list__item-inner {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  padding: 2.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .craft-list__item-inner {
    padding: 3rem 0;
  }
}
.craft-list__num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 2rem);
  font-weight: 400;
  color: rgba(17, 17, 17, 0.3);
  line-height: 1;
  flex-shrink: 0;
  align-self: baseline;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  .craft-list__num {
    color: rgba(17, 17, 17, 0.8);
  }
}
.craft-list__item:hover .craft-list__num {
  color: #FF5A00;
}
.craft-list__item-body {
  flex: 1;
  min-width: 0;
}
.craft-list__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.craft-list__arrow {
  font-size: 1.15rem;
  color: rgba(17, 17, 17, 0.25);
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.craft-list__item:hover .craft-list__arrow {
  color: #F5F1EA;
  transform: translate(3px, -3px);
  background: #000;
}
.craft-list__name {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  .craft-list__name {
    color: #111111;
  }
}
.craft-list__item:hover .craft-list__name {
  color: #FF5A00;
}
.craft-list__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.15vw, 1.4rem);
  line-height: 1.35;
  color: #333333;
  margin: 0;
  font-weight: 250;
  max-width: 85%;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  .craft-list__desc {
    color: rgba(17, 17, 17, 0.75);
  }
}
.craft-list__item:hover .craft-list__desc {
  color: rgba(17, 17, 17, 0.75);
}
.craft-list__item-line {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FF5A00;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@media (min-width: 768px) {
  .our-craft-wrapper {
    height: calc(100vh + 600px);
  }
}

.our-craft {
  padding: 60px 0 0;
  background-color: #f9f2e9;
}
@media (min-width: 768px) {
  .our-craft {
    padding: 5rem 0;
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.our-craft__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .our-craft__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .our-craft__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .our-craft__container {
    max-width: 1440px;
  }
}
.our-craft__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: clamp(4rem, 8vh, 6rem);
}
@media (min-width: 1024px) {
  .our-craft__header {
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: flex-end;
  }
}
.our-craft__header-left {
  max-width: 720px;
}
.our-craft__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
}
.our-craft__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  font-weight: 300;
  line-height: 1.35;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0;
}
.our-craft__header-right {
  max-width: 480px;
  justify-self: end;
}
@media (max-width: 767px) {
  .our-craft__header-right {
    justify-self: start;
    max-width: 100%;
  }
}
.our-craft__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.15vw, 1.4rem);
  line-height: 1.35;
  color: #333333;
  margin: 0;
  font-weight: 250;
  padding-bottom: 6px;
}
.our-craft__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  margin: 2rem 0 !important;
}
@media (min-width: 768px) {
  .our-craft__steps {
    flex-direction: row;
    align-items: stretch;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }
}
.our-craft__step {
  position: relative;
  flex: 1;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  opacity: 0.28;
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  .our-craft__step {
    padding: 2rem 0;
    border-bottom: none;
    padding-right: 0;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .our-craft__step {
    border-bottom: none;
    border-right: 1px solid rgba(17, 17, 17, 0.12);
    padding: 4rem 2.5rem 4rem 0;
    margin-right: 2.5rem;
  }
  .our-craft__step:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }
}
.our-craft__step.is-active {
  opacity: 1;
}
.our-craft__step.is-active .our-craft__step-num {
  color: #111111;
  transform: scale(1.05);
}
.our-craft__step.is-active .our-craft__step-title {
  color: #111111;
}
@media (max-width: 767px) {
  .our-craft__step.is-active {
    border-left-color: #FF5A00;
  }
}
@media (min-width: 768px) {
  .our-craft__step::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF5A00;
  }
}
.our-craft__step-num {
  display: block;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: rgba(17, 17, 17, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  transition: color 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}
@media (max-width: 767px) {
  .our-craft__step-num {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    color: rgba(17, 17, 17, 0.2);
  }
}
.our-craft__step-title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.our-craft__step-desc {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem);
  color: rgba(17, 17, 17, 0.45);
  line-height: 1.75;
  transition: color 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.our-craft__step.is-active .our-craft__step-desc {
  color: rgba(17, 17, 17, 0.65);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    margin-left: clamp(0rem, 5vw, 4.8rem);
  }
}

.service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 1rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-2px);
}
.service-card__icon {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0;
  color: #FF5A00;
}
.service-card__icon svg {
  width: 48px;
  height: 48px;
}
.service-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #111111;
  margin: 0;
}
.service-card__description {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #333333;
  line-height: 1.35;
}
@media (min-width: 1024px) {
  .service-card {
    border-bottom: 0;
    border-right: 1px solid rgba(17, 17, 17, 0.1);
  }
  .service-card:last-child {
    border-right: 0;
  }
}

.breadcrumb,
.page-hero__breadcrumb,
.case-study-hero__breadcrumb,
.single-post-header__breadcrumb,
.services-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumb a,
.page-hero__breadcrumb a,
.case-study-hero__breadcrumb a,
.single-post-header__breadcrumb a,
.services-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb a:hover,
.page-hero__breadcrumb a:hover,
.case-study-hero__breadcrumb a:hover,
.single-post-header__breadcrumb a:hover,
.services-hero__breadcrumb a:hover {
  color: #FF5A00;
}
.breadcrumb span,
.breadcrumb .breadcrumb__sep,
.page-hero__breadcrumb span,
.page-hero__breadcrumb .breadcrumb__sep,
.case-study-hero__breadcrumb span,
.case-study-hero__breadcrumb .breadcrumb__sep,
.single-post-header__breadcrumb span,
.single-post-header__breadcrumb .breadcrumb__sep,
.services-hero__breadcrumb span,
.services-hero__breadcrumb .breadcrumb__sep {
  opacity: 0.4;
}
.breadcrumb strong,
.breadcrumb .breadcrumb__item--active,
.page-hero__breadcrumb strong,
.page-hero__breadcrumb .breadcrumb__item--active,
.case-study-hero__breadcrumb strong,
.case-study-hero__breadcrumb .breadcrumb__item--active,
.single-post-header__breadcrumb strong,
.single-post-header__breadcrumb .breadcrumb__item--active,
.services-hero__breadcrumb strong,
.services-hero__breadcrumb .breadcrumb__item--active {
  color: #111111;
  font-weight: 500;
}

.projects-filter,
.news-filter,
.filter-bar {
  padding: 2rem 0;
  background-color: transparent;
  position: relative;
  top: auto;
  z-index: 1;
}
.projects-filter__container,
.news-filter__container,
.filter-bar__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .projects-filter__container,
  .news-filter__container,
  .filter-bar__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .projects-filter__container,
  .news-filter__container,
  .filter-bar__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .projects-filter__container,
  .news-filter__container,
  .filter-bar__container {
    max-width: 1440px;
  }
}
.projects-filter__container,
.news-filter__container,
.filter-bar__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.projects-filter__container::-webkit-scrollbar,
.news-filter__container::-webkit-scrollbar,
.filter-bar__container::-webkit-scrollbar {
  display: none;
}
.projects-filter__label,
.news-filter__label,
.filter-bar__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  margin-right: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 7px 18px;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  background-color: transparent;
  color: rgba(17, 17, 17, 0.6);
  border-radius: 0 !important;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover {
  background-color: rgba(17, 17, 17, 0.06);
  color: #111111;
}
.filter-btn.is-active {
  background-color: #111111;
  color: white;
}

.news-section {
  padding: 0;
}

.projects-section,
.news-section,
.service-single-layout,
.services-rows-section,
.editorial-gradient-section {
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.45) 25%, #F5F1EA 50%, rgba(245, 241, 234, 0.45) 75%, #f9f2e9 100%);
  position: relative;
}

.sidebar-card,
.service-summary-card,
.case-study-sidebar-card,
.single-post-sidebar-card {
  padding: clamp(3rem, 3vw, 4rem);
  background-color: white;
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(17, 17, 17, 0.03);
}
.sidebar-card__title,
.service-summary-card__title,
.case-study-sidebar-card__title,
.single-post-sidebar-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.25rem, 1.4vw, 1.45rem);
  font-weight: 300;
  line-height: 1.25;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.sidebar-card__desc,
.service-summary-card__desc,
.case-study-sidebar-card__desc,
.single-post-sidebar-card__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 250;
  margin-bottom: 3rem;
}
.sidebar-card__btn,
.service-summary-card__btn,
.case-study-sidebar-card__btn,
.single-post-sidebar-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  background-color: #111111;
  color: white !important;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 0 !important;
  letter-spacing: 0.04em;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-card__btn:hover,
.service-summary-card__btn:hover,
.case-study-sidebar-card__btn:hover,
.single-post-sidebar-card__btn:hover {
  background-color: #FF5A00;
  transform: translateY(-2px);
}

.case-study-hero,
.single-post-header {
  padding: clamp(80px, 10vh, 120px) 0 clamp(20px, 3vh, 35px);
}
.case-study-hero__container,
.single-post-header__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .case-study-hero__container,
  .single-post-header__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .case-study-hero__container,
  .single-post-header__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .case-study-hero__container,
  .single-post-header__container {
    max-width: 1440px;
  }
}
.case-study-hero__breadcrumb,
.single-post-header__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.case-study-hero__breadcrumb a,
.single-post-header__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study-hero__breadcrumb a:hover,
.single-post-header__breadcrumb a:hover {
  color: #FF5A00;
}
.case-study-hero__breadcrumb span,
.single-post-header__breadcrumb span {
  opacity: 0.4;
}
.case-study-hero__breadcrumb strong,
.single-post-header__breadcrumb strong {
  color: #111111;
  font-weight: 500;
}
.case-study-hero__eyebrow,
.single-post-header__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.case-study-hero__title,
.single-post-header__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #111111;
  max-width: 1040px;
  margin-bottom: 2rem;
}
.case-study-hero__lead,
.single-post-header__lead {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.125rem, 1.35vw, 1.35rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 250;
  max-width: 880px;
  margin-bottom: 3rem;
}
.case-study-hero__meta,
.single-post-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(17, 17, 17, 0.5);
  margin-top: 2rem;
}
.case-study-hero__author,
.single-post-header__author {
  font-weight: 500;
  color: #111111;
}
.case-study-hero__sep,
.single-post-header__sep {
  opacity: 0.35;
}

.case-study-showcase,
.single-post-showcase {
  padding: clamp(15px, 3vh, 30px) 0;
}
.case-study-showcase__container,
.single-post-showcase__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .case-study-showcase__container,
  .single-post-showcase__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .case-study-showcase__container,
  .single-post-showcase__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .case-study-showcase__container,
  .single-post-showcase__container {
    max-width: 1440px;
  }
}
.case-study-showcase__media-wrap, .case-study-showcase__image-frame,
.single-post-showcase__media-wrap,
.single-post-showcase__image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 600px;
  overflow: hidden;
  background-color: #F5F1EA;
  border-radius: 0 !important;
}
.case-study-showcase__media-wrap .wp-block-post-featured-image,
.case-study-showcase__media-wrap figure, .case-study-showcase__image-frame .wp-block-post-featured-image,
.case-study-showcase__image-frame figure,
.single-post-showcase__media-wrap .wp-block-post-featured-image,
.single-post-showcase__media-wrap figure,
.single-post-showcase__image-frame .wp-block-post-featured-image,
.single-post-showcase__image-frame figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.case-study-showcase__media-wrap .wp-block-post-featured-image img,
.case-study-showcase__media-wrap figure img, .case-study-showcase__image-frame .wp-block-post-featured-image img,
.case-study-showcase__image-frame figure img,
.single-post-showcase__media-wrap .wp-block-post-featured-image img,
.single-post-showcase__media-wrap figure img,
.single-post-showcase__image-frame .wp-block-post-featured-image img,
.single-post-showcase__image-frame figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-study-showcase__image,
.single-post-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-body,
.single-post-body {
  padding: clamp(30px, 5vh, 60px) 0 clamp(80px, 10vh, 120px);
}
.case-study-body__container,
.single-post-body__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .case-study-body__container,
  .single-post-body__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .case-study-body__container,
  .single-post-body__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .case-study-body__container,
  .single-post-body__container {
    max-width: 1440px;
  }
}
.case-study-body__grid,
.single-post-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(4rem, 5vw, 8rem);
}
@media (min-width: 1024px) {
  .case-study-body__grid,
  .single-post-body__grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: start;
  }
}
.case-study-body__main, .case-study-body__content,
.case-study-body .entry-content,
.single-post-body__main,
.single-post-body__content,
.single-post-body .entry-content {
  min-width: 0;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
  line-height: 1.85;
  color: rgba(17, 17, 17, 0.82);
  font-weight: 250;
}
.case-study-body__main > * + *, .case-study-body__content > * + *,
.case-study-body .entry-content > * + *,
.single-post-body__main > * + *,
.single-post-body__content > * + *,
.single-post-body .entry-content > * + * {
  margin-block-start: 0;
}
.case-study-body__main p,
.case-study-body__main .wp-block-paragraph, .case-study-body__content p,
.case-study-body__content .wp-block-paragraph,
.case-study-body .entry-content p,
.case-study-body .entry-content .wp-block-paragraph,
.single-post-body__main p,
.single-post-body__main .wp-block-paragraph,
.single-post-body__content p,
.single-post-body__content .wp-block-paragraph,
.single-post-body .entry-content p,
.single-post-body .entry-content .wp-block-paragraph {
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem) !important;
  line-height: 1.85 !important;
  color: rgba(17, 17, 17, 0.8) !important;
  margin-top: 0 !important;
  margin-bottom: clamp(1.75rem, 2.5vw, 2.35rem) !important;
}
.case-study-body__main h2,
.case-study-body__main .wp-block-heading.level-2,
.case-study-body__main h2.wp-block-heading, .case-study-body__content h2,
.case-study-body__content .wp-block-heading.level-2,
.case-study-body__content h2.wp-block-heading,
.case-study-body .entry-content h2,
.case-study-body .entry-content .wp-block-heading.level-2,
.case-study-body .entry-content h2.wp-block-heading,
.single-post-body__main h2,
.single-post-body__main .wp-block-heading.level-2,
.single-post-body__main h2.wp-block-heading,
.single-post-body__content h2,
.single-post-body__content .wp-block-heading.level-2,
.single-post-body__content h2.wp-block-heading,
.single-post-body .entry-content h2,
.single-post-body .entry-content .wp-block-heading.level-2,
.single-post-body .entry-content h2.wp-block-heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.65rem, 2.6vw, 2.25rem) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  color: #111111 !important;
  margin-top: clamp(2.75rem, 5.5vh, 4.25rem) !important;
  margin-bottom: 1.25rem !important;
}
.case-study-body__main h2:first-child,
.case-study-body__main .wp-block-heading.level-2:first-child,
.case-study-body__main h2.wp-block-heading:first-child, .case-study-body__content h2:first-child,
.case-study-body__content .wp-block-heading.level-2:first-child,
.case-study-body__content h2.wp-block-heading:first-child,
.case-study-body .entry-content h2:first-child,
.case-study-body .entry-content .wp-block-heading.level-2:first-child,
.case-study-body .entry-content h2.wp-block-heading:first-child,
.single-post-body__main h2:first-child,
.single-post-body__main .wp-block-heading.level-2:first-child,
.single-post-body__main h2.wp-block-heading:first-child,
.single-post-body__content h2:first-child,
.single-post-body__content .wp-block-heading.level-2:first-child,
.single-post-body__content h2.wp-block-heading:first-child,
.single-post-body .entry-content h2:first-child,
.single-post-body .entry-content .wp-block-heading.level-2:first-child,
.single-post-body .entry-content h2.wp-block-heading:first-child {
  margin-top: 0 !important;
}
.case-study-body__main h3,
.case-study-body__main .wp-block-heading.level-3,
.case-study-body__main h3.wp-block-heading, .case-study-body__content h3,
.case-study-body__content .wp-block-heading.level-3,
.case-study-body__content h3.wp-block-heading,
.case-study-body .entry-content h3,
.case-study-body .entry-content .wp-block-heading.level-3,
.case-study-body .entry-content h3.wp-block-heading,
.single-post-body__main h3,
.single-post-body__main .wp-block-heading.level-3,
.single-post-body__main h3.wp-block-heading,
.single-post-body__content h3,
.single-post-body__content .wp-block-heading.level-3,
.single-post-body__content h3.wp-block-heading,
.single-post-body .entry-content h3,
.single-post-body .entry-content .wp-block-heading.level-3,
.single-post-body .entry-content h3.wp-block-heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem) !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em !important;
  color: #111111 !important;
  margin-top: clamp(2rem, 3.5vh, 3rem) !important;
  margin-bottom: 1rem !important;
}
.case-study-body__main h4,
.case-study-body__main .wp-block-heading.level-4, .case-study-body__content h4,
.case-study-body__content .wp-block-heading.level-4,
.case-study-body .entry-content h4,
.case-study-body .entry-content .wp-block-heading.level-4,
.single-post-body__main h4,
.single-post-body__main .wp-block-heading.level-4,
.single-post-body__content h4,
.single-post-body__content .wp-block-heading.level-4,
.single-post-body .entry-content h4,
.single-post-body .entry-content .wp-block-heading.level-4 {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #111111 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.75rem !important;
}
.case-study-body__main ul,
.case-study-body__main ul.wp-block-list, .case-study-body__content ul,
.case-study-body__content ul.wp-block-list,
.case-study-body .entry-content ul,
.case-study-body .entry-content ul.wp-block-list,
.single-post-body__main ul,
.single-post-body__main ul.wp-block-list,
.single-post-body__content ul,
.single-post-body__content ul.wp-block-list,
.single-post-body .entry-content ul,
.single-post-body .entry-content ul.wp-block-list {
  list-style: none !important;
  margin-top: 0 !important;
  margin-bottom: clamp(1.75rem, 2.5vw, 2.35rem) !important;
  padding-left: 0 !important;
}
.case-study-body__main ul li,
.case-study-body__main ul.wp-block-list li, .case-study-body__content ul li,
.case-study-body__content ul.wp-block-list li,
.case-study-body .entry-content ul li,
.case-study-body .entry-content ul.wp-block-list li,
.single-post-body__main ul li,
.single-post-body__main ul.wp-block-list li,
.single-post-body__content ul li,
.single-post-body__content ul.wp-block-list li,
.single-post-body .entry-content ul li,
.single-post-body .entry-content ul.wp-block-list li {
  position: relative !important;
  padding-left: 1.65rem !important;
  margin-bottom: 0.85rem !important;
  line-height: 1.85 !important;
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem) !important;
  color: rgba(17, 17, 17, 0.8) !important;
}
.case-study-body__main ul li::before,
.case-study-body__main ul.wp-block-list li::before, .case-study-body__content ul li::before,
.case-study-body__content ul.wp-block-list li::before,
.case-study-body .entry-content ul li::before,
.case-study-body .entry-content ul.wp-block-list li::before,
.single-post-body__main ul li::before,
.single-post-body__main ul.wp-block-list li::before,
.single-post-body__content ul li::before,
.single-post-body__content ul.wp-block-list li::before,
.single-post-body .entry-content ul li::before,
.single-post-body .entry-content ul.wp-block-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 0.15rem !important;
  top: 0.72em !important;
  width: 6px !important;
  height: 6px !important;
  background-color: #FF5A00 !important;
  border-radius: 0 !important;
}
.case-study-body__main ul li strong,
.case-study-body__main ul.wp-block-list li strong, .case-study-body__content ul li strong,
.case-study-body__content ul.wp-block-list li strong,
.case-study-body .entry-content ul li strong,
.case-study-body .entry-content ul.wp-block-list li strong,
.single-post-body__main ul li strong,
.single-post-body__main ul.wp-block-list li strong,
.single-post-body__content ul li strong,
.single-post-body__content ul.wp-block-list li strong,
.single-post-body .entry-content ul li strong,
.single-post-body .entry-content ul.wp-block-list li strong {
  color: #111111 !important;
  font-weight: 600 !important;
}
.case-study-body__main ul li:last-child,
.case-study-body__main ul.wp-block-list li:last-child, .case-study-body__content ul li:last-child,
.case-study-body__content ul.wp-block-list li:last-child,
.case-study-body .entry-content ul li:last-child,
.case-study-body .entry-content ul.wp-block-list li:last-child,
.single-post-body__main ul li:last-child,
.single-post-body__main ul.wp-block-list li:last-child,
.single-post-body__content ul li:last-child,
.single-post-body__content ul.wp-block-list li:last-child,
.single-post-body .entry-content ul li:last-child,
.single-post-body .entry-content ul.wp-block-list li:last-child {
  margin-bottom: 0 !important;
}
.case-study-body__main ol,
.case-study-body__main ol.wp-block-list, .case-study-body__content ol,
.case-study-body__content ol.wp-block-list,
.case-study-body .entry-content ol,
.case-study-body .entry-content ol.wp-block-list,
.single-post-body__main ol,
.single-post-body__main ol.wp-block-list,
.single-post-body__content ol,
.single-post-body__content ol.wp-block-list,
.single-post-body .entry-content ol,
.single-post-body .entry-content ol.wp-block-list {
  list-style: none !important;
  counter-reset: editorial-counter !important;
  margin-top: 0 !important;
  margin-bottom: clamp(1.75rem, 2.5vw, 2.35rem) !important;
  padding-left: 0 !important;
}
.case-study-body__main ol li,
.case-study-body__main ol.wp-block-list li, .case-study-body__content ol li,
.case-study-body__content ol.wp-block-list li,
.case-study-body .entry-content ol li,
.case-study-body .entry-content ol.wp-block-list li,
.single-post-body__main ol li,
.single-post-body__main ol.wp-block-list li,
.single-post-body__content ol li,
.single-post-body__content ol.wp-block-list li,
.single-post-body .entry-content ol li,
.single-post-body .entry-content ol.wp-block-list li {
  position: relative !important;
  padding-left: 2.25rem !important;
  margin-bottom: 0.85rem !important;
  line-height: 1.85 !important;
  font-size: clamp(1.0625rem, 1.15vw, 1.1875rem) !important;
  color: rgba(17, 17, 17, 0.8) !important;
  counter-increment: editorial-counter !important;
}
.case-study-body__main ol li::before,
.case-study-body__main ol.wp-block-list li::before, .case-study-body__content ol li::before,
.case-study-body__content ol.wp-block-list li::before,
.case-study-body .entry-content ol li::before,
.case-study-body .entry-content ol.wp-block-list li::before,
.single-post-body__main ol li::before,
.single-post-body__main ol.wp-block-list li::before,
.single-post-body__content ol li::before,
.single-post-body__content ol.wp-block-list li::before,
.single-post-body .entry-content ol li::before,
.single-post-body .entry-content ol.wp-block-list li::before {
  content: counter(editorial-counter, decimal-leading-zero) "." !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #FF5A00 !important;
  letter-spacing: 0.02em !important;
}
.case-study-body__main ol li strong,
.case-study-body__main ol.wp-block-list li strong, .case-study-body__content ol li strong,
.case-study-body__content ol.wp-block-list li strong,
.case-study-body .entry-content ol li strong,
.case-study-body .entry-content ol.wp-block-list li strong,
.single-post-body__main ol li strong,
.single-post-body__main ol.wp-block-list li strong,
.single-post-body__content ol li strong,
.single-post-body__content ol.wp-block-list li strong,
.single-post-body .entry-content ol li strong,
.single-post-body .entry-content ol.wp-block-list li strong {
  color: #111111 !important;
  font-weight: 600 !important;
}
.case-study-body__main ol li:last-child,
.case-study-body__main ol.wp-block-list li:last-child, .case-study-body__content ol li:last-child,
.case-study-body__content ol.wp-block-list li:last-child,
.case-study-body .entry-content ol li:last-child,
.case-study-body .entry-content ol.wp-block-list li:last-child,
.single-post-body__main ol li:last-child,
.single-post-body__main ol.wp-block-list li:last-child,
.single-post-body__content ol li:last-child,
.single-post-body__content ol.wp-block-list li:last-child,
.single-post-body .entry-content ol li:last-child,
.single-post-body .entry-content ol.wp-block-list li:last-child {
  margin-bottom: 0 !important;
}
.case-study-body__main figure,
.case-study-body__main .wp-block-image, .case-study-body__content figure,
.case-study-body__content .wp-block-image,
.case-study-body .entry-content figure,
.case-study-body .entry-content .wp-block-image,
.single-post-body__main figure,
.single-post-body__main .wp-block-image,
.single-post-body__content figure,
.single-post-body__content .wp-block-image,
.single-post-body .entry-content figure,
.single-post-body .entry-content .wp-block-image {
  margin: clamp(2rem, 4vh, 3.5rem) 0;
  max-width: 100%;
}
.case-study-body__main figure img,
.case-study-body__main .wp-block-image img, .case-study-body__content figure img,
.case-study-body__content .wp-block-image img,
.case-study-body .entry-content figure img,
.case-study-body .entry-content .wp-block-image img,
.single-post-body__main figure img,
.single-post-body__main .wp-block-image img,
.single-post-body__content figure img,
.single-post-body__content .wp-block-image img,
.single-post-body .entry-content figure img,
.single-post-body .entry-content .wp-block-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0 !important;
}
.case-study-body__main figure figcaption,
.case-study-body__main .wp-block-image figcaption, .case-study-body__content figure figcaption,
.case-study-body__content .wp-block-image figcaption,
.case-study-body .entry-content figure figcaption,
.case-study-body .entry-content .wp-block-image figcaption,
.single-post-body__main figure figcaption,
.single-post-body__main .wp-block-image figcaption,
.single-post-body__content figure figcaption,
.single-post-body__content .wp-block-image figcaption,
.single-post-body .entry-content figure figcaption,
.single-post-body .entry-content .wp-block-image figcaption {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.5);
  text-align: center;
  margin-top: 1.5rem;
}
.case-study-body__main img:not(figure img), .case-study-body__content img:not(figure img),
.case-study-body .entry-content img:not(figure img),
.single-post-body__main img:not(figure img),
.single-post-body__content img:not(figure img),
.single-post-body .entry-content img:not(figure img) {
  max-width: 100%;
  height: auto;
  display: block;
  margin: clamp(2rem, 4vh, 3.5rem) auto;
  border-radius: 0 !important;
}
.case-study-body__main blockquote,
.case-study-body__main .wp-block-quote, .case-study-body__content blockquote,
.case-study-body__content .wp-block-quote,
.case-study-body .entry-content blockquote,
.case-study-body .entry-content .wp-block-quote,
.single-post-body__main blockquote,
.single-post-body__main .wp-block-quote,
.single-post-body__content blockquote,
.single-post-body__content .wp-block-quote,
.single-post-body .entry-content blockquote,
.single-post-body .entry-content .wp-block-quote {
  border-left: 2px solid #FF5A00;
  padding: 1.5rem 2rem;
  margin: clamp(2rem, 4vh, 3.5rem) 0;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-style: italic;
  font-size: clamp(1.125rem, 1.25vw, 1.3rem);
  line-height: 1.65;
  color: #111111;
  background-color: rgba(245, 241, 234, 0.45);
}
.case-study-body__main blockquote p,
.case-study-body__main .wp-block-quote p, .case-study-body__content blockquote p,
.case-study-body__content .wp-block-quote p,
.case-study-body .entry-content blockquote p,
.case-study-body .entry-content .wp-block-quote p,
.single-post-body__main blockquote p,
.single-post-body__main .wp-block-quote p,
.single-post-body__content blockquote p,
.single-post-body__content .wp-block-quote p,
.single-post-body .entry-content blockquote p,
.single-post-body .entry-content .wp-block-quote p {
  margin-bottom: 0;
  font: inherit;
  color: inherit;
}
.case-study-body__sidebar,
.single-post-body__sidebar {
  min-width: 0;
}
@media (min-width: 1024px) {
  .case-study-body__sidebar,
  .single-post-body__sidebar {
    position: sticky;
    top: 110px;
  }
}

.single-post-related {
  padding: clamp(60px, 8vh, 100px) 0;
  background-color: #f9f2e9;
}
.single-post-related__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .single-post-related__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-post-related__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .single-post-related__container {
    max-width: 1440px;
  }
}
.single-post-related__header {
  margin-bottom: clamp(4rem, 5vh, 6rem);
}
.single-post-related__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.single-post-related__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #111111;
}

.pagination,
.wp-block-query-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(5rem, 8vh, 8rem) !important;
  width: 100%;
}
.pagination .wp-block-query-pagination-numbers,
.wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pagination .page-numbers,
.pagination .wp-block-query-pagination-previous,
.pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination .wp-block-query-pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  background-color: white;
  border-radius: 0;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination .page-numbers:hover,
.pagination .wp-block-query-pagination-previous:hover,
.pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .page-numbers:hover,
.wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.wp-block-query-pagination .wp-block-query-pagination-next:hover {
  background-color: #111111;
  color: white !important;
}
.pagination .page-numbers.current,
.pagination .wp-block-query-pagination-previous.current,
.pagination .wp-block-query-pagination-next.current,
.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination .wp-block-query-pagination-previous.current,
.wp-block-query-pagination .wp-block-query-pagination-next.current {
  background-color: #111111;
  color: white !important;
  font-weight: 600;
}
.pagination .page-numbers.dots,
.pagination .wp-block-query-pagination-previous.dots,
.pagination .wp-block-query-pagination-next.dots,
.wp-block-query-pagination .page-numbers.dots,
.wp-block-query-pagination .wp-block-query-pagination-previous.dots,
.wp-block-query-pagination .wp-block-query-pagination-next.dots {
  background-color: transparent;
  cursor: default;
}
.pagination .wp-block-query-pagination-previous,
.pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination .wp-block-query-pagination-next {
  font-weight: 600;
}

.single-post-header,
.case-study-hero,
.page-hero,
.services-hero,
.projects-hero {
  padding-top: clamp(80px, 20vh, 120px);
  padding-bottom: 2rem;
  background-color: #f9f2e9;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .single-post-header,
  .case-study-hero,
  .page-hero,
  .services-hero,
  .projects-hero {
    padding-top: clamp(240px, 22vh, 260px);
    padding-bottom: 8rem;
  }
}
.single-post-header__container,
.case-study-hero__container,
.page-hero__container,
.services-hero__container,
.projects-hero__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .single-post-header__container,
  .case-study-hero__container,
  .page-hero__container,
  .services-hero__container,
  .projects-hero__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-post-header__container,
  .case-study-hero__container,
  .page-hero__container,
  .services-hero__container,
  .projects-hero__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .single-post-header__container,
  .case-study-hero__container,
  .page-hero__container,
  .services-hero__container,
  .projects-hero__container {
    max-width: 1440px;
  }
}
.single-post-header__container,
.case-study-hero__container,
.page-hero__container,
.services-hero__container,
.projects-hero__container {
  position: relative;
  z-index: 1;
}
.single-post-header__eyebrow,
.case-study-hero__eyebrow,
.page-hero__eyebrow,
.services-hero__eyebrow,
.projects-hero__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.single-post-header__heading,
.case-study-hero__heading,
.page-hero__heading,
.services-hero__heading,
.projects-hero__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #111111;
  max-width: 900px;
  margin-bottom: 2.5rem;
}
.single-post-header__heading em,
.case-study-hero__heading em,
.page-hero__heading em,
.services-hero__heading em,
.projects-hero__heading em {
  font-style: normal;
  font-weight: 700;
  color: #FF5A00;
}
.single-post-header__heading strong,
.case-study-hero__heading strong,
.page-hero__heading strong,
.services-hero__heading strong,
.projects-hero__heading strong {
  font-weight: 700;
}
.single-post-header__subheading, .single-post-header__lead,
.case-study-hero__subheading,
.case-study-hero__lead,
.page-hero__subheading,
.page-hero__lead,
.services-hero__subheading,
.services-hero__lead,
.projects-hero__subheading,
.projects-hero__lead {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.125rem, 1.35vw, 1.35rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 250;
  max-width: 820px;
  margin-bottom: 4rem;
}
.single-post-header__breadcrumb,
.case-study-hero__breadcrumb,
.page-hero__breadcrumb,
.services-hero__breadcrumb,
.projects-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.single-post-header__breadcrumb a,
.case-study-hero__breadcrumb a,
.page-hero__breadcrumb a,
.services-hero__breadcrumb a,
.projects-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.single-post-header__breadcrumb a:hover,
.case-study-hero__breadcrumb a:hover,
.page-hero__breadcrumb a:hover,
.services-hero__breadcrumb a:hover,
.projects-hero__breadcrumb a:hover {
  color: #FF5A00;
}
.single-post-header__breadcrumb span,
.case-study-hero__breadcrumb span,
.page-hero__breadcrumb span,
.services-hero__breadcrumb span,
.projects-hero__breadcrumb span {
  opacity: 0.4;
}
.single-post-header__breadcrumb strong,
.case-study-hero__breadcrumb strong,
.page-hero__breadcrumb strong,
.services-hero__breadcrumb strong,
.projects-hero__breadcrumb strong {
  color: #111111;
  font-weight: 500;
}
.single-post-header__badges,
.case-study-hero__badges,
.page-hero__badges,
.services-hero__badges,
.projects-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.single-post-header__badge,
.case-study-hero__badge,
.page-hero__badge,
.services-hero__badge,
.projects-hero__badge {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111111;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none;
  display: block;
  width: 100%;
  margin-top: 0 !important;
}
@media (min-width: 1024px) {
  .single-post-header__badge,
  .case-study-hero__badge,
  .page-hero__badge,
  .services-hero__badge,
  .projects-hero__badge {
    margin-top: 12px !important;
    width: auto;
    align-items: center;
    display: inline-flex;
    background-color: white;
    padding: 6px 16px;
  }
}
.single-post-header__meta,
.case-study-hero__meta,
.page-hero__meta,
.services-hero__meta,
.projects-hero__meta {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 5rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.single-post-header__meta::-webkit-scrollbar,
.case-study-hero__meta::-webkit-scrollbar,
.page-hero__meta::-webkit-scrollbar,
.services-hero__meta::-webkit-scrollbar,
.projects-hero__meta::-webkit-scrollbar {
  display: none;
}
.single-post-header__meta-item,
.case-study-hero__meta-item,
.page-hero__meta-item,
.services-hero__meta-item,
.projects-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 2rem 3rem 2rem 0;
  margin-right: 3rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.single-post-header__meta-item span:first-child,
.case-study-hero__meta-item span:first-child,
.page-hero__meta-item span:first-child,
.services-hero__meta-item span:first-child,
.projects-hero__meta-item span:first-child {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}
.single-post-header__meta-item span:last-child,
.case-study-hero__meta-item span:last-child,
.page-hero__meta-item span:last-child,
.services-hero__meta-item span:last-child,
.projects-hero__meta-item span:last-child {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1;
}
.single-post-header__bg-number,
.case-study-hero__bg-number,
.page-hero__bg-number,
.services-hero__bg-number,
.projects-hero__bg-number {
  position: absolute;
  right: -1%;
  bottom: -15%;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(10rem, 26vw, 22rem);
  font-weight: 900;
  color: rgba(17, 17, 17, 0.04);
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.single-post-header,
.case-study-hero {
  padding-bottom: 0;
}

@keyframes page-hero-line {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.breadcrumb__item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.45);
}
.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.breadcrumb__item a:hover {
  color: #FF5A00;
}
.breadcrumb__item--active {
  color: #111111;
}
.breadcrumb__sep {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.25);
}

.about-story {
  padding: clamp(80px, 10vh, 120px) 0;
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.55) 22%, #F5F1EA 50%, rgba(245, 241, 234, 0.55) 78%, #f9f2e9 100%);
  position: relative;
}
.about-story:first-child, .about-story:first-of-type, main > .about-story:first-child, .about-page-main > .about-story:first-child, .site-main > .about-story:first-child {
  padding-top: clamp(80px, 20vh, 160px);
}
.about-story__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .about-story__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-story__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .about-story__container {
    max-width: 1440px;
  }
}
.about-story__header {
  margin-bottom: clamp(4rem, 6vh, 6rem) !important;
  max-width: 960px;
}
.about-story__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.about-story__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #111111;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .about-story__grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.about-story__narrative {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.about-story__narrative p {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.15rem, 1.15vw, 1.3rem);
  color: #333333;
  line-height: 1.45;
  font-weight: 250;
}
.about-story__lead {
  font-size: clamp(1.25rem, 1.25vw, 1.4rem) !important;
  color: #111111 !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
}
.about-story__quote {
  margin: clamp(2rem, 3.5vh, 3rem) 0 !important;
  padding: 0 !important;
  border: none !important;
  border-left: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
  background: transparent !important;
}
.about-story__quote-icon {
  color: #FF5A00;
  width: 32px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.95;
  display: block;
}
.about-story__quote-text,
.about-story__quote p {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: clamp(1.25rem, 1.85vw, 1.55rem) !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: #111111 !important;
  line-height: 1.38 !important;
  letter-spacing: -0.015em !important;
  margin: 0 !important;
}
.about-story__showcase {
  position: relative;
  width: 100%;
}
.about-story__image-frame {
  border-radius: 0px;
  overflow: hidden;
  aspect-ratio: 16/11;
}
.about-story__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-timeline {
  margin-top: clamp(3.5rem, 6.5vw, 5.5rem) !important;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  position: relative;
}
.about-timeline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}
@media (min-width: 375px) {
  .about-timeline__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-timeline__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}
.about-timeline__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  padding-top: 0.25rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0 !important;
}
.about-timeline__item:hover {
  transform: translateY(-3px);
}
.about-timeline__node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF5A00;
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.15);
  flex-shrink: 0;
  transition: box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-timeline__item:hover .about-timeline__dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.25);
}
.about-timeline__year {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 700;
  color: #FF5A00;
  line-height: 1;
  letter-spacing: -0.01em;
}
.about-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.about-timeline__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: 1.15rem;
  font-weight: 500;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}
.about-timeline__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  font-weight: 250;
  margin: 0;
}

.about-stats {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  background-color: #f9f2e9;
  position: relative;
}
.about-stats__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .about-stats__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-stats__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .about-stats__container {
    max-width: 1440px;
  }
}
.about-stats__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
@media (min-width: 768px) {
  .about-stats__bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-stats__bento-item {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 3.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-stats__bento-item:hover {
  background-color: rgba(245, 241, 234, 0.35);
}
@media (min-width: 768px) {
  .about-stats__bento-item:nth-child(odd) {
    border-right: 1px solid rgba(17, 17, 17, 0.12);
    padding-left: 0;
  }
  .about-stats__bento-item:nth-child(even) {
    padding-right: 0;
  }
  .about-stats__bento-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .about-stats__bento-item {
    padding-left: 0;
    padding-right: 0;
  }
  .about-stats__bento-item:last-child {
    border-bottom: none;
  }
}
.about-stats__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  line-height: 0.95;
}
.about-stats__num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(4.25rem, 9vw, 7.5rem);
  font-weight: 900;
  color: #111111;
  line-height: 0.9;
  letter-spacing: -0.045em;
}
.about-stats__suffix {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #111111;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-left: 0.1em;
}
.about-stats__plus {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(3.25rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #FF5A00;
  line-height: 0.9;
}
.about-stats__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: #333333;
  line-height: 1.5;
  font-weight: 250;
  margin: 0;
  max-width: 500px;
}

.about-values {
  padding: clamp(80px, 10vh, 120px) 0;
  background-color: #f9f2e9;
  position: relative;
}
.about-values__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .about-values__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-values__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .about-values__container {
    max-width: 1440px;
  }
}
.about-values__container {
  margin-left: auto !important;
  margin-right: auto !important;
}
.about-values__header {
  margin-bottom: clamp(4rem, 6vh, 6rem) !important;
  max-width: 900px !important;
  display: block !important;
}
.about-values__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem !important;
  display: block !important;
}
.about-values__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.22 !important;
  color: #111111 !important;
  margin: 0 !important;
  display: block !important;
}
.about-values__items {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.about-values__item {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 !important;
}
.about-values__item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.about-values__item-inner {
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  gap: 2rem !important;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0 !important;
  align-items: start !important;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .about-values__item-inner {
    grid-template-columns: 80px 1fr !important;
    gap: 4rem !important;
  }
}
.about-values__num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  color: rgba(17, 17, 17, 0.35);
  letter-spacing: 0.05em;
  padding-top: 4px;
  margin: 0 !important;
  display: block;
}
.about-values__item-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.65rem !important;
  margin: 0 !important;
}
.about-values__name {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #111111;
  margin: 0 !important;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-values__item:hover .about-values__name {
  color: #FF5A00;
}
.about-values__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.15rem, 1.15vw, 1.25rem);
  color: #333333;
  line-height: 1.45;
  font-weight: 250;
  max-width: 800px;
  margin: 0 !important;
}

.about-tech-stack {
  padding: clamp(80px, 10vh, 120px) 0;
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.55) 22%, #F5F1EA 50%, rgba(245, 241, 234, 0.55) 78%, #f9f2e9 100%);
  position: relative;
}
.about-tech-stack__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .about-tech-stack__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .about-tech-stack__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .about-tech-stack__container {
    max-width: 1440px;
  }
}
.about-tech-stack__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(4rem, 6vh, 6rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
@media (min-width: 768px) {
  .about-tech-stack__header {
    flex-direction: row;
    align-items: flex-end;
  }
}
.about-tech-stack__header-left {
  max-width: 720px;
}
.about-tech-stack__header-right {
  max-width: 380px;
}
.about-tech-stack__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.5;
  font-weight: 250;
  margin: 0;
}
.about-tech-stack__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}
.about-tech-stack__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: #111111;
  margin: 0;
}
.about-tech-stack__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 375px) {
  .about-tech-stack__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-tech-stack__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}
.about-tech-stack__col {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.about-tech-stack__col:hover {
  transform: translateY(-3px);
}
.about-tech-stack__col-header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0;
  border-bottom: none;
}
.about-tech-stack__col-num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FF5A00;
}
.about-tech-stack__col-title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: 1.2rem;
  font-weight: 500;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}
.about-tech-stack__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.about-tech-stack__tag {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #333333;
  padding: 0.2rem 0;
  background-color: transparent;
  border: none;
  font-weight: 250;
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.45;
}
.about-tech-stack__tag::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(17, 17, 17, 0.35);
  font-weight: 300;
}

.services-rows-section {
  padding: clamp(60px, 8vh, 120px) 0 clamp(80px, 10vh, 160px);
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.45) 25%, #F5F1EA 50%, rgba(245, 241, 234, 0.45) 75%, #f9f2e9 100%);
  position: relative;
}
.services-rows-section__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .services-rows-section__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .services-rows-section__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .services-rows-section__container {
    max-width: 1440px;
  }
}

.services-rows-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-list-row {
  position: sticky;
  top: calc(110px + var(--row-index, 0) * 52px);
  background-color: #f9f2e9;
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  box-shadow: none !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  opacity: 1 !important;
}
.service-list-row:first-child {
  border-top: none;
}
.service-list-row:hover {
  background-color: #f9f2e9;
}
.service-list-row__link, .service-list-row__link-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(6rem, 8vh, 10rem) 0;
  min-height: clamp(340px, 42vh, 480px);
  text-decoration: none;
  color: inherit;
  align-items: start;
}
@media (min-width: 768px) {
  .service-list-row__link, .service-list-row__link-wrap {
    grid-template-columns: 220px 70px 1fr;
    gap: clamp(3rem, 4vw, 5rem);
  }
}
@media (min-width: 1024px) {
  .service-list-row__link, .service-list-row__link-wrap {
    grid-template-columns: 260px 90px 1fr;
    gap: clamp(4rem, 5vw, 8rem);
  }
}
.service-list-row__thumb-wrap {
  border-radius: 0 !important;
  overflow: hidden;
  aspect-ratio: 16/10;
  width: 100%;
  max-width: 260px;
  background-color: #F5F1EA;
  box-shadow: none !important;
}
.service-list-row__thumb {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-list-row:hover .service-list-row__thumb {
  transform: scale(1.04);
}
.service-list-row__num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 300;
  color: #111111;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.service-list-row__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-list-row__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #111111;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-list-row__title a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-list-row__title a:hover {
  color: #FF5A00;
}
.service-list-row:hover .service-list-row__title {
  color: #FF5A00;
}
.service-list-row__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.0625rem, 1.2vw, 1.2rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 250;
  max-width: 860px;
}

.service-single-layout {
  padding: clamp(40px, 6vh, 80px) 0;
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.45) 25%, #F5F1EA 50%, rgba(245, 241, 234, 0.45) 75%, #f9f2e9 100%);
  position: relative;
}
.service-single-layout__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .service-single-layout__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .service-single-layout__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .service-single-layout__container {
    max-width: 1440px;
  }
}
.service-single-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(4rem, 4vw, 6rem);
}
@media (min-width: 1024px) {
  .service-single-layout__grid {
    grid-template-columns: 320px 1fr;
    gap: clamp(5rem, 5vw, 8rem);
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .service-single-layout__aside {
    position: sticky;
    top: 110px;
  }
}
.service-single-layout__main {
  min-width: 0;
}

.service-summary-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .service-summary-card {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.service-summary-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #111111;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.service-summary-card__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.0625rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 250;
  margin-bottom: 3rem;
}
.service-summary-card__specs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 3rem;
}
.service-summary-card .service-spec-item__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  margin-bottom: 2px;
}
.service-summary-card .service-spec-item__value {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #111111;
}
.service-summary-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  background-color: #111111;
  color: white !important;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-summary-card__btn:hover {
  background-color: #FF5A00;
  transform: translateY(-2px);
}

.service-detail-section__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.service-detail-section__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 2rem;
}
.service-detail-section__lead {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.125rem, 1.25vw, 1.25rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 250;
  margin-bottom: 4rem;
  max-width: 840px;
}

.service-deliverable-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 3vw, 5rem);
}
@media (min-width: 768px) {
  .service-deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-deliverable-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-top: 1px solid rgba(17, 17, 17, 0.09);
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.service-deliverable-item:hover {
  transform: translateY(-2px);
}
.service-deliverable-item__num {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #FF5A00;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.service-deliverable-item__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.25rem, 1.5vw, 1.45rem);
  font-weight: 300;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.service-deliverable-item__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.0625rem, 1.15vw, 1.15rem);
  line-height: 1.68;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 250;
}

.tech-stack {
  padding: 6rem 0;
  background-color: #111111;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .tech-stack {
    padding: 8rem 0;
  }
}
.tech-stack__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .tech-stack__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .tech-stack__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .tech-stack__container {
    max-width: 1440px;
  }
}
.tech-stack__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tech-stack__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.tech-stack__count {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}
.tech-stack__marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tech-stack__marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.tech-stack__marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
  min-width: 50%;
  padding-right: 3rem;
  animation: techMarquee 20s linear infinite;
  will-change: transform;
}
.tech-stack__marquee-track--reverse {
  animation-direction: reverse;
  animation-duration: 24s;
}
@media (prefers-reduced-motion: reduce) {
  .tech-stack__marquee-track {
    animation: none;
  }
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.tech-tag__name {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}
.tech-tag__name:hover {
  color: white;
}
.tech-tag__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #FF5A00;
  opacity: 0.6;
  flex-shrink: 0;
}
.tech-tag--accent .tech-tag__name {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

@keyframes techMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.projects-filter {
  padding: 2rem 0;
  background-color: transparent;
  position: relative;
  top: auto;
  z-index: 1;
}
.projects-filter__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .projects-filter__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .projects-filter__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .projects-filter__container {
    max-width: 1440px;
  }
}
.projects-filter__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.projects-filter__container::-webkit-scrollbar {
  display: none;
}
.projects-filter__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  margin-right: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 7px 18px;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background-color: transparent;
  color: rgba(17, 17, 17, 0.6);
  border-radius: 0 !important;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover {
  border-color: #111111;
  color: #111111;
}
.filter-btn.is-active {
  background-color: #111111;
  border-color: #111111;
  color: white;
}

.projects-section {
  padding: 0 0 clamp(80px, 10vh, 140px);
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.45) 25%, #F5F1EA 50%, rgba(245, 241, 234, 0.45) 75%, #f9f2e9 100%);
  position: relative;
}

@media (min-width: 1024px) {
  .projects-grid-wrap {
    padding-top: clamp(4rem, 5vh, 6rem);
  }
}
.projects-grid-wrap__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .projects-grid-wrap__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .projects-grid-wrap__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .projects-grid-wrap__container {
    max-width: 1440px;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 3vw, 4rem);
}
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid__col-wide {
    grid-column: span 7;
  }
}
@media (min-width: 1024px) {
  .projects-grid__col-tall {
    grid-column: span 5;
  }
}
@media (min-width: 1024px) {
  .projects-grid__col-half {
    grid-column: span 6;
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;
  background-color: #F5F1EA;
  display: block;
  min-height: clamp(380px, 46vh, 520px);
  text-decoration: none;
  color: white;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-card__image {
  transform: scale(1.05);
}
.project-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.project-card:hover .project-card__gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.94) 100%);
}
.project-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .project-card__body {
    padding: clamp(3rem, 3vw, 4rem);
  }
}
.project-card__meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  flex-direction: column;
}
@media (min-width: 1024px) {
  .project-card__meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.project-card__category {
  font-weight: 500;
}
.project-card__client {
  font-weight: 300;
  opacity: 0.8;
}
.project-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: white;
  margin: 0.5rem 0;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover .project-card__title {
  color: #FFF;
}
.project-card__action {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card__action-icon {
  font-size: 1rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card:hover .project-card__action {
  color: #FF5A00;
}
.project-card:hover .project-card__action-icon {
  transform: translate(3px, -3px);
}

.project-case-study {
  background-color: #f9f2e9;
}

.case-study-hero__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .case-study-hero__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .case-study-hero__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .case-study-hero__container {
    max-width: 1440px;
  }
}
.case-study-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.case-study-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.case-study-hero__breadcrumb a:hover {
  color: #FF5A00;
}
.case-study-hero__breadcrumb span {
  opacity: 0.4;
}
.case-study-hero__breadcrumb strong {
  color: #111111;
  font-weight: 500;
}
.case-study-hero__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.case-study-hero__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 3rem;
}
.case-study-hero__lead {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.125rem, 1.4vw, 1.4rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 250;
  max-width: 880px;
  margin-bottom: 5rem;
}

.case-study-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .case-study-specs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.case-study-spec {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.case-study-spec__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}
.case-study-spec__value {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #111111;
}
.case-study-spec__value a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study-spec__value a:hover {
  color: #FF5A00;
}

.related-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 3vw, 4rem);
}
@media (min-width: 768px) {
  .related-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.single-project-related {
  padding: clamp(60px, 8vh, 100px) 0;
  background-color: #f9f2e9;
}
.single-project-related__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .single-project-related__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .single-project-related__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .single-project-related__container {
    max-width: 1440px;
  }
}
.single-project-related__header {
  margin-bottom: clamp(4rem, 5vh, 6rem);
}
.single-project-related__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.single-project-related__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #111111;
}

.contact-hero {
  padding: clamp(60px, 8vh, 90px) 0 clamp(40px, 5vh, 60px);
  background: linear-gradient(180deg, #f9f2e9 0%, rgba(245, 241, 234, 0.55) 22%, #F5F1EA 50%, rgba(245, 241, 234, 0.55) 78%, #f9f2e9 100%);
  position: relative;
}
.contact-hero:first-child, .contact-hero:first-of-type, main > .contact-hero:first-child, .contact-page-main > .contact-hero:first-child, .site-main > .contact-hero:first-child {
  padding-top: clamp(80px, 20vh, 160px);
}
@media (min-width: 768px) {
  .contact-hero:first-child, .contact-hero:first-of-type, main > .contact-hero:first-child, .contact-page-main > .contact-hero:first-child, .site-main > .contact-hero:first-child {
    padding-top: clamp(240px, 22vh, 260px);
    padding-bottom: 8rem;
  }
}
.contact-hero__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .contact-hero__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-hero__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .contact-hero__container {
    max-width: 1440px;
  }
}
.contact-hero__container {
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-hero__header {
  max-width: 980px !important;
  margin-bottom: 0 !important;
}
.contact-hero__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem !important;
  display: block !important;
}
.contact-hero__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(2.2rem, 4.4vw, 4rem) !important;
  font-weight: 300 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.03em !important;
  color: #111111 !important;
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem) 0 !important;
}
.contact-hero__lead {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  color: #333333;
  line-height: 1.6;
  font-weight: 250;
  max-width: 860px;
  margin: 0 !important;
}

.contact-layout {
  padding: clamp(30px, 4vh, 60px) 0 clamp(80px, 10vh, 120px);
  background-color: #f9f2e9;
  position: relative;
}
.contact-layout__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .contact-layout__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-layout__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .contact-layout__container {
    max-width: 1440px;
  }
}
.contact-layout__container {
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-layout__grid {
    grid-template-columns: 380px 1fr;
    gap: clamp(3rem, 4vw, 5rem);
  }
}
@media (min-width: 1440px) {
  .contact-layout__grid {
    grid-template-columns: 420px 1fr;
    gap: clamp(4rem, 5vw, 6rem);
  }
}
@media (min-width: 1024px) {
  .contact-layout__aside {
    position: sticky;
    top: 110px;
  }
}

.contact-studio-card {
  border-radius: 0px;
  overflow: hidden;
  background-color: #FFFFFF;
  border: none !important;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.contact-studio-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #EAE5DC;
}
.contact-studio-card__image-wrap figure,
.contact-studio-card__image-wrap .wp-block-image {
  margin: 0 !important;
  width: 100%;
  height: 100%;
}
.contact-studio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-studio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-studio-card:hover .contact-studio-card__image {
  transform: scale(1.03);
}
.contact-studio-card__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 0px;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.contact-studio-card__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: statusPulse 2s infinite ease-in-out;
}
.contact-studio-card__body {
  padding: clamp(1.25rem, 2vw, 1.5rem);
}
.contact-studio-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: 1.25rem;
  font-weight: 300;
  color: #111111;
  margin: 0 0 0.4rem 0 !important;
}
.contact-studio-card__tagline {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.45;
  font-weight: 250;
  margin: 0 !important;
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.75;
  }
}
.contact-channels-list {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-channel-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-channel-item p {
  margin: 0 !important;
}
.contact-channel-item__label {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  margin: 0 !important;
}
.contact-channel-item__value {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.12rem;
  font-weight: 300;
  color: #111111;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin: 0 !important;
}
.contact-channel-item__value a {
  color: inherit;
  text-decoration: none;
}
.contact-channel-item__value:hover {
  color: #FF5A00;
  transform: translateX(3px);
}
.contact-channel-item__value--text {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.45;
  font-weight: 250;
  margin: 0 !important;
  transform: none !important;
}
.contact-channel-item__value--text:hover {
  color: #333333;
}

.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-socials p {
  margin: 0 !important;
}
.contact-socials__label {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  margin: 0 !important;
}
.contact-socials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.contact-socials__links p {
  margin: 0 !important;
}
.contact-socials__link {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 !important;
}
.contact-socials__link a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-socials__link a:hover {
  color: #FF5A00;
}
.contact-socials__link:hover {
  color: #FF5A00;
}

.contact-form-wrap {
  background: #FFFFFF;
  border: none !important;
  border-radius: 0px;
  padding: clamp(1.75rem, 4.5vw, 3.5rem);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}

.contact-form-header {
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}
.contact-form-header__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #111111;
  margin: 0 0 0.5rem 0 !important;
}
.contact-form-header__desc {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.5;
  font-weight: 250;
  margin: 0 !important;
}

.contact-form__section {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.contact-form__section:last-of-type {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.contact-form__section-label {
  display: block;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 400 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 0.95rem;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.contact-form__group--full {
  grid-column: 1/-1;
  margin-top: 1.25rem;
}
.contact-form__label {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 400 !important;
  color: #111111;
}
.contact-form__req {
  color: #FF5A00;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  background-color: #F4F1EA;
  border: 1px solid transparent !important;
  border-radius: 0px;
  padding: 1.05rem 1.25rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.02rem;
  color: #111111;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(17, 17, 17, 0.32);
  font-weight: 250;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  background-color: #FFFFFF;
  border-color: #111111 !important;
  box-shadow: none !important;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.contact-form .contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 !important;
  padding: 0 !important;
}
.contact-form .contact-pills .wpcf7-list-item {
  margin: 0 !important;
  display: inline-flex;
}
.contact-form .contact-pills label {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  cursor: pointer;
}
.contact-form .contact-pills input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.contact-form .contact-pills .wpcf7-list-item-label, .contact-form .contact-pills.contact-pill {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
  border: none !important;
  background-color: #EFECE5;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  color: #333333;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}
.contact-form .contact-pills .wpcf7-list-item-label:hover, .contact-form .contact-pills.contact-pill:hover {
  background-color: #E4DFD6;
  color: #111111;
  transform: translateY(-2px);
}
.contact-form .contact-pills input[type=radio]:checked + .wpcf7-list-item-label,
.contact-form .contact-pills .contact-pill.is-active {
  background-color: #111111 !important;
  color: #FFFFFF !important;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}
.contact-form .wpcf7-not-valid-tip {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  color: #DC2626;
  margin-top: 0.35rem;
  font-weight: 500;
}
.contact-form .wpcf7-response-output {
  margin: 1.5rem 0 0 0 !important;
  padding: 1rem 1.25rem !important;
  border-radius: 0px !important;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  border: none !important;
}
.contact-form form.sent .wpcf7-response-output {
  background-color: rgba(16, 185, 129, 0.12) !important;
  color: #065F46 !important;
}
.contact-form form.invalid .wpcf7-response-output,
.contact-form form.unaccepted .wpcf7-response-output {
  background-color: rgba(239, 68, 68, 0.12) !important;
  color: #991B1B !important;
}
.contact-form .wpcf7-spinner {
  margin: 0 0 0 0.75rem;
  vertical-align: middle;
}
.contact-form__footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .contact-form__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-form__btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background-color: #111111;
  color: #FFFFFF;
  border: none !important;
  border-radius: 0px;
  padding: 1.15rem 2.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.contact-form__btn-submit:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.contact-form__btn-submit:hover .contact-form__btn-icon {
  transform: translate(2px, -2px);
}
.contact-form__btn-icon {
  font-size: 1.1rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}
.contact-form__guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.5);
  line-height: 1.35;
}
.contact-form__lock-icon {
  color: #111111;
  flex-shrink: 0;
}
.contact-form__alert {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0px;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
}
.contact-form__alert--success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.contact-form__alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #991B1B;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-faq {
  padding: clamp(80px, 10vh, 120px) 0;
  background-color: #F5F1EA;
  position: relative;
}
.contact-faq__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .contact-faq__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .contact-faq__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .contact-faq__container {
    max-width: 1440px;
  }
}
.contact-faq__container {
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-faq__header {
  margin-bottom: clamp(4rem, 6vh, 6rem) !important;
  max-width: 900px !important;
}
.contact-faq__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
  margin-bottom: 1.5rem !important;
  display: block !important;
}
.contact-faq__heading {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem) !important;
  font-weight: 300 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.22 !important;
  color: #111111 !important;
  margin: 0 !important;
}
.contact-faq__accordion {
  margin: 0 !important;
  padding: 0 !important;
}

.faq-item {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__btn:hover .faq-item__question {
  color: #FF5A00;
}
.faq-item__btn:hover .faq-item__icon {
  border-color: #111111;
  color: #111111;
}
.faq-item__question {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #111111;
  line-height: 1.35;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), background-color 500ms cubic-bezier(0.16, 1, 0.3, 1), border-color 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__icon svg {
  width: 14px;
  height: 14px;
  stroke: #111111;
  transition: stroke 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-item__icon {
  background-color: #111111;
  border-color: #111111;
  transform: rotate(45deg);
}
.faq-item.is-open .faq-item__icon svg {
  stroke: #FFFFFF;
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.faq-item__answer-inner {
  min-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: padding-bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item__answer-inner p,
.faq-item__answer-inner .faq-item__answer-text {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  color: #333333;
  line-height: 1.6;
  font-weight: 250;
  margin: 0 !important;
}
.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}
.faq-item.is-open .faq-item__answer-inner {
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  opacity: 1;
  transform: translateY(0);
}

.news-content-wrap {
  padding-top: clamp(4rem, 5vh, 6rem);
}
.news-content-wrap__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .news-content-wrap__container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .news-content-wrap__container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .news-content-wrap__container {
    max-width: 1440px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2.5vw, 4rem);
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.news-card__image-frame {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #F5F1EA;
  border-radius: 0 !important;
  margin-bottom: 1.5rem;
}
.news-card__image-frame .wp-block-post-featured-image,
.news-card__image-frame figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.news-card__image-frame .wp-block-post-featured-image a,
.news-card__image-frame .wp-block-post-featured-image img,
.news-card__image-frame figure a,
.news-card__image-frame figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover .news-card__image-frame img, .news-card:hover__image {
  transform: scale(1.05);
}
.news-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0;
}
.news-card__category {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #FF5A00;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.news-card__category a {
  color: inherit;
  text-decoration: none;
  transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__category a:hover {
  opacity: 0.8;
}
.news-card__title {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111111;
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #111111;
  margin-bottom: 4px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__title a:hover {
  color: #FF5A00;
}
.news-card:hover .news-card__title, .news-card:hover .news-card__title a {
  color: #FF5A00;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.45);
  margin-bottom: 1rem;
}
.news-card__date {
  font-weight: 300;
}
.news-card__date time {
  color: inherit;
}
.news-card__excerpt {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.0625rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.68);
  font-weight: 250;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.news-card__excerpt p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.news-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.9375rem, 1.05vw, 1.025rem);
  font-weight: 500;
  color: #111111;
  margin-top: auto;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card__cta-icon {
  font-size: 1.05rem;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover .news-card__cta {
  color: #FF5A00;
}
.news-card:hover .news-card__cta-icon {
  transform: translate(3px, -3px);
}
@media (min-width: 1024px) {
  .news-card--featured {
    grid-column: span 3;
    margin-bottom: 3rem;
    padding-bottom: 5rem;
  }
  .news-card--featured .news-card__link {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(4rem, 5vw, 8rem);
    align-items: center;
  }
  .news-card--featured .news-card__image-frame {
    aspect-ratio: 16/9;
    margin-bottom: 0;
  }
  .news-card--featured .news-card__title {
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    line-height: 1.18;
  }
  .news-card--featured .news-card__excerpt {
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.65;
  }
}

.single-post-main {
  background-color: #f9f2e9;
}

.single-post-header__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(17, 17, 17, 0.55);
  padding-top: 2rem;
}
.single-post-header__author {
  font-weight: 500;
  color: #111111;
}
.single-post-header__sep {
  opacity: 0.4;
}
.single-post-header__eyebrow {
  margin-top: 1rem !important;
}

.page-transition-curtain {
  position: fixed;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  width: calc(100vw + 40px);
  height: calc(100vh + 40px);
  height: calc(100dvh + 40px);
  z-index: 9999999;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.page-transition-curtain.is-active {
  opacity: 1;
  visibility: visible;
}
.page-transition-curtain__backdrop {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-color: #111111;
  will-change: transform, opacity;
}
.page-transition-curtain__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  pointer-events: none;
}
@media (min-width: 768px) {
  .page-transition-curtain__grid {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
.page-transition-curtain__tile {
  background-color: #111111;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  will-change: transform, opacity;
  transform-origin: center center;
  transform: translateZ(0);
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
}

html.is-navigating .page-transition-curtain {
  opacity: 1;
  visibility: visible;
  animation: dtCurtainUnveil 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.02s forwards;
}
html.is-navigating .intro-overlay {
  display: none !important;
}

html.is-redirect .intro-overlay {
  display: none !important;
}

@keyframes dtCurtainUnveil {
  0% {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  99% {
    transform: translateY(-100%);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }
}
.word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.word-clip:last-child {
  margin-right: 0;
}

.word-inner {
  display: inline-block;
  will-change: transform;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mt-8 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mb-8 {
  margin-bottom: 4rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f9f2e9;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.intro-overlay__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(85vw, 560px);
  aspect-ratio: 835/220;
  gap: 8.14%;
  position: relative;
}
.intro-overlay__icon {
  opacity: 0;
  transform: scale(0);
  width: 22.75%;
  height: 100%;
  background-image: url("../danangtech-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.intro-overlay__icon svg,
.intro-overlay__icon img {
  display: none;
}
.intro-overlay__text {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 69.11%;
  height: 77.27%;
  flex-shrink: 0;
}
.intro-overlay__text > div {
  display: none;
}
.intro-overlay__wordmark-line {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.intro-overlay__wordmark-line--top {
  height: 48%;
  background-image: url("../danangtech-text-top.svg");
}
.intro-overlay__wordmark-line--bottom {
  height: 46%;
  background-image: url("../danangtech-text-bottom.svg");
}

.skip-intro-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  padding: 1rem 2rem;
  background-color: rgba(17, 17, 17, 0.7);
  color: white;
  border-radius: 0px;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  display: none;
}
@media (min-width: 768px) {
  .skip-intro-hint {
    bottom: 3rem;
  }
}

.btn,
.button,
.wp-block-button__link,
input[type=submit],
button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  min-height: 44px;
}
.btn:focus-visible,
.button:focus-visible,
.wp-block-button__link:focus-visible,
input[type=submit]:focus-visible,
button[type=submit]:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.btn:disabled,
.button:disabled,
.wp-block-button__link:disabled,
input[type=submit]:disabled,
button[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn,
.button,
.wp-block-button__link,
input[type=submit],
button[type=submit] {
  background-color: #FF5A00;
  border-color: #FF5A00;
  color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
}
.btn:hover:not(:disabled),
.button:hover:not(:disabled),
.wp-block-button__link:hover:not(:disabled),
input[type=submit]:hover:not(:disabled),
button[type=submit]:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn:active:not(:disabled),
.button:active:not(:disabled),
.wp-block-button__link:active:not(:disabled),
input[type=submit]:active:not(:disabled),
button[type=submit]:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-secondary,
.button-secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  line-height: 1;
  border-radius: 0px;
  border: 1px solid transparent;
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  text-decoration: none;
  min-height: 44px;
}
.btn-secondary:focus-visible,
.button-secondary:focus-visible,
.wp-block-button.is-style-outline .wp-block-button__link:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.btn-secondary:disabled,
.button-secondary:disabled,
.wp-block-button.is-style-outline .wp-block-button__link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-secondary,
.button-secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: rgba(17, 17, 17, 0.2);
  color: #111111 !important;
}
.btn-secondary:hover:not(:disabled),
.button-secondary:hover:not(:disabled),
.wp-block-button.is-style-outline .wp-block-button__link:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-secondary:active:not(:disabled),
.button-secondary:active:not(:disabled),
.wp-block-button.is-style-outline .wp-block-button__link:active:not(:disabled) {
  transform: translateY(0);
}

.btn-icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF5A00;
  border: 1px solid #FF5A00;
  color: #FFFFFF !important;
  border-radius: 0px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 90, 0, 0.22);
  transition: background-color 350ms cubic-bezier(0.4, 0, 0.2, 1), border-color 350ms cubic-bezier(0.4, 0, 0.2, 1), color 350ms cubic-bezier(0.4, 0, 0.2, 1), transform 350ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-icon svg {
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-icon:focus-visible {
  outline: 2px solid #FF5A00;
  outline-offset: 2px;
}
.btn-icon:hover:not(:disabled) {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
  transform: translate(2px, -2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-icon:hover:not(:disabled) svg {
  transform: translate(2px, -2px);
}
.btn-icon:active:not(:disabled) {
  transform: translate(0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-icon:active:not(:disabled) svg {
  transform: translate(0, 0);
}

.editorial-label,
.section-label,
.about__editorial-label,
.craft-list__eyebrow,
.our-craft__eyebrow,
.selected-work__eyebrow {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  color: #333333;
  white-space: nowrap;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 1.5rem;
  display: block;
}

.wp-site-blocks,
.wp-block-post-content,
.entry-content {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wp-site-blocks > *,
.wp-block-post-content > *,
.entry-content > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

@media (max-width: 767px) {
  .hero__editorial-container,
  .about__container,
  .craft-list__container,
  .our-craft__container,
  .selected-work__container,
  .trusted-by__container,
  .contact-cta__container,
  .container,
  .site-container,
  [class*=__container] {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .about__editorial-showcase,
  .hero__editorial-showcase {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
}
.editor-styles-wrapper .hero--editorial,
.editor-styles-wrapper .about--editorial,
.editor-styles-wrapper .selected-work,
.editor-styles-wrapper .craft-list,
.editor-styles-wrapper .our-craft,
.editor-styles-wrapper .contact-cta,
.editor-styles-wrapper .trusted-by,
.editor-styles-wrapper .work-card,
.editor-styles-wrapper [data-reveal-item],
.editor-styles-wrapper .hero__intro-tag,
.editor-styles-wrapper .hero__editorial-title,
.editor-styles-wrapper .hero__editorial-aside,
.editor-styles-wrapper .hero__editorial-showcase,
.editor-styles-wrapper .about__editorial-label,
.editor-styles-wrapper .about__editorial-title,
.editor-styles-wrapper .about__editorial-narrative,
.editor-styles-wrapper .about__editorial-showcase,
.block-editor-block-list__layout .hero--editorial,
.block-editor-block-list__layout .about--editorial,
.block-editor-block-list__layout .selected-work,
.block-editor-block-list__layout .craft-list,
.block-editor-block-list__layout .our-craft,
.block-editor-block-list__layout .contact-cta,
.block-editor-block-list__layout .trusted-by,
.block-editor-block-list__layout .work-card,
.block-editor-block-list__layout [data-reveal-item],
.block-editor-block-list__layout .hero__intro-tag,
.block-editor-block-list__layout .hero__editorial-title,
.block-editor-block-list__layout .hero__editorial-aside,
.block-editor-block-list__layout .hero__editorial-showcase,
.block-editor-block-list__layout .about__editorial-label,
.block-editor-block-list__layout .about__editorial-title,
.block-editor-block-list__layout .about__editorial-narrative,
.block-editor-block-list__layout .about__editorial-showcase,
.wp-admin .hero--editorial,
.wp-admin .about--editorial,
.wp-admin .selected-work,
.wp-admin .craft-list,
.wp-admin .our-craft,
.wp-admin .contact-cta,
.wp-admin .trusted-by,
.wp-admin .work-card,
.wp-admin [data-reveal-item],
.wp-admin .hero__intro-tag,
.wp-admin .hero__editorial-title,
.wp-admin .hero__editorial-aside,
.wp-admin .hero__editorial-showcase,
.wp-admin .about__editorial-label,
.wp-admin .about__editorial-title,
.wp-admin .about__editorial-narrative,
.wp-admin .about__editorial-showcase,
.block-editor-page .hero--editorial,
.block-editor-page .about--editorial,
.block-editor-page .selected-work,
.block-editor-page .craft-list,
.block-editor-page .our-craft,
.block-editor-page .contact-cta,
.block-editor-page .trusted-by,
.block-editor-page .work-card,
.block-editor-page [data-reveal-item],
.block-editor-page .hero__intro-tag,
.block-editor-page .hero__editorial-title,
.block-editor-page .hero__editorial-aside,
.block-editor-page .hero__editorial-showcase,
.block-editor-page .about__editorial-label,
.block-editor-page .about__editorial-title,
.block-editor-page .about__editorial-narrative,
.block-editor-page .about__editorial-showcase {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.editor-styles-wrapper .intro-overlay,
.block-editor-block-list__layout .intro-overlay,
.wp-admin .intro-overlay,
.block-editor-page .intro-overlay {
  display: none !important;
}
