:root {
  --dk-bg: #f4ecdf;
  --dk-surface: #fffaf1;
  --dk-text: #0b0b0b;
  --dk-muted: #665d52;
  --dk-line: #cfc2b1;
  --dk-accent: #fff000;
  --dk-accent-soft: #fff000;
  --dk-black: #070706;
  --dk-ink: #17130f;
  --dk-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  overflow-x: hidden;
}

.dk-body {
  background: var(--dk-bg);
  color: var(--dk-text);
  font-family: var(--dk-font);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -.01em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
.dk-body button,
.dk-body input,
.dk-body select,
.dk-body textarea {
  font-family: var(--dk-font);
  font-weight: 700;
}

.dk-body img,
.dk-body video {
  max-width: 100%;
  height: auto;
}

.dk-body main,
.dk-body header,
.dk-body footer,
.dk-body section {
  max-width: 100%;
}

.dk-body .section {
  padding: clamp(3rem, 5.5vw, 5.4rem) 0;
}

.dk-body .section__label {
  color: var(--dk-muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.dk-body .section__title {
  font-family: var(--dk-font);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -.045em;
  line-height: .98;
  font-weight: 850;
}

.dk-body .section__desc {
  max-width: 480px;
  color: var(--dk-muted);
  line-height: 1.62;
  font-weight: 600;
}

.dk-nav {
  z-index: 1000;
  background: rgba(255, 250, 242, .94) !important;
  border-bottom: 1px solid rgba(11, 11, 11, .08);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 10px 30px rgba(5, 5, 5, .05);
}
.dk-nav .nav__logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .16));
}
.dk-nav .nav__links a {
  color: var(--dk-black) !important;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: none;
}
.dk-nav .nav__links a:hover,
.dk-nav .nav__links a.is-active {
  color: #000 !important;
}
.dk-nav .nav__links a.is-active {
  color: var(--dk-text);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .45rem;
  text-decoration-color: var(--dk-accent);
}
.dk-nav .nav__item {
  position: relative;
}
.dk-nav .nav__dropdown {
  position: relative;
}
.dk-nav .nav__dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--dk-black);
  font-size: .8rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}
.dk-nav .nav__dropdown summary::-webkit-details-marker {
  display: none;
}
.dk-nav .nav__dropdown summary::after {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-left: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.15rem) rotate(45deg);
  transition: transform .2s ease;
}
.dk-nav .nav__dropdown[open] summary::after {
  transform: translateY(.05rem) rotate(225deg);
}
.dk-nav .nav__dropdown-menu {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem;
  right: 0;
  top: calc(100% + 1rem);
  z-index: 20;
  min-width: 220px;
  padding: .55rem;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 18px;
  background: rgba(255, 250, 242, .98);
  box-shadow: 0 22px 54px rgba(5, 5, 5, .14);
}
.dk-nav .nav__dropdown-menu a {
  display: flex;
  justify-content: space-between;
  padding: .72rem .85rem;
  border-radius: 13px;
  font-size: .82rem;
  letter-spacing: .04em;
}
.dk-nav .nav__dropdown-menu a:hover {
  background: var(--dk-accent);
}
.dk-nav .nav__lang {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem;
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--dk-black);
}
.dk-nav .nav__lang button {
  min-width: 30px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--dk-black);
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.dk-nav .nav__lang button.is-active {
  background: var(--dk-black);
  color: var(--dk-accent);
}
.dk-nav .nav__toggle {
  color: var(--dk-black);
  border: 1px solid rgba(5, 5, 5, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}
.dk-nav .nav__collapse.open {
  background: var(--dk-bg);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(5, 5, 5, .14);
  padding: 1rem;
}

.dk-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.35rem, 5.2vw, 5.1rem) 0 clamp(2.35rem, 4vw, 3.55rem);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 240, 0, .28), transparent 22rem),
    linear-gradient(135deg, #fbf3e7 0%, #e6dac7 100%);
  border-bottom: 1px solid rgba(5, 5, 5, .1);
}
.dk-page-hero--dark {
  background:
    radial-gradient(circle at 88% 15%, rgba(215, 217, 58, .22), transparent 18rem),
    linear-gradient(135deg, #060606 0%, #1a1712 100%);
  color: #fff;
}
.dk-page-hero--contact {
  background:
    radial-gradient(circle at 82% 10%, rgba(215, 217, 58, .34), transparent 20rem),
    linear-gradient(135deg, #080807 0%, #2c241b 100%);
  color: #fff;
}
.dk-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.dk-page-hero h1 {
  max-width: 860px;
  font-family: var(--dk-font);
  font-size: clamp(1.9rem, 3.8vw, 3.05rem) !important;
  line-height: 1;
  letter-spacing: -.045em;
  margin: .3rem 0 1rem;
}
.dk-page-hero p:not(.section__label) {
  max-width: 620px;
  color: inherit;
  opacity: .78;
  line-height: 1.62;
  font-size: clamp(.95rem, 1.45vw, 1.05rem);
  font-weight: 600;
}
.dk-page-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 30px;
  background: rgba(255, 250, 242, .88);
  box-shadow: 0 28px 80px rgba(5, 5, 5, .16);
}
.dk-page-hero img[src*="logo"] {
  max-height: 240px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .28));
}
.dk-page-hero--dark img,
.dk-page-hero--contact img {
  background: rgba(255, 255, 255, .08);
}
.dk-page-hero--dark img[src*="logo"],
.dk-page-hero--contact img[src*="logo"] {
  background: transparent;
}

.dk-hero {
  position: relative;
  padding: clamp(2.4rem, 4.8vw, 4.8rem) 0 1.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 10%, rgba(255, 240, 0, .28), transparent 27rem),
    linear-gradient(135deg, #fbf3e7 0%, #e8dcc9 54%, #fff7ea 100%);
  border-bottom: 1px solid rgba(11, 11, 11, .1);
}
.dk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 5, 5, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}
.dk-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.dk-hero__copy { max-width: 760px; }
.dk-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--dk-black);
  margin-bottom: 1rem;
}
.dk-hero h1 {
  max-width: 860px;
  font-family: var(--dk-font);
  font-size: clamp(2rem, 3.65vw, 3rem) !important;
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: 1.02;
  margin: 0 0 1rem;
}
.dk-hero__lead {
  color: #312d28;
  font-size: clamp(.95rem, 1.45vw, 1.05rem);
  max-width: 560px;
  line-height: 1.6;
  font-weight: 560;
}
.dk-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 0; }
.dk-hero__visual {
  position: relative;
  display: block;
  min-height: 360px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(5, 5, 5, .12);
  color: inherit;
  text-decoration: none;
  transform: rotate(1.5deg);
}
.dk-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
}
.dk-hero__visual span {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: var(--dk-accent);
  color: #000;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.dk-btn {
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .02em;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: .82rem;
}
.dk-btn.btn--primary {
  background: linear-gradient(135deg, #070706 0%, #252018 100%);
  border-color: #070706;
  color: #fff;
  box-shadow: 0 14px 30px rgba(5, 5, 5, .16);
}
.dk-btn.btn--primary:hover {
  background: linear-gradient(135deg, #000 0%, #15120d 100%);
  box-shadow: 0 18px 38px rgba(5, 5, 5, .22);
}
.dk-btn--ghost {
  background: rgba(255, 250, 242, .55);
  border-color: rgba(5, 5, 5, .2);
  color: rgba(5, 5, 5, .72);
}
.dk-proof {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 250, 242, .74);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
}
.dk-proof span {
  padding: 1rem;
  text-align: center;
  color: #161616;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dk-proof span + span { border-left: 1px solid rgba(5, 5, 5, .12); }

.dk-strip {
  display: flex;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  padding: .82rem 0;
  background: var(--dk-black);
  color: var(--dk-accent-soft);
  font-family: var(--dk-font);
  font-size: clamp(.92rem, 1.8vw, 1.22rem);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 100%;
  contain: layout paint;
}
.dk-strip span {
  display: inline-block;
  min-width: max-content;
  animation: dk-marquee 26s linear infinite;
  will-change: transform;
}
@keyframes dk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-120%); }
}


.dk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.dk-categories-section {
  background: linear-gradient(180deg, var(--dk-bg) 0%, #eadfce 100%);
}
.dk-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .8rem;
}
.dk-category {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: var(--dk-black);
  text-align: left;
  font: inherit;
  background: rgba(255, 248, 237, .92);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(7, 7, 6, .07);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.dk-category:hover,
.dk-category.is-active {
  transform: translateY(-4px);
  border-color: rgba(7, 7, 6, .38);
  background: #fffaf2;
}
.dk-category span {
  font-family: var(--dk-font);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
}
.dk-category strong {
  color: var(--dk-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dk-category:not(.is-coming) {
  background:
    radial-gradient(circle at 85% 10%, rgba(215, 217, 58, .28), transparent 7rem),
    var(--dk-surface);
}
.dk-category.is-active {
  outline: 3px solid rgba(215, 217, 58, .52);
}
.dk-category.is-coming {
  opacity: .58;
}
.dk-empty-category {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 217, 58, .2), transparent 16rem),
    var(--dk-surface);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(7, 7, 6, .08);
}
.dk-empty-category h3 {
  margin: .2rem 0 .5rem;
  font-family: var(--dk-font);
  font-size: clamp(2.2rem, 7vw, 5rem);
  letter-spacing: -.06em;
}
.dk-empty-category p {
  max-width: 460px;
  margin: 0 auto 1.2rem;
  color: var(--dk-muted);
  line-height: 1.7;
}

.dk-lookbook-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 217, 58, .16), transparent 18rem),
    linear-gradient(135deg, #080807 0%, #18130f 100%);
  color: #fff;
}
.dk-lookbook-section .section__label,
.dk-lookbook-section .section__desc {
  color: rgba(255, 255, 255, .68);
}
.dk-body .dk-lookbook-section .section__title {
  color: #fff !important;
}
.dk-body .dk-lookbook-section .section__label {
  color: rgba(255, 255, 255, .72) !important;
}
.dk-body .dk-lookbook-section .section__desc {
  color: rgba(255, 255, 255, .68) !important;
}
.dk-body .dk-lookbook-section .section__label::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent) !important;
}
.dk-lookbook {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: minmax(210px, 28vw);
  gap: clamp(.75rem, 2vw, 1.25rem);
}
.dk-lookbook--compact {
  grid-auto-rows: minmax(190px, 25vw);
}
.dk-lookbook__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.dk-lookbook__item--wide {
  grid-row: span 2;
}
.dk-lookbook__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.95) contrast(1.05);
  transition: transform .35s ease, filter .35s ease;
}
.dk-lookbook__item:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}
.dk-lookbook__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), transparent 55%);
  pointer-events: none;
}

.shop-grid {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.shop-card {
  position: relative;
  background: linear-gradient(180deg, #fffdf8 0%, var(--dk-surface) 100%);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 38px rgba(5, 5, 5, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, .32);
  box-shadow: 0 22px 56px rgba(5, 5, 5, .12);
}
.shop-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: #fff;
  padding: .85rem;
  overflow: hidden;
}
.shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}
.shop-card:hover .shop-card__media img { transform: scale(1.035); }
.shop-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: var(--dk-black);
  color: #fff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.shop-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.shop-card__kicker {
  color: var(--dk-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0;
  text-transform: uppercase;
}
.shop-card__body h3 {
  font-family: var(--dk-font);
  font-size: 1.05rem;
  letter-spacing: -.03em;
  margin: 0;
  line-height: 1.08;
}
.shop-card__body h3 a { color: inherit; text-decoration: none; }
.shop-card__desc { color: var(--dk-muted); font-size: .9rem; line-height: 1.55; margin: 0; flex: 1; }
.shop-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.shop-card__chips span {
  padding: .42rem .58rem;
  border-radius: 999px;
  background: rgba(7, 7, 6, .06);
  color: #332d24;
  font-size: .72rem;
  font-weight: 700;
}
.shop-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: .4rem;
  border-top: 1px solid rgba(5, 5, 5, .1);
}
.shop-card__meta span {
  color: var(--dk-muted);
  font-size: .76rem;
  font-weight: 800;
}
.shop-card__meta strong {
  color: var(--dk-black);
  font-size: 1.06rem;
  font-weight: 900;
  white-space: nowrap;
}
.shop-card__price { font-weight: 900; margin: .25rem 0; }
.btn--block { width: 100%; text-align: center; }

.product-gallery {
  margin: 1.5rem 0 2rem;
}
.checkout-page .product-gallery {
  margin: 1rem 0 1.35rem;
}
.product-gallery__grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.checkout-page .product-gallery__grid {
  gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.product-gallery__item {
  margin: 0;
  background: var(--dk-surface);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 24px;
  overflow: hidden;
  padding: .9rem;
  box-shadow: 0 16px 44px rgba(5, 5, 5, .08);
}
.checkout-page .product-gallery__item {
  border-radius: 18px;
  padding: .55rem;
}
.product-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}
.checkout-page .product-gallery__item img {
  aspect-ratio: 1 / 1;
  max-height: 210px;
}
.size-chart {
  margin-top: 1rem;
  background: var(--dk-surface);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(5, 5, 5, .08);
}
.size-chart summary {
  cursor: pointer;
  font-weight: 800;
  padding: .9rem 1rem;
}
.size-chart img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
}

.checkout-page {
  background:
    radial-gradient(circle at 92% 6%, rgba(215, 217, 58, .18), transparent 24rem),
    var(--dk-bg);
}
.checkout-page__inner {
  max-width: 980px;
}
.checkout-form {
  display: grid;
  gap: 1.1rem;
}
.checkout-section {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 250, 242, .96);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 24px;
  box-shadow: 0 14px 42px rgba(7, 7, 6, .07);
}
.checkout-section__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  margin-bottom: 1rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
}
.checkout-section__head span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--dk-black);
  color: var(--dk-accent-soft);
  font-weight: 900;
}
.checkout-section__head h2 {
  margin: 0;
  font-family: var(--dk-font);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -.03em;
  line-height: 1.08;
}
.checkout-section__head p {
  margin: .35rem 0 0;
  color: var(--dk-muted);
  line-height: 1.55;
}
.checkout-form .form__group {
  margin-bottom: 1rem;
}
.checkout-form label {
  color: #201b15;
  font-weight: 850;
}
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .18);
  border-radius: 16px;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: 2px solid rgba(215, 217, 58, .72);
  border-color: rgba(7, 7, 6, .5);
}
.checkout-form .form__option {
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .13);
}
#colour-options .form__option span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
#colour-options .form__option span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(7, 7, 6, .25);
  background: #111;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .42);
}
#colour-options .form__option:nth-child(2) span::before {
  background: #c9c9c6;
}
.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.checkout-trust span {
  padding: .55rem .75rem;
  border-radius: 999px;
  background: rgba(7, 7, 6, .08);
  color: #2d271f;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-form .form__submit {
  min-height: 58px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #070706 0%, #2a2319 100%);
  box-shadow: 0 18px 38px rgba(7, 7, 6, .2);
  text-transform: uppercase;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(5, 5, 5, .14);
  border-radius: 999px;
  background: var(--dk-surface);
  color: var(--dk-text);
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
}
.contact-chip:hover { border-color: #bbb; }
.contact-ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer social (elegant) ── */
.dk-footer-social {
  width: 100%;
  max-width: 34rem;
}
.dk-footer-social__label {
  margin: 0 0 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.dk-footer-social__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}
.dk-social-link {
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: 1rem 1.15rem;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.dk-social-link:last-child { border-bottom: none; }
.dk-social-link:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.dk-social-link__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  flex-shrink: 0;
}
.dk-social-link__icon .contact-ico {
  width: 1.05rem;
  height: 1.05rem;
  opacity: .92;
}
.dk-social-link__body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  min-width: 0;
  flex: 1;
}
.dk-social-link__title {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
}
.dk-social-link__desc {
  font-size: .76rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .48);
  font-weight: 500;
}
.dk-social-link:hover .dk-social-link__desc { color: rgba(255, 255, 255, .62); }
.dk-social-link__arrow {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .34);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.dk-social-link:hover .dk-social-link__arrow {
  color: var(--dk-black);
  background: var(--dk-accent, #fff000);
  transform: translate(1px, -1px);
}

.dk-footer-social--page .dk-footer-social__label { color: rgba(255, 255, 255, .55); }
.dk-footer-social--page .dk-footer-social__links {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}
.dk-footer-social--page .dk-social-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .1);
}
.dk-footer-social--page .dk-social-link:hover { background: rgba(255, 255, 255, .1); }
.dk-footer-social--page .dk-social-link__icon {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}
.dk-footer-social--page .dk-social-link__desc { color: rgba(255, 255, 255, .58); }

.dk-about {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.dk-about__media {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 240, 0, .2), transparent 13rem),
    var(--dk-black);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(5, 5, 5, .16);
}
.dk-about__media img {
  width: min(82%, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .32));
}
.dk-about p { max-width: 760px; line-height: 1.75; color: #2e2a25; }
.dk-about p span {
  display: block;
  margin-bottom: .9rem;
}
.dk-contact-card {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 242, 57, .5), transparent 17rem),
    var(--dk-black);
  color: #fff;
  border-radius: 34px;
}
.dk-contact-card .section__label,
.dk-contact-card .section__desc { color: rgba(255, 255, 255, .72); }
.dk-contact-card .contact-chip {
  background: #fff;
  color: #000;
  border-color: transparent;
}
.dk-contact-card--page {
  max-width: 980px;
}
.dk-size-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, 520px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.dk-size-preview img {
  width: 100%;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(5, 5, 5, .12);
}
/* ── dk-nav-list: editorial homepage menu ── */
.dk-nav-list-section {
  border-top: 1px solid rgba(7, 7, 6, .1);
}
.dk-nav-list {
  display: flex;
  flex-direction: column;
}
.dk-nav-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(7, 7, 6, .1);
  text-decoration: none;
  color: var(--dk-black);
  transition: background .18s ease, padding .18s ease;
}
.dk-nav-list__item:first-child {
  border-top: 1px solid rgba(7, 7, 6, .1);
}
.dk-nav-list__item:hover {
  padding-left: .65rem;
  padding-right: .65rem;
  margin-left: -.65rem;
  margin-right: -.65rem;
  background: rgba(255, 240, 0, .12);
  border-color: transparent;
}
.dk-nav-list__left {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.dk-nav-list__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--dk-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dk-nav-list__name {
  font-family: var(--dk-font);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.dk-nav-list__arrow {
  flex-shrink: 0;
  color: rgba(7, 7, 6, .35);
  transition: color .18s ease, transform .18s ease;
}
.dk-nav-list__item:hover .dk-nav-list__arrow {
  color: var(--dk-black);
  transform: translateX(5px);
}

/* ── dk-values-list: clean horizontal pills ── */
.dk-values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.dk-values-list__item {
  padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(1rem, 2.2vw, 1.5rem);
  border-right: 1px solid rgba(7, 7, 6, .12);
}
.dk-values-list__item:last-child {
  border-right: 0;
}
.dk-values-list__item h3 {
  font-family: var(--dk-font);
  font-size: clamp(.98rem, 1.8vw, 1.18rem);
  font-weight: 850;
  letter-spacing: -.025em;
  margin: 0 0 .5rem;
  line-height: 1.1;
}
.dk-values-list__item p {
  margin: 0;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dk-muted);
  line-height: 1.55;
}

/* ── QRIS payment modal ── */
.dk-body .modal {
  z-index: 1200;
}
.checkout-feedback {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: #fff0f0;
  border: 1px solid rgba(180, 40, 40, .28);
  color: #8b1a1a;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.5;
}
.qris-modal {
  width: min(420px, calc(100% - 2rem));
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(7, 7, 6, .22);
  font-family: var(--dk-font);
}
.qris-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem .85rem;
  border-bottom: 1px solid rgba(7, 7, 6, .08);
}
.qris-modal__brand {
  font-weight: 850;
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--dk-black);
}
.qris-modal__close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(7, 7, 6, .14);
  background: transparent;
  color: rgba(7, 7, 6, .55);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.qris-modal__close:hover {
  background: rgba(7, 7, 6, .06);
  color: var(--dk-black);
}
.qris-modal__body {
  padding: 1.15rem 1.35rem 1.35rem;
}
.qris-modal__amount-block {
  text-align: center;
  padding: .85rem .5rem;
  background: var(--dk-black);
  border-radius: 12px;
  margin-bottom: 1.1rem;
}
.qris-modal__amount-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .3rem;
}
.qris-modal__amount {
  display: block;
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.1;
}
.qris-modal__amount-note {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .35rem;
  letter-spacing: .01em;
}
.qris-modal__qr {
  text-align: center;
  margin-bottom: 1rem;
}
.qris-modal__qr-inner {
  display: inline-block;
  padding: .85rem;
  background: #fff;
  border: 1.5px solid rgba(7, 7, 6, .12);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(7, 7, 6, .07);
}
.qris-modal__qr-inner img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.qris-modal__scan-hint {
  margin: .65rem 0 0;
  font-size: .72rem;
  color: rgba(7, 7, 6, .45);
  letter-spacing: .01em;
}
.qris-modal__meta {
  background: rgba(7, 7, 6, .04);
  border-radius: 10px;
  padding: .7rem 1rem;
  margin-bottom: .9rem;
}
.qris-modal__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(7, 7, 6, .5);
  padding: .25rem 0;
}
.qris-modal__meta-row + .qris-modal__meta-row {
  border-top: 1px solid rgba(7, 7, 6, .07);
  margin-top: .15rem;
  padding-top: .4rem;
}
.qris-modal__meta-row strong {
  color: var(--dk-black);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: -.01em;
}
.qris-modal__meta-row--timer strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}
.pay-countdown {
  font-variant-numeric: tabular-nums;
}
.pay-countdown--urgent {
  color: #e53e3e;
}
.pay-countdown--ended {
  color: #e53e3e;
  opacity: .7;
}
.qris-modal__status {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  border: 1.5px solid rgba(7, 7, 6, .1);
  background: rgba(7, 7, 6, .03);
  transition: border-color .3s ease, background .3s ease;
}
.qris-modal__status[data-state="success"] {
  border-color: rgba(22, 163, 74, .3);
  background: rgba(22, 163, 74, .07);
}
.qris-modal__status[data-state="error"] {
  border-color: rgba(220, 38, 38, .3);
  background: rgba(220, 38, 38, .07);
}
.qris-modal__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.qris-modal__status[data-state="success"] .qris-modal__status-dot {
  background: #16a34a;
  animation: none;
}
.qris-modal__status[data-state="error"] .qris-modal__status-dot {
  background: #dc2626;
  animation: none;
}
.qris-modal__status-text {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(7, 7, 6, .65);
}
.qris-modal__status[data-state="success"] .qris-modal__status-text {
  color: #15803d;
}
.qris-modal__status[data-state="error"] .qris-modal__status-text {
  color: #dc2626;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.75); }
}

/* ── Checkout payment info display ── */
.checkout-payment-info {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .85rem 1rem;
  background: rgba(7, 7, 6, .04);
  border: 1px solid rgba(7, 7, 6, .1);
  border-radius: 10px;
  font-size: .88rem;
  color: rgba(7, 7, 6, .7);
  line-height: 1.5;
}
.checkout-payment-info svg {
  flex-shrink: 0;
  margin-top: .1rem;
  color: rgba(7, 7, 6, .5);
}
.checkout-payment-info strong {
  color: var(--dk-black);
  font-weight: 750;
}

/* ═══════════════════════════════════════════════════════════
   Light-theme contrast — overrides style.css dark defaults
   (nav, checkout forms, steps, shipping, status/lunas)
   ═══════════════════════════════════════════════════════════ */
.dk-body .nav.scrolled,
.dk-body .nav.dk-nav {
  background: rgba(255, 250, 242, .96) !important;
  backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: rgba(11, 11, 11, .08) !important;
  box-shadow: 0 10px 30px rgba(5, 5, 5, .05);
}

.dk-body .nav__links a,
.dk-body .nav__links a:hover,
.dk-body .nav__links a.is-active {
  color: var(--dk-black) !important;
  opacity: 1;
}

.dk-body .nav__links a::after {
  background: var(--dk-accent);
}

.dk-body .nav__toggle {
  color: var(--dk-black);
}

.dk-body .section__label {
  color: var(--dk-muted);
}

.dk-body .section__label::before {
  background: linear-gradient(90deg, rgba(7, 7, 6, .55), transparent);
}

.dk-body .section__title {
  color: var(--dk-black);
}

.dk-body .section__desc,
.dk-body .section__desc .link-arrow {
  color: var(--dk-muted);
}

.dk-body .link-arrow {
  color: var(--dk-black);
  font-weight: 750;
}

.dk-body .form__group label {
  color: #201b15;
}

.dk-body .form__group input,
.dk-body .form__group select,
.dk-body .form__group textarea {
  color: var(--dk-black);
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .18);
}

.dk-body .form__group input::placeholder,
.dk-body .form__group textarea::placeholder {
  color: rgba(7, 7, 6, .42);
}

.dk-body .form__group input:focus,
.dk-body .form__group select:focus,
.dk-body .form__group textarea:focus {
  border-color: rgba(7, 7, 6, .5);
  box-shadow: 0 0 0 3px rgba(255, 240, 0, .28);
  background: #fff;
}

.dk-body .form__group select option {
  background: #fff;
  color: var(--dk-black);
}

.dk-body .form__option {
  color: #2d271f;
  background: #fffdf8;
  border: 1px solid rgba(7, 7, 6, .14);
}

.dk-body .form__option:hover {
  border-color: rgba(7, 7, 6, .32);
  color: var(--dk-black);
}

.dk-body .form__option:has(input:checked) {
  color: var(--dk-black);
  background: rgba(255, 240, 0, .24);
  border-color: rgba(7, 7, 6, .48);
  box-shadow: inset 0 0 0 1px rgba(255, 240, 0, .35);
}

.dk-body .form__option input {
  accent-color: var(--dk-black);
}

.dk-body .form__note,
.dk-body .form__hint {
  color: var(--dk-muted);
  text-align: left;
}

.dk-body .preorder__steps li {
  color: var(--dk-muted);
  border-bottom-color: rgba(7, 7, 6, .12);
}

.dk-body .preorder__steps li::before {
  color: var(--dk-black);
  font-weight: 850;
}

.dk-body .orders-closed {
  background: rgba(255, 250, 242, .98);
  border: 1px solid rgba(7, 7, 6, .14);
  border-radius: 18px;
}

.dk-body .orders-closed__title {
  color: var(--dk-black);
}

.dk-body .orders-closed__text {
  color: var(--dk-muted);
}

.dk-body .price-summary {
  background: var(--dk-black);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

.dk-body .price-summary__row {
  color: rgba(255, 255, 255, .68);
}

.dk-body .price-summary__row--highlight,
.dk-body .price-summary__row strong {
  color: #fff;
}

.dk-body .wilayah-cascade {
  background: rgba(255, 250, 242, .95);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 16px;
}

.dk-body #wilayah-summary {
  color: var(--dk-muted);
  font-size: .82rem;
  font-weight: 650;
}

.dk-body .shipping-origin-note {
  color: #4a4010;
  background: rgba(255, 240, 0, .2);
  border: 1px solid rgba(7, 7, 6, .12);
  border-radius: 12px;
}

.dk-body .shipping-warning {
  color: #b45309;
  font-weight: 650;
}

.dk-body .shipping-rates .form__option {
  width: 100%;
}

.dk-body .btn--outline {
  color: var(--dk-black);
  border-color: rgba(7, 7, 6, .28);
  background: #fffdf8;
}

.dk-body .btn--outline:hover {
  color: var(--dk-black);
  border-color: var(--dk-black);
  background: rgba(255, 240, 0, .22);
}

.dk-body .btn--primary {
  color: #fff;
}

.dk-body .dk-nav .nav__dropdown summary {
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__dropdown-menu {
  background: rgba(255, 250, 242, .98);
  border: 1px solid rgba(7, 7, 6, .1);
}

.dk-body .dk-nav .nav__dropdown-menu a {
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__dropdown-menu a:hover {
  background: rgba(255, 240, 0, .35);
  color: var(--dk-black);
}

.dk-body .dk-nav .nav__collapse.open {
  background: rgba(255, 250, 242, .98);
  border-top: 1px solid rgba(7, 7, 6, .08);
}

.dk-body .dk-nav .nav__collapse.open .nav__links a {
  color: var(--dk-black) !important;
  background: rgba(255, 250, 242, .92);
}

.dk-body .status-card,
.dk-body .lunas-card,
.dk-body .modal__box {
  color: var(--dk-black);
}

.dk-body .status-card label,
.dk-body .lunas-card label {
  color: #201b15;
}

.dk-body .note {
  color: var(--dk-muted);
}

.checkout-form .form__option span {
  color: inherit;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  color: var(--dk-black);
}

.checkout-form .form__option:has(input:checked) {
  color: var(--dk-black);
  background: rgba(255, 240, 0, .24);
  border-color: rgba(7, 7, 6, .48);
}

.checkout-form .form__option {
  color: #2d271f;
}

.checkout-form .form__note {
  color: var(--dk-muted);
  text-align: left;
}

.dk-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--dk-black);
  color: rgba(255, 255, 255, .76);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}
.dk-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.dk-footer__bottom {
  width: 100%;
  max-width: 34rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.dk-footer .footer__copy {
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .58);
  margin: 0;
}
.footer__powered {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, .38);
}
.footer__powered a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__powered a:hover {
  color: rgba(255, 255, 255, .72);
}
.section--muted { background: #ebe2d5; }

@media (max-width: 1024px) {
  .dk-categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .dk-lookbook {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(180px, 22vw);
  }
  .dk-lookbook__item--wide {
    grid-row: span 1;
    grid-column: span 2;
  }
  .dk-section-head {
    gap: 1.25rem;
  }
  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 760px) {
  .dk-body {
    font-size: 14.5px;
  }
  .dk-hero { padding-top: 2.25rem; }
  .dk-hero__inner,
  .dk-about,
  .dk-page-hero__inner,
  .dk-size-preview {
    grid-template-columns: 1fr;
  }
  .dk-hero__visual {
    min-height: auto;
    transform: none;
  }
  .dk-hero__visual img {
    min-height: auto;
  }
  .dk-proof {
    grid-template-columns: 1fr 1fr;
  }
  .dk-proof span:nth-child(odd) { border-left: 0; }
  .dk-proof span:nth-child(n + 3) { border-top: 1px solid rgba(5, 5, 5, .12); }
  .dk-section-head {
    align-items: start;
    flex-direction: column;
  }
  .dk-lookbook {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .dk-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .dk-category {
    min-height: 112px;
  }
  .dk-lookbook__item,
  .dk-lookbook__item--wide {
    grid-row: auto;
  }
  .dk-lookbook__item img {
    aspect-ratio: 4 / 5;
  }
  .dk-page-hero {
    padding-top: 2.8rem;
    padding-bottom: 2.4rem;
  }
  .dk-page-hero img {
    max-height: 260px;
    border-radius: 22px;
  }
  .dk-page-hero h1 {
    font-size: clamp(1.75rem, 7.6vw, 2.35rem) !important;
    letter-spacing: -.045em;
    line-height: 1;
  }
  .dk-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem) !important;
    line-height: 1;
  }
  .dk-body .section__title {
    font-size: clamp(1.7rem, 8.8vw, 2.55rem);
    line-height: 1.02;
  }
  .dk-nav .nav__collapse.open .nav__links {
    gap: .3rem;
  }
  .dk-nav .nav__collapse.open .nav__lang {
    justify-content: center;
    width: 100%;
    margin-top: .2rem;
  }
  .dk-nav .nav__collapse.open .nav__links a {
    display: block;
    padding: .72rem .85rem;
    border-radius: 12px;
    background: rgba(255, 250, 242, .8);
  }
  .dk-nav-list__name {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  .qris-modal {
    width: calc(100% - 2rem);
    border-radius: 16px;
  }
  .qris-modal__qr-inner img {
    width: 170px;
    height: 170px;
  }
  .qris-modal__amount {
    font-size: 1.55rem;
  }
  .dk-values-list {
    grid-template-columns: 1fr;
  }
  .dk-values-list__item {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 6, .12);
  }
  .dk-values-list__item:last-child {
    border-bottom: 0;
  }
  .dk-nav .nav__collapse.open .nav__dropdown summary {
    display: block;
    padding: .72rem .85rem;
    border-radius: 12px;
    background: rgba(255, 250, 242, .8);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: .35rem;
    padding: .4rem;
    box-shadow: none;
    background: rgba(5, 5, 5, .06);
  }
  .dk-nav .nav__collapse.open .nav__dropdown-menu a {
    background: rgba(255, 250, 242, .9);
  }
  .dk-social-link {
    padding: .9rem 1rem;
    gap: .75rem;
  }
  .dk-social-link__desc {
    font-size: .72rem;
  }
}
