@import url("./styles.css?v=11");

:root {
  --bg: #f7f5f0;
  --surface: rgba(255, 255, 252, 0.92);
  --surface-strong: #fffefa;
  --text: #201f1c;
  --muted: #6b675f;
  --line: rgba(32, 31, 28, 0.12);
  --dark: #22211e;
  --accent: #8a7a68;
  --accent-deep: #34302a;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --shadow: 0 24px 82px rgba(28, 26, 23, 0.082);
  --shadow-soft: 0 14px 42px rgba(28, 26, 23, 0.06);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(220, 212, 200, 0.28), transparent 26%),
    linear-gradient(180deg, #fffefa 0%, #f7f5f0 48%, #eee9df 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(32, 31, 28, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 31, 28, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.26;
}

.site-header {
  max-width: 1580px;
  padding-top: 34px;
  padding-bottom: 32px;
}

.site-nav {
  gap: clamp(14px, 1.5vw, 24px);
}

.site-nav a {
  font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
}

.section {
  max-width: 1580px;
  padding: 68px 0;
}

.hero {
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.78fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 104px;
}

.eyebrow {
  color: rgba(34, 33, 31, 0.46);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  margin-bottom: 18px;
}

h2 {
  max-width: 15ch;
  font-size: clamp(1.75rem, 2.15vw, 2.35rem);
  letter-spacing: -0.045em;
}

.section-note,
.hero-text,
.service-card-copy p,
.timeline-item p,
.project-card p,
.value-item p,
.contact-note {
  color: rgba(34, 33, 31, 0.52);
}

.hero-copy,
.hero-visual,
.service-card,
.project-card,
.contact-section {
  background-color: rgba(255, 255, 252, 0.96);
  border-color: rgba(32, 31, 28, 0.12);
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: clamp(500px, 58vh, 640px);
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
}

.visual-preview,
.hero-carousel {
  min-height: 100%;
  border-radius: 0;
}

.visual-preview img,
.carousel-slide img {
  min-height: clamp(500px, 58vh, 640px);
}

.visual-preview::after,
.carousel-slide::after {
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 42%);
}

.hero-carousel {
  position: relative;
  height: 100%;
  min-height: clamp(500px, 58vh, 640px);
  overflow: hidden;
  background: #1f1e1b;
}

.carousel-track,
.carousel-slide {
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(20, 19, 17, 0.22);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover {
  background: rgba(20, 19, 17, 0.42);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%) scale(1.03);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(20, 19, 17, 0.24);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dots button.is-active {
  width: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-copy {
  background:
    linear-gradient(145deg, rgba(255, 255, 252, 0.99), rgba(247, 244, 238, 0.9)),
    radial-gradient(circle at 14% 8%, rgba(138, 122, 104, 0.07), transparent 34%);
  padding: clamp(34px, 3.8vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-copy::after {
  color: rgba(34, 33, 31, 0.026);
}

.hero-title {
  color: #22211f;
  letter-spacing: -0.06em;
  font-size: clamp(2.55rem, 3.95vw, 4.65rem);
  line-height: 1;
}

.hero-text {
  margin-top: 24px;
  max-width: 31rem;
  font-size: 0.94rem;
}

.hero-tags {
  margin-top: 24px;
  gap: 10px;
}

.hero-tags span {
  background: rgba(246, 242, 235, 0.72);
  border-color: rgba(32, 31, 28, 0.11);
  color: rgba(32, 31, 28, 0.54);
  font-size: 0.7rem;
  font-weight: 500;
}

.hero-actions {
  margin-top: 28px;
}

.button-dark,
.contact-submit {
  background: #252421;
  color: #fbfaf6;
  box-shadow: 0 18px 42px rgba(34, 31, 27, 0.2);
}

.button-light {
  background: transparent;
  border-color: rgba(34, 33, 31, 0.14);
  color: rgba(34, 33, 31, 0.72);
}

#services {
  padding-top: 78px;
  padding-bottom: 42px;
}

#services .section-heading {
  margin-bottom: 34px;
}

#services h2 {
  font-size: clamp(1.55rem, 1.95vw, 2rem);
}

.service-card {
  background-color: rgba(255, 255, 252, 0.94);
  border-color: rgba(32, 31, 28, 0.105);
  box-shadow: 0 12px 34px rgba(28, 26, 23, 0.035);
}

.service-card-media {
  background-color: rgba(235, 229, 219, 0.62);
  min-height: 240px;
}

.service-card-copy {
  padding: 24px 24px 26px;
}

.service-card-copy h3,
.project-card h3,
.value-item h3,
.timeline-item h3 {
  color: rgba(34, 33, 31, 0.9);
}

.product-preview-section {
  padding-top: 62px;
  padding-bottom: 104px;
}

.product-preview-grid,
.brand-preview-grid,
.package-grid,
.brand-page-grid {
  display: grid;
  gap: 20px;
}

.product-preview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-preview-card,
.brand-card,
.package-card,
.subpage-cta {
  border: 1px solid rgba(32, 31, 28, 0.115);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 252, 0.95);
  box-shadow: var(--shadow-soft);
}

.product-preview-card {
  min-height: 260px;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-preview-card h3,
.brand-card h3,
.brand-card h2,
.package-card h2 {
  margin: 0;
  color: rgba(34, 33, 31, 0.9);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.product-preview-card h3 {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.product-preview-card p,
.brand-card p,
.package-fit,
.subpage-hero p,
.subpage-cta p {
  margin: 0;
  color: rgba(32, 31, 28, 0.56);
  font-size: 0.86rem;
  line-height: 1.72;
  font-weight: 300;
}

.product-preview-card .button {
  width: fit-content;
  margin-top: auto;
}

.section-footnote {
  margin: 24px 0 0;
  color: rgba(32, 31, 28, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

#workflow {
  padding-top: 44px;
  padding-bottom: 62px;
}

.workflow-section .section-heading {
  margin-bottom: 28px;
}

.workflow-note {
  max-width: 42rem;
  margin-top: 10px;
  color: rgba(32, 31, 28, 0.44);
  font-size: 0.84rem;
  line-height: 1.65;
}

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

.workflow-card {
  min-height: 168px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(32, 31, 28, 0.09);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 252, 0.74);
  box-shadow: none;
}

.workflow-card span {
  color: rgba(32, 31, 28, 0.36);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.workflow-card h3 {
  margin: 0;
  color: rgba(32, 31, 28, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.workflow-card p {
  margin: 0;
  color: rgba(32, 31, 28, 0.5);
  font-size: 0.78rem;
  line-height: 1.55;
}

#projects {
  position: relative;
  padding-top: 118px;
  padding-bottom: 122px;
  isolation: isolate;
}

#projects::before {
  content: "";
  position: absolute;
  inset: 38px -52px 34px;
  z-index: -1;
  border: 1px solid rgba(32, 31, 28, 0.085);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.72), rgba(232, 225, 214, 0.58));
}

#projects .projects-heading {
  margin-bottom: 66px;
}

#projects h2 {
  font-size: clamp(2.05rem, 3.3vw, 3.55rem);
  letter-spacing: -0.06em;
}

#projects .section-note {
  color: rgba(32, 31, 28, 0.5);
}

.project-grid {
  grid-template-columns: 1.46fr 0.82fr 0.82fr;
  gap: 24px;
  align-items: stretch;
}

.project-card {
  min-height: 540px;
  background-color: #fffefa;
  border-color: rgba(32, 31, 28, 0.12);
  box-shadow: 0 32px 94px rgba(28, 26, 23, 0.095);
  display: flex;
  flex-direction: column;
}

.project-card::after {
  display: none;
}

.project-media {
  background-color: #e9e2d7;
  height: 340px;
}

.project-featured .project-media {
  height: 340px;
}

.project-copy {
  min-height: 190px;
  padding: 28px 28px 32px;
  border-top-color: rgba(32, 31, 28, 0.08);
  display: grid;
  align-content: start;
  gap: 14px;
}

.project-tag {
  color: rgba(32, 31, 28, 0.38);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.project-copy h3 {
  min-height: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  line-height: 1.18;
}

.project-featured .project-copy h3 {
  font-size: clamp(1.16rem, 1.55vw, 1.56rem);
}

.project-copy p {
  min-height: 0;
  max-width: 38rem;
  font-size: 0.88rem;
  line-height: 1.66;
}

.brand-preview-section {
  padding-top: 84px;
  padding-bottom: 90px;
}

.brand-preview-grid,
.brand-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 31, 28, 0.11);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.94), rgba(244, 240, 233, 0.78));
  box-shadow: 0 26px 78px rgba(28, 26, 23, 0.06);
}

.brand-card {
  min-height: 178px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 210px minmax(110px, 0.36fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  border: 0;
  border-bottom: 1px solid rgba(32, 31, 28, 0.085);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background 180ms ease;
}

.brand-card:last-child {
  border-bottom: 0;
}

.brand-card:hover {
  background: rgba(255, 255, 252, 0.52);
}

.brand-preview-grid .brand-card:first-child {
  background: rgba(255, 255, 252, 0.38);
  border-color: rgba(32, 31, 28, 0.085);
}

.brand-mark {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(34, 32, 29, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(34, 33, 31, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.94), rgba(238, 234, 226, 0.7));
}

.brand-logo-box {
  width: min(100%, 190px);
  height: 82px;
  padding: 16px 18px;
  border: 1px solid rgba(32, 31, 28, 0.075);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 252, 0.72);
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.brand-logo-img-hc28 {
  width: 126px;
}

.brand-logo-img-hik {
  width: 132px;
}

.brand-logo-img-ulrug {
  width: 136px;
}

.brand-logo-img-bg {
  width: 118px;
}

.brand-card h3,
.brand-card h2 {
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
  letter-spacing: -0.035em;
}

.brand-meta {
  display: grid;
  gap: 7px;
  padding-top: 0;
}

.brand-meta span {
  color: rgba(32, 31, 28, 0.38);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-meta strong {
  color: rgba(32, 31, 28, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
  font-weight: 300;
}

.brand-card .button {
  min-width: 132px;
  width: fit-content;
  margin-top: auto;
  padding-inline: 18px;
  background: rgba(255, 255, 252, 0.46);
  border-color: rgba(32, 31, 28, 0.12);
  color: rgba(32, 31, 28, 0.68);
  box-shadow: none;
}

.section-action {
  margin-top: 26px;
}

.value-section {
  padding-top: 48px;
  padding-bottom: 76px;
}

.value-section .section-heading {
  margin-bottom: 36px;
}

.value-item {
  min-height: 112px;
  background-color: rgba(255, 255, 252, 0.68);
  border-color: rgba(32, 31, 28, 0.085);
  box-shadow: none;
  padding: 22px 24px;
}

.value-item h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.contact-section {
  margin-top: 56px;
  margin-bottom: 76px;
  padding: clamp(54px, 5.8vw, 92px);
  background:
    linear-gradient(145deg, #fffefa 0%, rgba(238, 231, 220, 0.9) 100%),
    radial-gradient(circle at 8% 0%, rgba(32, 31, 28, 0.075), transparent 34%);
  border-color: rgba(32, 31, 28, 0.15);
  box-shadow: 0 44px 126px rgba(28, 26, 23, 0.14);
  gap: clamp(42px, 6vw, 96px);
}

.contact-section h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
}

.contact-form {
  background:
    linear-gradient(180deg, #fffefa, rgba(248, 245, 239, 0.96));
  border-color: rgba(32, 31, 28, 0.14);
  box-shadow: 0 24px 72px rgba(28, 26, 23, 0.1);
  padding: clamp(22px, 2.6vw, 34px);
  gap: 16px;
}

.form-field {
  background: rgba(255, 255, 252, 0.95);
  border-color: rgba(32, 31, 28, 0.12);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(32, 31, 28, 0.18);
  background: #ffffff;
}

.contact-submit {
  min-height: 58px;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 33, 31, 0.44);
  box-shadow: 0 0 0 4px rgba(34, 33, 31, 0.055);
}

.subpage-main {
  max-width: 1580px;
}

.subpage-hero {
  padding: clamp(76px, 9vw, 142px) 0 clamp(54px, 6vw, 90px);
  border-bottom: 1px solid rgba(34, 32, 29, 0.08);
}

.subpage-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 6.5vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 400;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 54rem;
  margin-top: 30px;
}

/* Packages should feel like a precise product menu, not a loud landing hero. */
body:has(.package-page-section) .subpage-hero {
  padding: clamp(58px, 6.5vw, 104px) 0 clamp(38px, 4.5vw, 68px);
}

body:has(.package-page-section) .subpage-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.3rem, 4.4vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

body:has(.package-page-section) .subpage-hero p:not(.eyebrow) {
  max-width: 48rem;
  margin-top: 22px;
  font-size: 0.94rem;
  line-height: 1.72;
}

.package-page-section,
.brand-page-section {
  padding-top: 56px;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  min-height: 720px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.package-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.package-card-head span {
  color: rgba(34, 33, 31, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.package-card-head strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.package-card h2 {
  max-width: 14ch;
  font-size: clamp(1.08rem, 1.45vw, 1.48rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.package-section {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 32, 29, 0.08);
}

.package-section h3 {
  margin: 0;
  color: rgba(34, 33, 31, 0.84);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-section-muted {
  opacity: 0.78;
}

.package-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(34, 32, 29, 0.055);
  color: rgba(34, 33, 31, 0.62);
  font-size: 0.74rem;
  line-height: 1.52;
}

.package-fit {
  margin-top: auto;
  padding: 13px 0 0;
  border-top: 1px solid rgba(34, 32, 29, 0.08);
  color: rgba(34, 33, 31, 0.66);
  font-size: 0.78rem;
  line-height: 1.6;
}

.package-card .button {
  width: 100%;
  min-height: 46px;
  font-size: 0.78rem;
}

.brand-page-card {
  min-height: 430px;
}

.subpage-cta {
  margin: 22px 0 82px;
  padding: clamp(32px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.package-upgrade-cta {
  background:
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(232, 226, 216, 0.84));
  border-color: rgba(34, 32, 29, 0.12);
}

.subpage-cta h2 {
  margin: 0 0 14px;
  max-width: 20ch;
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
}

.subpage-cta p {
  max-width: 58rem;
}

.subpage-cta .button {
  flex: 0 0 auto;
}

/* V22 palette reset: calmer, cleaner, less layered. */
:root {
  --bg: #f6f4ef;
  --surface: #fffefa;
  --surface-strong: #ffffff;
  --text: #20201d;
  --muted: #66625b;
  --line: rgba(32, 32, 29, 0.1);
  --dark: #20201d;
  --accent: #8b7b68;
  --accent-deep: #2f2d28;
  --shadow: 0 22px 64px rgba(31, 29, 25, 0.07);
  --shadow-soft: 0 12px 34px rgba(31, 29, 25, 0.045);
}

body {
  background: #f6f4ef;
}

body::before {
  opacity: 0.08;
}

.hero-copy,
.hero-visual,
.service-card,
.product-preview-card,
.brand-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta {
  background: #fffefa;
  border-color: rgba(32, 32, 29, 0.1);
  box-shadow: var(--shadow-soft);
}

.service-card-media,
.project-media {
  background-color: #ebe7de;
}

#projects::before {
  border-color: rgba(32, 32, 29, 0.08);
  background: #eeeae2;
}

.workflow-card {
  background: rgba(255, 254, 250, 0.76);
  border-color: rgba(32, 32, 29, 0.085);
}

.brand-preview-grid,
.brand-page-grid {
  background: #fffefa;
  border-color: rgba(32, 32, 29, 0.1);
  box-shadow: var(--shadow-soft);
}

.brand-logo-box {
  background: transparent;
  border-color: rgba(32, 32, 29, 0.08);
}

.contact-section {
  background: #eee9df;
  border-color: rgba(32, 32, 29, 0.12);
  box-shadow: 0 34px 96px rgba(31, 29, 25, 0.09);
}

.form-field,
.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border-color: rgba(32, 32, 29, 0.12);
}

@media (max-width: 720px) {
  .site-header,
  main,
  .site-footer,
  .case-main {
    width: min(100% - 28px, 480px);
  }

  .section {
    padding: 44px 0;
  }

  .site-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0;
    line-height: 1.15;
    white-space: normal;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 6px;
    padding-bottom: 46px;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(35, 31, 26, 0.08);
  }

  .visual-preview,
  .hero-carousel {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11;
    border-radius: 24px;
  }

  .visual-preview img,
  .carousel-slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 14px;
    transform: none;
    background: rgba(20, 19, 17, 0.28);
  }

  .carousel-arrow:hover {
    transform: none;
  }

  .carousel-prev {
    left: 14px;
  }

  .carousel-next {
    right: 14px;
  }

  .carousel-dots {
    bottom: 20px;
  }

  .visual-caption {
    display: none;
  }

  .hero-copy {
    order: 2;
    display: block;
    min-height: auto;
    padding: 18px 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-copy::after {
    display: none;
  }

  html[lang="zh-CN"] .hero-title,
  html[lang="en"] .hero-title,
  .hero-title {
    max-width: 100%;
    font-size: clamp(1.46rem, 6.2vw, 1.92rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 0.8rem;
    line-height: 1.62;
  }

  .hero-tags,
  .hero-actions {
    margin-top: 18px;
  }

  #services {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .service-editorial {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    border-radius: 22px;
  }

  .service-card-media {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
    padding: 16px;
    border-radius: 0;
  }

  .service-card-copy {
    min-height: 0;
    padding: 18px 20px 22px;
  }

  .service-card-copy h3 {
    min-height: 0;
    font-size: 0.92rem;
  }

  .service-card-copy p {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .product-preview-section {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .product-preview-grid,
  .brand-preview-grid,
  .package-grid,
  .brand-page-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-preview-card,
  .brand-card,
  .package-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .product-preview-card .button,
  .brand-card .button {
    width: 100%;
  }

  .section-footnote {
    font-size: 0.82rem;
  }

  #workflow {
    padding-top: 36px;
    padding-bottom: 46px;
  }

  .workflow-section .section-heading {
    margin-bottom: 18px;
  }

  .workflow-note {
    font-size: 0.76rem;
    line-height: 1.58;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .workflow-card {
    min-height: auto;
    padding: 20px;
    gap: 12px;
    border-radius: 20px;
  }

  .workflow-card h3 {
    font-size: 0.92rem;
  }

  .workflow-card p {
    font-size: 0.74rem;
  }

  #projects {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  #projects::before {
    inset: 18px -14px 10px;
    border-radius: 30px;
  }

  #projects .projects-heading {
    margin-bottom: 30px;
  }

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

  .project-card,
  .project-featured {
    min-height: auto;
    border-radius: 24px;
  }

  .project-media,
  .project-featured .project-media {
    height: auto;
    aspect-ratio: 16 / 10.5;
  }

  .project-copy {
    min-height: auto;
    padding: 22px 20px 24px;
    gap: 10px;
  }

  .project-copy h3,
  .project-featured .project-copy h3 {
    min-height: 0;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .project-copy p,
  .project-featured .project-copy p {
    min-height: 0;
    font-size: 0.74rem;
    line-height: 1.58;
  }

  .value-section {
    padding-top: 34px;
    padding-bottom: 50px;
  }

  .brand-preview-section {
    padding-top: 50px;
    padding-bottom: 48px;
  }

  .brand-preview-grid,
  .brand-page-grid {
    gap: 0;
    border-radius: 24px;
  }

  .brand-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(32, 31, 28, 0.085);
    background: transparent;
  }

  .brand-card:last-child {
    border-bottom: 0;
  }

  .brand-logo-box {
    width: 100%;
    height: 74px;
    justify-content: flex-start;
    padding: 14px 0;
    border: 0;
    background: transparent;
  }

  .brand-logo-img-hc28 {
    width: 118px;
  }

  .brand-logo-img-hik {
    width: 124px;
  }

  .brand-logo-img-ulrug {
    width: 128px;
  }

  .brand-logo-img-bg {
    width: 112px;
  }

  .brand-card h3,
  .brand-card h2 {
    font-size: 1rem;
  }

  .brand-meta strong {
    font-size: 0.72rem;
  }

  .value-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-item {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
    margin-bottom: 54px;
    padding: 30px 20px;
    border-radius: 26px;
  }

  .contact-section h2 {
    font-size: clamp(1.75rem, 9.6vw, 2.45rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:nth-of-type(5),
  .contact-form .form-field-wide,
  .contact-form button {
    grid-column: auto;
  }

  .subpage-hero {
    padding: 54px 0 38px;
  }

  body:has(.package-page-section) .subpage-hero {
    padding: 46px 0 30px;
  }

  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 12vw, 3.2rem);
    line-height: 1;
  }

  body:has(.package-page-section) .subpage-hero h1 {
    font-size: clamp(1.85rem, 9.6vw, 2.6rem);
    line-height: 1.04;
  }

  .subpage-hero p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 0.9rem;
  }

  body:has(.package-page-section) .subpage-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.66;
  }

  .package-page-section,
  .brand-page-section {
    padding-top: 38px;
  }

  .package-card {
    min-height: auto;
    gap: 15px;
    padding: 22px 20px;
  }

  .package-card h2 {
    max-width: 100%;
  }

  .package-section {
    padding-top: 12px;
    gap: 8px;
  }

  .package-card li {
    font-size: 0.73rem;
    line-height: 1.5;
  }

  .subpage-cta {
    margin-bottom: 52px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .subpage-cta .button {
    width: 100%;
  }
}

/* V25 monochrome reset: pure white, black, and neutral gray. */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: #6f6f6f;
  --line: #e5e5e5;
  --dark: #111111;
  --accent: #6f6f6f;
  --accent-deep: #111111;
  --shadow: 0 18px 52px rgba(0, 0, 0, 0.055);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body {
  background: #ffffff;
  color: #111111;
}

body::before {
  display: none;
}

h1,
h2,
h3,
.hero-title,
.project-copy h3,
.service-card-copy h3,
.product-preview-card h3,
.package-card h2,
.value-item h3,
.contact-section h2,
.subpage-hero h1 {
  color: #111111;
}

.eyebrow,
.section-note,
.hero-text,
.hero-tags span,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.brand-meta span,
.brand-meta strong,
.section-footnote,
.site-footer,
.site-footer p {
  color: #6f6f6f;
}

.hero-copy,
.hero-visual,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-logo-wall,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #ffffff;
  border-color: #e5e5e5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
}

.service-card-media,
.project-media,
#projects::before,
.workflow-card,
.contact-section {
  background: #f6f6f6;
  border-color: #e5e5e5;
  box-shadow: none;
}

.button-dark,
.contact-submit {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.button-light,
.hero-tags span,
.form-field,
.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border-color: #dddddd;
  color: #555555;
}

.brand-logo-wall .brand-logo-link {
  border-color: #e5e5e5;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #f7f7f7;
}

.brand-logo-img {
  opacity: 0.82;
}

/* V23 final visual cleanup: remove noisy brand boxes and calm the palette. */
body {
  background: #f7f6f2;
}

/* V24 brand wall: logos only, click through to partner sites. */
.brand-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(28, 28, 25, 0.08);
  background: #fff;
}

.brand-logo-link {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(28, 28, 25, 0.08);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, opacity 180ms ease;
}

.brand-logo-link:last-child {
  border-right: 0;
}

.brand-logo-link:hover {
  background: #f7f6f2;
}

.brand-logo-link .brand-logo-box {
  width: 170px;
  height: 68px;
  justify-content: center;
}

.brand-logo-link .brand-logo-img {
  opacity: 0.78;
}

@media (max-width: 720px) {
  .brand-logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo-link {
    min-height: 120px;
    border-right: 1px solid rgba(28, 28, 25, 0.08);
    border-bottom: 1px solid rgba(28, 28, 25, 0.08);
  }

  .brand-logo-link:nth-child(2n) {
    border-right: 0;
  }

  .brand-logo-link:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

body::before {
  opacity: 0;
}

.hero-copy,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta {
  background: #fff;
  border-color: rgba(28, 28, 25, 0.09);
  box-shadow: 0 14px 42px rgba(28, 28, 25, 0.045);
}

.hero-copy,
.contact-section,
.contact-form,
.subpage-cta {
  background-image: none;
}

.service-card-media,
.project-media {
  background-color: #efede8;
}

#projects::before {
  background: #f0eee9;
  border-color: rgba(28, 28, 25, 0.07);
}

.workflow-card,
.value-item {
  background: #fbfaf7;
  box-shadow: none;
}

.contact-section {
  background: #f0eee9;
  border-color: rgba(28, 28, 25, 0.09);
  box-shadow: 0 24px 72px rgba(28, 28, 25, 0.065);
}

.brand-preview-section,
.brand-page-section {
  padding-top: 76px;
  padding-bottom: 84px;
}

.brand-preview-grid,
.brand-page-grid {
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(28, 28, 25, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-card,
.brand-preview-grid .brand-card:first-child {
  min-height: 142px;
  padding: 28px 0;
  grid-template-columns: 190px minmax(112px, 0.32fr) minmax(280px, 1fr) auto;
  background: transparent;
  border-bottom: 1px solid rgba(28, 28, 25, 0.1);
  box-shadow: none;
}

.brand-card:hover,
.brand-preview-grid .brand-card:first-child:hover {
  background: transparent;
}

.brand-logo-box {
  width: 160px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  justify-content: flex-start;
}

.brand-logo-img {
  opacity: 0.78;
}

.brand-card h3,
.brand-card h2 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 400;
}

.brand-card p {
  max-width: 42rem;
  color: rgba(28, 28, 25, 0.54);
  font-size: 0.78rem;
}

.brand-meta span {
  color: rgba(28, 28, 25, 0.34);
}

.brand-meta strong {
  color: rgba(28, 28, 25, 0.54);
}

.brand-card .button {
  min-width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(28, 28, 25, 0.58);
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 720px) {
  .brand-preview-section,
  .brand-page-section {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .brand-preview-grid,
  .brand-page-grid {
    border-radius: 0;
  }

  .brand-card,
  .brand-preview-grid .brand-card:first-child {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
    background: transparent;
  }

  .brand-logo-box {
    width: 150px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .brand-card .button {
    width: fit-content;
  }
}

/* V24 final override: brand area is logo-only. */
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 25, 0.08);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.brand-logo-wall .brand-logo-link {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(28, 28, 25, 0.08);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease;
}

.brand-logo-wall .brand-logo-link:last-child {
  border-right: 0;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #f7f6f2;
}

.brand-logo-wall .brand-logo-box {
  width: 170px;
  height: 68px;
  padding: 0;
  border: 0;
  background: transparent;
  justify-content: center;
}

.brand-logo-wall .brand-logo-img {
  opacity: 0.78;
}

@media (max-width: 720px) {
  .brand-preview-grid.brand-logo-wall,
  .brand-page-grid.brand-logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-logo-wall .brand-logo-link {
    min-height: 120px;
    border-right: 1px solid rgba(28, 28, 25, 0.08);
    border-bottom: 1px solid rgba(28, 28, 25, 0.08);
  }

  .brand-logo-wall .brand-logo-link:nth-child(2n) {
    border-right: 0;
  }

  .brand-logo-wall .brand-logo-link:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* V26 final override: pure white site, visible imagery, no warm beige. */
html,
body {
  background: #ffffff !important;
  color: #111111;
}

body::before {
  display: none !important;
}

.site-header,
.section,
.subpage-main,
.site-footer {
  background: transparent;
}

.hero-copy,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #ffffff !important;
  background-image: none !important;
  border-color: #e5e5e5 !important;
}

.service-card-media,
.workflow-card,
.contact-section {
  background: #f7f7f7 !important;
  background-image: none !important;
  border-color: #e5e5e5 !important;
}

#projects::before {
  background: #f7f7f7 !important;
  background-image: none !important;
  border-color: #e5e5e5 !important;
}

.project-media {
  background-color: #f7f7f7 !important;
  background-size: cover;
  background-position: center;
}

.modern-apartment {
  background-image: url("assets/modern-apartment.jpg") !important;
}

.modern-bedroom {
  background-image: url("assets/modern-apartment-bedroom.png") !important;
}

.modern-bedroom-detail {
  background-image: url("assets/modern-apartment-bedroom-detail.png") !important;
}

.carousel-slide img,
.project-media {
  display: block !important;
  opacity: 1 !important;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
.hero-title {
  color: #111111 !important;
}

.eyebrow,
.section-note,
.hero-text,
.hero-tags span,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.site-footer {
  color: #6f6f6f !important;
}

/* V27 hard reset: pure white/gray only, restore all image backgrounds. */
html,
body {
  background: #ffffff !important;
}

body,
.site-header,
main,
.section,
.subpage-main,
.subpage-hero,
.site-footer {
  background: #ffffff !important;
  background-image: none !important;
}

.hero-copy,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #ffffff !important;
  background-image: none !important;
  border-color: #e5e5e5 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.035) !important;
}

.workflow-card,
.contact-section,
#projects::before {
  background: #f7f7f7 !important;
  background-image: none !important;
  border-color: #e5e5e5 !important;
  box-shadow: none !important;
}

.service-card-media,
.project-media {
  background-color: #f7f7f7 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
}

.service-living,
.modern-apartment {
  background-image: url("assets/modern-apartment.jpg") !important;
}

.service-bedroom,
.modern-bedroom {
  background-image: url("assets/modern-apartment-bedroom.png") !important;
}

.service-detail,
.modern-bedroom-detail {
  background-image: url("assets/modern-apartment-bedroom-detail.png") !important;
}

.carousel-slide img,
.case-hero-image img,
.gallery-card img,
.project-media {
  display: block !important;
  opacity: 1 !important;
}

.hero-tags span,
.button-light,
.form-field,
.contact-form input,
.contact-form textarea {
  background: #ffffff !important;
  background-image: none !important;
  border-color: #dddddd !important;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #f7f7f7 !important;
}

/* V30: keep the partner brands page title refined. */
.brands-main .subpage-hero {
  padding-top: clamp(58px, 6vw, 94px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.brands-main .subpage-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.05rem, 3.2vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.brands-main .subpage-hero p:not(.eyebrow) {
  max-width: 46rem;
  margin-top: 22px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .brands-main .subpage-hero {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .brands-main .subpage-hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.28rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .brands-main .subpage-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.66;
  }
}

/* V31 desktop navigation: refined menu instead of a full text row. */
@media (min-width: 721px) {
  .site-header {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .site-header .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 96px;
    z-index: 20;
    width: min(320px, 80vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.09);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .site-nav a {
    padding: 14px;
    border-bottom: 1px solid #eeeeee;
    color: #111111;
    font-size: 0.94rem;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }

  .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header .site-nav a::after {
    display: none;
  }
}

/* V34 absolute final color pass: requested warm design-brand palette. */
:root {
  --bg: #F5F2EC;
  --surface: #F8F5F0;
  --surface-strong: #F8F5F0;
  --text: #1F1F1F;
  --muted: #5E5A54;
  --muted-light: #9A938A;
  --line: #DED7CE;
  --line-soft: #E7E1D8;
  --dark: #1F1F1F;
  --accent: #B88352;
  --accent-deep: #A46F40;
  --accent-soft: #E9D9C8;
  --shadow: 0 22px 64px rgba(31, 31, 31, 0.07);
  --shadow-soft: 0 12px 34px rgba(31, 31, 31, 0.045);
}

html,
body {
  background: #F5F2EC !important;
  color: #1F1F1F !important;
}

body::before,
body::after {
  background: none !important;
}

.site-header,
main,
.section,
.subpage-main,
.subpage-hero,
.site-footer {
  background: transparent !important;
}

.site-header {
  background: rgba(245, 242, 236, 0.88) !important;
  border-color: #E7E1D8 !important;
  backdrop-filter: blur(18px);
}

.mobile-menu-toggle,
.language-switch,
.button-light {
  background: #F8F5F0 !important;
  border: 1px solid #DED7CE !important;
  color: #3B3834 !important;
}

.language-switch button {
  color: #3B3834 !important;
}

.language-switch button.is-active {
  background: #1F1F1F !important;
  color: #F8F5F0 !important;
}

.site-header .site-nav {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 20px 56px rgba(31, 31, 31, 0.08) !important;
}

.site-header .site-nav a {
  color: #3B3834 !important;
  border-bottom-color: #E7E1D8 !important;
}

.site-header .site-nav a:hover {
  color: #B88352 !important;
}

.hero-copy,
.hero-visual,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 18px 50px rgba(31, 31, 31, 0.055) !important;
}

.workflow-card,
.contact-section,
#projects::before {
  background: #F8F5F0 !important;
  border-color: #E7E1D8 !important;
}

h1,
h2,
h3,
.hero-title,
.project-copy h3,
.service-card-copy h3,
.product-preview-card h3,
.package-card h2,
.value-item h3,
.contact-section h2,
.subpage-hero h1 {
  color: #1F1F1F !important;
}

.hero-title {
  line-height: 1.1 !important;
}

.eyebrow {
  color: #9A938A !important;
}

.section-note,
.hero-text,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.section-footnote,
.site-footer,
.site-footer p {
  color: #5E5A54 !important;
}

.hero-tags span,
.package-meta,
.project-tag,
.brand-logo-wall .brand-logo-link {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #6A655E !important;
}

.button-dark,
.contact-submit {
  background: #B88352 !important;
  border-color: #B88352 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 38px rgba(184, 131, 82, 0.22) !important;
}

.button-dark:hover,
.contact-submit:hover {
  background: #A46F40 !important;
  border-color: #A46F40 !important;
}

.contact-form label {
  color: #3B3834 !important;
}

.form-field,
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #3B3834 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9A938A !important;
}

.carousel-slide img,
.service-card-media,
.project-media,
.case-hero-image img,
.gallery-card img {
  filter: saturate(0.72) contrast(0.96) brightness(1.02) sepia(0.06) !important;
}

.service-card-media,
.project-media {
  background-color: #E9D9C8 !important;
}

.carousel-arrow {
  background: rgba(245, 242, 236, 0.75) !important;
  border-color: rgba(222, 215, 206, 0.9) !important;
  color: #3B3834 !important;
}

.carousel-arrow:hover {
  background: rgba(248, 245, 240, 0.92) !important;
  border-color: #DED7CE !important;
}

.carousel-dots {
  background: rgba(245, 242, 236, 0.72) !important;
  border-color: rgba(222, 215, 206, 0.88) !important;
}

.carousel-dots button {
  background: #CFC7BC !important;
}

.carousel-dots button.is-active {
  background: #8C6848 !important;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #E9D9C8 !important;
}

@media (max-width: 720px) {
  .mobile-menu-toggle {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    color: #3B3834 !important;
  }

  .site-header .site-nav {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.09) !important;
  }

  .site-header .site-nav a {
    color: #3B3834 !important;
    border-bottom-color: #E7E1D8 !important;
  }
}

/* V37 final menu overlay fix: desktop and mobile menus stay above images. */
.site-header {
  position: relative !important;
  z-index: 99990 !important;
  overflow: visible !important;
  isolation: isolate;
}

.site-header .site-nav {
  z-index: 99999 !important;
}

.site-header.is-menu-open .site-nav {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.hero,
.hero-visual,
.hero-carousel,
.carousel-track,
.carousel-slide,
.carousel-arrow,
.carousel-dots {
  z-index: 1 !important;
}

@media (min-width: 721px) {
  .site-header .site-nav {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: 0 !important;
    left: auto !important;
    width: min(320px, calc(100vw - 40px)) !important;
  }
}

@media (max-width: 720px) {
  .site-header .site-nav {
    position: fixed !important;
    top: 76px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    z-index: 99999 !important;
    background: #F8F5F0 !important;
    border: 1px solid #DED7CE !important;
    box-shadow: 0 24px 70px rgba(31, 31, 31, 0.18) !important;
  }
}

/* V36 mobile menu layering fix: keep menu above the hero carousel. */
.site-header {
  position: relative;
  z-index: 5000;
}

.hero,
.hero-visual,
.hero-carousel {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .site-header {
    z-index: 9000 !important;
    overflow: visible !important;
  }

  .site-header .site-nav {
    position: fixed !important;
    top: 76px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 9500 !important;
    width: auto !important;
    max-width: none !important;
    background: #F8F5F0 !important;
    border: 1px solid #DED7CE !important;
    box-shadow: 0 24px 70px rgba(31, 31, 31, 0.18) !important;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .hero,
  .hero-visual,
  .hero-carousel,
  .carousel-slide,
  .carousel-arrow,
  .carousel-dots {
    z-index: auto !important;
  }
}

/* V33 final palette lock: warm greige + charcoal + caramel accent. */
:root {
  --bg: #F5F2EC;
  --surface: #F8F5F0;
  --surface-strong: #F8F5F0;
  --text: #1F1F1F;
  --muted: #5E5A54;
  --muted-light: #9A938A;
  --line: #DED7CE;
  --line-soft: #E7E1D8;
  --dark: #1F1F1F;
  --accent: #B88352;
  --accent-deep: #A46F40;
  --accent-soft: #E9D9C8;
  --shadow: 0 22px 64px rgba(31, 31, 31, 0.07);
  --shadow-soft: 0 12px 34px rgba(31, 31, 31, 0.045);
}

html,
body {
  background: #F5F2EC !important;
  color: #1F1F1F !important;
}

body::before,
body::after {
  background: none !important;
}

.site-header {
  background: rgba(245, 242, 236, 0.88) !important;
  border-color: #E7E1D8 !important;
  backdrop-filter: blur(18px);
}

.site-header::before,
.site-header::after,
.section::before,
.section::after {
  border-color: rgba(231, 225, 216, 0.58) !important;
}

.brand-logo {
  filter: none !important;
}

.mobile-menu-toggle,
.language-switch,
.button-light {
  background: #F8F5F0 !important;
  border: 1px solid #DED7CE !important;
  color: #3B3834 !important;
}

.mobile-menu-toggle:hover,
.button-light:hover,
.language-switch:hover {
  border-color: #CFC7BC !important;
}

.language-switch button {
  color: #3B3834 !important;
}

.language-switch button.is-active {
  background: #1F1F1F !important;
  color: #F8F5F0 !important;
}

.site-header .site-nav {
  background: #F8F5F0 !important;
  border: 1px solid #DED7CE !important;
  box-shadow: 0 20px 56px rgba(31, 31, 31, 0.08) !important;
}

.site-header .site-nav a {
  color: #3B3834 !important;
  border-bottom-color: #E7E1D8 !important;
}

.site-header .site-nav a:hover {
  color: #B88352 !important;
}

.hero-copy,
.hero-visual,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 18px 50px rgba(31, 31, 31, 0.055) !important;
}

.workflow-card,
.contact-section,
#projects::before {
  background: #F8F5F0 !important;
  border-color: #E7E1D8 !important;
}

h1,
h2,
h3,
.hero-title,
.project-copy h3,
.service-card-copy h3,
.product-preview-card h3,
.package-card h2,
.value-item h3,
.contact-section h2,
.subpage-hero h1 {
  color: #1F1F1F !important;
}

.hero-title {
  line-height: 1.1 !important;
}

.eyebrow {
  color: #9A938A !important;
}

.section-note,
.hero-text,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.section-footnote,
.site-footer,
.site-footer p {
  color: #5E5A54 !important;
}

.hero-tags span,
.package-meta,
.project-tag,
.brand-logo-wall .brand-logo-link {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #6A655E !important;
}

.button-dark,
.contact-submit {
  background: #B88352 !important;
  border-color: #B88352 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 38px rgba(184, 131, 82, 0.22) !important;
}

.button-dark:hover,
.contact-submit:hover {
  background: #A46F40 !important;
  border-color: #A46F40 !important;
}

.contact-form label {
  color: #3B3834 !important;
}

.form-field,
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #3B3834 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9A938A !important;
}

.carousel-slide img,
.service-card-media,
.project-media,
.case-hero-image img,
.gallery-card img {
  filter: saturate(0.72) contrast(0.96) brightness(1.02) sepia(0.06) !important;
}

.service-card-media,
.project-media {
  background-color: #E9D9C8 !important;
}

.carousel-arrow {
  background: rgba(245, 242, 236, 0.75) !important;
  border-color: rgba(222, 215, 206, 0.9) !important;
  color: #3B3834 !important;
}

.carousel-arrow:hover {
  background: rgba(248, 245, 240, 0.92) !important;
  border-color: #DED7CE !important;
}

.carousel-dots {
  background: rgba(245, 242, 236, 0.72) !important;
  border-color: rgba(222, 215, 206, 0.88) !important;
}

.carousel-dots button {
  background: #CFC7BC !important;
}

.carousel-dots button.is-active {
  background: #8C6848 !important;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #E9D9C8 !important;
}

@media (max-width: 720px) {
  .mobile-menu-toggle {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    color: #3B3834 !important;
  }

  .site-header .site-nav {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.09) !important;
  }

  .site-header .site-nav a {
    color: #3B3834 !important;
    border-bottom-color: #E7E1D8 !important;
  }
}

/* V32 warm design-brand palette: warm gray, deep charcoal, caramel accent. */
:root {
  --bg: #F5F2EC;
  --surface: #F8F5F0;
  --surface-strong: #F8F5F0;
  --text: #1F1F1F;
  --muted: #5E5A54;
  --line: #DED7CE;
  --dark: #1F1F1F;
  --accent: #B88352;
  --accent-deep: #A46F40;
  --shadow: 0 22px 64px rgba(31, 31, 31, 0.07);
  --shadow-soft: 0 12px 34px rgba(31, 31, 31, 0.045);
}

html,
body {
  background: #F5F2EC !important;
  color: #1F1F1F;
}

.site-header,
main,
.section,
.subpage-main,
.subpage-hero,
.site-footer {
  background: transparent !important;
}

.hero-copy,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 18px 50px rgba(31, 31, 31, 0.055) !important;
}

.workflow-card,
.contact-section,
#projects::before {
  background: #F8F5F0 !important;
  border-color: #E7E1D8 !important;
}

h1,
h2,
h3,
.hero-title,
.project-copy h3,
.service-card-copy h3,
.product-preview-card h3,
.package-card h2,
.value-item h3,
.contact-section h2,
.subpage-hero h1 {
  color: #1F1F1F !important;
}

.eyebrow {
  color: #9A938A !important;
}

.section-note,
.hero-text,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.section-footnote,
.site-footer,
.site-footer p {
  color: #5E5A54 !important;
}

.hero-title {
  line-height: 1.06;
}

.hero-text {
  color: #5E5A54 !important;
}

.hero-tags span {
  background: #F8F5F0 !important;
  border: 1px solid #DED7CE !important;
  color: #6A655E !important;
}

.button-dark,
.contact-submit {
  background: #B88352 !important;
  color: #ffffff !important;
  border-color: #B88352 !important;
  box-shadow: 0 16px 38px rgba(184, 131, 82, 0.22) !important;
}

.button-dark:hover,
.contact-submit:hover {
  background: #A46F40 !important;
  border-color: #A46F40 !important;
}

.button-light,
.mobile-menu-toggle,
.language-switch,
.form-field,
.contact-form input,
.contact-form textarea {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #3B3834 !important;
}

.language-switch button {
  color: #3B3834 !important;
}

.language-switch button.is-active {
  background: #1F1F1F !important;
  color: #F8F5F0 !important;
}

.carousel-slide img,
.service-card-media,
.project-media,
.case-hero-image img,
.gallery-card img {
  filter: saturate(0.72) contrast(0.96) brightness(1.02) sepia(0.06);
}

.carousel-arrow {
  background: rgba(245, 242, 236, 0.75) !important;
  border-color: rgba(222, 215, 206, 0.9) !important;
  color: #3B3834 !important;
}

.carousel-arrow:hover {
  background: rgba(248, 245, 240, 0.92) !important;
  border-color: #DED7CE !important;
}

.carousel-dots {
  background: rgba(245, 242, 236, 0.72) !important;
  border-color: rgba(222, 215, 206, 0.88) !important;
}

.carousel-dots button {
  background: #CFC7BC !important;
}

.carousel-dots button.is-active {
  background: #8C6848 !important;
}

.service-card-media,
.project-media {
  background-color: #E9D9C8 !important;
}

.brand-logo-wall .brand-logo-link {
  border-color: #E7E1D8 !important;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #E9D9C8 !important;
}

.site-header .site-nav {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
}

.site-header .site-nav a {
  color: #3B3834 !important;
  border-bottom-color: #E7E1D8 !important;
}

/* V28 mobile navigation: keep the top bar clean. */
@media (max-width: 720px) {
  .site-header {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #dddddd;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: 0.78rem;
    cursor: pointer;
  }

  .site-header .language-switch {
    justify-self: end;
  }

  .site-header .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid #eeeeee;
    color: #111111;
    font-size: 0.9rem;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }

  .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-header .site-nav a::after {
    display: none;
  }
}

/* V35 true final override: warm greige, charcoal text, caramel actions. */
:root {
  --bg: #F5F2EC;
  --surface: #F8F5F0;
  --surface-strong: #F8F5F0;
  --text: #1F1F1F;
  --muted: #5E5A54;
  --muted-light: #9A938A;
  --line: #DED7CE;
  --line-soft: #E7E1D8;
  --dark: #1F1F1F;
  --accent: #B88352;
  --accent-deep: #A46F40;
  --accent-soft: #E9D9C8;
}

html,
body {
  background: #F5F2EC !important;
  color: #1F1F1F !important;
}

body::before,
body::after {
  background: none !important;
}

.site-header,
main,
.section,
.subpage-main,
.subpage-hero,
.site-footer {
  background: transparent !important;
}

.site-header {
  background: rgba(245, 242, 236, 0.88) !important;
  border-color: #E7E1D8 !important;
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-visual,
.service-card,
.product-preview-card,
.package-card,
.project-card,
.value-item,
.contact-form,
.subpage-cta,
.brand-preview-grid.brand-logo-wall,
.brand-page-grid.brand-logo-wall {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 18px 50px rgba(31, 31, 31, 0.055) !important;
}

.workflow-card,
.contact-section,
#projects::before {
  background: #F8F5F0 !important;
  border-color: #E7E1D8 !important;
}

h1,
h2,
h3,
.hero-title,
.project-copy h3,
.service-card-copy h3,
.product-preview-card h3,
.package-card h2,
.value-item h3,
.contact-section h2,
.subpage-hero h1 {
  color: #1F1F1F !important;
}

.hero-title {
  line-height: 1.1 !important;
}

.eyebrow {
  color: #9A938A !important;
}

.section-note,
.hero-text,
.service-card-copy p,
.product-preview-card p,
.project-card p,
.value-item p,
.contact-note,
.workflow-note,
.workflow-card p,
.package-fit,
.package-card li,
.subpage-hero p:not(.eyebrow),
.subpage-cta p,
.section-footnote,
.site-footer,
.site-footer p {
  color: #5E5A54 !important;
}

.hero-tags span,
.package-meta,
.project-tag,
.brand-logo-wall .brand-logo-link {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #6A655E !important;
}

.button-dark,
.contact-submit {
  background: #B88352 !important;
  border-color: #B88352 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 38px rgba(184, 131, 82, 0.22) !important;
}

.button-dark:hover,
.contact-submit:hover {
  background: #A46F40 !important;
  border-color: #A46F40 !important;
}

.mobile-menu-toggle,
.language-switch,
.button-light,
.form-field,
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  color: #3B3834 !important;
}

.language-switch button {
  color: #3B3834 !important;
}

.language-switch button.is-active {
  background: #1F1F1F !important;
  color: #F8F5F0 !important;
}

.site-header .site-nav {
  background: #F8F5F0 !important;
  border-color: #DED7CE !important;
  box-shadow: 0 20px 56px rgba(31, 31, 31, 0.08) !important;
}

.site-header .site-nav a {
  color: #3B3834 !important;
  border-bottom-color: #E7E1D8 !important;
}

.site-header .site-nav a:hover {
  color: #B88352 !important;
}

.carousel-slide img,
.service-card-media,
.project-media,
.case-hero-image img,
.gallery-card img {
  filter: saturate(0.72) contrast(0.96) brightness(1.02) sepia(0.06) !important;
}

.service-card-media,
.project-media {
  background-color: #E9D9C8 !important;
}

.carousel-arrow {
  background: rgba(245, 242, 236, 0.75) !important;
  border-color: rgba(222, 215, 206, 0.9) !important;
  color: #3B3834 !important;
}

.carousel-arrow:hover {
  background: rgba(248, 245, 240, 0.92) !important;
  border-color: #DED7CE !important;
}

.carousel-dots {
  background: rgba(245, 242, 236, 0.72) !important;
  border-color: rgba(222, 215, 206, 0.88) !important;
}

.carousel-dots button {
  background: #CFC7BC !important;
}

.carousel-dots button.is-active {
  background: #8C6848 !important;
}

.brand-logo-wall .brand-logo-link:hover {
  background: #E9D9C8 !important;
}

@media (max-width: 720px) {
  .mobile-menu-toggle {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    color: #3B3834 !important;
  }

  .site-header .site-nav {
    background: #F8F5F0 !important;
    border-color: #DED7CE !important;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.09) !important;
  }

  .site-header .site-nav a {
    color: #3B3834 !important;
    border-bottom-color: #E7E1D8 !important;
  }
}
