.organic-card {
  position: relative;
  background: linear-gradient(145deg, #e6d7b8 0%, #d1c1a0 50%, #f1e4c3 100%);
  border-radius: clamp(6px, 1.5vw, 10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 4px rgba(255, 255, 255, 0.3);
}

.organic-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: linear-gradient(145deg, #cab394 0%, #a8956b 50%, #d1c1a0 100%);
  border-radius: clamp(10px, 2vw, 14px);
  z-index: -1;
  box-shadow: 0 0 0 2px #b8a482, 0 0 0 4px #a8956b,
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.organic-card::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(145deg, #d1c1a0 0%, #cab394 50%, #a8956b 100%);
  border-radius: clamp(8px, 1.5vw, 12px);
  z-index: -1;
  clip-path: polygon(
    2% 8%,
    8% 2%,
    15% 1%,
    25% 3%,
    35% 1%,
    45% 2%,
    55% 1%,
    65% 3%,
    75% 1%,
    85% 2%,
    92% 8%,
    98% 15%,
    99% 25%,
    97% 35%,
    99% 45%,
    98% 55%,
    99% 65%,
    97% 75%,
    99% 85%,
    98% 92%,
    92% 98%,
    85% 99%,
    75% 97%,
    65% 99%,
    55% 98%,
    45% 99%,
    35% 97%,
    25% 99%,
    15% 98%,
    8% 92%,
    2% 85%,
    1% 75%,
    3% 65%,
    1% 55%,
    2% 45%,
    1% 35%,
    3% 25%,
    1% 15%
  );
}

.tab-element {
  
}

.marble-button {
  position: relative;
  background: #d4c4b0;
  border: 3px solid #a8956b;
  border-radius: 12px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
  color: #3a2f25;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.7);
  transition: all 0.15s ease;
  box-shadow: 0 6px 0 #8b7a54, 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

.marble-button::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  right: 4px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
}

.marble-button::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 2px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: rotate(-15deg);
  pointer-events: none;
}

.marble-button:hover {
  transform: translateY(-2px);
  background: #e8ddd0;
  box-shadow: 0 8px 0 #8b7a54, 0 10px 20px rgba(0, 0, 0, 0.25);
}

.marble-button:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #8b7a54, 0 4px 8px rgba(0, 0, 0, 0.3);
}

.marble-textarea {
  position: relative;
  background: #f8f3ec;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-family: inherit;
  font-size: 15px;
  color: #3a2f25;
  resize: vertical;
  min-height: 30px;
  width: 100%;
  box-shadow: inset 0 3px 0 #c8b8a4, inset 3px 0 0 #d4c4b0,
    inset 0 6px 12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.marble-textarea::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: rgba(168, 149, 107, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.marble-textarea::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 12px;
  width: 20px;
  height: 1px;
  background: rgba(168, 149, 107, 0.4);
  pointer-events: none;
}

.marble-textarea:focus {
  outline: none;
  background: #fffbf5;
  box-shadow: inset 0 4px 0 #a8956b, inset 4px 0 0 #c8b8a4,
    inset 0 8px 16px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(255, 255, 255, 1),
    0 0 0 3px rgba(168, 149, 107, 0.4);
}

.marble-textarea::placeholder {
  color: rgba(58, 47, 37, 0.4);
  font-style: italic;
  font-weight: 300;
}

.marble-textarea.with-icon {
  padding-left: 48px !important; /* email icon override */
}
