/* =========================================================
   LANGKAH KUDA
   PREMIUM CONTACT & CONTRIBUTOR INVITATION 2E-C3J-2
   ========================================================= */

.lk-contact-page {
  --ct-espresso: #2b1a16;
  --ct-brown: #493028;
  --ct-soft: #76584c;
  --ct-red: #b7352f;
  --ct-red-dark: #8d2723;
  --ct-gold: #c49346;
  --ct-gold-soft: #e7bd72;
  --ct-paper: #fffdf8;
  --ct-ivory: #f6efe3;
  --ct-line: rgba(73, 48, 40, .17);

  width: min(100%, 1140px);
  margin: 28px auto 95px;
  color: var(--ct-brown);
}

.lk-contact-page *,
.lk-contact-page *::before,
.lk-contact-page *::after {
  box-sizing: border-box;
}

.lk-contact-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 35px;
  align-items: center;
  overflow: hidden;
  padding:
    clamp(38px, 6vw, 68px);
  color: #fffaf0;
  border-top: 5px solid var(--ct-red);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 91% 9%,
      rgba(196, 147, 70, .2),
      transparent 29%
    ),
    linear-gradient(
      135deg,
      #251612,
      #432a23 66%,
      #664138
    );
  box-shadow:
    0 25px 62px
    rgba(43, 26, 22, .18);
}

.lk-contact-eyebrow,
.lk-contact-side-label,
.lk-contact-card-head > span {
  color: var(--ct-gold-soft);
  font-family: var(--font-mono), monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lk-contact-hero h1 {
  max-width: 850px;
  margin: 15px 0 18px;
  color: #fffaf0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(45px, 7vw, 76px);
  line-height: .96;
  letter-spacing: -.05em;
}

.lk-contact-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 240, .73);
  font-size: 16px;
  line-height: 1.7;
}

.lk-contact-mark {
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  color: var(--ct-gold-soft);
  border: 1px solid rgba(255, 250, 240, .15);
  border-radius: 23px;
  background: rgba(255, 250, 240, .055);
  font-family: Georgia, serif;
  font-size: 74px;
}

.lk-contact-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--ct-line);
  border-left: 1px solid var(--ct-line);
}

.lk-contact-flow article {
  min-height: 145px;
  padding: 20px;
  border-right: 1px solid var(--ct-line);
  border-bottom: 1px solid var(--ct-line);
  background: rgba(255, 253, 248, .67);
}

.lk-contact-flow strong {
  color: var(--ct-red);
  font-family: var(--font-display), Georgia, serif;
  font-size: 33px;
}

.lk-contact-flow span {
  display: block;
  margin-top: 12px;
  color: var(--ct-espresso);
  font-weight: 800;
}

.lk-contact-flow p {
  margin: 6px 0 0;
  color: var(--ct-soft);
  font-size: 11px;
  line-height: 1.5;
}

.lk-contact-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(285px, 350px);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.lk-contact-card,
.lk-contact-side > section {
  border: 1px solid var(--ct-line);
  border-top: 4px solid var(--ct-gold);
  border-radius: 20px;
  background: var(--ct-paper);
  box-shadow:
    0 15px 38px
    rgba(52, 34, 28, .075);
}

.lk-contact-form-card {
  padding:
    clamp(26px, 5vw, 47px);
}

.lk-contact-card-head {
  margin-bottom: 31px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ct-line);
}

.lk-contact-card-head > span {
  color: var(--ct-red);
}

.lk-contact-card-head h2 {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--ct-espresso);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.lk-contact-form {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.lk-field {
  display: grid;
  gap: 8px;
}

.lk-field-pesan,
.lk-field-subjek,
.lk-field-tautan_portofolio {
  grid-column: 1 / -1;
}

.lk-field label {
  color: var(--ct-espresso);
  font-size: 12px;
  font-weight: 800;
}

.lk-field input,
.lk-field select,
.lk-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ct-espresso);
  border: 1px solid var(--ct-line);
  border-radius: 10px;
  background: var(--ct-ivory);
  font: inherit;
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.lk-field input:focus,
.lk-field select:focus,
.lk-field textarea:focus {
  border-color: var(--ct-red);
  background: var(--ct-paper);
  box-shadow:
    0 0 0 4px
    rgba(183, 53, 47, .1);
}

.lk-field textarea {
  min-height: 175px;
  resize: vertical;
  line-height: 1.6;
}

.lk-field small {
  color: var(--ct-soft);
  font-size: 10px;
}

.lk-form-errors {
  grid-column: 1 / -1;
  padding: 12px 14px;
  color: #922e29;
  border-left: 4px solid var(--ct-red);
  border-radius: 8px;
  background: #fae7e4;
  font-size: 11px;
}

.lk-contact-button {
  grid-column: 1 / -1;
  display: inline-flex;
  width: 100%;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fffaf0;
  border: 1px solid var(--ct-red-dark);
  border-radius: 9px;
  background:
    linear-gradient(
      180deg,
      #c5423a,
      var(--ct-red)
    );
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  font-weight: 850;
}

.lk-contact-button:hover,
.lk-contact-button:focus-visible {
  background: var(--ct-espresso);
}

.lk-contact-side {
  display: grid;
  gap: 17px;
}

.lk-contact-side > section {
  padding: 24px;
}

.lk-contact-side-label {
  color: var(--ct-red);
}

.lk-contact-recipient-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-content: center;
  margin: 18px 0;
  color: #fffaf0;
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      var(--ct-espresso),
      var(--ct-brown)
    );
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  font-weight: 850;
}

.lk-contact-side h2 {
  margin: 0 0 11px;
  color: var(--ct-espresso);
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
}

.lk-contact-side p,
.lk-contact-side li {
  color: var(--ct-soft);
  font-size: 12px;
  line-height: 1.65;
}

.lk-contact-side a {
  color: var(--ct-red);
  font-size: 11px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lk-contact-side ul {
  margin: 17px 0 0;
  padding-left: 18px;
}

.lk-contact-side li + li {
  margin-top: 10px;
}


/* DARK MODE */

html[data-theme="malam"]
.lk-contact-page {
  --ct-espresso: #f1e6d8;
  --ct-brown: #dfd0c1;
  --ct-soft: #b6a496;
  --ct-red: #df6259;
  --ct-red-dark: #b9433d;
  --ct-gold: #d8aa5a;
  --ct-gold-soft: #e9c57d;
  --ct-paper: #1f252b;
  --ct-ivory: #191e24;
  --ct-line: rgba(255, 245, 232, .13);
}

html[data-theme="malam"]
.lk-contact-card,
html[data-theme="malam"]
.lk-contact-side > section,
html[data-theme="malam"]
.lk-contact-flow article {
  background: var(--ct-paper);
}

html[data-theme="malam"]
.lk-field input,
html[data-theme="malam"]
.lk-field select,
html[data-theme="malam"]
.lk-field textarea {
  color: #fffaf0;
  background: var(--ct-ivory);
}

html[data-theme="malam"]
.lk-field input:focus,
html[data-theme="malam"]
.lk-field select:focus,
html[data-theme="malam"]
.lk-field textarea:focus {
  background: #242b31;
}


/* RESPONSIVE */

@media (max-width: 820px) {
  .lk-contact-grid,
  .lk-contact-hero {
    grid-template-columns: 1fr;
  }

  .lk-contact-mark {
    width: 100%;
    height: 88px;
    font-size: 47px;
  }

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

@media (max-width: 580px) {
  .lk-contact-page {
    margin-top: 17px;
  }

  .lk-contact-hero {
    padding: 33px 21px;
    border-radius: 21px;
  }

  .lk-contact-hero h1 {
    font-size: 43px;
  }

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

  .lk-field {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   CONTACT SUCCESS PANEL 2E-C3J-3
   ========================================================= */

.lk-contact-success {
  display: grid;
  grid-template-columns:
    76px
    minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
  padding:
    clamp(24px, 4vw, 38px);
  color: #2b1a16;
  border:
    1px solid
    rgba(54, 115, 75, .28);
  border-left:
    6px solid
    #36734b;
  border-radius: 19px;
  background:
    linear-gradient(
      145deg,
      #fffdf8,
      #edf7ef
    );
  box-shadow:
    0 17px 40px
    rgba(43, 26, 22, .08);
}

.lk-contact-success-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-content: center;
  color: #fff;
  border-radius: 50%;
  background: #36734b;
  font-size: 31px;
  font-weight: 900;
  box-shadow:
    0 0 0 9px
    rgba(54, 115, 75, .1);
}

.lk-contact-success span {
  display: block;
  color: #36734b;
  font-family:
    var(--font-mono),
    monospace;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lk-contact-success h2 {
  max-width: 760px;
  margin: 9px 0 11px;
  color: #2b1a16;
  font-family:
    var(--font-display),
    Georgia,
    serif;
  font-size:
    clamp(28px, 4vw, 43px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.lk-contact-success p {
  max-width: 760px;
  margin: 0;
  color: #76584c;
  line-height: 1.68;
}

.lk-contact-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 19px;
}

.lk-contact-success-actions a {
  display: inline-flex;
  min-height: 41px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: #fffaf0;
  border-radius: 8px;
  background: #2b1a16;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.lk-contact-success-actions a + a {
  color: #2b1a16;
  border: 1px solid rgba(43, 26, 22, .18);
  background: transparent;
}

html[data-theme="malam"]
.lk-contact-success {
  color: #f1e6d8;
  border-color:
    rgba(107, 181, 129, .3);
  background:
    linear-gradient(
      145deg,
      #1f252b,
      #17251c
    );
}

html[data-theme="malam"]
.lk-contact-success h2 {
  color: #fffaf0;
}

html[data-theme="malam"]
.lk-contact-success p {
  color: #b6a496;
}

html[data-theme="malam"]
.lk-contact-success-actions a + a {
  color: #fffaf0;
  border-color:
    rgba(255, 245, 232, .18);
}

@media (max-width: 580px) {
  .lk-contact-success {
    grid-template-columns: 1fr;
  }

  .lk-contact-success-mark {
    width: 58px;
    height: 58px;
  }

  .lk-contact-success-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lk-contact-success-actions a {
    width: 100%;
  }
}
